:root {
            --primary: #0B1F3A;
            --secondary: #C9A14A;
            --white: #FFFFFF;
            --light-grey: #F5F7FA;
            --dark-grey: #333333;
            --shadow: 0 4px 20px rgba(11, 31, 58, 0.08);
            --transition: all 0.3s ease;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        html {
            scroll-behavior: smooth;
        }
        
        body {
            font-family: 'Inter', sans-serif;
            color: var(--dark-grey);
            line-height: 1.6;
            background: var(--white);
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
            color: var(--primary);
        }
        
        a {
            text-decoration: none;
            color: inherit;
            transition: var(--transition);
        }
        
        ul {
            list-style: none;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }
        
        /* Header */
        header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: var(--white);
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            z-index: 1000;
        }
        
        .header-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 16px 0;
        }
        
        .logo {
            font-family: 'Poppins', sans-serif;
            font-size: 18px;
            font-weight: 700;
            color: var(--primary);
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .logo img {
            height: 12px;
            width: auto;
        }

        .logo-text {
            display: none;
            font-size: 0;
        }

        .logo-text span {
            font-size: 18px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        @media (min-width: 769px) {
            .logo-text {
                display: block;
            }
        }

        /* Hamburger Menu */

        .middle-nav-image {
            flex: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 35px;
        }

        .middle-nav-image img {
            max-width: 100%;
            height: auto;
            max-height: 35px;
        }

        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            padding: 8px;
            z-index: 1001;
        }

        .hamburger span {
            width: 25px;
            height: 3px;
            background: var(--primary);
            border-radius: 2px;
            transition: var(--transition);
        }

        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 6px);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -6px);
        }

        @media (max-width: 768px) {
            .middle-nav-image {
                display: flex;
            }

            .hamburger {
                display: flex;
            }

            #navbar {
                position: fixed;
                top: 0;
                right: 0;
                transform: translateX(100%);
                width: 280px;
                height: 100vh;
                background: var(--light-grey);
                padding: 100px 32px 32px;
                box-shadow: -4px 0 30px rgba(0,0,0,0.15);
                transition: transform 0.4s ease;
                z-index: 1002;
                display: block;
            }

            #navbar.active {
                transform: translateX(0);
            }

            nav ul {
                flex-direction: column;
                gap: 24px;
            }

            nav a {
                font-size: 18px;
            }

            .header-cta {
                display: none;
            }

            .mobile-cta {
                display: block;
                margin-top: 24px;
                background: var(--secondary);
                color: var(--primary);
                padding: 14px 24px;
                border-radius: 8px;
                font-weight: 600;
                text-align: center;
            }
        }

        .mobile-cta {
            display: none;
        }

        /* WhatsApp Button */
        .whatsapp-btn {
            display: none;
            margin-top: 24px;
            background: #25D366;
            color: white;
            padding: 14px 24px;
            border-radius: 8px;
            font-weight: 600;
            text-align: center;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

        .whatsapp-btn:hover {
            background: #20BD5A;
            transform: translateY(-2px);
        }

        @media (max-width: 768px) {
            .whatsapp-btn {
                display: flex;
            }
        }
        
        nav ul {
            display: flex;
            gap: 32px;
        }
        
        nav a {
            font-weight: 500;
            font-size: 15px;
            color: var(--primary);
            position: relative;
        }
        
        nav a::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--secondary);
            transition: var(--transition);
        }
        
        nav a:hover::after {
            width: 100%;
        }
        
        nav a:hover {
            color: var(--secondary);
        }
        
        .header-cta {
            background: var(--secondary);
            color: var(--primary);
            padding: 12px 24px;
            border-radius: 8px;
            font-weight: 600;
            font-size: 14px;
        }
        
        .header-cta:hover {
            background: #b8923f;
            transform: translateY(-2px);
        }
        
        /* Page Hero */
        .page-hero {
            padding: 160px 0 80px;
            background: linear-gradient(135deg, var(--primary) 0%, #152a4d 100%);
            text-align: center;
        }
        
        .page-hero h1 {
            font-size: 48px;
            color: var(--white);
            margin-bottom: 16px;
        }
        
        .page-hero p {
            font-size: 18px;
            color: rgba(255,255,255,0.8);
            max-width: 600px;
            margin: 0 auto;
        }
        
        /* About Section */
        .about-section {
            padding: 100px 0;
            background: var(--white);
        }
        
        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }
        
        .about-content h2 {
            font-size: 36px;
            margin-bottom: 24px;
        }
        
        .about-content p {
            font-size: 17px;
            color: #555;
            margin-bottom: 20px;
        }
        
        .about-visual {
            position: relative;
        }
        
        .about-image {
            width: 100%;
            height: 450px;
            background: linear-gradient(135deg, var(--primary) 0%, #1a3a5c 100%);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .about-image svg {
            width: 120px;
            height: 120px;
            stroke: var(--secondary);
            opacity: 0.5;
        }
        
        /* Mission Vision */
        .mission-vision {
            padding: 100px 0;
            background: var(--light-grey);
        }
        
        .mv-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
        }
        
        .mv-card {
            background: var(--white);
            padding: 48px;
            border-radius: 16px;
            box-shadow: var(--shadow);
        }
        
        .mv-card h3 {
            font-size: 28px;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 16px;
        }
        
        .mv-card h3 svg {
            width: 40px;
            height: 40px;
            stroke: var(--secondary);
        }
        
        .mv-card p {
            font-size: 17px;
            color: #555;
            line-height: 1.8;
        }
        
        /* Values */
        .values-section {
            padding: 100px 0;
            background: var(--white);
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .section-header h2 {
            font-size: 40px;
            margin-bottom: 16px;
        }
        
        .section-header p {
            font-size: 18px;
            color: #666;
            max-width: 600px;
            margin: 0 auto;
        }
        
        .values-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
        }
        
        .value-item {
            text-align: center;
            padding: 40px 24px;
            background: var(--light-grey);
            border-radius: 12px;
            transition: var(--transition);
        }
        
        .value-item:hover {
            transform: translateY(-8px);
            background: var(--primary);
        }
        
        .value-item:hover h4,
        .value-item:hover p {
            color: var(--white);
        }
        
        .value-item svg {
            width: 48px;
            height: 48px;
            stroke: var(--secondary);
            margin-bottom: 20px;
        }
        
        .value-item h4 {
            font-size: 18px;
            margin-bottom: 12px;
        }
        
        .value-item p {
            font-size: 15px;
            color: #666;
        }
        
        /* Team */
        .team-section {
            padding: 100px 0;
            background: var(--light-grey);
        }
        
        .team-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
        }
        
        .team-card {
            background: var(--white);
            border-radius: 16px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }
        
        .team-card:hover {
            transform: translateY(-8px);
        }
        
        .team-image {
            height: 280px;
            background: linear-gradient(135deg, var(--primary) 0%, #1a3a5c 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }
        
        .team-image picture,
        .team-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }
        
        .team-image svg {
            width: 80px;
            height: 80px;
            stroke: var(--secondary);
            opacity: 0.5;
        }
        
        .team-info {
            padding: 24px;
        }
        
        .team-info h4 {
            font-size: 20px;
            margin-bottom: 4px;
        }
        
        .team-info .role {
            color: var(--secondary);
            font-weight: 600;
            font-size: 14px;
            margin-bottom: 12px;
        }
        
        .team-info p {
            font-size: 15px;
            color: #666;
        }
        
        /* CTA */
        .cta-section {
            padding: 100px 0;
            background: var(--primary);
            text-align: center;
        }
        
        .cta-section h2 {
            font-size: 40px;
            color: var(--white);
            margin-bottom: 16px;
        }
        
        .cta-section p {
            font-size: 18px;
            color: rgba(255,255,255,0.7);
            margin-bottom: 32px;
        }
        
        .btn-primary {
            background: var(--secondary);
            color: var(--primary);
            padding: 16px 32px;
            border-radius: 8px;
            font-weight: 600;
            font-size: 15px;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        
        .btn-primary:hover {
            background: #b8923f;
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(201, 161, 74, 0.3);
        }
        
        /* Footer */
        footer {
            background: var(--primary);
            padding: 80px 0 30px;
            color: var(--white);
        }
        
        .footer-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: start;
            margin-bottom: 40px;
        }
        
        .footer-brand .logo {
            color: var(--white);
            margin-bottom: 20px;
        }
        
        .footer-brand p {
            color: rgba(255,255,255,0.7);
            font-size: 15px;
            margin-bottom: 24px;
        }
        
        .footer-social {
            display: flex;
            gap: 12px;
        }
        
        .footer-social a {
            width: 40px;
            height: 40px;
            background: rgba(255,255,255,0.1);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .footer-social a:hover {
            background: var(--secondary);
        }
        
        .footer-social svg {
            width: 18px;
            height: 18px;
            stroke: var(--white);
        }
        
        .footer-column h4 {
            color: var(--white);
            font-size: 16px;
            margin-bottom: 24px;
        }

        .footer-right {
            display: block;
        }

        .footer-right-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 24px;
        }
        
        .footer-column ul li {
            margin-bottom: 12px;
        }
        
        .footer-column a {
            color: rgba(255,255,255,0.7);
            font-size: 15px;
        }
        
        .footer-column a:hover {
            color: var(--secondary);
        }
        
        .footer-contact li {
            display: flex;
            align-items: center;
            gap: 12px;
            color: rgba(255,255,255,0.7);
            font-size: 15px;
            margin-bottom: 16px;
        }
        
        .footer-contact svg {
            width: 18px;
            height: 18px;
            stroke: var(--secondary);
            flex-shrink: 0;
        }
        
        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 30px;
            text-align: center;
        }
        
        .footer-bottom p {
            color: rgba(255,255,255,0.5);
            font-size: 14px;
        }
        
        /* Responsive */
        @media (max-width: 1024px) {
            .about-grid,
            .mv-grid {
                grid-template-columns: 1fr;
            }
            
            .values-grid,
            .team-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 768px) {
            nav {
                display: none;
            }
            
            .page-hero h1 {
                font-size: 36px;
            }
            
            .values-grid,
            .team-grid {
                grid-template-columns: 1fr;
            }
            
            .footer-grid {
                grid-template-columns: 1fr;
            }
            
            .section-header h2 {
                font-size: 32px;
            }
        }

