 /* ===== RESET & BASE ===== */
 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
 }

 :root {
     --primary-light: #FFFDF9;
     /* Background */
     --secondary-bg: #F8F4EE;
     /* Cream */
     --card-bg: #ffffff;
     --text-dark: #3E3428;
     --text-muted: #8B6B4A;
     --gold: #8B6B4A;
     /* Warm Cocoa */
     --gold-soft: #D8C3A5;
     /* Beige */
     --gold-light: #F8F4EE;
     /* Cream */
     --border-light: #e9e2d4;
     --shadow-sm: 0 10px 30px rgba(62, 52, 40, 0.05);
     --shadow-md: 0 20px 40px rgba(62, 52, 40, 0.08);
     --font-heading: 'Playfair Display', serif;
     --font-body: 'Poppins', sans-serif;
 }

 html {
     scroll-behavior: smooth;
     overflow-x: hidden;
     scroll-padding-top: 100px;
 }

 body {
     font-family: var(--font-body);
     background: var(--secondary-bg);
     color: var(--text-dark);
     line-height: 1.6;
     overflow-x: hidden;
 }

 /* Ensure all section headings match Industries We Serve color */
 h2,
 .rk9-heading,
 .v2-heading,
 .bldl-ts-heading,
 .v-sustain-heading,
 .menu-heading h2,
 .about-right h2,
 .rk3-delivery-content h2,
 .rk4-contact-box h2 {
     color: var(--gold) !important;
 }

 /* ===== CUSTOM CURSOR ===== */
 .custom-cursor {
     display: none;
 }

 /* ===== FLOATING SOCIAL BAR ===== */
 .social-float-bar {
     position: fixed;
     right: 25px;
     top: auto;
     bottom: 30px;
     transform: none;
     display: flex;
     flex-direction: column;
     gap: 12px;
     z-index: 1000;
 }

 .float-btn {
     width: 45px;
     height: 45px;
     border-radius: 12px;
     /* Modern app-icon shape */
     display: flex;
     justify-content: center;
     align-items: center;
     color: var(--gold);
     /* Warm Cocoa */
     background: var(--card-bg);
     font-size: 22px;
     text-decoration: none;
     box-shadow: var(--shadow-sm);
     transition: all 0.3s ease;
     border: 1px solid var(--border-light);
 }

 .float-btn:hover {
     transform: translateY(-5px);
     box-shadow: var(--shadow-md);
     color: white;
     background: var(--gold);
     border-color: var(--gold);
 }

 /* ===== HEADER & NAVIGATION ===== */
 header {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     z-index: 1000;
     background: rgba(248, 244, 238, 0.95);
     /* Cream */
     backdrop-filter: blur(10px);
     transition: all 0.4s ease;
     padding: 0;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
 }

 .header-hidden {
     transform: translateY(-100%) !important;
 }

 .navbar {
     max-width: 1400px;
     margin: 0 auto;
     display: flex;
     justify-content: space-between;
     align-items: center;
     padding: 0 40px;
 }

 .logo {
     display: flex;
     align-items: center;
     gap: 20px;
 }

 .logo img {
     height: 70px;
     width: auto;
     transition: transform 0.3s ease;
 }

 .logo-text strong {
     font-size: 20px;
     font-family: var(--font-heading);
     display: block;
     color: var(--text-dark);
     line-height: 1.2;
 }

 .nav-links {
     list-style: none;
     display: flex;
     gap: 40px;
 }

 .nav-links a {
     text-decoration: none;
     color: var(--text-dark);
     font-family: var(--font-heading);
     font-size: 18px;
     font-weight: 600;
     position: relative;
     padding: 5px 0;
 }

 .nav-links a::after {
     content: '';
     position: absolute;
     bottom: 0;
     left: 0;
     width: 0;
     height: 2px;
     background: var(--gold);
     transition: width 0.3s ease;
 }

 .nav-links a:hover::after {
     width: 100%;
 }

 /* Get Quote Button in Navbar */
 .quote-btn {
     background: #f17a21 !important;
     color: white !important;
     padding: 8px 20px !important;
     border-radius: 30px;
     font-weight: 600;
     transition: all 0.3s ease;
     border: 2px solid #f17a21;
     display: inline-block;
 }

 .quote-btn:hover {
     background: transparent !important;
     color: #f17a21 !important;
     transform: translateY(-2px);
     box-shadow: 0 4px 15px rgba(241, 122, 33, 0.3);
 }

 .quote-btn::after {
     display: none !important;
 }


 /* Dropdown */
 .dropdown,
 .dropdown-submenu {
     position: relative;
 }

 .dropdown-menu {
     position: absolute;
     top: 100%;
     left: -20px;
     width: 280px;
     background: white;
     border-radius: 12px;
     padding: 10px 0;
     opacity: 0;
     visibility: hidden;
     transform: translateY(20px);
     transition: all 0.3s ease;
     box-shadow: var(--shadow-md);
     border: 1px solid var(--border-light);
     z-index: 1050;
     list-style: none;
 }

 .dropdown:hover>.dropdown-menu {
     opacity: 1;
     visibility: visible;
     transform: translateY(10px);
 }

 .dropdown-menu a {
     padding: 12px 20px;
     display: block;
     color: var(--text-dark);
     font-family: var(--font-heading);
     font-size: 15px;
     font-weight: 500;
     border-left: 3px solid transparent;
 }

 .dropdown-menu a:hover {
     background: var(--gold-light);
     border-left-color: var(--gold);
 }

 /* Submenu specifics */
 .dropdown-submenu>.dropdown-menu {
     top: -10px;
     left: 100%;
     transform: translateX(20px);
 }

 .dropdown-submenu:hover>.dropdown-menu {
     opacity: 1;
     visibility: visible;
     transform: translateX(0);
 }

 /* Enable scrolling for very long submenus */
 .submenu-items {
     max-height: 70vh;
     overflow-y: auto;
     overflow-x: hidden;
 }

 /* Custom scrollbar for submenu */
 .submenu-items::-webkit-scrollbar {
     width: 6px;
 }

 .submenu-items::-webkit-scrollbar-track {
     background: transparent;
 }

 .submenu-items::-webkit-scrollbar-thumb {
     background: var(--border-light);
     border-radius: 4px;
 }

 .submenu-items::-webkit-scrollbar-thumb:hover {
     background: var(--gold);
 }

 /* ===== HERO SLIDER (rk-hero) ===== */
 .rk-hero {
     position: relative;
     height: 100vh;
     overflow: hidden;
 }

 .rk-slider {
     position: absolute;
     width: 100%;
     height: 100%;
 }

 .rk-slide {
     position: absolute;
     width: 100%;
     height: 100%;
     opacity: 0;
     transition: opacity 1s ease;
 }

 .rk-slide img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     image-rendering: -webkit-optimize-contrast;
     image-rendering: crisp-edges;
 }

 .rk-slide.active {
     opacity: 1;
 }

 .rk-hero-content {
     position: relative;
     z-index: 2;
     text-align: center;
     top: 27%;
     color: #fff;
     left: 99px;
     background: rgba(0, 0, 0, 0.4);
     backdrop-filter: blur(10px);
     -webkit-backdrop-filter: blur(10px);
     border: 1px solid rgba(255, 255, 255, 0.1);
     padding: 30px 40px;
     border-radius: 16px;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
     width: 465px;
 }

 .rk-hero-title span {
     display: block;
     font-size: 60px;
     font-weight: bold;
 }

 .rk-line-secondary {
     color: var(--gold);
 }

 .rk-btn {
     padding: 12px 25px;
     border-radius: 30px;
     text-decoration: none;
     margin: 5px;
     display: inline-block;
     transition: all 0.3s ease;
 }

 .rk-btn-gold {
     background: var(--gold);
     color: #000;
 }

 .rk-btn-light {
     border: 2px solid #fff;
     color: #fff;
 }

 .rk-hero-dots {
     position: absolute;
     bottom: 20px;
     width: 100%;
     text-align: center;
     z-index: 2;
 }

 .rk-dot {
     width: 12px;
     height: 12px;
     background: #fff;
     display: inline-block;
     margin: 5px;
     border-radius: 50%;
     cursor: pointer;
     opacity: 0.5;
 }

 .rk-dot.active {
     background: gold;
     opacity: 1;
 }

 /* ===== MARQUEE SECTION ===== */
 .marquee-section {
     padding: 80px 0;
     background: var(--secondary-bg);
 }

 .marquee-heading {
     text-align: center;
     margin-bottom: 40px;
 }

 .marquee-heading h2 {
     font-size: clamp(32px, 5vw, 42px);
     font-family: var(--font-heading);
     color: var(--text-dark);
 }

 .heading-line {
     width: 80px;
     height: 3px;
     background: var(--gold);
     margin: 20px auto;
 }

 .marquee-wrapper {
     overflow: hidden;
     background: var(--card-bg);
     padding: 20px 0;
     border-radius: 60px;
     box-shadow: var(--shadow-sm);
 }

 .marquee-track {
     display: flex;
     animation: marqueeScroll 40s linear infinite;
     gap: 20px;
 }

 .marquee-item {
     flex-shrink: 0;
     padding: 12px 28px;
     background: var(--gold-light);
     border-radius: 40px;
     font-size: 15px;
     color: var(--text-dark);
     font-weight: 500;
     white-space: nowrap;
     transition: all 0.3s ease;
     cursor: default;
 }

 @keyframes marqueeScroll {
     0% {
         transform: translateX(0);
     }

     100% {
         transform: translateX(-50%);
     }
 }

 .stats-section {
     position: relative;
     padding: 50px 20px;
     background: url('img/logo/bc.avif') center/cover fixed no-repeat;
 }

 .stats-section::before {
     content: '';
     position: absolute;
     inset: 0;
     background: rgba(30, 10, 8, 0.85);
     /* Deep dark brown overlay */
 }

 .stats-container {
     position: relative;
     z-index: 2;
     max-width: 1200px;
     margin: 0 auto;
     display: flex;
     justify-content: space-around;
     flex-wrap: wrap;
     gap: 20px;
 }

 .stat-box {
     text-align: center;
     min-width: 200px;
     padding: 25px 20px;
     background: rgba(255, 255, 255, 0.05);
     border-radius: 16px;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
     transition: transform 0.4s ease;
     border: 1px solid rgba(255, 255, 255, 0.1);
     backdrop-filter: blur(10px);
 }

 .stat-box:hover {
     transform: translateY(-8px);
     border-color: var(--gold);
     background: rgba(255, 255, 255, 0.1);
 }

 .stat-number {
     font-size: 44px;
     font-weight: 800;
     color: var(--gold-soft);
     font-family: var(--font-heading);
     margin-bottom: 5px;
 }

 .stat-label {
     font-size: 14px;
     text-transform: uppercase;
     letter-spacing: 1px;
     color: #e9e2d4;
     font-weight: 500;
 }

 /* ===== ABOUT SECTION ===== */
 .about-premium {
     padding: 80px 5%;
     background: var(--secondary-bg);
 }

 .about-container {
     display: flex;
     align-items: center;
     gap: 60px;
     max-width: 1400px;
     margin: 0 auto;
     flex-wrap: wrap;
 }

 .about-left {
     flex: 1;
     position: relative;
 }

 .image-wrapper {
     width: 600px;
     max-width: 100%;
     height: 480px;
     border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
     overflow: hidden;
     border: 5px solid var(--gold);
 }

 .image-wrapper img {
     width: 100%;
     height: 100%;
     object-fit: cover;
 }

 .experience-badge {
     position: absolute;
     top: 20px;
     right: -20px;
     background: var(--gold);
     padding: 20px;
     border-radius: 50%;
     width: 140px;
     height: 140px;
     display: flex;
     align-items: center;
     justify-content: center;
     text-align: center;
     color: white;
     box-shadow: var(--shadow-md);
 }

 .chef-small {
     position: absolute;
     bottom: -20px;
     left: -30px;
     width: 100px;
     height: 100px;
     border-radius: 50%;
     overflow: hidden;
     border: 4px solid var(--gold);
 }

 .about-right {
     flex: 1;
 }

 .small-title {
     color: var(--gold);
     letter-spacing: 3px;
     font-size: 14px;
     display: block;
     margin-bottom: 15px;
 }

 .about-right h2 {
     font-size: clamp(32px, 5vw, 48px);
     font-family: var(--font-heading);
     margin-bottom: 25px;
     color: var(--text-dark);
 }

 .about-points {
     list-style: none;
     margin: 20px 0;
 }

 .about-points li {
     margin-bottom: 12px;
     padding-left: 30px;
     position: relative;
 }

 .about-points li::before {
     content: '✓';
     color: var(--gold);
     position: absolute;
     left: 0;
     font-weight: bold;
 }

 /* Buttons */
 .btn-gold,
 .btn-light {
     padding: 12px 32px;
     border-radius: 50px;
     text-decoration: none;
     font-weight: 500;
     transition: all 0.3s ease;
     display: inline-block;
     text-align: center;
 }

 .btn-gold {
     background: var(--gold);
     color: white;
     border: 2px solid var(--gold);
 }

 .btn-light {
     background: transparent;
     color: var(--text-dark);
     border: 2px solid var(--gold);
 }

 .btn-gold:hover,
 .btn-light:hover {
     transform: translateY(-3px);
     box-shadow: 0 10px 20px rgba(184, 134, 11, 0.3);
 }

 .btn-light:hover {
     background: var(--gold) !important;
     color: white !important;
 }

 /* ===== PRODUCT SLIDER (MENU) ===== */
 .menu-slider-section {
     padding: 80px 0;
     background: var(--primary-light);
 }

 .menu-heading {
     text-align: center;
 }

 .menu-heading h2 {
     font-size: clamp(32px, 5vw, 42px);
     font-family: var(--font-heading);
     color: var(--text-dark);
 }

 .menu-line {
     width: 80px;
     height: 3px;
     background: var(--gold);
     margin: 20px auto 40px;
 }

 .menu-slider-container {
     max-width: 1300px;
     margin: 0 auto;
     position: relative;
     padding: 0 20px;
 }

 .menu-track-wrapper {
     overflow: hidden;
 }

 .menu-track {
     display: flex;
     transition: transform 0.5s ease;
 }

 .menu-card {
     min-width: 25%;
     padding: 20px;
     text-align: center;
 }

 .menu-card img {
     width: 100%;
     max-width: 200px;
     aspect-ratio: 1/1;
     border-radius: 50%;
     object-fit: cover;
     border: 4px solid var(--gold);
     margin-bottom: 20px;
     transition: transform 0.3s ease;
 }

 .menu-card:hover img {
     transform: scale(1.05);
 }

 .menu-card h4 {
     font-size: 16px;
     font-weight: 500;
     color: var(--text-dark);
 }

 .menu-dots {
     display: flex;
     justify-content: center;
     gap: 12px;
     margin-top: 30px;
 }

 .dot {
     width: 10px;
     height: 10px;
     border-radius: 50%;
     background: var(--border-light);
     cursor: pointer;
     transition: all 0.3s ease;
 }

 .dot.active {
     background: var(--gold);
     transform: scale(1.3);
 }

 /* ===== COCOA RANGE ===== */
 .cocoa-range-section {
     padding: 100px 4%;
     background: var(--secondary-bg);
 }

 .cocoa-range-title {
     font-size: 24px;
     letter-spacing: 4px;
     color: var(--gold);
 }

 .cocoa-range-line {
     height: 2px;
     background: var(--gold);
     width: 100px;
     margin: 20px 0 40px;
 }

 .cocoa-range-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
     gap: 40px;
 }

 .cocoa-range-card {
     position: relative;
     overflow: hidden;
     height: 450px;
     border-radius: 24px;
     cursor: pointer;
 }

 .cocoa-range-card img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     transition: transform 0.6s ease;
 }

 .cocoa-range-overlay {
     position: absolute;
     inset: 0;
     background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
     display: flex;
     flex-direction: column;
     justify-content: flex-end;
     padding: 30px;
 }

 .cocoa-range-overlay h3 {
     color: white;
     font-size: 28px;
     font-weight: 700;
 }

 .cocoa-range-hover {
     position: absolute;
     bottom: -100%;
     left: 0;
     width: 100%;
     background: rgba(184, 134, 11, 0.95);
     padding: 30px;
     transition: bottom 0.4s ease;
     color: white;
 }

 .cocoa-range-card:hover .cocoa-range-hover {
     bottom: 0;
 }

 .cocoa-range-card:hover img {
     transform: scale(1.1);
 }

 /* ===== INDUSTRIES SECTION ===== */
 .rk9-industries-section {
     padding: 80px 5%;
     background: var(--primary-light);
 }

 .rk9-container {
     display: flex;
     gap: 60px;
     align-items: center;
     flex-wrap: wrap;
     max-width: 1200px;
     margin: 0 auto;
 }

 .rk9-content {
     flex: 0 0 40%;
 }

 .rk9-heading {
     font-size: 38px;
     font-weight: 600;
     color: var(--gold);
 }

 .rk9-divider {
     width: 80px;
     height: 3px;
     background: var(--gold);
     margin: 20px 0 35px;
     border-radius: 2px;
 }

 .rk9-list {
     list-style: none;
     padding-left: 0;
     margin: 30px 0;
 }

 .rk9-list li {
     position: relative;
     padding-left: 35px;
     margin-bottom: 15px;
     line-height: 1.6;
     color: var(--text-dark);
 }

 .rk9-list li::before {
     content: '\f058';
     font-family: 'Font Awesome 6 Free';
     font-weight: 900;
     position: absolute;
     left: 0;
     top: 2px;
     color: var(--gold);
     font-size: 20px;
 }

 .rk9-vision-mission {
     display: flex;
     gap: 30px;
     margin-top: 30px;
     flex-wrap: wrap;
 }

 .rk9-box {
     background: var(--card-bg);
     padding: 25px;
     border-radius: 16px;
     box-shadow: var(--shadow-sm);
     border: 1px solid var(--border-light);
     flex: 1;
 }

 .rk9-box h3 {
     color: var(--gold);
     margin-bottom: 10px;
 }

 .rk9-image-wrapper {
     flex: 1;
     position: sticky;
     top: 150px;
     align-self: flex-start;
 }

 .rk9-image-wrapper img {
     width: 100%;
     border-radius: 24px;
     box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
     transition: transform 0.5s ease, box-shadow 0.5s ease;
 }

 .rk9-image-wrapper img:hover {
     transform: translateY(-10px);
     box-shadow: 0 25px 45px rgba(0, 0, 0, 0.15);
 }

 /* ===== TESTIMONIALS ===== */
 /* ===== JB COCOA SECTION ===== */
 .cocoa-sec-wrapper {
     padding: 80px 5%;
     background: var(--secondary-bg);
 }

 .cocoa-sec-container {
     max-width: 1200px;
     margin: auto;
 }

 .jb-cocoa-grid {
     display: flex;
     gap: 60px;
     align-items: center;
     margin-bottom: 60px;
     flex-wrap: wrap;
 }

 .jb-cocoa-text {
     flex: 1;
     min-width: 300px;
 }

 .jb-cocoa-text h3 {
     font-size: 36px;
     font-family: var(--font-heading);
     margin-bottom: 20px;
     line-height: 1.3;
 }

 .jb-cocoa-text h3 span {
     color: var(--gold);
 }

 .jb-cocoa-text p {
     margin-bottom: 15px;
 }

 .jb-cocoa-images {
     flex: 1;
     min-width: 300px;
     position: relative;
     height: 400px;
 }

 .jb-cocoa-images .img-main {
     width: 70%;
     height: 320px;
     object-fit: cover;
     border-radius: 20px;
     position: absolute;
     top: 0;
     right: 0;
     border: 5px solid white;
     box-shadow: var(--shadow-md);
     z-index: 1;
 }

 .jb-cocoa-images .img-secondary {
     width: 60%;
     height: 250px;
     object-fit: cover;
     border-radius: 20px;
     position: absolute;
     bottom: 0;
     left: 0;
     border: 5px solid white;
     box-shadow: var(--shadow-md);
     z-index: 2;
 }

 .cocoa-sec-buttons {
     display: flex;
     gap: 15px;
     margin-top: 25px;
     flex-wrap: wrap;
 }

 .cocoa-btn {
     padding: 10px 20px;
     background: var(--gold);
     color: white;
     border-radius: 40px;
     text-decoration: none;
     font-size: 14px;
     transition: 0.3s;
 }

 .cocoa-btn:hover {
     background: var(--gold-soft);
 }

 .cocoa-sec-bottom {
     display: flex;
     gap: 40px;
     flex-wrap: wrap;
 }

 .cocoa-sec-card {
     background: white;
     padding: 30px;
     border-radius: 20px;
     box-shadow: var(--shadow-sm);
     flex: 1;
 }

 .cocoa-sec-card h4 {
     color: var(--gold);
     margin-bottom: 15px;
 }

 /* ===== SUSTAINABILITY ===== */
 .v-sustain-section {
     background: transparent;
     padding: 80px 5%;
 }

 .v-sustain-heading {
     font-size: clamp(32px, 5vw, 60px);
     font-family: var(--font-heading);
     color: var(--text-dark);
 }

 .v-sustain-line {
     width: 200px;
     height: 2px;
     background: var(--gold);
     margin: 30px 0 50px;
 }

 .v-sustain-content {
     display: flex;
     flex-wrap: wrap;
     align-items: flex-start;
 }

 .v-sustain-image {
     width: 50%;
     min-width: 300px;
     margin-top: -60px;
 }

 .v-sustain-image img {
     width: 100%;
     height: 100%;
     object-fit: cover;
 }

 .v-sustain-textbox {
     width: 50%;
     background: var(--secondary-bg);
     padding: 30px 50px;
     color: var(--text-dark);
 }

 /* ===== COLLECTIONS ===== */
 .v-collection-section {
     position: relative;
     padding: 80px 5%;
     background: url('https://placehold.co/1920x1080?text=Chocolate+Background') center/cover fixed;
 }

 .v-collection-overlay {
     position: absolute;
     inset: 0;
     background: rgba(255, 255, 255, 0.9);
     z-index: 1;
 }

 .v-collection-container {
     position: relative;
     z-index: 2;
 }

 .v-collection-title-wrap {
     display: flex;
     align-items: center;
     justify-content: center;
     gap: 20px;
     margin-bottom: 50px;
 }

 .v-collection-title-wrap h2 {
     font-size: 32px;
     font-family: var(--font-heading);
     color: var(--gold);
 }

 .v-line {
     width: 80px;
     height: 2px;
     background: var(--gold);
 }

 .v-collection-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
     gap: 20px;
 }

 .v-collection-item {
     position: relative;
     overflow: hidden;
     height: 280px;
     border-radius: 20px;
     cursor: pointer;
 }

 .v-collection-item img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     transition: transform 0.5s ease;
 }

 .v-collection-item:hover img {
     transform: scale(1.1);
 }

 .v-collection-btn {
     position: absolute;
     bottom: 20px;
     left: 50%;
     transform: translateX(-50%);
     background: white;
     padding: 8px 20px;
     border-radius: 40px;
     text-decoration: none;
     color: var(--text-dark);
     font-size: 14px;
     font-weight: 500;
     white-space: nowrap;
     transition: 0.3s;
 }

 .v-collection-item:hover .v-collection-btn {
     background: var(--gold);
     color: white;
 }

 /* ===== QUALITY + MAP ===== */
 .rk3-delivery-section {
     padding: 80px 5%;
     background: var(--secondary-bg);
 }

 .rk3-delivery-container {
     display: flex;
     gap: 60px;
     flex-wrap: wrap;
 }

 .rk3-delivery-content {
     flex: 1;
 }

 .rk3-delivery-content h2 {
     font-size: 38px;
     font-family: var(--font-heading);
     color: var(--gold);
 }

 .rk3-title-line {
     width: 80px;
     height: 3px;
     background: var(--gold);
     margin: 20px 0 30px;
 }

 .rk3-delivery-fee span {
     color: var(--gold);
     font-weight: bold;
 }

 .rk3-map-wrapper {
     flex: 1;
     height: 400px;
     border-radius: 20px;
     overflow: hidden;
     box-shadow: var(--shadow-md);
 }

 /* ===== CONTACT ===== */
 .rk4-contact-section {
     position: relative;
     padding: 80px 5%;
     background: var(--secondary-bg);
 }

 .rk4-grid {
     position: relative;
     z-index: 2;
     max-width: 1200px;
     margin: 0 auto;
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
     gap: 60px;
 }

 .rk4-contact-box {
     color: var(--text-dark);
 }

 .rk4-contact-box h2 {
     font-size: 38px;
     font-family: var(--font-heading);
     color: var(--gold);
 }

 .rk4-contact-line {
     width: 80px;
     height: 3px;
     background: var(--gold);
     margin: 20px 0 40px;
 }

 .rk4-contact-details {
     list-style: none;
 }

 .rk4-contact-details li {
     display: flex;
     gap: 15px;
     margin-bottom: 20px;
 }

 .rk4-icon {
     color: var(--gold);
     font-size: 20px;
 }

 .rk4-form-box {
     background: white;
     padding: 40px;
     border-radius: 24px;
     box-shadow: var(--shadow-md);
 }

 .rk4-input-group input,
 .rk4-input-group textarea {
     width: 100%;
     padding: 14px;
     border: 1px solid var(--border-light);
     border-radius: 12px;
     font-family: var(--font-body);
     transition: 0.3s;
 }

 .rk4-input-group input:focus,
 .rk4-input-group textarea:focus {
     outline: none;
     border-color: var(--gold);
 }

 .rk4-submit-btn {
     width: 100%;
     padding: 14px;
     background: var(--gold);
     color: white;
     border: none;
     border-radius: 40px;
     font-weight: 600;
     cursor: pointer;
     transition: 0.3s;
 }

 .rk4-submit-btn:hover {
     background: var(--gold-soft);
     transform: translateY(-2px);
 }

 /* ===== FOOTER ===== */
 .site-footer {
    background: #8b6b4a;
    padding: 30px 5% 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

 /* Container */
 .footer-container {
     max-width: 1400px;
     margin: 0 auto;
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
     gap: 40px;
 }

 /* Logo */
 .footer-logo {
     width: 140px;
     margin-bottom: 15px;
 }

 /* Headings */
 .footer-col h4 {
    font-size: 18px;
    margin-bottom: 12px;
    color: #D4AF37;
    /* gold */
}

 /* Text */
 .footer-col p {
     color: #ffffff;
     font-size: 14px;
     line-height: 1.6;
     margin-top: -15px;
 }

 /* Links */
 .footer-links {
     list-style: none;
     padding: 0;
 }

 .footer-links li {
    margin: 0;
    padding: 5.5px 0;
    line-height: 1.4;
}

 .footer-links a {
     text-decoration: none;
     color: #ffffff;
     transition: 0.3s;
     display: inline-flex;
     align-items: center;
     gap: 8px;
 }

 .footer-links a:hover {
     color: #D4AF37;
     transform: translateX(5px);
 }

 /* Contact */
 .contact-details {
     list-style: none;
     padding: 0;
 }

 .contact-details li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin: 0;
    padding: 4px 0;
    line-height: 1.4;
    color: #ffffff;
}

 .contact-details li i {
    margin-top: 3px;
}

 /* Bottom */
 .footer-bottom {
     max-width: 1400px;
     margin: 40px auto 0;
     padding-top: 20px;
     border-top: 1px solid rgba(255, 255, 255, 0.1);
     display: flex;
     justify-content: space-between;
     flex-wrap: wrap;
     gap: 20px;
 }

 .copy {
     color: #ffffff;
     font-size: 14px;
 }

 /* Social Icons */
 .social i {
     font-size: 18px;
     margin-left: 20px;
     color: #ffffff;
     cursor: pointer;
     transition: 0.3s;
 }

 .social i:hover {
     color: #D4AF37;
     transform: translateY(-3px);
 }

 /* ===== RESPONSIVE MEDIA QUERIES ===== */
 @media (max-width: 1200px) {
     .rk-hero-content {
         left: -150px;
         transform: translateY(-50%) scale(0.9);
     }
 }

 @media (max-width: 992px) {

     /* Navbar Hamburger & Overlay Styles */
     .mobile-nav-toggle {
         display: flex;
         flex-direction: column;
         justify-content: space-between;
         width: 30px;
         height: 21px;
         cursor: pointer;
         z-index: 1001;
         transition: transform 0.3s ease;
     }

     .mobile-nav-toggle span {
         display: block;
         width: 100%;
         height: 3px;
         background-color: var(--text-dark);
         border-radius: 3px;
         transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
         transform-origin: left center;
     }

     /* Transform Hamburger to X when open */
     .mobile-nav-toggle.active span:nth-child(1) {
         transform: rotate(45deg) translate(2px, -2px);
     }

     .mobile-nav-toggle.active span:nth-child(2) {
         width: 0%;
         opacity: 0;
     }

     .mobile-nav-toggle.active span:nth-child(3) {
         transform: rotate(-45deg) translate(2px, 2px);
     }

     .mobile-nav-overlay {
         position: fixed;
         inset: 0;
         background: rgba(0, 0, 0, 0.4);
         backdrop-filter: blur(4px);
         opacity: 0;
         visibility: hidden;
         z-index: 998;
         transition: all 0.4s ease;
     }

     .mobile-nav-overlay.active {
         opacity: 1;
         visibility: visible;
     }

     .navbar {
         flex-direction: row !important;
         justify-content: space-between;
         padding: 0 24px;
         height: 70px;
     }

     .logo img {
         height: 60px;
     }

     /* Slide-out Drawer Panel */
     .nav-links {
         position: fixed;
         top: 0;
         right: -100%;
         width: 300px;
         height: 100vh;
         background: rgba(254, 252, 249, 0.98);
         backdrop-filter: blur(25px);
         -webkit-backdrop-filter: blur(25px);
         box-shadow: -10px 0 35px rgba(62, 52, 40, 0.15);
         display: flex;
         flex-direction: column;
         justify-content: flex-start;
         align-items: stretch;
         padding: 100px 30px 40px;
         gap: 15px;
         transition: right 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
         z-index: 999;
         overflow-y: auto;
         border-left: 1px solid var(--border-light);
     }

     .nav-links.active {
         right: 0;
     }

     .nav-links li {
         width: 100%;
     }

     .nav-links .nav-quote-btn {
         margin-top: 15px;
     }

     .nav-links .quote-btn {
         display: block !important;
         text-align: center;
         width: 100% !important;
         box-sizing: border-box;
         border-bottom: none !important;
     }


     .nav-links a {
         display: block;
         width: 100%;
         padding: 12px 15px;
         font-size: 16px;
         border-radius: 8px;
         color: var(--text-dark);
         border-bottom: 1px solid rgba(62, 52, 40, 0.05);
         font-family: var(--font-body);
         font-weight: 500;
         transition: all 0.3s;
     }

     .nav-links a::after {
         display: none;
         /* Hide desktop hover line */
     }

     .nav-links a:hover {
         background: var(--secondary-bg);
         color: var(--gold);
         padding-left: 20px;
     }

     /* Mobile Dropdown styling inside drawer */
     .dropdown-menu {
         position: static !important;
         opacity: 1 !important;
         visibility: visible !important;
         transform: none !important;
         box-shadow: none !important;
         border: none !important;
         width: 100% !important;
         max-height: 0;
         padding: 0 !important;
         overflow-y: hidden;
         background: rgba(0, 0, 0, 0.02) !important;
         border-radius: 8px;
         transition: max-height 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
     }

     .dropdown.expanded .dropdown-menu {
         max-height: 380px;
         padding: 5px 0 !important;
         overflow-y: auto;
         margin-top: 5px;
         border: 1px solid var(--border-light) !important;
     }

     .dropdown-menu a {
         padding: 10px 25px !important;
         font-size: 14px;
         border-bottom: none;
         border-left: 2px solid transparent;
     }

     .dropdown-menu a:hover {
         padding-left: 30px !important;
         background: var(--secondary-bg) !important;
     }

     .dropdown>a {
         display: flex;
         justify-content: space-between;
         align-items: center;
     }

     .dropdown>a i {
         font-size: 12px;
         transition: transform 0.3s;
     }

     .dropdown.expanded>a i {
         transform: rotate(180deg);
         color: var(--gold);
     }

     .menu-card {
         min-width: 50%;
     }

     .rk-hero-content {
         left: 0;
         margin: 0 20px;
         top: 50%;
         transform: translateY(-50%);
         width: calc(100% - 40px);
         max-width: 465px;
     }

     .rk-hero-title span {
         font-size: 40px;
     }

     .experience-badge {
         width: 100px;
         height: 100px;
         font-size: 12px;
         top: -10px;
         right: -10px;
     }

     .chef-small {
         width: 70px;
         height: 70px;
         left: -10px;
     }

     .v-sustain-image,
     .v-sustain-textbox {
         width: 100%;
     }

     .rk9-container {
         flex-direction: column;
     }
 }

 @media (max-width: 768px) {
     .menu-card {
         min-width: 100%;
     }

     .stat-box {
         min-width: 100%;
     }

     .stats-container {
         flex-direction: column;
         align-items: center;
     }

     .about-container {
         flex-direction: column;
     }

     .about-left {
         margin-bottom: 40px;
     }

     .image-wrapper {
         max-width: 100%;
         height: auto;
         aspect-ratio: 4/5;
     }

     .experience-badge {
         width: 80px;
         height: 80px;
         font-size: 10px;
         padding: 10px;
     }

     .cocoa-range-card {
         height: 350px;
     }

     .rk-testimonial-heading {
         font-size: 32px;
     }

     .cocoa-sec-top {
         flex-direction: column;
         align-items: center;
         text-align: center;
     }

     .cocoa-sec-image img {
         width: 100%;
         max-width: 280px;
     }

     .cocoa-sec-buttons {
         justify-content: center;
     }

     .v-collection-title-wrap h2 {
         font-size: 24px;
     }

     .v-line {
         width: 40px;
     }

     .rk3-delivery-container {
         flex-direction: column;
     }

     .rk4-grid {
         grid-template-columns: 1fr;
         gap: 40px;
     }

     .footer-container {
         grid-template-columns: 1fr;
         gap: 30px;
     }

     .footer-col {
         display: flex;
         flex-direction: column;
         align-items: center;
         text-align: center;
     }

     .footer-col>div {
         justify-content: center !important;
     }

     .contact-details li {
         justify-content: center;
     }


     .footer-bottom {
         flex-direction: column;
         align-items: center;
         text-align: center;
     }

     .social i {
         margin: 0 10px;
     }

     .custom-cursor {
         display: none;
     }

     body {
         cursor: auto;
     }
 }

 @media (max-width: 480px) {
     .rk-hero-content {
         padding: 20px 15px;
     }

     .rk-hero-title span {
         font-size: 28px;
     }

     .rk-btn {
         padding: 8px 16px;
         font-size: 14px;
     }

     .marquee-item {
         font-size: 12px;
         padding: 8px 16px;
     }

     .stat-number {
         font-size: 36px;
     }

     .cocoa-range-overlay h3 {
         font-size: 22px;
     }

     .v-sustain-textbox {
         padding: 30px 20px;
     }

     .v-collection-btn {
         font-size: 12px;
         padding: 6px 12px;
         white-space: normal;
         text-align: center;
         width: 90%;
     }
 }

 /* ===== UTILITY / SCROLL INDICATOR ===== */
 .scroll-indicator {
     position: absolute;
     bottom: 30px;
     left: 50%;
     transform: translateX(-50%);
     color: white;
     font-size: 14px;
     background: rgba(0, 0, 0, 0.5);
     padding: 8px 16px;
     border-radius: 40px;
     z-index: 3;
     pointer-events: none;
     font-weight: 500;
 }

 /* ===== ANIMATION HELPERS ===== */
 img {
     max-width: 100%;
     height: auto;
 }

 /* ==========================================================================
   ===== PRODUCTS CATALOG PAGE STYLES (products.php) =====
   ========================================================================== */

 .products-hero {
     padding: 160px 20px 80px;
     background: linear-gradient(rgba(30, 10, 8, 0.75), rgba(30, 10, 8, 0.75)), url('img/baner/banner1.avif') center/cover no-repeat;
     color: #fff;
     text-align: center;
 }

 .products-hero h1 {
     font-family: var(--font-heading);
     font-size: clamp(32px, 5vw, 48px);
     color: var(--gold-soft);
     margin-bottom: 15px;
     letter-spacing: 1px;
 }

 .products-hero p {
     font-size: clamp(14px, 2vw, 18px);
     font-weight: 300;
     color: #f3ede2;
     max-width: 800px;
     margin: 0 auto;
 }

 .catalog-section {
     padding: 60px 5%;
     background: var(--primary-light);
 }

 .controls-container {
     max-width: 1200px;
     margin: 0 auto 40px;
     display: flex;
     justify-content: space-between;
     align-items: center;
     gap: 20px;
     flex-wrap: wrap;
 }

 .search-box-wrapper {
     position: relative;
     flex: 1;
     min-width: 300px;
 }

 .search-box-wrapper i {
     position: absolute;
     left: 18px;
     top: 50%;
     transform: translateY(-50%);
     color: var(--text-muted);
     font-size: 16px;
 }

 .search-box-wrapper input {
     width: 100%;
     padding: 14px 20px 14px 48px;
     border-radius: 30px;
     border: 1px solid var(--border-light);
     background: var(--card-bg);
     font-family: var(--font-body);
     font-size: 14px;
     color: var(--text-dark);
     box-shadow: var(--shadow-sm);
     transition: all 0.3s ease;
 }

 .search-box-wrapper input:focus {
     outline: none;
     border-color: var(--gold);
     box-shadow: 0 0 0 4px rgba(139, 107, 74, 0.15);
 }

 .filter-tabs {
     display: flex;
     gap: 10px;
     flex-wrap: wrap;
 }

 .filter-btn {
     padding: 10px 22px;
     border-radius: 30px;
     border: 1px solid var(--border-light);
     background: var(--card-bg);
     color: var(--text-dark);
     font-family: var(--font-body);
     font-size: 14px;
     font-weight: 500;
     cursor: pointer;
     box-shadow: var(--shadow-sm);
     transition: all 0.3s ease;
 }

 .filter-btn:hover {
     border-color: var(--gold-soft);
     background: var(--secondary-bg);
 }

 .filter-btn.active {
     background: var(--gold);
     color: white;
     border-color: var(--gold);
 }

 .products-grid {
     max-width: 1200px;
     margin: 0 auto;
     display: grid;
     grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
     gap: 30px;
 }

 .catalog-card {
     background: white;
     border-radius: 20px;
     overflow: hidden;
     box-shadow: var(--shadow-sm);
     border: 1px solid var(--border-light);
     transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
     display: flex;
     flex-direction: column;
     height: 100%;
 }

 .catalog-card:hover {
     transform: translateY(-8px);
     box-shadow: var(--shadow-md);
     border-color: var(--gold-soft);
 }

 .catalog-card-img {
     height: 200px;
     overflow: hidden;
     display: flex;
     align-items: center;
     justify-content: center;
     background: #faf8f5;
     border-bottom: 1px solid var(--border-light);
     position: relative;
 }

 .catalog-card-img img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     transition: transform 0.5s ease;
 }

 .catalog-card:hover .catalog-card-img img {
     transform: scale(1.08);
 }

 .catalog-card-category {
     position: absolute;
     top: 15px;
     left: 15px;
     background: rgba(139, 107, 74, 0.9);
     color: white;
     padding: 4px 12px;
     border-radius: 20px;
     font-size: 11px;
     text-transform: uppercase;
     letter-spacing: 1px;
     font-weight: 600;
 }

 .catalog-card-body {
     padding: 24px;
     display: flex;
     flex-direction: column;
     flex-grow: 1;
 }

 .catalog-card-body h3 {
     font-family: var(--font-heading);
     color: var(--text-dark);
     font-size: 20px;
     margin-bottom: 10px;
     line-height: 1.4;
 }

 .catalog-card-body p {
     color: #666;
     font-size: 13.5px;
     line-height: 1.6;
     margin-bottom: 20px;
     flex-grow: 1;
     display: -webkit-box;
     -webkit-line-clamp: 3;
     -webkit-box-orient: vertical;
     overflow: hidden;
 }

 .catalog-card-btn {
     display: block;
     text-decoration: none;
     background: transparent;
     color: var(--gold);
     border: 2px solid var(--gold);
     padding: 10px 20px;
     border-radius: 30px;
     font-weight: 600;
     font-size: 13.5px;
     cursor: pointer;
     transition: all 0.3s;
     text-align: center;
     width: 100%;
     box-sizing: border-box;
 }

 .catalog-card-btn:hover {
     background: var(--gold) !important;
     color: white !important;
 }

 .no-results-msg {
     grid-column: 1 / -1;
     text-align: center;
     padding: 60px 20px;
     display: none;
 }

 .no-results-msg p {
     color: var(--text-muted);
     font-size: 16px;
     margin-top: 10px;
 }

 .modal-overlay {
     position: fixed;
     inset: 0;
     background: rgba(30, 10, 8, 0.6);
     backdrop-filter: blur(8px);
     -webkit-backdrop-filter: blur(8px);
     z-index: 2000;
     display: flex;
     justify-content: center;
     align-items: center;
     padding: 20px;
     opacity: 0;
     visibility: hidden;
     transition: all 0.4s ease;
 }

 .modal-overlay.active {
     opacity: 1;
     visibility: visible;
 }

 .modal-container {
     background: white;
     width: 100%;
     max-width: 900px;
     max-height: 90vh;
     border-radius: 24px;
     overflow-y: auto;
     box-shadow: 0 25px 60px rgba(62, 52, 40, 0.2);
     border: 1px solid var(--border-light);
     position: relative;
     transform: translateY(30px);
     transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
 }

 .modal-overlay.active .modal-container {
     transform: translateY(0);
 }

 .modal-close-btn {
     position: absolute;
     top: 20px;
     right: 20px;
     width: 40px;
     height: 40px;
     border-radius: 50%;
     background: var(--secondary-bg);
     display: flex;
     align-items: center;
     justify-content: center;
     cursor: pointer;
     z-index: 10;
     color: var(--text-dark);
     transition: all 0.3s;
     border: 1px solid var(--border-light);
 }

 .modal-close-btn:hover {
     background: var(--gold);
     color: white;
     border-color: var(--gold);
     transform: rotate(90deg);
 }

 .modal-grid {
     display: grid;
     grid-template-columns: 1fr 1.5fr;
     min-height: 500px;
 }

 @media (max-width: 768px) {
     .modal-grid {
         grid-template-columns: 1fr;
     }
 }

 .modal-img-sidebar {
     background: #faf8f5;
     display: flex;
     align-items: center;
     justify-content: center;
     padding: 40px;
     border-right: 1px solid var(--border-light);
 }

 @media (max-width: 768px) {
     .modal-img-sidebar {
         border-right: none;
         border-bottom: 1px solid var(--border-light);
         padding: 30px;
     }
 }

 .modal-img-sidebar img {
     max-width: 200px;
     border-radius: 50%;
     border: 6px solid var(--gold-soft);
     box-shadow: var(--shadow-sm);
     aspect-ratio: 1/1;
     object-fit: cover;
     width: 100%;
 }

 .modal-content-area {
     padding: 40px;
 }

 @media (max-width: 480px) {
     .modal-content-area {
         padding: 24px 15px;
     }
 }

 .modal-category {
     color: var(--gold);
     text-transform: uppercase;
     font-weight: 600;
     font-size: 11px;
     letter-spacing: 2px;
     margin-bottom: 8px;
     display: block;
 }

 .modal-title {
     font-family: var(--font-heading);
     font-size: 28px;
     color: var(--text-dark);
     margin-bottom: 15px;
     line-height: 1.3;
 }

 .modal-desc {
     color: #555;
     font-size: 14px;
     line-height: 1.7;
     margin-bottom: 30px;
 }

 .modal-section-title {
     font-size: 15px;
     color: var(--text-dark);
     border-bottom: 2px solid var(--gold-soft);
     padding-bottom: 6px;
     margin-bottom: 15px;
     font-weight: 600;
     text-transform: uppercase;
     letter-spacing: 1px;
 }

 .modal-specs-list {
     list-style: none;
     padding: 0;
     margin-bottom: 30px;
 }

 .modal-specs-list li {
     display: flex;
     justify-content: space-between;
     padding: 10px 0;
     border-bottom: 1px dashed var(--border-light);
     font-size: 14.5px;
 }

 .modal-specs-list li strong {
     color: var(--text-dark);
 }

 .modal-specs-list li span {
     color: #666;
 }

 .modal-apps-list {
     list-style: none;
     padding: 0;
     margin-bottom: 35px;
     display: flex;
     flex-direction: column;
     gap: 8px;
 }

 .modal-apps-list li {
     font-size: 14.5px;
     color: var(--text-dark);
     display: flex;
     align-items: center;
 }

 .modal-apps-list li i {
     color: var(--gold);
     margin-right: 8px;
 }

 .modal-enquiry-box {
     background: var(--secondary-bg);
     padding: 24px;
     border-radius: 16px;
     border: 1px solid var(--border-light);
 }

 .modal-enquiry-box h4 {
     font-family: var(--font-heading);
     color: var(--text-dark);
     margin-bottom: 15px;
     font-size: 18px;
 }

 .enquiry-form-grid {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 15px;
 }

 @media (max-width: 480px) {
     .enquiry-form-grid {
         grid-template-columns: 1fr;
     }
 }

 .enquiry-form-grid input,
 .enquiry-form-grid textarea {
     width: 100%;
     padding: 12px 16px;
     border-radius: 8px;
     border: 1px solid var(--border-light);
     background: white;
     font-family: var(--font-body);
     font-size: 13.5px;
     color: var(--text-dark);
     transition: all 0.3s;
 }

 .enquiry-form-grid input:focus,
 .enquiry-form-grid textarea:focus {
     outline: none;
     border-color: var(--gold);
     box-shadow: 0 0 0 3px rgba(139, 107, 74, 0.1);
 }

 .modal-submit-btn {
     background: var(--gold);
     color: white;
     border: none;
     padding: 12px;
     border-radius: 30px;
     font-weight: 600;
     font-size: 14px;
     cursor: pointer;
     transition: all 0.3s;
     grid-column: 1 / -1;
 }

 .modal-submit-btn:hover {
     background: #5C3A21;
     transform: translateY(-1px);
 }


 /* ==========================================================================
   ===== MARKET SOLUTIONS PAGES STYLES (bakery.php, beverages.php, etc.) =====
   ========================================================================== */

 .product-hero {
     padding: 180px 20px 100px;
     background: linear-gradient(rgba(30, 10, 8, 0.75), rgba(30, 10, 8, 0.75)), url('img/baner/banner2.avif') center/cover no-repeat;
     color: #fff;
     text-align: center;
 }

 .product-hero h1 {
     font-family: var(--font-heading);
     font-size: clamp(32px, 5vw, 48px);
     color: var(--gold-soft);
     margin-bottom: 15px;
     letter-spacing: 1px;
 }

 .product-hero .tagline {
     font-size: clamp(14px, 2vw, 18px);
     font-weight: 300;
     color: #f3ede2;
     max-width: 800px;
     margin: 0 auto;
 }

 .product-hero-content {
     max-width: 800px;
     margin: 0 auto;
 }

 .product-content-section {
     padding: 80px 5%;
     background: var(--primary-light);
 }

 .product-container {
     max-width: 1200px;
     margin: 0 auto 60px;
     display: flex;
     align-items: center;
     gap: 60px;
 }

 @media (max-width: 992px) {
     .product-container {
         flex-direction: column;
         gap: 40px;
     }
 }

 .product-text {
     flex: 1.2;
 }

 .product-text h2 {
     font-family: var(--font-heading);
     font-size: 32px;
     color: var(--gold);
     margin-bottom: 20px;
 }

 .product-text p {
     color: #555;
     font-size: 15px;
     line-height: 1.8;
     margin-bottom: 15px;
 }

 .product-image {
     flex: 0.8;
     text-align: center;
     width: 100%;
 }

 .product-image img {
     border-radius: 24px;
     box-shadow: var(--shadow-md);
     max-width: 100%;
     height: auto;
     border: 1px solid var(--border-light);
 }

 .features-grid {
     max-width: 1200px;
     margin: 0 auto;
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
     gap: 30px;
 }

 .feature-box {
     background: white;
     padding: 40px 30px;
     border-radius: 20px;
     border: 1px solid var(--border-light);
     box-shadow: var(--shadow-sm);
     text-align: center;
     transition: all 0.3s;
 }

 .feature-box:hover {
     transform: translateY(-5px);
     box-shadow: var(--shadow-md);
     border-color: var(--gold-soft);
 }

 .feature-box i {
     font-size: 40px;
     color: var(--gold);
     margin-bottom: 20px;
 }

 .feature-box h4 {
     font-family: var(--font-heading);
     font-size: 18px;
     color: var(--text-dark);
     margin-bottom: 12px;
 }

 .feature-box p {
     color: #666;
     font-size: 13.5px;
     line-height: 1.6;
 }

 .solution-finder-section {
     padding: 80px 5%;
     background: var(--secondary-bg);
     border-top: 1px solid var(--border-light);
     border-bottom: 1px solid var(--border-light);
 }

 .section-title {
     text-align: center;
     font-family: var(--font-heading);
     font-size: 32px;
     color: var(--gold);
     margin-bottom: 10px;
 }

 .section-subtitle {
     text-align: center;
     color: #666;
     font-size: 15px;
     margin-bottom: 45px;
 }

 .solution-finder-container {
     max-width: 1100px;
     margin: 0 auto;
     display: grid;
     grid-template-columns: 0.8fr 1.2fr;
     gap: 40px;
     background: white;
     border-radius: 24px;
     overflow: hidden;
     box-shadow: var(--shadow-sm);
     border: 1px solid var(--border-light);
 }

 @media (max-width: 768px) {
     .solution-finder-container {
         grid-template-columns: 1fr;
     }
 }

 .challenges-panel {
     background: #faf8f5;
     padding: 30px;
     display: flex;
     flex-direction: column;
     gap: 15px;
     border-right: 1px solid var(--border-light);
 }

 @media (max-width: 768px) {
     .challenges-panel {
         border-right: none;
         border-bottom: 1px solid var(--border-light);
     }
 }

 .challenge-option {
     display: flex;
     align-items: center;
     gap: 15px;
     padding: 16px 20px;
     border-radius: 12px;
     background: white;
     border: 1px solid var(--border-light);
     cursor: pointer;
     font-weight: 500;
     color: var(--text-dark);
     font-size: 14.5px;
     transition: all 0.3s;
 }

 .challenge-option:hover {
     border-color: var(--gold-soft);
     background: var(--secondary-bg);
 }

 .challenge-option.active {
     background: var(--gold);
     color: white;
     border-color: var(--gold);
 }

 .challenge-option i {
     font-size: 18px;
     color: var(--gold);
     transition: color 0.3s;
 }

 .challenge-option.active i {
     color: white;
 }

 .solution-panel {
     padding: 40px;
     display: flex;
     align-items: center;
 }

 @media (max-width: 480px) {
     .solution-panel {
         padding: 30px 20px;
     }
 }

 .solution-card {
     display: none;
     width: 100%;
 }

 .solution-card.active {
     display: block;
     animation: fadeIn 0.5s ease-in-out;
 }

 @keyframes fadeIn {
     from {
         opacity: 0;
         transform: translateY(10px);
     }

     to {
         opacity: 1;
         transform: translateY(0);
     }
 }

 .solution-card h3 {
     font-family: var(--font-heading);
     font-size: 22px;
     color: var(--text-dark);
     margin-bottom: 20px;
     line-height: 1.4;
 }

 .solution-products {
     display: flex;
     gap: 10px;
     flex-wrap: wrap;
     margin-bottom: 20px;
 }

 .sol-badge {
     padding: 6px 14px;
     border-radius: 20px;
     background: var(--gold-light);
     color: var(--gold);
     border: 1px solid var(--border-light);
     font-size: 12.5px;
     font-weight: 600;
     text-decoration: none;
     transition: all 0.3s;
 }

 .sol-badge:hover {
     background: var(--gold);
     color: white;
     border-color: var(--gold);
 }

 .solution-card p {
     color: #555;
     font-size: 14.5px;
     line-height: 1.7;
     margin-bottom: 30px;
 }

 .applications-section {
     padding: 80px 5%;
     background: var(--primary-light);
 }

 .app-grid {
     max-width: 1200px;
     margin: 0 auto;
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
     gap: 30px;
 }

 .app-card {
     background: white;
     padding: 30px;
     border-radius: 20px;
     border: 1px solid var(--border-light);
     box-shadow: var(--shadow-sm);
     display: flex;
     transition: all 0.3s;
 }

 .app-card:hover {
     transform: translateY(-4px);
     box-shadow: var(--shadow-md);
     border-color: var(--gold-soft);
 }

 .app-content h4 {
     font-family: var(--font-heading);
     font-size: 18px;
     color: var(--text-dark);
     margin-bottom: 10px;
     display: flex;
     align-items: center;
     gap: 10px;
 }

 .app-content h4 i {
     color: var(--gold);
     font-size: 18px;
 }

 .app-content p {
     color: #666;
     font-size: 13.5px;
     line-height: 1.6;
 }

 .cta-section {
     padding: 80px 20px;
     background: linear-gradient(rgba(30, 10, 8, 0.8), rgba(30, 10, 8, 0.8)), url('img/logo/bc.avif') center/cover fixed no-repeat;
     text-align: center;
     color: white;
 }

 .cta-section h2 {
     font-family: var(--font-heading);
     font-size: clamp(28px, 4vw, 40px);
     color: var(--gold-soft) !important;
     margin-bottom: 20px;
 }


 /* ==========================================================================
   ===== ABOUT US PAGE STYLES (about.php) =====
   ========================================================================== */

 .about-hero {
     padding: 180px 20px 100px;
     background: linear-gradient(rgba(30, 10, 8, 0.75), rgba(30, 10, 8, 0.75)), url('img/baner/banner2.avif') center/cover no-repeat;
     color: #fff;
     text-align: center;
 }

 .about-hero h1 {
     font-family: var(--font-heading);
     font-size: clamp(32px, 5vw, 48px);
     color: var(--gold-soft);
     margin-bottom: 15px;
     letter-spacing: 1px;
 }

 .about-hero p {
     font-size: clamp(14px, 2vw, 18px);
     font-weight: 300;
     color: #f3ede2;
     max-width: 800px;
     margin: 0 auto;
 }

 .about-hero-content {
     max-width: 800px;
     margin: 0 auto;
 }

 .about-content-section {
     padding: 80px 5%;
     background: var(--primary-light);
 }

 .about-intro-grid {
     max-width: 1200px;
     margin: 0 auto 60px;
     display: flex;
     align-items: center;
     gap: 60px;
 }

 @media (max-width: 992px) {
     .about-intro-grid {
         flex-direction: column;
         gap: 40px;
     }
 }

 .about-intro-text {
     flex: 1.2;
 }

 .about-intro-text h2 {
     font-family: var(--font-heading);
     font-size: 32px;
     color: var(--gold);
     margin-bottom: 20px;
 }

 .about-intro-text p {
     color: #555;
     font-size: 15px;
     line-height: 1.8;
     margin-bottom: 15px;
 }

 .about-intro-img {
     flex: 0.8;
     text-align: center;
     width: 100%;
 }

 .about-intro-img img {
     border-radius: 24px;
     box-shadow: var(--shadow-md);
     width: 100%;
     max-height: 400px;
     object-fit: cover;
     border: 1px solid var(--border-light);
 }

 .about-stats {
     max-width: 1200px;
     margin: 0 auto;
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
     gap: 30px;
 }

 .about-stat-box {
     background: white;
     padding: 30px 20px;
     border-radius: 20px;
     border: 1px solid var(--border-light);
     box-shadow: var(--shadow-sm);
     text-align: center;
     transition: all 0.3s;
 }

 .about-stat-box:hover {
     transform: translateY(-5px);
     box-shadow: var(--shadow-md);
     border-color: var(--gold-soft);
 }

 .about-stat-number {
     font-size: 40px;
     font-weight: 800;
     color: var(--gold);
     font-family: var(--font-heading);
     margin-bottom: 8px;
 }

 .about-stat-label {
     font-size: 13px;
     text-transform: uppercase;
     letter-spacing: 1px;
     color: var(--text-dark);
     font-weight: 600;
 }

 .vision-mission-section {
     padding: 80px 5%;
     background: var(--secondary-bg);
     border-top: 1px solid var(--border-light);
     border-bottom: 1px solid var(--border-light);
 }

 .vm-grid {
     max-width: 1200px;
     margin: 0 auto;
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
     gap: 40px;
 }

 .vm-card {
     background: white;
     padding: 40px 30px;
     border-radius: 24px;
     border: 1px solid var(--border-light);
     box-shadow: var(--shadow-sm);
     text-align: center;
     transition: all 0.3s;
 }

 .vm-card:hover {
     transform: translateY(-6px);
     box-shadow: var(--shadow-md);
     border-color: var(--gold-soft);
 }

 .vm-card i {
     font-size: 44px;
     color: var(--gold);
     margin-bottom: 20px;
 }

 .vm-card h3 {
     font-family: var(--font-heading);
     font-size: 22px;
     color: var(--text-dark);
     margin-bottom: 15px;
 }

 .vm-card p {
     color: #666;
     font-size: 14px;
     line-height: 1.7;
 }

 .values-section {
     padding: 80px 5%;
     background: var(--primary-light);
 }

 .about-subheading {
     text-align: center;
     font-family: var(--font-heading);
     font-size: 32px;
     color: var(--gold);
     margin-bottom: 10px;
 }

 .about-subtitle {
     text-align: center;
     color: #666;
     font-size: 15px;
     margin-bottom: 45px;
 }

 .values-grid {
     max-width: 1200px;
     margin: 0 auto;
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
     gap: 30px;
 }

 .value-item {
     background: white;
     padding: 30px;
     border-radius: 20px;
     border: 1px solid var(--border-light);
     box-shadow: var(--shadow-sm);
     transition: all 0.3s;
 }

 .value-item:hover {
     transform: translateY(-4px);
     box-shadow: var(--shadow-md);
     border-color: var(--gold-soft);
 }

 .value-item h4 {
     font-family: var(--font-heading);
     font-size: 18px;
     color: var(--text-dark);
     margin-bottom: 12px;
     display: flex;
     align-items: center;
     gap: 10px;
 }

 .value-item h4 i {
     color: var(--gold);
     font-size: 18px;
 }

 .value-item p {
     color: #666;
     font-size: 13.5px;
     line-height: 1.6;
 }


 /* ==========================================================================
   ===== CONTACT US PAGE STYLES (contact.php) =====
   ========================================================================== */

 .contact-hero {
     padding: 180px 20px 100px;
     background: linear-gradient(rgba(30, 10, 8, 0.75), rgba(30, 10, 8, 0.75)), url('img/baner/banner1.avif') center/cover no-repeat;
     color: #fff;
     text-align: center;
 }

 .contact-hero h1 {
     font-family: var(--font-heading);
     font-size: clamp(32px, 5vw, 48px);
     color: var(--gold-soft);
     margin-bottom: 15px;
     letter-spacing: 1px;
 }

 .contact-hero p {
     font-size: clamp(14px, 2vw, 18px);
     font-weight: 300;
     color: #f3ede2;
     max-width: 800px;
     margin: 0 auto;
 }

 .contact-hero-content {
     max-width: 800px;
     margin: 0 auto;
 }

 .contact-layout-section {
     padding: 80px 5%;
     background: var(--primary-light);
 }

 .contact-grid {
     max-width: 1200px;
     margin: 0 auto;
     display: grid;
     grid-template-columns: 1fr 1.2fr;
     gap: 60px;
 }

 @media (max-width: 992px) {
     .contact-grid {
         grid-template-columns: 1fr;
         gap: 50px;
     }
 }

 .info-panel {
     display: flex;
     flex-direction: column;
     gap: 24px;
 }

 .info-card {
     background: white;
     padding: 24px;
     border-radius: 16px;
     border: 1px solid var(--border-light);
     box-shadow: var(--shadow-sm);
     display: flex;
     gap: 20px;
     align-items: flex-start;
     transition: all 0.3s;
 }

 .info-card:hover {
     border-color: var(--gold-soft);
     box-shadow: var(--shadow-md);
 }

 .info-card>i {
     font-size: 24px;
     color: var(--gold);
     background: var(--secondary-bg);
     width: 48px;
     height: 48px;
     border-radius: 12px;
     display: flex;
     align-items: center;
     justify-content: center;
     flex-shrink: 0;
     border: 1px solid var(--border-light);
 }

 .info-card-content h3 {
     font-family: var(--font-heading);
     font-size: 18px;
     color: var(--text-dark);
     margin-bottom: 8px;
 }

 .info-card-content p {
     color: #555;
     font-size: 14.5px;
     line-height: 1.6;
     margin: 0 0 5px;
 }

 .info-card-content p a {
     color: var(--gold);
     text-decoration: none;
     font-weight: 500;
 }

 .info-card-content p a:hover {
     text-decoration: underline;
 }

 .office-split {
     display: flex;
     gap: 30px;
     width: 100%;
 }

 .office-divider {
     width: 1px;
     background-color: var(--border-light);
     margin: 10px 0;
 }

 @media (max-width: 480px) {
     .office-split {
         flex-direction: column;
         gap: 15px;
     }

     .office-divider {
         width: 100%;
         height: 1px;
         margin: 5px 0;
     }
 }

 .dept-list {
     list-style: none;
     padding: 0;
     margin: 10px 0 0;
     display: flex;
     flex-direction: column;
     gap: 6px;
 }

 .dept-list li {
     font-size: 13.5px;
     color: #555;
 }

 .map-wrapper {
     height: 200px;
     border-radius: 16px;
     overflow: hidden;
     border: 1px solid var(--border-light);
     background: #faf8f5;
     display: flex;
     align-items: center;
     justify-content: center;
     box-shadow: var(--shadow-sm);
     background: url('img/baner/map.avif') center/cover no-repeat;
     position: relative;
 }

 .map-wrapper::before {
     content: '';
     position: absolute;
     inset: 0;
     background: rgba(254, 252, 249, 0.85);
 }

 .map-placeholder-text {
     position: relative;
     z-index: 2;
     text-align: center;
     padding: 20px;
     color: var(--text-dark);
 }

 .map-placeholder-text i {
     font-size: 30px;
     color: var(--gold);
     margin-bottom: 10px;
 }

 .map-placeholder-text p {
     font-size: 12.5px;
     line-height: 1.5;
     margin: 0;
 }

 .form-panel {
     background: white;
     padding: 40px;
     border-radius: 24px;
     border: 1px solid var(--border-light);
     box-shadow: var(--shadow-sm);
 }

 @media (max-width: 480px) {
     .form-panel {
         padding: 30px 20px;
     }
 }

 .form-panel h2 {
     font-family: var(--font-heading);
     font-size: 26px;
     color: var(--text-dark);
     margin-bottom: 25px;
 }

 .contact-form-grid {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 20px;
 }

 @media (max-width: 576px) {
     .contact-form-grid {
         grid-template-columns: 1fr;
     }
 }

 .contact-form-grid label {
     display: block;
     font-size: 13px;
     font-weight: 500;
     color: var(--text-dark);
     margin-bottom: 6px;
 }

 .contact-form-grid input,
 .contact-form-grid select,
 .contact-form-grid textarea {
     width: 100%;
     padding: 12px 16px;
     border-radius: 8px;
     border: 1px solid var(--border-light);
     background: var(--secondary-bg);
     font-family: var(--font-body);
     font-size: 14px;
     color: var(--text-dark);
     transition: all 0.3s;
 }

 .contact-form-grid input:focus,
 .contact-form-grid select:focus,
 .contact-form-grid textarea:focus {
     outline: none;
     border-color: var(--gold);
     background: white;
     box-shadow: 0 0 0 3px rgba(139, 107, 74, 0.1);
 }

 .form-group-full {
     grid-column: 1 / -1;
 }

 .submit-btn-wrapper {
     grid-column: 1 / -1;
     margin-top: 10px;
 }

 .contact-submit-btn {
     background: var(--gold);
     color: white;
     border: none;
     padding: 14px 30px;
     border-radius: 30px;
     font-weight: 600;
     font-size: 15px;
     cursor: pointer;
     transition: all 0.3s;
     width: 100%;
     box-shadow: 0 4px 15px rgba(139, 107, 74, 0.2);
 }

 .contact-submit-btn:hover {
     background: #5C3A21;
     transform: translateY(-1px);
 }

 /* User requested headings to match .about-right h2 font and size */
 .menu-heading h2,
 .rk9-heading,
 .rk9-heading-new,
 .bldl-ts-heading,
 .v-sustain-heading,
 .rk4-contact-box h2 {
     font-family: var(--font-heading) !important;
     font-size: clamp(32px, 5vw, 48px) !important;
 }

 /* User requested unified body text size */
 .about-right p,
 .about-points li,
 .rk9-intro,
 .rk9-list li,
 .rk9-desc,
 .v-sustain-textbox p,
 .v-sustain-textbox li,
 .rk9-list-premium span {
     font-size: 18px !important;
 }

 /* ===== PREMIUM INDUSTRIES SECTION V2 ===== */
 .rk9-industries-section.premium-bg {
     position: relative;
     background: #fdfaf6;
     overflow: hidden;
     padding: 100px 5%;
 }

 .rk9-bg-shapes {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     z-index: 0;
     pointer-events: none;
     overflow: hidden;
 }

 .rk9-bg-shapes .shape {
     position: absolute;
     background: #f4ebd8;
     border-radius: 50%;
     opacity: 0.6;
 }

 .rk9-bg-shapes .shape-1 {
     width: 600px;
     height: 600px;
     top: -200px;
     right: -100px;
     filter: blur(80px);
 }

 .rk9-bg-shapes .shape-2 {
     width: 400px;
     height: 400px;
     bottom: -150px;
     left: -100px;
     filter: blur(60px);
 }

 .rk9-container {
     position: relative;
     z-index: 1;
 }

 .rk9-decor-top {
     display: flex;
     align-items: center;
     gap: 15px;
     margin-bottom: 15px;
     color: #9d6b33;
 }

 .rk9-decor-top i {
     font-size: 24px;
 }

 .rk9-decor-top .decor-line {
     height: 2px;
     width: 60px;
     background: #9d6b33;
     position: relative;
 }

 .rk9-decor-top .decor-line::after {
     content: '';
     position: absolute;
     right: -8px;
     top: -2px;
     width: 6px;
     height: 6px;
     border-radius: 50%;
     background: #9d6b33;
 }

 .rk9-heading-new {
     font-family: var(--font-heading);
     font-size: clamp(40px, 6vw, 65px);
     font-weight: 800;
     line-height: 1.1;
     margin-bottom: 20px;
     letter-spacing: 1px;
 }

 .rk9-heading-new .dark-text {
     color: #3e2723;
 }

 .rk9-heading-new .gold-text {
     color: #b5823c;
 }

 .rk9-list-premium {
     list-style: none;
     padding: 0;
     margin: 10px 0 30px 0;
 }

 .rk9-list-premium li {
     display: flex;
     align-items: center;
     gap: 12px;
     padding: 4px 0;
     border-bottom: 1px solid rgba(0, 0, 0, 0.06);
 }

 .rk9-list-premium li:last-child {
     border-bottom: none;
 }

 .rk9-list-premium .icon-circle {
     width: 35px;
     height: 35px;
     background: #8b6b4a;
     color: white;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 14px;
     flex-shrink: 0;
     box-shadow: 0 4px 10px rgba(139, 107, 74, 0.3);
 }

 .rk9-list-premium span {
     color: #444;
     font-weight: 500;
 }

 .rk9-image-wrapper img {
     border: 12px solid white;
     border-radius: 40px;
     box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
 }

 /* ===== HELP SECTION & MODAL ===== */
 .help-section {
     padding: 60px 5%;
     background: var(--primary-light);
     text-align: center;
 }

 .help-container {
     max-width: 1000px;
     margin: 0 auto;
 }

 .help-heading {
     font-family: var(--font-heading);
     font-size: 32px;
     font-weight: 700;
     color: var(--text-dark) !important;
     margin-bottom: 20px;
 }

 .help-subheading {
     font-size: 18px;
     color: var(--text-dark);
     margin-bottom: 20px;
     text-align: left;
     margin-left: 10px;
 }

 .help-options {
     display: flex;
     flex-wrap: wrap;
     gap: 15px;
     justify-content: center;
 }

 .help-option-btn {
     background: white;
     border: 1px solid var(--border-light);
     padding: 16px 32px;
     border-radius: 6px;
     font-size: 18px;
     color: var(--text-dark);
     cursor: pointer;
     transition: all 0.3s ease;
     box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
 }

 .help-option-btn:hover {
     transform: translateY(-3px);
     box-shadow: 0 10px 20px rgba(184, 134, 11, 0.3);
     background: var(--gold);
     color: white;
     border-color: var(--gold);
 }

 /* Modal Styles */
 .help-modal {
     display: none;
     position: fixed;
     z-index: 2000;
     left: 0;
     top: 0;
     width: 100%;
     height: 100%;
     background-color: rgba(0, 0, 0, 0.6);
     backdrop-filter: blur(5px);
     align-items: center;
     justify-content: center;
     opacity: 0;
     transition: opacity 0.3s ease;
 }

 .help-modal.active {
     display: flex;
     opacity: 1;
 }

 .help-modal-content {
     background-color: white;
     border-radius: 8px;
     max-width: 900px;
     width: 90%;
     position: relative;
     box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
     overflow: hidden;
     transform: translateY(20px);
     transition: transform 0.3s ease;
 }

 .help-modal.active .help-modal-content {
     transform: translateY(0);
 }

 .help-modal-close {
     position: absolute;
     right: 20px;
     top: 15px;
     font-size: 28px;
     font-weight: bold;
     color: #999;
     cursor: pointer;
     z-index: 10;
     transition: color 0.3s ease;
 }

 .help-modal-close:hover {
     color: var(--text-dark);
 }

 .help-modal-body {
     display: flex;
     flex-wrap: wrap;
 }

 .help-modal-left {
     flex: 1;
     min-width: 300px;
     background: #F8F4EE;
     display: flex;
     align-items: center;
     justify-content: center;
     padding: 40px;
 }

 .help-modal-left img {
     max-width: 100%;
     height: auto;
     object-fit: contain;
 }

 .help-modal-right {
     flex: 1.2;
     min-width: 350px;
     padding: 40px;
     background: white;
 }

 .help-form-group {
     margin-bottom: 20px;
 }

 .help-form-group input,
 .help-form-group textarea {
     width: 100%;
     padding: 12px 15px;
     border: 1px solid var(--border-light);
     border-radius: 6px;
     font-family: var(--font-body);
     font-size: 15px;
     background: #fff;
     transition: border-color 0.3s ease, box-shadow 0.3s ease;
 }

 .help-form-group input:focus,
 .help-form-group textarea:focus {
     outline: none;
     border-color: var(--gold);
     box-shadow: 0 0 0 3px rgba(139, 107, 74, 0.1);
 }

 .help-submit-btn {
     width: 100%;
     padding: 14px;
     background: #876E54;
     color: white;
     border: none;
     border-radius: 6px;
     font-size: 16px;
     font-weight: 600;
     cursor: pointer;
     transition: background 0.3s ease;
 }

 .help-submit-btn:hover {
     background: #6D5640;
 }

 @media (max-width: 768px) {
     .help-modal-body {
         flex-direction: column;
     }

     .help-modal-left {
         display: none;
     }
 }

 /* ===== WHATSAPP SECTION ===== */
 .whatsapp-section {
     padding: 60px 5%;
     background: #fff;
     margin-bottom: 20px;
 }

 .whatsapp-container {
     max-width: 1000px;
     margin: 0 auto;
     display: flex;
     align-items: center;
     justify-content: space-between;
     gap: 40px;
     flex-wrap: wrap;
 }

 .whatsapp-content {
     flex: 1;
     min-width: 300px;
 }

 .whatsapp-content h2 {
     font-size: 32px;
     font-family: var(--font-heading);
     margin-bottom: 20px;
     color: var(--text-dark);
 }

 .whatsapp-content p {
     font-size: 15px;
     color: var(--text-dark);
     margin-bottom: 30px;
     line-height: 1.6;
 }

 .whatsapp-btn {
     display: inline-block;
     background: #f17a21;
     color: #fff;
     padding: 12px 30px;
     border-radius: 4px;
     font-weight: 600;
     text-decoration: none;
     font-size: 14px;
     text-transform: uppercase;
     transition: background 0.3s;
 }

 .whatsapp-btn:hover {
     background: #d86815;
     color: #fff;
 }

 .whatsapp-qr {
     background: #fff;
     padding: 15px;
     border-radius: 10px;
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
 }

 .whatsapp-qr img {
     max-width: 150px;
     display: block;
 }

 /* ===== CATALOG SIDEBAR LAYOUT ===== */
 .catalog-layout {
     max-width: 1400px;
     margin: 0 auto;
     display: grid;
     grid-template-columns: 300px 1fr;
     gap: 40px;
 }

 .catalog-sidebar {
     background: white;
     border-radius: 12px;
     box-shadow: var(--shadow-md);
     border: 1px solid var(--border-light);
     height: fit-content;
     position: sticky;
     top: 120px;
     overflow: hidden;
 }

 .sidebar-menu {
     list-style: none;
     padding: 0;
     margin: 0;
 }

 .sidebar-item {
     padding: 20px 25px;
     font-family: var(--font-heading);
     font-size: 16px;
     font-weight: 500;
     color: var(--text-dark);
     display: flex;
     justify-content: space-between;
     align-items: center;
     cursor: pointer;
     border-bottom: 1px solid var(--border-light);
     transition: all 0.3s ease;
 }

 .sidebar-item:last-child {
     border-bottom: none;
 }

 .sidebar-item i {
     font-size: 12px;
     color: var(--text-muted);
     transition: transform 0.3s ease;
 }

 .sidebar-item:hover,
 .sidebar-item.active {
     background: #fafafa;
     color: var(--gold);
 }

 .sidebar-item:hover i,
 .sidebar-item.active i {
     color: var(--gold);
     transform: translateX(4px);
 }

 @media (max-width: 991px) {
     .catalog-layout {
         grid-template-columns: 1fr;
     }

     .catalog-sidebar {
         position: relative;
         top: 0;
     }
 }


 .btn-outline-gold {
     background: transparent;
     color: var(--gold);
     border: 2px solid var(--gold);
     padding: 12px 32px;
     border-radius: 50px;
     text-decoration: none;
     font-weight: 500;
     display: inline-block;
     transition: all 0.3s ease;
     text-align: center;
 }

 .btn-outline-gold:hover {
     background: var(--gold) !important;
     color: white !important;
     transform: translateY(-3px);
     box-shadow: 0 10px 20px rgba(184, 134, 11, 0.3);
 }