:root {
            --primary: #0B1F3A;
            --secondary: #C9A14A;
            --white: #FFFFFF;
            --light-grey: #F5F7FA;
            --dark-grey: #333333;
            --shadow: 0 4px 20px rgba(11, 31, 58, 0.08);
            --transition: all 0.3s ease;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        html {
            scroll-behavior: smooth;
        }
        
        body {
            font-family: 'Inter', sans-serif;
            color: var(--dark-grey);
            line-height: 1.6;
            background: var(--white);
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
            color: var(--primary);
        }
        
        a {
            text-decoration: none;
            color: inherit;
            transition: var(--transition);
        }
        
        ul {
            list-style: none;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }
        
        /* Header */
        header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: rgba(255,255,255,0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 20px rgba(0,0,0,0.08);
            z-index: 1000;
            padding: 12px 0;
        }
        
        .header-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-family: 'Poppins', sans-serif;
            font-size: 24px;
            font-weight: 700;
            color: var(--primary);
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .logo img {
            height: 65px;
            width: auto;
        }

        .logo-text {
            display: none;
        }

        @media (min-width: 769px) {
            .logo-text {
                display: block;
            }
        }

        /* Hamburger Menu */
        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            padding: 8px;
            z-index: 1001;
        }

        .hamburger span {
            width: 25px;
            height: 3px;
            background: var(--primary);
            border-radius: 2px;
            transition: var(--transition);
        }

        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 6px);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -6px);
        }

        @media (max-width: 768px) {
            .hamburger {
                display: flex;
            }

            #navbar {
                position: fixed;
                top: 0;
                right: 0;
                transform: translateX(100%);
                width: 280px;
                height: 100vh;
                background: var(--light-grey);
                padding: 100px 32px 32px;
                box-shadow: -4px 0 30px rgba(0,0,0,0.15);
                transition: transform 0.4s ease;
                overflow-y: auto;
                z-index: 1002;
                display: block;
            }

            #navbar.active {
                transform: translateX(0);
            }

            nav ul {
                flex-direction: column;
                gap: 24px;
            }

            nav a {
                font-size: 18px;
            }

            .header-cta {
                display: none;
            }

            .mobile-cta {
                display: block;
                margin-top: 24px;
                background: var(--secondary);
                color: var(--primary);
                padding: 14px 24px;
                border-radius: 8px;
                font-weight: 600;
                text-align: center;
            }

            .whatsapp-btn {
                display: flex;
                margin-top: 24px;
                background: #25D366;
                color: white;
                padding: 14px 24px;
                border-radius: 8px;
                font-weight: 600;
                text-align: center;
                align-items: center;
                justify-content: center;
                gap: 8px;
            }
        }

        .mobile-cta, .whatsapp-btn {
            display: none;
        }
        
        nav ul {
            display: flex;
            gap: 32px;
        }
        
        nav a {
            font-weight: 500;
            font-size: 15px;
            color: var(--primary);
            position: relative;
        }
        
        nav a::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--secondary);
            transition: var(--transition);
        }
        
        nav a:hover::after {
            width: 100%;
        }
        
        nav a:hover {
            color: var(--secondary);
        }
        
        .header-cta {
            background: var(--secondary);
            color: var(--primary);
            padding: 12px 24px;
            border-radius: 8px;
            font-weight: 600;
            font-size: 14px;
        }
        
        .header-cta:hover {
            background: #b8923f;
            transform: translateY(-2px);
        }
        
        /* Page Hero */
        .page-hero {
            background: linear-gradient(135deg, var(--primary) 0%, #152a4d 50%, #0d1a30 100%);
            background-size: 400% 400%;
            animation: gradientShift 15s ease infinite;
            padding: 140px 0 80px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        @keyframes gradientShift {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }
        
        .page-hero h1 {
            color: var(--white);
            font-size: 48px;
            margin-bottom: 16px;
        }
        
        .page-hero p {
            color: rgba(255,255,255,0.8);
            font-size: 18px;
            max-width: 600px;
            margin: 0 auto;
        }
        
        /* Blog Section */
        .blog-section {
            padding: 80px 0;
        }
        
        .blog-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }
        
        .blog-card {
            background: var(--white);
            border-radius: 12px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }
        
        .blog-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 40px rgba(11, 31, 58, 0.15);
        }
        
        .blog-image {
            height: 200px;
            background: linear-gradient(135deg, var(--primary) 0%, #152a4d 100%);
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .blog-image i {
            font-size: 48px;
            color: rgba(255,255,255,0.3);
        }
        
        .blog-content {
            padding: 24px;
        }
        
        .blog-category {
            display: inline-block;
            background: var(--secondary);
            color: var(--primary);
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
            margin-bottom: 12px;
        }
        
        .blog-content h3 {
            font-size: 20px;
            margin-bottom: 12px;
            line-height: 1.4;
        }
        
        .blog-content p {
            color: var(--dark-grey);
            font-size: 14px;
            margin-bottom: 16px;
        }
        
        .blog-meta {
            display: flex;
            gap: 16px;
            color: rgba(0,0,0,0.5);
            font-size: 13px;
        }
        
        .blog-meta span {
            display: flex;
            align-items: center;
            gap: 6px;
        }
        
        .blog-link {
            color: var(--secondary);
            font-weight: 600;
            font-size: 14px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .blog-link:hover {
            gap: 12px;
        }

        .blog-image {
            height: 240px;
            background: linear-gradient(135deg, var(--primary) 0%, #152a4d 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            background-size: cover;
            background-position: center;
            position: relative;
        }

        .blog-image::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(0,0,0,0.18), rgba(0,0,0,0.45));
        }

        .blog-image i {
            font-size: 48px;
            color: rgba(255,255,255,0.3);
            position: relative;
            z-index: 1;
        }

        .blog-image.image-procurement { background-image: url('images/strategic-sourcing.jpg'); }
        .blog-image.image-logistics { background-image: url('images/logistics-management.jpg'); }
        .blog-image.image-marketing { background-image: url('images/digital-marketing.jpg'); }
        .blog-image.image-brand { background-image: url('images/brand-strategy.jpg'); }
        .blog-image.image-supplier { background-image: url('images/supplier-relationship-management.jpg'); }
        .blog-image.image-growth { background-image: url('images/product-promotion.jpg'); }
        .blog-image.image-supply-chain { background-image: url('images/supply-chain-consulting.jpg'); }
        .blog-image.image-seo-windows { background-image: url('images/digital-marketing.jpg'); }
        .blog-image.image-search-visibility { background-image: url('images/supply-chain-consulting.jpg'); }
        .blog-image.image-local-seo { background-image: url('images/procurement-advisory.jpg'); }
        .blog-image.image-content-leads { background-image: url('images/product-promotion.jpg'); }
        .blog-image.image-csr { background-image: url('images/corporate-social-responsibility.jpg'); }
        .blog-image.image-warehouse { background-image: url('images/warehousing-distribution.jpg'); }

        .article-detail {
            padding: 80px 0;
        }

        .article-intro {
            max-width: 900px;
            margin: 0 auto 40px;
        }

        .article-hero {
            width: 100%;
            border-radius: 20px;
            box-shadow: var(--shadow);
            margin-bottom: 32px;
            display: block;
        }

        .article-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            color: rgba(0,0,0,0.6);
            font-size: 14px;
            margin-bottom: 24px;
        }

        .article-meta span {
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }

        .article-back-link {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            margin-top: 32px;
            color: var(--secondary);
            font-weight: 600;
        }

        .article-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 32px;
        }

        .article-tags span {
            background: rgba(201,161,74,0.16);
            color: var(--primary);
            padding: 8px 14px;
            border-radius: 999px;
            font-size: 13px;
        }

        /* Newsletter */
        .newsletter {
            background: var(--light-grey);
            padding: 80px 0;
            text-align: center;
        }
        
        .newsletter h2 {
            font-size: 36px;
            margin-bottom: 16px;
        }
        
        .newsletter p {
            color: var(--dark-grey);
            margin-bottom: 32px;
            max-width: 500px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .newsletter-form {
            display: flex;
            gap: 12px;
            max-width: 500px;
            margin: 0 auto;
        }
        
        .newsletter-form input {
            flex: 1;
            padding: 16px 20px;
            border: 2px solid transparent;
            border-radius: 8px;
            font-size: 16px;
            outline: none;
            transition: var(--transition);
        }
        
        .newsletter-form input:focus {
            border-color: var(--secondary);
        }
        
        .newsletter-form button {
            background: var(--secondary);
            color: var(--primary);
            border: none;
            padding: 16px 32px;
            border-radius: 8px;
            font-weight: 600;
            font-size: 16px;
            cursor: pointer;
            transition: var(--transition);
        }
        
        .newsletter-form button:hover {
            background: #b8923f;
        }
        
        /* Footer */
        footer {
            background: var(--primary);
            padding: 60px 0 24px;
            color: var(--white);
        }
        
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 40px;
        }
        
        .footer-brand h3 {
            color: var(--white);
            font-size: 24px;
            margin-bottom: 16px;
        }
        
        .footer-brand p {
            color: rgba(255,255,255,0.7);
            margin-bottom: 24px;
        }
        
        .footer-links h4 {
            color: var(--white);
            font-size: 16px;
            margin-bottom: 20px;
        }
        
        .footer-links ul li {
            margin-bottom: 12px;
        }
        
        .footer-links a {
            color: rgba(255,255,255,0.7);
            font-size: 14px;
        }
        
        .footer-links a:hover {
            color: var(--secondary);
        }
        
        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 24px;
            text-align: center;
        }
        
        .footer-bottom p {
            color: rgba(255,255,255,0.5);
            font-size: 14px;
        }
        
        @media (max-width: 768px) {
            .footer-grid {
                grid-template-columns: 1fr;
                text-align: center;
            }
            
            .page-hero h1 {
                font-size: 32px;
            }
            
            .blog-grid {
                grid-template-columns: 1fr;
            }
            
            .newsletter-form {
                flex-direction: column;
            }
            
            nav ul {
                gap: 20px;
            }
        }

:root {
            --primary: #0B1F3A;
            --secondary: #C9A14A;
            --white: #FFFFFF;
            --light-grey: #F5F7FA;
            --dark-grey: #333333;
            --shadow: 0 4px 20px rgba(11, 31, 58, 0.08);
            --transition: all 0.3s ease;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        html {
            scroll-behavior: smooth;
        }
        
        body {
            font-family: 'Inter', sans-serif;
            color: var(--dark-grey);
            line-height: 1.6;
            background: var(--white);
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
            color: var(--primary);
        }
        
        a {
            text-decoration: none;
            color: inherit;
            transition: var(--transition);
        }
        
        ul {
            list-style: none;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }
        
        /* Header */
        header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: var(--white);
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            z-index: 1000;
        }
        
        .header-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 16px 0;
        }
        
        .logo {
            font-family: 'Poppins', sans-serif;
            font-size: 24px;
            font-weight: 700;
            color: var(--primary);
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .logo img {
            height: 65px;
            width: auto;
        }

        .logo-text {
            display: none;
        }

        @media (min-width: 769px) {
            .logo-text {
                display: block;
            }
        }

        /* Hamburger Menu */
        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            padding: 8px;
            z-index: 1001;
        }

        .hamburger span {
            width: 25px;
            height: 3px;
            background: var(--primary);
            border-radius: 2px;
            transition: var(--transition);
        }

        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 6px);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -6px);
        }

        @media (max-width: 768px) {
            .hamburger {
                display: flex;
            }

            #navbar {
                position: fixed;
                top: 0;
                right: 0;
                transform: translateX(100%);
                width: 280px;
                height: 100vh;
                background: var(--light-grey);
                padding: 100px 32px 32px;
                box-shadow: -4px 0 30px rgba(0,0,0,0.15);
                transition: transform 0.4s ease;
                z-index: 1002;
                display: block;
            }

            #navbar.active {
                transform: translateX(0);
            }

            nav ul {
                flex-direction: column;
                gap: 24px;
            }

            nav a {
                font-size: 18px;
            }

            .header-cta {
                display: none;
            }

            .mobile-cta {
                display: block;
                margin-top: 24px;
                background: var(--secondary);
                color: var(--primary);
                padding: 14px 24px;
                border-radius: 8px;
                font-weight: 600;
                text-align: center;
            }
        }

        .mobile-cta {
            display: none;
        }

        /* WhatsApp Button */
        .whatsapp-btn {
            display: none;
            margin-top: 24px;
            background: #25D366;
            color: white;
            padding: 14px 24px;
            border-radius: 8px;
            font-weight: 600;
            text-align: center;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

        .whatsapp-btn:hover {
            background: #20BD5A;
            transform: translateY(-2px);
        }

        @media (max-width: 768px) {
            .whatsapp-btn {
                display: flex;
            }
        }
        
        nav ul {
            display: flex;
            gap: 32px;
        }
        
        nav a {
            font-weight: 500;
            font-size: 15px;
            color: var(--primary);
            position: relative;
        }
        
        nav a::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--secondary);
            transition: var(--transition);
        }
        
        nav a:hover::after {
            width: 100%;
        }
        
        nav a:hover {
            color: var(--secondary);
        }
        
        .header-cta {
            background: var(--secondary);
            color: var(--primary);
            padding: 12px 24px;
            border-radius: 8px;
            font-weight: 600;
            font-size: 14px;
        }
        
        .header-cta:hover {
            background: #b8923f;
            transform: translateY(-2px);
        }
        
        /* Page Hero */
        .page-hero {
            padding: 160px 0 80px;
            background: linear-gradient(135deg, var(--primary) 0%, #152a4d 100%);
            text-align: center;
        }
        
        .page-hero h1 {
            font-size: 48px;
            color: var(--white);
            margin-bottom: 16px;
        }
        
        .page-hero p {
            font-size: 18px;
            color: rgba(255,255,255,0.8);
            max-width: 600px;
            margin: 0 auto;
        }
        
        /* Contact Section */
        .contact-section {
            padding: 100px 0;
            background: var(--white);
        }
        
        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1.5fr;
            gap: 60px;
        }
        
        .contact-info h2 {
            font-size: 36px;
            margin-bottom: 20px;
        }
        
        .contact-info > p {
            font-size: 17px;
            color: #555;
            margin-bottom: 40px;
        }
        
        .contact-details {
            margin-bottom: 40px;
        }
        
        .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 16px;
            margin-bottom: 24px;
        }
        
        .contact-icon {
            width: 48px;
            height: 48px;
            background: var(--light-grey);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        
        .contact-icon svg {
            width: 20px;
            height: 20px;
            stroke: var(--secondary);
        }
        
        .contact-item h4 {
            font-size: 16px;
            margin-bottom: 4px;
        }
        
        .contact-item p {
            font-size: 15px;
            color: #555;
        }
        
        .social-links h4 {
            font-size: 18px;
            margin-bottom: 16px;
        }
        
        .social-icons {
            display: flex;
            gap: 12px;
        }
        
        .social-icons a {
            width: 48px;
            height: 48px;
            background: var(--light-grey);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .social-icons a:hover {
            background: var(--secondary);
        }
        
        .social-icons svg {
            width: 20px;
            height: 20px;
            stroke: var(--primary);
        }
        
        /* Form */
        .contact-form-wrapper {
            background: var(--light-grey);
            padding: 48px;
            border-radius: 16px;
        }
        
        .contact-form-wrapper h3 {
            font-size: 24px;
            margin-bottom: 8px;
        }
        
        .contact-form-wrapper > p {
            font-size: 15px;
            color: #666;
            margin-bottom: 32px;
        }
        
        .form-group {
            margin-bottom: 24px;
        }
        
        .form-group label {
            display: block;
            font-size: 14px;
            font-weight: 600;
            color: var(--primary);
            margin-bottom: 8px;
        }
        
        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 14px 16px;
            border: 1px solid #ddd;
            border-radius: 12px;
            font-family: 'Inter', sans-serif;
            font-size: 15px;
            transition: var(--transition);
            background: var(--white);
            color: var(--primary);
            box-shadow: inset 0 1px 2px rgba(0,0,0,0.04);
        }

        .form-group select {
            appearance: none;
            background-image:
                linear-gradient(45deg, transparent 50%, #0B1F3A 50%),
                linear-gradient(135deg, #0B1F3A 50%, transparent 50%);
            background-position: calc(100% - 18px) center, calc(100% - 12px) center;
            background-repeat: no-repeat;
            background-size: 8px 8px;
            padding-right: 44px;
        }
        
        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--secondary);
            box-shadow: 0 0 0 3px rgba(201, 161, 74, 0.1);
        }
        
        .form-group textarea {
            min-height: 150px;
            resize: vertical;
        }
        
        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
        }
        
        .btn-primary {
            background: var(--secondary);
            color: var(--primary);
            padding: 16px 32px;
            border-radius: 8px;
            font-weight: 600;
            font-size: 15px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            border: none;
            cursor: pointer;
            width: 100%;
            transition: var(--transition);
        }
        
        .btn-primary:hover {
            background: #b8923f;
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(201, 161, 74, 0.3);
        }

        .toast-container {
            position: fixed;
            bottom: 24px;
            right: 24px;
            display: grid;
            gap: 12px;
            z-index: 9999;
            max-width: 380px;
            width: calc(100% - 48px);
            pointer-events: none;
        }

        .toast {
            display: grid;
            grid-template-columns: 1fr auto;
            gap: 16px;
            align-items: center;
            padding: 16px 18px;
            border-radius: 16px;
            box-shadow: 0 20px 45px rgba(0, 0, 0, 0.18);
            color: #FFFFFF;
            background: linear-gradient(135deg, #0B1F3A 0%, #152A4D 100%);
            opacity: 0;
            transform: translateY(18px);
            transition: opacity 0.25s ease, transform 0.25s ease;
            pointer-events: auto;
        }

        .toast.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .toast.success {
            border-left: 4px solid #C9A14A;
        }

        .toast.error {
            background: linear-gradient(135deg, #7f2e2f 0%, #4f1b22 100%);
            border-left: 4px solid #ffbf66;
        }

        .toast-content {
            font-size: 14px;
            line-height: 1.5;
        }

        .toast-close {
            border: none;
            background: transparent;
            color: #ffffff;
            font-size: 18px;
            cursor: pointer;
            line-height: 1;
            padding: 0;
        }

        /* Map */
        .map-section {
            padding: 0 0 100px;
        }
        
        .map-container {
            width: 100%;
            height: 400px;
            background: linear-gradient(135deg, var(--primary) 0%, #1a3a5c 100%);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .map-container svg {
            width: 80px;
            height: 80px;
            stroke: var(--secondary);
            opacity: 0.5;
        }
        
        .map-container p {
            color: rgba(255,255,255,0.7);
            margin-top: 16px;
            font-size: 15px;
        }
        
        /* CTA */
        .cta-section {
            padding: 100px 0;
            background: var(--primary);
            text-align: center;
        }
        
        .cta-section h2 {
            font-size: 40px;
            color: var(--white);
            margin-bottom: 16px;
        }
        
        .cta-section p {
            font-size: 18px;
            color: rgba(255,255,255,0.7);
            margin-bottom: 32px;
        }
        
        /* Footer */
        footer {
            background: var(--primary);
            padding: 80px 0 30px;
            color: var(--white);
        }
        
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 60px;
            margin-bottom: 60px;
        }
        
        .footer-brand .logo {
            color: var(--white);
            margin-bottom: 20px;
        }
        
        .footer-brand p {
            color: rgba(255,255,255,0.7);
            font-size: 15px;
            margin-bottom: 24px;
        }
        
        .footer-social {
            display: flex;
            gap: 12px;
        }
        
        .footer-social a {
            width: 40px;
            height: 40px;
            background: rgba(255,255,255,0.1);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .footer-social a:hover {
            background: var(--secondary);
        }
        
        .footer-social svg {
            width: 18px;
            height: 18px;
            stroke: var(--white);
        }
        
        .footer-column h4 {
            color: var(--white);
            font-size: 16px;
            margin-bottom: 24px;
        }
        
        .footer-column ul li {
            margin-bottom: 12px;
        }
        
        .footer-column a {
            color: rgba(255,255,255,0.7);
            font-size: 15px;
        }
        
        .footer-column a:hover {
            color: var(--secondary);
        }
        
        .footer-contact li {
            display: flex;
            align-items: center;
            gap: 12px;
            color: rgba(255,255,255,0.7);
            font-size: 15px;
            margin-bottom: 16px;
        }
        
        .footer-contact svg {
            width: 18px;
            height: 18px;
            stroke: var(--secondary);
            flex-shrink: 0;
        }
        
        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 30px;
            text-align: center;
        }
        
        .footer-bottom p {
            color: rgba(255,255,255,0.5);
            font-size: 14px;
        }
        
        /* Responsive */
        @media (max-width: 1024px) {
            .contact-grid {
                grid-template-columns: 1fr;
            }
            
            .form-row {
                grid-template-columns: 1fr;
            }
            
            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 768px) {
            nav {
                display: none;
            }
            
            .page-hero h1 {
                font-size: 36px;
            }
            
            .contact-form-wrapper {
                padding: 32px 24px;
            }
            
            .footer-grid {
                grid-template-columns: 1fr;
            }
        }

:root {
            --primary: #0B1F3A;
            --secondary: #C9A14A;
            --white: #FFFFFF;
            --light-grey: #F5F7FA;
            --dark-grey: #333333;
            --shadow: 0 4px 20px rgba(11, 31, 58, 0.08);
            --transition: all 0.3s ease;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        html {
            scroll-behavior: smooth;
        }
        
        body {
            font-family: 'Inter', sans-serif;
            color: var(--dark-grey);
            line-height: 1.6;
            background: var(--white);
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
            color: var(--primary);
        }
        
        a {
            text-decoration: none;
            color: inherit;
            transition: var(--transition);
        }
        
        ul {
            list-style: none;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }
        
        /* Header */
        header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: rgba(255,255,255,0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 20px rgba(0,0,0,0.08);
            z-index: 1000;
            padding: 12px 0;
        }
        
        .header-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-family: 'Poppins', sans-serif;
            font-size: 24px;
            font-weight: 700;
            color: var(--primary);
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .logo img {
            height: 65px;
            width: auto;
        }

        .logo-text {
            display: none;
        }

        @media (min-width: 769px) {
            .logo-text {
                display: block;
            }
        }

        /* Hamburger Menu */
        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            padding: 8px;
            z-index: 1001;
        }

        .hamburger span {
            width: 25px;
            height: 3px;
            background: var(--primary);
            border-radius: 2px;
            transition: var(--transition);
        }

        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 6px);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -6px);
        }

        @media (max-width: 768px) {
            .hamburger {
                display: flex;
            }

            #navbar {
                position: fixed;
                top: 0;
                right: 0;
                transform: translateX(100%);
                width: 280px;
                height: 100vh;
                background: var(--light-grey);
                padding: 100px 32px 32px;
                box-shadow: -4px 0 30px rgba(0,0,0,0.15);
                transition: transform 0.4s ease;
                overflow-y: auto;
                z-index: 1002;
                display: block;
            }

            #navbar.active {
                transform: translateX(0);
            }

            nav ul {
                flex-direction: column;
                gap: 24px;
            }

            nav a {
                font-size: 18px;
            }

            .header-cta {
                display: none;
            }

            .mobile-cta {
                display: block;
                margin-top: 24px;
                background: var(--secondary);
                color: var(--primary);
                padding: 14px 24px;
                border-radius: 8px;
                font-weight: 600;
                text-align: center;
            }

            .whatsapp-btn {
                display: flex;
                margin-top: 24px;
                background: #25D366;
                color: white;
                padding: 14px 24px;
                border-radius: 8px;
                font-weight: 600;
                text-align: center;
                align-items: center;
                justify-content: center;
                gap: 8px;
            }
        }

        .mobile-cta, .whatsapp-btn {
            display: none;
        }
        
        nav ul {
            display: flex;
            gap: 32px;
        }
        
        nav a {
            font-weight: 500;
            font-size: 15px;
            color: var(--primary);
            position: relative;
        }
        
        nav a::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--secondary);
            transition: var(--transition);
        }
        
        nav a:hover::after {
            width: 100%;
        }
        
        nav a:hover {
            color: var(--secondary);
        }
        
        .header-cta {
            background: var(--secondary);
            color: var(--primary);
            padding: 12px 24px;
            border-radius: 8px;
            font-weight: 600;
            font-size: 14px;
        }
        
        .header-cta:hover {
            background: #b8923f;
            transform: translateY(-2px);
        }
        
        /* Page Hero */
        .page-hero {
            background: linear-gradient(135deg, var(--primary) 0%, #152a4d 50%, #0d1a30 100%);
            background-size: 400% 400%;
            animation: gradientShift 15s ease infinite;
            padding: 140px 0 80px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        @keyframes gradientShift {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }
        
        .page-hero h1 {
            color: var(--white);
            font-size: 48px;
            margin-bottom: 16px;
        }
        
        .page-hero p {
            color: rgba(255,255,255,0.8);
            font-size: 18px;
            max-width: 600px;
            margin: 0 auto;
        }
        
        /* FAQ Section */
        .faq-section {
            padding: 80px 0;
            background: var(--light-grey);
        }
        
        .faq-grid {
            display: grid;
            gap: 20px;
            max-width: 800px;
            margin: 0 auto;
        }
        
        .faq-item {
            background: var(--white);
            border-radius: 12px;
            overflow: hidden;
            box-shadow: var(--shadow);
        }
        
        .faq-question {
            padding: 24px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            font-size: 18px;
            color: var(--primary);
        }
        
        .faq-question i {
            transition: var(--transition);
            color: var(--secondary);
        }
        
        .faq-item.active .faq-question i {
            transform: rotate(180deg);
        }
        
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease, padding 0.4s ease;
        }
        
        .faq-item.active .faq-answer {
            max-height: 500px;
            padding: 0 24px 24px;
        }
        
        .faq-answer p {
            color: var(--dark-grey);
            line-height: 1.8;
        }
        
        /* Contact CTA */
        .contact-cta {
            padding: 80px 0;
            background: var(--primary);
            text-align: center;
        }
        
        .contact-cta h2 {
            color: var(--white);
            font-size: 36px;
            margin-bottom: 16px;
        }
        
        .contact-cta p {
            color: rgba(255,255,255,0.8);
            margin-bottom: 32px;
        }
        
        .contact-cta .btn-primary {
            display: inline-block;
            background: var(--secondary);
            color: var(--primary);
            padding: 16px 32px;
            border-radius: 8px;
            font-weight: 600;
            font-size: 16px;
        }
        
        .contact-cta .btn-primary:hover {
            background: #b8923f;
            transform: translateY(-2px);
        }
        
        /* Footer */
        footer {
            background: var(--primary);
            padding: 60px 0 24px;
            color: var(--white);
        }
        
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 40px;
        }
        
        .footer-brand h3 {
            color: var(--white);
            font-size: 24px;
            margin-bottom: 16px;
        }
        
        .footer-brand p {
            color: rgba(255,255,255,0.7);
            margin-bottom: 24px;
        }
        
        .footer-links h4 {
            color: var(--white);
            font-size: 16px;
            margin-bottom: 20px;
        }
        
        .footer-links ul li {
            margin-bottom: 12px;
        }
        
        .footer-links a {
            color: rgba(255,255,255,0.7);
            font-size: 14px;
        }
        
        .footer-links a:hover {
            color: var(--secondary);
        }
        
        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 24px;
            text-align: center;
        }
        
        .footer-bottom p {
            color: rgba(255,255,255,0.5);
            font-size: 14px;
        }
        
        @media (max-width: 768px) {
            .footer-grid {
                grid-template-columns: 1fr;
                text-align: center;
            }
            
            .page-hero h1 {
                font-size: 32px;
            }
            
            nav ul {
                gap: 20px;
            }
        }

:root {
            --primary: #0B1F3A;
            --secondary: #C9A14A;
            --white: #FFFFFF;
            --light-grey: #F5F7FA;
            --dark-grey: #333333;
            --shadow: 0 4px 20px rgba(11, 31, 58, 0.08);
            --transition: all 0.3s ease;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        html {
            scroll-behavior: smooth;
        }
        
        body {
            font-family: 'Inter', sans-serif;
            color: var(--dark-grey);
            line-height: 1.6;
            background: var(--white);
            overflow-x: hidden;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
            color: var(--primary);
        }
        
        a {
            text-decoration: none;
            color: inherit;
            transition: var(--transition);
        }
        
        ul {
            list-style: none;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }
        
        /* Header */
        header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: rgba(255,255,255,0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 20px rgba(0,0,0,0.08);
            z-index: 1000;
            padding: 12px 0;
            transition: var(--transition);
        }
        
        header.scrolled {
            padding: 8px 0;
        }
        
        .header-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-family: 'Poppins', sans-serif;
            font-size: 24px;
            font-weight: 700;
            color: var(--primary);
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .logo img {
            height: 65px;
            width: auto;
        }

        .logo-text {
            display: none;
        }

        @media (min-width: 769px) {
            .logo-text {
                display: block;
            }
        }

        /* Hamburger Menu */
        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            padding: 8px;
            z-index: 1001;
        }

        .hamburger span {
            width: 25px;
            height: 3px;
            background: var(--primary);
            border-radius: 2px;
            transition: var(--transition);
        }

        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 6px);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -6px);
        }

        @media (max-width: 768px) {
            .hamburger {
                display: flex;
            }

            #navbar {
                position: fixed;
                top: 0;
                right: 0;
                transform: translateX(100%);
                width: 280px;
                height: 100vh;
                background: var(--light-grey);
                padding: 100px 32px 32px;
                box-shadow: -4px 0 30px rgba(0,0,0,0.15);
                transition: transform 0.4s ease;
                z-index: 1002;
                display: block;
            }

            #navbar.active {
                transform: translateX(0);
            }

            nav ul {
                flex-direction: column;
                gap: 24px;
            }

            nav a {
                font-size: 18px;
            }

            .header-cta {
                display: none;
            }

            .mobile-cta {
                display: block;
                margin-top: 24px;
                background: var(--secondary);
                color: var(--primary);
                padding: 14px 24px;
                border-radius: 8px;
                font-weight: 600;
                text-align: center;
            }
        }

        .mobile-cta {
            display: none;
        }

        /* WhatsApp Button */
        .whatsapp-btn {
            display: none;
            margin-top: 24px;
            background: #25D366;
            color: white;
            padding: 14px 24px;
            border-radius: 8px;
            font-weight: 600;
            text-align: center;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

        .whatsapp-btn:hover {
            background: #20BD5A;
            transform: translateY(-2px);
        }

        @media (max-width: 768px) {
            .whatsapp-btn {
                display: flex;
            }
        }
        
        nav ul {
            display: flex;
            gap: 32px;
        }
        
        nav a {
            font-weight: 500;
            font-size: 15px;
            color: var(--primary);
            position: relative;
        }
        
        nav a::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--secondary);
            transition: var(--transition);
        }
        
        nav a:hover::after {
            width: 100%;
        }
        
        nav a:hover {
            color: var(--secondary);
        }
        
        .header-cta {
            background: var(--secondary);
            color: var(--primary);
            padding: 12px 24px;
            border-radius: 8px;
            font-weight: 600;
            font-size: 14px;
        }
        
        .header-cta:hover {
            background: #b8923f;
            transform: translateY(-2px);
        }
        
        /* Hero Section */
        .hero {
            min-height: 100vh;
            background: linear-gradient(135deg, var(--primary) 0%, #152a4d 50%, #0d1a30 100%), url('images/Hero-home.png') center/cover no-repeat;
            background-blend-mode: overlay;
            background-size: 400% 400%, cover;
            animation: gradientShift 15s ease infinite;
            display: flex;
            align-items: center;
            padding-top: 100px;
            position: relative;
            overflow: hidden;
        }
        
        @keyframes gradientShift {
            0% {
                background-position: 0% 50%;
            }
            50% {
                background-position: 100% 50%;
            }
            100% {
                background-position: 0% 50%;
            }
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: -30%;
            right: -10%;
            width: 700px;
            height: 700px;
            background: radial-gradient(circle, rgba(201, 161, 74, 0.15) 0%, transparent 60%);
            animation: pulse 8s ease-in-out infinite;
        }
        
        .hero::after {
            content: '';
            position: absolute;
            bottom: -20%;
            left: -10%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(201, 161, 74, 0.1) 0%, transparent 60%);
            animation: pulse 10s ease-in-out infinite reverse;
        }
        
        @keyframes pulse {
            0%, 100% { transform: scale(1); opacity: 0.5; }
            50% { transform: scale(1.1); opacity: 0.8; }
        }
        
        .hero-content {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 60px;
            align-items: center;
            position: relative;
            z-index: 1;
        }
        
        .hero-text {
            animation: slideInLeft 1s ease-out;
        }
        
        @keyframes slideInLeft {
            from { opacity: 0; transform: translateX(-50px); }
            to { opacity: 1; transform: translateX(0); }
        }
        
        .hero-text h1 {
            font-size: 58px;
            line-height: 1.1;
            color: var(--white);
            margin-bottom: 16px;
        }
        
        .hero-subtitle {
            color: rgba(255,255,255,0.75);
            text-transform: uppercase;
            letter-spacing: 2px;
            font-size: 13px;
            margin-bottom: 18px;
        }
        
        .hero-text h1 span {
            color: var(--secondary);
            position: relative;
        }
        
        .hero-text h1 .animate-left,
        .hero-text h1 .animate-right,
        .hero-text h1 .animate-up {
            display: inline-block;
        }
        
        .animate-left {
            animation: slideInLeft 1s ease-out;
        }
        
        .animate-right {
            animation: slideInRight 1s ease-out 0.3s both;
        }
        
        .animate-up {
            animation: slideInUp 1s ease-out 0.6s both;
        }
        
        .color-secondary {
            color: var(--secondary);
        }
        
        @keyframes slideInLeft {
            from { transform: translateX(-100px); opacity: 0; }
            to { transform: translateX(0); opacity: 1; }
        }
        
        @keyframes slideInRight {
            from { transform: translateX(100px); opacity: 0; }
            to { transform: translateX(0); opacity: 1; }
        }
        
        @keyframes slideInUp {
            from { transform: translateY(50px); opacity: 0; }
            to { transform: translateY(0); opacity: 1; }
        }
        
        .hero-text p {
            font-size: 18px;
            color: rgba(255,255,255,0.85);
            margin-bottom: 32px;
            max-width: 520px;
        }
        
        .hero-buttons {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
        }
        
        .btn-primary {
            background: var(--secondary);
            color: var(--primary);
            padding: 16px 32px;
            border-radius: 8px;
            font-weight: 600;
            font-size: 15px;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            border: none;
            cursor: pointer;
            transition: var(--transition);
        }
        
        .btn-primary:hover {
            background: #b8923f;
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(201, 161, 74, 0.4);
        }
        
        .btn-secondary {
            background: transparent;
            color: var(--white);
            padding: 16px 32px;
            border-radius: 8px;
            font-weight: 600;
            font-size: 15px;
            border: 2px solid rgba(255,255,255,0.3);
            transition: var(--transition);
        }
        
        .btn-secondary:hover {
            border-color: var(--white);
            background: rgba(255,255,255,0.1);
        }
        
        .hero-visual {
            position: relative;
            animation: slideInRight 1s ease-out 0.3s both;
        }
        
        @keyframes slideInRight {
            from { opacity: 0; transform: translateX(50px); }
            to { opacity: 1; transform: translateX(0); }
        }
        
        .hero-card {
            background: var(--white);
            border-radius: 20px;
            padding: 48px;
            box-shadow: 0 30px 80px rgba(0,0,0,0.4);
            transform: perspective(1000px) rotateY(-5deg);
            transition: var(--transition);
        }
        
        .hero-card:hover {
            transform: perspective(1000px) rotateY(0deg);
        }
        
        .hero-stats {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }
        
        .stat-item {
            text-align: center;
            padding: 24px;
            background: var(--light-grey);
            border-radius: 12px;
            transition: var(--transition);
        }
        
        .stat-item:hover {
            background: var(--primary);
        }
        
        .stat-item:hover .stat-number,
        .stat-item:hover .stat-label {
            color: var(--white);
        }
        
        .stat-number {
            font-family: 'Poppins', sans-serif;
            font-size: 36px;
            font-weight: 700;
            color: var(--secondary);
            display: block;
            transition: var(--transition);
        }
        
        .stat-label {
            font-size: 14px;
            color: var(--dark-grey);
            margin-top: 8px;
            transition: var(--transition);
        }
        
        /* Floating Elements */
        .floating-element {
            position: absolute;
            background: rgba(255,255,255,0.1);
            border-radius: 12px;
            padding: 16px 24px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,0.1);
            animation: float 6s ease-in-out infinite;
        }
        
        .floating-element:nth-child(1) {
            top: 20%;
            right: 5%;
            animation-delay: 0s;
        }
        
        .floating-element:nth-child(2) {
            bottom: 30%;
            right: 15%;
            animation-delay: 2s;
        }
        
        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-20px); }
        }
        
        .floating-element span {
            color: var(--white);
            font-size: 14px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .floating-element i {
            color: var(--secondary);
        }
        
        /* Value Proposition */
        .value-prop {
            padding: 120px 0;
            background: var(--light-grey);
            position: relative;
        }
        
        .value-prop::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(201, 161, 74, 0.3), transparent);
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .section-header h2 {
            font-size: 44px;
            margin-bottom: 16px;
        }
        
        .section-header p {
            font-size: 18px;
            color: #666;
            max-width: 600px;
            margin: 0 auto;
        }
        
        .value-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
        }
        
        .value-card {
            background: var(--white);
            padding: 40px 28px;
            border-radius: 16px;
            text-align: center;
            box-shadow: var(--shadow);
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }
        
        .value-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--secondary);
            transform: scaleX(0);
            transition: var(--transition);
        }
        
        .value-card:hover {
            transform: translateY(-12px);
            box-shadow: 0 20px 50px rgba(11, 31, 58, 0.15);
        }
        
        .value-card:hover::before {
            transform: scaleX(1);
        }
        
        .value-icon {
            width: 72px;
            height: 72px;
            background: linear-gradient(135deg, var(--primary) 0%, #1a3a5c 100%);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 24px;
            transition: var(--transition);
        }
        
        .value-card:hover .value-icon {
            background: var(--secondary);
        }
        
        .value-card:hover .value-icon i {
            color: var(--primary);
        }
        
        .value-icon i {
            font-size: 28px;
            color: var(--secondary);
            transition: var(--transition);
        }
        
        .value-card h3 {
            font-size: 18px;
            margin-bottom: 12px;
        }
        
        .value-card p {
            font-size: 15px;
            color: #666;
        }
        
        /* Key Services Introduction */
        .key-services-intro {
            padding: 120px 0;
            background: linear-gradient(180deg, var(--light-grey) 0%, var(--white) 100%);
        }
        
        .services-overview-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 32px;
        }
        
        .service-overview-card {
            background: var(--white);
            padding: 36px 32px;
            border-radius: 12px;
            border-left: 4px solid var(--secondary);
            box-shadow: 0 2px 15px rgba(11, 31, 58, 0.04);
            transition: var(--transition);
        }
        
        .service-overview-card:hover {
            transform: translateX(8px);
            box-shadow: 0 8px 25px rgba(11, 31, 58, 0.08);
        }
        
        .service-overview-card h3 {
            font-size: 18px;
            margin-bottom: 12px;
            color: var(--primary);
        }
        
        .service-overview-card p {
            font-size: 15px;
            color: #555;
            line-height: 1.6;
        }

        /* Services Preview */
        .services-preview {
            padding: 120px 0;
            background: var(--white);
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 28px;
        }
        
        .service-card {
            background: var(--white);
            padding: 40px 32px;
            border-radius: 16px;
            box-shadow: 0 4px 30px rgba(11, 31, 58, 0.06);
            border: 1px solid rgba(0,0,0,0.04);
            transition: var(--transition);
            position: relative;
        }
        
        .service-card::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: var(--secondary);
            border-radius: 0 0 16px 16px;
            transform: scaleX(0);
            transition: var(--transition);
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(11, 31, 58, 0.12);
        }
        
        .service-card:hover::after {
            transform: scaleX(1);
        }
        
        .service-icon {
            width: 60px;
            height: 60px;
            background: var(--light-grey);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 24px;
        }
        
        .service-icon i {
            font-size: 24px;
            color: var(--primary);
        }

        .service-image {
            width: 100%;
            height: 200px;
            background: linear-gradient(135deg, var(--primary) 0%, #1a3a5c 100%);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 24px;
            overflow: hidden;
        }

        .service-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .service-card h3 {
            font-size: 20px;
            margin-bottom: 12px;
        }
        
        .service-card p {
            font-size: 15px;
            color: #666;
            margin-bottom: 20px;
        }
        
        .service-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-weight: 600;
            color: var(--secondary);
            font-size: 14px;
        }
        
        .service-link:hover {
            gap: 12px;
        }
        
        /* Process */
        .process {
            padding: 120px 0;
            background: linear-gradient(180deg, var(--white) 0%, var(--light-grey) 100%);
        }
        
        .process-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
            position: relative;
        }
        
        .process-grid::before {
            content: '';
            position: absolute;
            top: 40px;
            left: 12%;
            right: 12%;
            height: 2px;
            background: linear-gradient(90deg, var(--secondary), transparent);
            z-index: 0;
        }
        
        .process-step {
            text-align: center;
            position: relative;
            z-index: 1;
        }
        
        .process-number {
            width: 80px;
            height: 80px;
            background: var(--primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 24px;
            position: relative;
            box-shadow: 0 10px 30px rgba(11, 31, 58, 0.3);
            transition: var(--transition);
        }
        
        .process-step:hover .process-number {
            background: var(--secondary);
            transform: scale(1.1);
        }
        
        .process-number span {
            font-family: 'Poppins', sans-serif;
            font-size: 28px;
            font-weight: 700;
            color: var(--white);
            transition: var(--transition);
        }
        
        .process-step:hover .process-number span {
            color: var(--primary);
        }
        
        .process-step h3 {
            font-size: 18px;
            margin-bottom: 12px;
        }
        
        .process-step p {
            font-size: 15px;
            color: #666;
            max-width: 250px;
            margin: 0 auto;
        }
        
        /* CTA Section */
        .cta-section {
            padding: 120px 0;
            background: var(--primary);
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .cta-section::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -20%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(201, 161, 74, 0.2) 0%, transparent 60%);
        }
        
        .cta-section::after {
            content: '';
            position: absolute;
            bottom: -50%;
            right: -20%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(201, 161, 74, 0.15) 0%, transparent 60%);
        }
        
        .cta-section h2 {
            font-size: 44px;
            color: var(--white);
            margin-bottom: 16px;
            position: relative;
        }
        
        .cta-section p {
            font-size: 18px;
            color: rgba(255,255,255,0.8);
            margin-bottom: 32px;
            position: relative;
        }
        
        /* Industry Impact */
        .industry-section {
            padding: 80px 0;
            background: #F8FAFC;
        }
        
        .industry-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            margin-top: 40px;
        }
        
        .industry-card {
            background: var(--white);
            border-radius: 18px;
            padding: 32px 24px;
            box-shadow: var(--shadow);
            text-align: center;
            transition: var(--transition);
        }
        
        .industry-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 24px 60px rgba(11, 31, 58, 0.14);
        }

        .industry-card.image-mining,
        .industry-card.image-construction,
        .industry-card.image-government,
        .industry-card.image-agriculture,
        .industry-card.image-manufacturing {
            color: #fff;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            box-shadow: 0 20px 48px rgba(11, 31, 58, 0.15);
        }

        .industry-card.image-mining { background-image: linear-gradient(180deg, rgba(6, 29, 46, 0.7), rgba(6, 29, 46, 0.45)), url('images/strategic-sourcing.jpg'); }
        .industry-card.image-construction { background-image: linear-gradient(180deg, rgba(6, 29, 46, 0.7), rgba(6, 29, 46, 0.45)), url('images/warehousing-distribution.jpg'); }
        .industry-card.image-government { background-image: linear-gradient(180deg, rgba(6, 29, 46, 0.7), rgba(6, 29, 46, 0.45)), url('images/procurement-advisory.jpg'); }
        .industry-card.image-agriculture { background-image: linear-gradient(180deg, rgba(6, 29, 46, 0.7), rgba(6, 29, 46, 0.45)), url('images/corporate-social-responsibility.jpg'); }
        .industry-card.image-manufacturing { background-image: linear-gradient(180deg, rgba(6, 29, 46, 0.7), rgba(6, 29, 46, 0.45)), url('images/supply-chain-consulting.jpg'); }

        .industry-card.image-mining .industry-icon,
        .industry-card.image-construction .industry-icon,
        .industry-card.image-government .industry-icon,
        .industry-card.image-agriculture .industry-icon,
        .industry-card.image-manufacturing .industry-icon {
            background: rgba(255, 255, 255, 0.18);
            color: #fff;
        }

        .industry-card.image-mining h3,
        .industry-card.image-construction h3,
        .industry-card.image-government h3,
        .industry-card.image-agriculture h3,
        .industry-card.image-manufacturing h3 {
            color: #fff;
        }
        
        .industry-icon {
            width: 64px;
            height: 64px;
            margin: 0 auto 18px;
            display: grid;
            place-items: center;
            border-radius: 16px;
            background: linear-gradient(135deg, rgba(201,161,74,0.15), rgba(11,31,58,0.08));
            color: var(--secondary);
            font-size: 24px;
        }

        .value-card.value-card--cost,
        .value-card.value-card--global,
        .value-card.value-card--logistics,
        .value-card.value-card--creative {
            color: #fff;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            box-shadow: 0 18px 50px rgba(11, 31, 58, 0.16);
        }

        .value-card.value-card--cost {
            background-image: linear-gradient(180deg, rgba(4, 27, 45, 0.78), rgba(4, 27, 45, 0.45)), url('images/procurement-advisory.jpg');
        }

        .value-card.value-card--global {
            background-image: linear-gradient(180deg, rgba(4, 27, 45, 0.78), rgba(4, 27, 45, 0.45)), url('images/supply-chain-consulting.jpg');
        }

        .value-card.value-card--logistics {
            background-image: linear-gradient(180deg, rgba(4, 27, 45, 0.78), rgba(4, 27, 45, 0.45)), url('images/logistics-management.jpg');
        }

        .value-card.value-card--creative {
            background-image: linear-gradient(180deg, rgba(4, 27, 45, 0.78), rgba(4, 27, 45, 0.45)), url('images/graphic-design.jpg');
        }

        .value-card.value-card--cost .value-icon,
        .value-card.value-card--global .value-icon,
        .value-card.value-card--logistics .value-icon,
        .value-card.value-card--creative .value-icon {
            background: rgba(255,255,255,0.18);
        }

        .value-card.value-card--cost .value-icon i,
        .value-card.value-card--global .value-icon i,
        .value-card.value-card--logistics .value-icon i,
        .value-card.value-card--creative .value-icon i {
            color: #fff;
        }

        .value-card.value-card--cost h3,
        .value-card.value-card--global h3,
        .value-card.value-card--logistics h3,
        .value-card.value-card--creative h3 {
            color: #fff;
        }

        .value-card.value-card--cost p,
        .value-card.value-card--global p,
        .value-card.value-card--logistics p,
        .value-card.value-card--creative p {
            color: rgba(255,255,255,0.85);
        }
        
        .industry-card h3 {
            font-size: 18px;
            margin: 0;
        }
        
        .commitment-section {
            padding: 100px 0;
            background: var(--white);
        }
        
        .commitment-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            margin-top: 40px;
        }
        
        .commitment-card {
            background: #F5F7FA;
            border-radius: 20px;
            padding: 36px 28px;
            box-shadow: var(--shadow);
            transition: var(--transition);
            text-align: center;
        }
        
        .commitment-card:hover {
            transform: translateY(-6px);
        }
        
        .commitment-icon {
            width: 72px;
            height: 72px;
            border-radius: 18px;
            background: var(--primary);
            display: grid;
            place-items: center;
            color: var(--white);
            font-size: 24px;
            margin: 0 auto 24px;
        }
        
        .commitment-card h3 {
            font-size: 20px;
            margin-bottom: 16px;
        }
        
        .commitment-card p {
            color: #555;
            font-size: 15px;
            line-height: 1.7;
        }
        
        /* Footer */
        footer {
            background: var(--primary);
            padding: 80px 0 30px;
            color: var(--white);
        }
        
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 60px;
            margin-bottom: 60px;
        }
        
        .footer-brand .logo {
            color: var(--white);
            margin-bottom: 20px;
        }
        
        .footer-brand p {
            color: rgba(255,255,255,0.7);
            font-size: 15px;
            margin-bottom: 24px;
        }
        
        .footer-social {
            display: flex;
            gap: 12px;
        }
        
        .footer-social a {
            width: 44px;
            height: 44px;
            background: rgba(255,255,255,0.1);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
        }
        
        .footer-social a:hover {
            background: var(--secondary);
            transform: translateY(-4px);
        }
        
        .footer-social i {
            font-size: 18px;
            color: var(--white);
        }
        
        .footer-column h4 {
            color: var(--white);
            font-size: 16px;
            margin-bottom: 24px;
        }
        
        .footer-column ul li {
            margin-bottom: 14px;
        }
        
        .footer-column a {
            color: rgba(255,255,255,0.7);
            font-size: 15px;
        }
        
        .footer-column a:hover {
            color: var(--secondary);
            padding-left: 8px;
        }
        
        .footer-contact li {
            display: flex;
            align-items: center;
            gap: 12px;
            color: rgba(255,255,255,0.7);
            font-size: 15px;
            margin-bottom: 16px;
        }
        
        .footer-contact i {
            color: var(--secondary);
            width: 18px;
        }
        
        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 30px;
            text-align: center;
        }
        
        .footer-bottom p {
            color: rgba(255,255,255,0.5);
            font-size: 14px;
        }
        
        /* Scroll Indicator */
        .scroll-indicator {
            position: absolute;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
            animation: bounce 2s infinite;
        }
        
        .scroll-indicator span {
            color: rgba(255,255,255,0.6);
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 2px;
        }
        
        .scroll-indicator i {
            color: var(--secondary);
        }
        
        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
            40% { transform: translateX(-50%) translateY(-10px); }
            60% { transform: translateX(-50%) translateY(-5px); }
        }
        
        /* Responsive */
        @media (max-width: 1024px) {
            .hero-content {
                grid-template-columns: 1fr;
                text-align: center;
            }
            
            .hero-text p {
                margin: 0 auto 32px;
            }
            
            .hero-buttons {
                justify-content: center;
            }
            
            .hero-visual {
                display: none;
            }
            
            .value-grid,
            .services-grid,
            .process-grid,
            .industry-grid,
            .commitment-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .process-grid::before {
                display: none;
            }
            
            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 768px) {
            .hero-text h1 {
                font-size: 40px;
            }
            
            .value-grid,
            .services-grid,
            .services-overview-grid,
            .process-grid,
            .industry-grid,
            .commitment-grid {
                grid-template-columns: 1fr;
            }
            
            .footer-grid {
                grid-template-columns: 1fr;
            }
            
            .section-header h2 {
                font-size: 32px;
            }
            
            .floating-element {
                display: none;
            }
        }

:root {
            --primary: #0B1F3A;
            --secondary: #C9A14A;
            --white: #FFFFFF;
            --light-grey: #F5F7FA;
            --dark-grey: #333333;
            --shadow: 0 4px 20px rgba(11, 31, 58, 0.08);
            --transition: all 0.3s ease;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        html {
            scroll-behavior: smooth;
        }
        
        body {
            font-family: 'Inter', sans-serif;
            color: var(--dark-grey);
            line-height: 1.6;
            background: var(--white);
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
            color: var(--primary);
        }
        
        a {
            text-decoration: none;
            color: inherit;
            transition: var(--transition);
        }
        
        ul {
            list-style: none;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }
        
        /* Header */
        header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: var(--white);
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            z-index: 1000;
        }
        
        .header-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 16px 0;
        }
        
        .logo {
            font-family: 'Poppins', sans-serif;
            font-size: 24px;
            font-weight: 700;
            color: var(--primary);
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .logo img {
            height: 65px;
            width: auto;
        }

        .logo-text {
            display: none;
        }

        @media (min-width: 769px) {
            .logo-text {
                display: block;
            }
        }

        /* Hamburger Menu */
        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            padding: 8px;
            z-index: 1001;
        }

        .hamburger span {
            width: 25px;
            height: 3px;
            background: var(--primary);
            border-radius: 2px;
            transition: var(--transition);
        }

        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 6px);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -6px);
        }

        @media (max-width: 768px) {
            .hamburger {
                display: flex;
            }

            #navbar {
                position: fixed;
                top: 0;
                right: 0;
                transform: translateX(100%);
                width: 280px;
                height: 100vh;
                background: var(--light-grey);
                padding: 100px 32px 32px;
                box-shadow: -4px 0 30px rgba(0,0,0,0.15);
                transition: transform 0.4s ease;
                z-index: 1002;
                display: block;
            }

            #navbar.active {
                transform: translateX(0);
            }

            nav ul {
                flex-direction: column;
                gap: 24px;
            }

            nav a {
                font-size: 18px;
            }

            .header-cta {
                display: none;
            }

            .mobile-cta {
                display: block;
                margin-top: 24px;
                background: var(--secondary);
                color: var(--primary);
                padding: 14px 24px;
                border-radius: 8px;
                font-weight: 600;
                text-align: center;
            }
        }

        .mobile-cta {
            display: none;
        }

        /* WhatsApp Button */
        .whatsapp-btn {
            display: none;
            margin-top: 24px;
            background: #25D366;
            color: white;
            padding: 14px 24px;
            border-radius: 8px;
            font-weight: 600;
            text-align: center;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

        .whatsapp-btn:hover {
            background: #20BD5A;
            transform: translateY(-2px);
        }

        @media (max-width: 768px) {
            .whatsapp-btn {
                display: flex;
            }
        }
        
        nav ul {
            display: flex;
            gap: 32px;
        }
        
        nav a {
            font-weight: 500;
            font-size: 15px;
            color: var(--primary);
            position: relative;
        }
        
        nav a::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--secondary);
            transition: var(--transition);
        }
        
        nav a:hover::after {
            width: 100%;
        }
        
        nav a:hover {
            color: var(--secondary);
        }
        
        .header-cta {
            background: var(--secondary);
            color: var(--primary);
            padding: 12px 24px;
            border-radius: 8px;
            font-weight: 600;
            font-size: 14px;
        }
        
        .header-cta:hover {
            background: #b8923f;
            transform: translateY(-2px);
        }
        
        /* Page Hero */
        .page-hero {
            padding: 160px 0 80px;
            background: linear-gradient(135deg, var(--primary) 0%, #152a4d 100%);
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .page-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C9A14A' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
        }
        
        .page-hero h1 {
            font-size: 48px;
            color: var(--white);
            margin-bottom: 16px;
            position: relative;
        }
        
        .page-hero p {
            font-size: 18px;
            color: rgba(255,255,255,0.8);
            max-width: 600px;
            margin: 0 auto;
            position: relative;
        }
        
        /* Services Tabs */
        .services-tabs {
            padding: 60px 0;
            background: var(--light-grey);
        }
        
        .tabs-nav {
            display: flex;
            justify-content: center;
            gap: 8px;
            flex-wrap: wrap;
            margin-bottom: 40px;
        }
        
        .tab-btn {
            padding: 14px 28px;
            background: var(--white);
            border: 2px solid transparent;
            border-radius: 8px;
            font-weight: 600;
            font-size: 14px;
            color: var(--primary);
            cursor: pointer;
            transition: var(--transition);
        }
        
        .tab-btn:hover,
        .tab-btn.active {
            border-color: var(--secondary);
            background: var(--secondary);
            color: var(--primary);
        }
        
        .tab-content {
            display: none;
        }
        
        .tab-content.active {
            display: block;
            animation: fadeIn 0.5s ease;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        /* Service Sections */
        .service-section {
            padding: 100px 0;
        }
        
        .service-section:nth-child(even) {
            background: var(--light-grey);
        }
        
        .service-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }
        
        .service-grid.reverse .service-content {
            order: 2;
        }
        
        .service-content h2 {
            font-size: 36px;
            margin-bottom: 20px;
        }
        
        .service-content > p {
            font-size: 17px;
            color: #555;
            margin-bottom: 24px;
        }
        
        .service-features {
            margin-bottom: 32px;
        }
        
        .service-features li {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            margin-bottom: 16px;
            font-size: 15px;
        }
        
        .service-features svg {
            width: 20px;
            height: 20px;
            stroke: var(--secondary);
            flex-shrink: 0;
            margin-top: 4px;
        }
        
        .service-visual {
            background: linear-gradient(135deg, var(--primary) 0%, #1a3a5c 100%);
            border-radius: 16px;
            height: 400px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }
        
        .service-visual::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(201, 161, 74, 0.1) 0%, transparent 50%);
            animation: rotate 20s linear infinite;
        }
        
        @keyframes rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }
        
        .service-visual i {
            font-size: 80px;
            color: var(--secondary);
            opacity: 0.5;
            position: relative;
            z-index: 1;
        }

        .service-visual img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            position: relative;
            z-index: 1;
        }
        
        .btn-primary {
            background: var(--secondary);
            color: var(--primary);
            padding: 16px 32px;
            border-radius: 8px;
            font-weight: 600;
            font-size: 15px;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            border: none;
            cursor: pointer;
        }
        
        .btn-primary:hover {
            background: #b8923f;
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(201, 161, 74, 0.3);
        }
        
        /* Benefits */
        .benefits-section {
            padding: 100px 0;
            background: var(--primary);
        }
        
        .benefits-section h2 {
            font-size: 40px;
            color: var(--white);
            text-align: center;
            margin-bottom: 60px;
        }
        
        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
        }
        
        .benefit-card {
            background: rgba(255,255,255,0.1);
            padding: 40px 32px;
            border-radius: 12px;
            border: 1px solid rgba(255,255,255,0.1);
            transition: var(--transition);
        }
        
        .benefit-card:hover {
            background: rgba(255,255,255,0.15);
            transform: translateY(-8px);
        }

/* Hero Background Styles for WebP Optimization */
.page-hero {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.page-hero .hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.page-hero .hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
        
        .benefit-card h4 {
            font-size: 20px;
            color: var(--white);
            margin-bottom: 12px;
        }
        
        .benefit-card p {
            font-size: 15px;
            color: rgba(255,255,255,0.7);
        }
        
        /* CTA */
        .cta-section {
            padding: 100px 0;
            background: var(--white);
            text-align: center;
        }
        
        .cta-section h2 {
            font-size: 40px;
            color: var(--primary);
            margin-bottom: 16px;
        }
        
        .cta-section p {
            font-size: 18px;
            color: #666;
            margin-bottom: 32px;
        }
        
        /* Footer */
        footer {
            background: var(--primary);
            padding: 80px 0 30px;
            color: var(--white);
        }
        
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 60px;
            margin-bottom: 60px;
        }
        
        .footer-brand .logo {
            color: var(--white);
            margin-bottom: 20px;
        }
        
        .footer-brand p {
            color: rgba(255,255,255,0.7);
            font-size: 15px;
            margin-bottom: 24px;
        }
        
        .footer-social {
            display: flex;
            gap: 12px;
        }
        
        .footer-social a {
            width: 40px;
            height: 40px;
            background: rgba(255,255,255,0.1);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .footer-social a:hover {
            background: var(--secondary);
        }
        
        .footer-social svg {
            width: 18px;
            height: 18px;
            stroke: var(--white);
        }
        
        .footer-column h4 {
            color: var(--white);
            font-size: 16px;
            margin-bottom: 24px;
        }
        
        .footer-column ul li {
            margin-bottom: 12px;
        }
        
        .footer-column a {
            color: rgba(255,255,255,0.7);
            font-size: 15px;
        }
        
        .footer-column a:hover {
            color: var(--secondary);
        }
        
        .footer-contact li {
            display: flex;
            align-items: center;
            gap: 12px;
            color: rgba(255,255,255,0.7);
            font-size: 15px;
            margin-bottom: 16px;
        }
        
        .footer-contact svg {
            width: 18px;
            height: 18px;
            stroke: var(--secondary);
            flex-shrink: 0;
        }
        
        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 30px;
            text-align: center;
        }
        
        .footer-bottom p {
            color: rgba(255,255,255,0.5);
            font-size: 14px;
        }
        
        /* Responsive */
        @media (max-width: 1024px) {
            .service-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            .service-grid.reverse .service-content {
                order: 0;
            }
            
            .benefits-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 768px) {
            nav {
                display: none;
            }
            
            .page-hero h1 {
                font-size: 36px;
            }
            
            .tabs-nav {
                gap: 8px;
            }
            
            .tab-btn {
                padding: 10px 16px;
                font-size: 13px;
            }
            
            .benefits-grid {
                grid-template-columns: 1fr;
            }
            
            .footer-grid {
                grid-template-columns: 1fr;
            }
        }

    /* Override header and hero sizing for improved visibility */
    header .header-inner {
        padding: 10px 0 !important;
        gap: 12px !important;
    }

    header .logo img {
        height: 42px !important;
        width: auto !important;
    }

    header .logo-text {
        font-size: 16px !important;
    }

    header .middle-nav-image {
        flex: 0 0 auto !important;
        min-height: 32px !important;
        max-width: 120px !important;
    }

    header .middle-nav-image img {
        max-height: 30px !important;
    }

    header .hamburger {
        padding: 6px !important;
    }

    header .hamburger span {
        width: 20px !important;
        height: 2px !important;
    }

    header .header-cta {
        padding: 10px 18px !important;
        font-size: 14px !important;
    }

    .hero {
        min-height: 85vh !important;
        padding-top: 90px !important;
        background: linear-gradient(135deg, var(--primary) 0%, #152a4d 50%, #0d1a30 100%), url('images/Hero-home.webp') center/cover no-repeat !important;
        background-size: cover !important;
        background-blend-mode: overlay !important;
    }

    .hero-text h1 {
        font-size: 48px !important;
        line-height: 1.05 !important;
    }

    .hero-text p {
        font-size: 16px !important;
        max-width: 520px !important;
    }

    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        padding: 14px 24px !important;
        font-size: 14px !important;
    }

    @media (max-width: 768px) {
        header .header-inner {
            padding: 8px 0 !important;
        }

        header .logo img {
            height: 32px !important;
        }

        header .middle-nav-image img {
            max-height: 24px !important;
        }

        header .hamburger span {
            width: 18px !important;
            height: 2px !important;
        }

        #navbar {
            width: 240px !important;
            padding: 80px 20px 20px !important;
        }

        nav a {
            font-size: 16px !important;
        }

        .mobile-cta,
        .whatsapp-btn {
            padding: 12px 18px !important;
        }

        .hero {
            min-height: 80vh !important;
            padding-top: 80px !important;
        }

        .hero-text h1 {
            font-size: 32px !important;
        }
    }


