/* Base CSS Variables and Common Styles */
:root {
    --primary-gold: #d6a019;
    --primary-gold-light: #ffcc00;
    --bg-dark: #0a0a0a;
    --bg-light: #fafafa;
    --bg-glass: rgba(255, 255, 255, 0.08);
    --bg-glass-hover: rgba(255, 255, 255, 0.12);
    --text-primary: #1a1a1a;
    --text-secondary: rgba(26, 26, 26, 0.7);
    --text-tertiary: rgba(26, 26, 26, 0.5);
    --text-dark: #000000;
    --text-white: #ffffff;
    --text-light-alpha: rgba(255, 255, 255, 0.9);
    --text-light-secondary: rgba(255, 255, 255, 0.7);
    --border-glass: rgba(214, 160, 25, 0.3);
    --shadow-primary: 0 20px 40px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 25px 50px rgba(0, 0, 0, 0.4);
    --blur-amount: 20px;
    --transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-bounce: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    --background: rgb(214, 160, 25);
    --hover-color: #ffcc00;
    --primary-gradient: rgba(0, 0, 0, 0.8);
    --secondary-gradient: rgba(0, 0, 0, 1);
    --shadow-color: rgba(0, 0, 0, 0.3);
    --overlay-color: rgba(0, 0, 0, 0.5);
    --accent-glow: rgba(214, 160, 25, 0.3);
    --glass-border: rgba(214, 160, 25, 0.2);
    --news-section-bg: #141414;
    --card-bg: rgba(20, 20, 20, 0.6);
    --card-border: rgba(214, 160, 25, 0.15);
    --gradient-overlay: linear-gradient(135deg, rgba(214, 160, 25, 0.1) 0%, rgba(0, 0, 0, 0.3) 100%);
    --gradient-mesh: linear-gradient(135deg, rgba(214, 160, 25, 0.15) 0%, rgba(255, 204, 0, 0.08) 50%, rgba(0, 0, 0, 0.3) 100%);
    --footer-bg: rgb(214, 160, 25);
    --footer-text: #000;
    --footer-link-hover: rgb(214, 160, 25);
    --footer-border: #fff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Epilogue', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-light);
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}


        /* Header Styles */
        .header {
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            transition: background-color 0.3s ease, padding 0.3s ease;
        }

        .header.scrolled {
            background-color: transparent;
            padding: 0.3rem 1rem;
        }

        .header.scrolled .nav {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(0, 0, 0, 0.1);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
        }

        .nav {
            display: flex;
            align-items: center;
            justify-content: space-between;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 40px;
            padding: 0.5rem 1rem;
            margin: 1rem auto;
            width: 95%;
            max-width: 1400px;
            transition: background-color 0.3s ease, box-shadow 0.3s ease;
        }

        /* Brand Styles */
        .nav__brand {
            display: flex;
            align-items: center;
        }

        .nav__brand img {
            width: 10rem;
            height: auto;
            transition: opacity 0.3s ease;
        }

        .logo-light {
            opacity: 1;
            transition: opacity 0.3s ease;
        }

        .logo-dark {
            opacity: 0;
            position: absolute;
            transition: opacity 0.3s ease;
        }

        .header.scrolled .logo-light {
            opacity: 0;
        }

        .header.scrolled .logo-dark {
            opacity: 1;
        }

        /* Navigation Links */
        .nav__links {
            display: flex;
            list-style: none;
            gap: 2rem;
            align-items: center;
            justify-content: center;
            flex: 1;
        }

        .nav__links > li {
            position: relative;
        }

        .nav__links a {
            color: #fff;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.95rem;
            padding: 0.75rem 1rem;
            border-radius: 8px;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .header.scrolled .nav__links a {
            color: #000;
        }

        .nav__links a:hover {
            color: var(--primary-gold) !important;
            background: rgba(214, 160, 25, 0.1);
        }

        .nav__links a i {
            font-size: 0.8rem;
            transition: transform 0.3s ease;
        }

        /* Dropdown Styles */
        .dropdown {
            position: relative;
        }

        .dropdown-content {
            position: absolute;
            top: 100%;
            left: 0;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            border-radius: 12px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
            border: 1px solid rgba(255, 255, 255, 0.3);
            min-width: 280px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.3s ease;
            z-index: 1001;
        }

        .dropdown:hover .dropdown-content {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .dropdown-content a {
            color: #333 !important;
            padding: 0.75rem 1.25rem;
            border-radius: 8px;
            margin: 0.25rem;
            display: block;
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        }

        .dropdown-content a:last-child {
            border-bottom: none;
        }

        .dropdown-content a:hover {
            background: rgba(214, 160, 25, 0.1);
            color: var(--primary-gold) !important;
        }

        /* Mega Dropdown for Services */
        .mega-dropdown .dropdown-content {
            min-width: 900px;
            left: 50%;
            transform: translateX(-50%) translateY(-10px);
            padding: 2rem;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.95) 100%);
            border: 1px solid rgba(214, 160, 25, 0.2);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
        }

        .mega-dropdown:hover .dropdown-content {
            transform: translateX(-50%) translateY(0);
        }

        .mega-content {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2.5rem;
        }

        .mega-section {
            position: relative;
            padding: 1.5rem;
            background: rgba(255, 255, 255, 0.8);
            border-radius: 12px;
            border: 1px solid rgba(214, 160, 25, 0.1);
            transition: all 0.3s ease;
        }

        .mega-section:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(214, 160, 25, 0.15);
            border-color: rgba(214, 160, 25, 0.3);
        }

        .mega-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-gold), var(--primary-gold-light));
            border-radius: 12px 12px 0 0;
        }

        .mega-section h4 {
            color: #2c3e50;
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 1.25rem;
            padding-bottom: 0.75rem;
            border-bottom: 2px solid rgba(214, 160, 25, 0.2);
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .mega-section h4::before {
            content: '';
            width: 24px;
            height: 24px;
            background: linear-gradient(135deg, var(--primary-gold), var(--primary-gold-light));
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .mega-section:nth-child(1) h4::before {
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M12 2l3.09 6.26L22 9.27l-5 4.87 1.18 6.88L12 17.77l-6.18 3.25L7 14.14 2 9.27l6.91-1.01L12 2z'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: center;
        }

        .mega-section:nth-child(2) h4::before {
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-2 15l-5-5 1.41-1.41L10 14.17l7.59-7.59L19 8l-9 9z'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: center;
        }

        .mega-section:nth-child(3) h4::before {
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M17 8C8 10 5.9 16.17 3.82 21.34l1.89.66C7.07 17.96 9.75 12.35 17 10c7.42-2.42 6.86-7.4 6.86-7.4s-5.1-.45-6.86 5.4z'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: center;
        }

        .mega-section ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .mega-section ul li {
            margin: 0;
        }

        .mega-section ul li a {
            color: #4a5568 !important;
            font-size: 0.95rem;
            font-weight: 500;
            padding: 0.75rem 1rem;
            border: none;
            margin: 0;
            border-radius: 8px;
            background: rgba(255, 255, 255, 0.6);
            border: 1px solid transparent;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 0.75rem;
            position: relative;
            overflow: hidden;
        }

        .mega-section ul li a::before {
            content: '';
            width: 6px;
            height: 6px;
            background: var(--primary-gold);
            border-radius: 50%;
            transition: all 0.3s ease;
        }

        .mega-section ul li a:hover {
            background: rgba(214, 160, 25, 0.1) !important;
            color: var(--primary-gold) !important;
            border-color: rgba(214, 160, 25, 0.3);
            transform: translateX(8px);
            box-shadow: 0 4px 15px rgba(214, 160, 25, 0.1);
        }

        .mega-section ul li a:hover::before {
            background: var(--primary-gold);
            width: 8px;
            height: 8px;
        }

        .mega-section ul li a::after {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(214, 160, 25, 0.1), transparent);
            transition: left 0.5s ease;
        }

        .mega-section ul li a:hover::after {
            left: 100%;
        }

        /* Special styling for different service categories */
        .mega-section:nth-child(1) {
            background: linear-gradient(135deg, rgba(52, 152, 219, 0.05) 0%, rgba(255, 255, 255, 0.8) 100%);
        }

        .mega-section:nth-child(2) {
            background: linear-gradient(135deg, rgba(46, 204, 113, 0.05) 0%, rgba(255, 255, 255, 0.8) 100%);
        }

        .mega-section:nth-child(3) {
            background: linear-gradient(135deg, rgba(155, 89, 182, 0.05) 0%, rgba(255, 255, 255, 0.8) 100%);
        }

        /* Mega dropdown footer */
        .mega-footer {
            margin-top: 2rem;
            padding-top: 1.5rem;
            border-top: 2px solid rgba(214, 160, 25, 0.2);
            text-align: center;
        }

        .mega-footer a {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.75rem 2rem;
            background: linear-gradient(135deg, var(--primary-gold), var(--primary-gold-light));
            color: white !important;
            text-decoration: none;
            border-radius: 25px;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(214, 160, 25, 0.3);
        }

        .mega-footer a:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(214, 160, 25, 0.4);
        }

        /* Action Button */
        .nav__action {
            display: flex;
            align-items: center;
        }

        .nav__action a {
            padding: 0.7rem 1.5rem;
            border: 2px solid #ffcc00;
            border-radius: 25px;
            color: #ffcc00;
            text-decoration: none;
            font-weight: bold;
            transition: all 0.3s ease;
        }

        .header.scrolled .nav__action a {
            color: #000;
            border-color: #FFD700;
        }

        .nav__action a:hover {
            background: #ffcc00;
            color: #fff;
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(255, 204, 0, 0.3);
        }

        /* Mobile Toggle Button */
        .toggle-btn {
            display: none;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            width: 50px;
            height: 50px;
            background: var(--bg-glass);
            backdrop-filter: blur(15px);
            border: 1px solid var(--border-glass);
            border-radius: 16px;
            cursor: pointer;
            position: fixed;
            top: 1.5rem;
            right: 1.5rem;
            z-index: 1003;
            transition: var(--transition-smooth);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        }

        .toggle-btn:hover {
            background: var(--bg-glass-hover);
            transform: scale(1.05);
        }

        .toggle-btn span {
            display: block;
            width: 24px;
            height: 3px;
            background: #fff;
            border-radius: 3px;
            margin: 2px 0;
            transition: var(--transition-smooth);
        }

        .header.scrolled .toggle-btn {
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(20px);
        }

        .header.scrolled .toggle-btn span {
            background: #000;
        }

        .toggle-btn.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }

        .toggle-btn.active span:nth-child(2) {
            opacity: 0;
            transform: scale(0);
        }

        .toggle-btn.active span:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -5px);
        }

        /* Mobile Navigation */
        .mobile-nav {
            position: fixed;
            top: 0;
            left: -100%;
            width: 100%;
            max-width: 400px;
            height: 100vh;
            background: rgba(10, 10, 10, 0.95);
            backdrop-filter: blur(30px);
            border-right: 1px solid var(--border-glass);
            z-index: 1002;
            transition: var(--transition-bounce);
            display: flex;
            flex-direction: column;
            padding: 2rem;
            overflow-y: auto;
        }

        .mobile-nav.active {
            left: 0;
        }

        .mobile-nav__header {
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 3rem;
            padding-bottom: 2rem;
            border-bottom: 1px solid var(--border-glass);
        }

        .mobile-nav__header img {
            width: 80px;
            height: auto;
        }

        .mobile-nav__links {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
            margin-bottom: 3rem;
        }

        .mobile-nav__links > li > a {
            color: var(--bg-light) !important;
            text-decoration: none;
            font-weight: 500;
            font-size: 1.1rem;
            padding: 1rem 1.5rem;
            border-radius: 16px;
            transition: var(--transition-smooth);
            display: flex;
            align-items: center;
            gap: 1rem;
            background: rgba(255, 255, 255, 0.08);
            margin-bottom: 0.5rem;
            border: 1px solid transparent;
            position: relative;
            overflow: hidden;
        }

        .mobile-nav__links > li > a::after {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(214, 160, 25, 0.1), transparent);
            transition: left 0.6s ease;
        }

        .mobile-nav__links > li > a:hover {
            background: var(--bg-glass-hover);
            transform: translateX(10px);
            color: var(--primary-gold) !important;
            border-color: var(--border-glass);
            box-shadow: 0 4px 15px rgba(214, 160, 25, 0.2);
        }

        .mobile-nav__links > li > a:hover::after {
            left: 100%;
        }

        .mobile-nav__links i {
            width: 20px;
            text-align: center;
            color: var(--primary-gold);
        }

        /* Mobile Dropdown */
        .mobile-dropdown {
            margin-left: 1rem;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease;
            background: rgba(0, 0, 0, 0.2);
            border-radius: 12px;
            margin-top: 0.5rem;
        }

        .mobile-dropdown.active {
            max-height: 800px;
            padding: 0.5rem;
        }

        .mobile-dropdown a {
            color: #ffffff !important;
            text-decoration: none !important;
            font-weight: 400 !important;
            font-size: 0.9rem !important;
            padding: 0.75rem 1.25rem !important;
            border-radius: 10px !important;
            background: rgba(255, 255, 255, 0.08) !important;
            margin-bottom: 0.25rem !important;
            border: 1px solid transparent !important;
            display: flex !important;
            align-items: center !important;
            gap: 0.75rem !important;
            transition: all 0.3s ease !important;
            position: relative !important;
            overflow: hidden !important;
        }

        .mobile-dropdown a::before {
            content: '→';
            color: var(--primary-gold);
            font-weight: bold;
            font-size: 0.8rem;
            min-width: 12px;
        }

        .mobile-dropdown a:hover {
            background: rgba(214, 160, 25, 0.15) !important;
            color: var(--primary-gold) !important;
            border-color: rgba(214, 160, 25, 0.3) !important;
            transform: translateX(8px) !important;
            box-shadow: 0 4px 15px rgba(214, 160, 25, 0.2) !important;
        }

        .mobile-dropdown a:hover::before {
            color: #ffffff;
        }

        /* Special styling for main category items */
        .mobile-dropdown a[href="#epc"],
        .mobile-dropdown a[href="#offshore"],
        .mobile-dropdown a[href="#environmental"],
        .mobile-dropdown a[href="#oil-spill"] {
            font-weight: 500 !important;
            background: rgba(214, 160, 25, 0.1) !important;
            color: var(--primary-gold) !important;
        }

        .mobile-dropdown a[href="#epc"]::before,
        .mobile-dropdown a[href="#offshore"]::before,
        .mobile-dropdown a[href="#environmental"]::before,
        .mobile-dropdown a[href="#oil-spill"]::before {
            content: '●';
            color: var(--primary-gold);
            font-size: 0.6rem;
        }

        .mobile-nav__action {
            margin-top: auto;
            padding-top: 2rem;
            border-top: 1px solid var(--border-glass);
        }

        .mobile-nav__action a {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.75rem;
            padding: 1.25rem 2rem;
            background: linear-gradient(135deg, var(--primary-gold), var(--primary-gold-light));
            color: #fff;
            text-decoration: none;
            font-weight: 600;
            border-radius: 20px;
            box-shadow: 0 8px 25px rgba(214, 160, 25, 0.3);
            transition: var(--transition-smooth);
        }

        .mobile-nav__action a:hover {
            transform: scale(1.05);
            box-shadow: 0 12px 35px rgba(214, 160, 25, 0.4);
        }

        /* Overlay */
        .overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.6);
            backdrop-filter: blur(5px);
            opacity: 0;
            visibility: hidden;
            transition: var(--transition-smooth);
            z-index: 1001;
        }

        .overlay.active {
            opacity: 1;
            visibility: visible;
        }

  
        /* Responsive Design */
        @media (max-width: 1200px) {
            .nav__links {
                gap: 1.5rem;
            }
            
            .nav__links a {
                font-size: 0.9rem;
                padding: 0.6rem 0.8rem;
            }

            .mega-dropdown .dropdown-content {
                min-width: 700px;
                padding: 1.5rem;
            }

            .mega-content {
                gap: 1.5rem;
            }

            .mega-section {
                padding: 1rem;
            }

                  .nav {
                width: calc(90% - 80px);
                margin-right: 70px;
                padding: 0.5rem 1rem;
                display:none;
            }

        }

        @media (max-width: 1000px) {
            .toggle-btn {
                display: flex;
            }

            .nav__links,
            .nav__action {
                display: none;
            }

            .nav {
                width: calc(90% - 80px);
                margin-right: 70px;
                padding: 0.5rem 1rem;
            }

            /* Hide mega dropdown on tablet/mobile */
            .mega-dropdown .dropdown-content {
                display: none;
            }
        }

        /* Smooth animations */
        @keyframes slideInFromLeft {
            from {
                transform: translateX(-100%);
                opacity: 0;
            }
            to {
                transform: translateX(0);
                opacity: 1;
            }
        }

        .mobile-nav.active .mobile-nav__links > li > a {
            animation: slideInFromLeft 0.6s ease-out forwards;
        }

        .mobile-nav.active .mobile-nav__links > li:nth-child(1) > a { animation-delay: 0.1s; }
        .mobile-nav.active .mobile-nav__links > li:nth-child(2) > a { animation-delay: 0.2s; }
        .mobile-nav.active .mobile-nav__links > li:nth-child(3) > a { animation-delay: 0.3s; }
        .mobile-nav.active .mobile-nav__links > li:nth-child(4) > a { animation-delay: 0.4s; }
        .mobile-nav.active .mobile-nav__links > li:nth-child(5) > a { animation-delay: 0.5s; }
        .mobile-nav.active .mobile-nav__links > li:nth-child(6) > a { animation-delay: 0.6s; }
        .mobile-nav.active .mobile-nav__links > li:nth-child(7) > a { animation-delay: 0.7s; }
        .mobile-nav.active .mobile-nav__links > li:nth-child(8) > a { animation-delay: 0.8s; }

        @media (max-width: 480px) {
            .mobile-nav {
                max-width: 100%;
            }

            .nav {
                width: calc(90% - 70px);
                margin-right: 60px;
            }

            .toggle-btn {
                right: 1rem;
                width: 45px;
                height: 45px;
            }
        }




  /* Enhanced Footer Section */
        .footer-section {
            position: relative;
            background: 
                linear-gradient(135deg, 
                    rgba(20, 20, 20, 0.98) 0%,
                    rgba(30, 30, 30, 0.95) 25%,
                    rgba(25, 25, 25, 0.97) 50%,
                    rgba(15, 15, 15, 0.98) 75%,
                    rgba(10, 10, 10, 0.99) 100%
                ),
                radial-gradient(circle at 20% 80%, rgba(214, 160, 25, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(214, 160, 25, 0.06) 0%, transparent 50%);
            color: var(--text-primary);
            padding: 6rem 2rem 4rem;
            overflow: hidden;
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
        }

        .footer-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                linear-gradient(45deg, transparent 30%, rgba(214, 160, 25, 0.03) 50%, transparent 70%),
                linear-gradient(-45deg, transparent 30%, rgba(214, 160, 25, 0.04) 50%, transparent 70%);
            pointer-events: none;
            z-index: 1;
        }

        .footer-section::after {
            content: '';
            position: absolute;
            top: -2px;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(90deg, 
                transparent 0%,
                rgba(214, 160, 25, 0.4) 25%,
                rgba(214, 160, 25, 0.6) 50%,
                rgba(214, 160, 25, 0.4) 75%,
                transparent 100%
            );
            z-index: 2;
        }

        .footer-container {
            position: relative;
            z-index: 3;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 4rem;
            max-width: 1400px;
            margin: 0 auto;
            align-items: start;
        }

        /* Enhanced Footer Brand */
        .footer-brand {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }

        .footer-logo {
            width: 180px;
            height: auto;
            filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
            transition: var(--transition-smooth);
        }

        .footer-logo:hover {
            transform: scale(1.05) translateY(-2px);
            filter: drop-shadow(0 8px 24px rgba(214, 160, 25, 0.4));
        }

        .footer-brand p {
            font-size: 1.125rem;
            line-height: 1.7;
            max-width: 400px;
            color: rgba(255, 255, 255, 0.9);
            font-weight: 400;
            letter-spacing: 0.02em;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
        }

        .company-stats {
            display: flex;
            gap: 2rem;
            margin-top: 1.5rem;
        }

        .stat-item {
            text-align: center;
            padding: 1rem;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 12px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(214, 160, 25, 0.15);
            transition: var(--transition-smooth);
        }

        .stat-item:hover {
            background: rgba(255, 255, 255, 0.08);
            transform: translateY(-2px);
            border-color: rgba(214, 160, 25, 0.25);
        }

        .stat-number {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--text-primary);
            display: block;
        }

        .stat-label {
            font-size: 0.875rem;
            color: rgba(255, 255, 255, 0.8);
            margin-top: 0.25rem;
        }

        /* Enhanced Footer Links */
        .footer-links {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .footer-links h3 {
            font-family: 'Libre Baskerville', serif;
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            color: var(--text-white);
            position: relative;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
        }

        .footer-links h3::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 40px;
            height: 3px;
            background: linear-gradient(90deg, var(--primary-gold-light), var(--primary-gold));
            border-radius: 2px;
        }

        .footer-links ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .footer-links ul li a {
            color: rgba(255, 255, 255, 0.85);
            text-decoration: none;
            font-size: 1rem;
            font-weight: 500;
            transition: var(--transition-smooth);
            position: relative;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.5rem 0;
        }

        .footer-links ul li a::before {
            content: '';
            width: 4px;
            height: 4px;
            background: var(--primary-gold-light);
            border-radius: 50%;
            transition: var(--transition-smooth);
            opacity: 0;
            transform: translateX(-10px);
        }

        .footer-links ul li a:hover::before {
            opacity: 1;
            transform: translateX(0);
        }

        .footer-links ul li a:hover {
            color: var(--primary-gold);
            transform: translateX(8px);
            text-shadow: 0 2px 8px rgba(255, 204, 0, 0.3);
        }

        /* Enhanced Social Media Section */
        .footer-social {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .footer-social h3 {
            font-family: 'Libre Baskerville', serif;
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--text-white);
            position: relative;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
        }

        .footer-social h3::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 40px;
            height: 3px;
            background: linear-gradient(90deg, var(--primary-gold-light), var(--primary-gold));
            border-radius: 2px;
        }

        .social-icons {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .social-icons a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 48px;
            height: 48px;
            background: rgba(255, 255, 255, 0.06);
            color: var(--text-white);
            border-radius: 14px;
            text-decoration: none;
            font-size: 1.25rem;
            transition: var(--transition-smooth);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(214, 160, 25, 0.2);
            position: relative;
            overflow: hidden;
        }

        .social-icons a::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(214, 160, 25, 0.15), transparent);
            transition: var(--transition-smooth);
        }

        .social-icons a:hover::before {
            left: 100%;
        }

        .social-icons a:hover {
            background: rgba(214, 160, 25, 0.1);
            border-color: rgba(214, 160, 25, 0.4);
            transform: translateY(-4px) scale(1.05);
            box-shadow: 0 8px 25px rgba(214, 160, 25, 0.2);
        }

        .newsletter-signup {
            margin-top: 2rem;
            padding: 1.5rem;
            background: rgba(0, 0, 0, 0.3);
            border-radius: 16px;
            backdrop-filter: blur(15px);
            border: 1px solid rgba(214, 160, 25, 0.15);
        }

        .newsletter-signup h4 {
            font-family: 'Libre Baskerville', serif;
            color: var(--text-primary);
            margin-bottom: 1rem;
            font-size: 1.125rem;
        }

        .newsletter-form {
            display: flex;
            gap: 0.5rem;
        }

        .newsletter-form input {
            flex: 1;
            padding: 0.75rem 1rem;
            border: 1px solid rgba(214, 160, 25, 0.2);
            border-radius: 8px;
            background: rgba(255, 255, 255, 0.05);
            color: var(--text-white);
            font-size: 0.875rem;
            transition: var(--transition-smooth);
        }

        .newsletter-form input:focus {
            outline: none;
            border-color: rgba(214, 160, 25, 0.5);
            background: rgba(255, 255, 255, 0.08);
        }

        .newsletter-form button {
            padding: 0.75rem 1.5rem;
            background: linear-gradient(135deg, var(--primary-gold), var(--primary-gold-light));
            border: none;
            border-radius: 8px;
            color: var(--text-dark);
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition-smooth);
        }

        .newsletter-form button:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(255, 204, 0, 0.4);
        }

       
  /* Enhanced Footer Section */
        .footer-section {
            position: relative;
            background: 
                linear-gradient(135deg, 
                    rgba(20, 20, 20, 0.98) 0%,
                    rgba(30, 30, 30, 0.95) 25%,
                    rgba(25, 25, 25, 0.97) 50%,
                    rgba(15, 15, 15, 0.98) 75%,
                    rgba(10, 10, 10, 0.99) 100%
                ),
                radial-gradient(circle at 20% 80%, rgba(214, 160, 25, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(214, 160, 25, 0.06) 0%, transparent 50%);
            color: var(--text-primary);
            padding: 6rem 2rem 4rem;
            overflow: hidden;
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
        }

        .footer-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                linear-gradient(45deg, transparent 30%, rgba(214, 160, 25, 0.03) 50%, transparent 70%),
                linear-gradient(-45deg, transparent 30%, rgba(214, 160, 25, 0.04) 50%, transparent 70%);
            pointer-events: none;
            z-index: 1;
        }

        .footer-section::after {
            content: '';
            position: absolute;
            top: -2px;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(90deg, 
                transparent 0%,
                rgba(214, 160, 25, 0.4) 25%,
                rgba(214, 160, 25, 0.6) 50%,
                rgba(214, 160, 25, 0.4) 75%,
                transparent 100%
            );
            z-index: 2;
        }

        .footer-container {
            position: relative;
            z-index: 3;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 4rem;
            max-width: 1400px;
            margin: 0 auto;
            align-items: start;
        }

        /* Enhanced Footer Brand */
        .footer-brand {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }

        .footer-logo {
            width: 180px;
            height: auto;
            filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
            transition: var(--transition-smooth);
        }

        .footer-logo:hover {
            transform: scale(1.05) translateY(-2px);
            filter: drop-shadow(0 8px 24px rgba(214, 160, 25, 0.4));
        }

        .footer-brand p {
            font-size: 1.125rem;
            line-height: 1.7;
            max-width: 400px;
            color: rgba(255, 255, 255, 0.9);
            font-weight: 400;
            letter-spacing: 0.02em;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
        }

        .footer-company-stats {
            display: flex;
            gap: 2rem;
            margin-top: 1.5rem;
        }

        .footer-stat-item {
            text-align: center;
            padding: 1rem;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 12px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(214, 160, 25, 0.15);
            transition: var(--transition-smooth);
        }

        .footer-stat-item:hover {
            background: rgba(255, 255, 255, 0.08);
            transform: translateY(-2px);
            border-color: rgba(214, 160, 25, 0.25);
        }

        .footer-stat-number {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--text-white);
            display: block;
        }

        .footer-stat-label {
            font-size: 0.875rem;
            color: rgba(255, 255, 255, 0.8);
            margin-top: 0.25rem;
        }

        /* Enhanced Footer Links */
        .footer-links {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .footer-links h3 {
            font-family: 'Libre Baskerville', serif;
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            color: var(--text-white);
            position: relative;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
        }

        .footer-links h3::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 40px;
            height: 3px;
            background: linear-gradient(90deg, var(--primary-gold-light), var(--primary-gold));
            border-radius: 2px;
        }

        .footer-links ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .footer-links ul li a {
            color: rgba(255, 255, 255, 0.85);
            text-decoration: none;
            font-size: 1rem;
            font-weight: 500;
            transition: var(--transition-smooth);
            position: relative;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.5rem 0;
        }

        .footer-links ul li a::before {
            content: '';
            width: 4px;
            height: 4px;
            background: var(--primary-gold-light);
            border-radius: 50%;
            transition: var(--transition-smooth);
            opacity: 0;
            transform: translateX(-10px);
        }

        .footer-links ul li a:hover::before {
            opacity: 1;
            transform: translateX(0);
        }

        .footer-links ul li a:hover {
            color: var(--primary-gold);
            transform: translateX(8px);
            text-shadow: 0 2px 8px rgba(255, 204, 0, 0.3);
        }

        /* Enhanced Social Media Section */
        .footer-social {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .footer-social h3 {
            font-family: 'Libre Baskerville', serif;
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--text-white);
            position: relative;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
        }

        .footer-social h3::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 40px;
            height: 3px;
            background: linear-gradient(90deg, var(--primary-gold-light), var(--primary-gold));
            border-radius: 2px;
        }

        .footer-social-icons {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .footer-social-icons a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 48px;
            height: 48px;
            background: rgba(255, 255, 255, 0.06);
            color: var(--text-white);
            border-radius: 14px;
            text-decoration: none;
            font-size: 1.25rem;
            transition: var(--transition-smooth);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(214, 160, 25, 0.2);
            position: relative;
            overflow: hidden;
        }

        .footer-social-icons a::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(214, 160, 25, 0.15), transparent);
            transition: var(--transition-smooth);
        }

        .footer-social-icons a:hover::before {
            left: 100%;
        }

        .footer-social-icons a:hover {
            background: rgba(214, 160, 25, 0.1);
            border-color: rgba(214, 160, 25, 0.4);
            transform: translateY(-4px) scale(1.05);
            box-shadow: 0 8px 25px rgba(214, 160, 25, 0.2);
        }

        .newsletter-signup {
            margin-top: 2rem;
            padding: 1.5rem;
            background: rgba(0, 0, 0, 0.3);
            border-radius: 16px;
            backdrop-filter: blur(15px);
            border: 1px solid rgba(214, 160, 25, 0.15);
        }

        .newsletter-signup h4 {
            font-family: 'Libre Baskerville', serif;
            color: var(--text-white);
            margin-bottom: 1rem;
            font-size: 1.125rem;
        }

        .newsletter-form {
            display: flex;
            gap: 0.5rem;
        }

        .newsletter-form input {
            flex: 1;
            padding: 0.75rem 1rem;
            border: 1px solid rgba(214, 160, 25, 0.2);
            border-radius: 8px;
            background: rgba(255, 255, 255, 0.05);
            color: var(--text-white);
            font-size: 0.875rem;
            transition: var(--transition-smooth);
        }

        .newsletter-form input:focus {
            outline: none;
            border-color: rgba(214, 160, 25, 0.5);
            background: rgba(255, 255, 255, 0.08);
        }

        .newsletter-form button {
            padding: 0.75rem 1.5rem;
            background: linear-gradient(135deg, var(--primary-gold), var(--primary-gold-light));
            border: none;
            border-radius: 8px;
            color: var(--text-dark);
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition-smooth);
        }

        .newsletter-form button:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(255, 204, 0, 0.4);
        }

        /* Enhanced Footer Bottom */
        .footer-bottom {
            margin-top: 4rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.2);
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
            position: relative;
            z-index: 3;
        }

        .footer-bottom p {
            color: rgba(255, 255, 255, 0.8);
            font-size: 0.875rem;
            margin: 0;
        }

        .footer-legal {
            display: flex;
            gap: 2rem;
            align-items: center;
        }

        .footer-legal a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            font-size: 0.875rem;
            transition: var(--transition-smooth);
        }

        .footer-legal a:hover {
            color: var(--primary-gold-light);
        }

        /* Ultra Modern Back to Top Button */
        .back-to-top {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition-smooth);
        }

        .back-to-top.visible {
            opacity: 1;
            visibility: visible;
        }

        .back-to-top-btn {
            width: 56px;
            height: 56px;
            border: none;
            border-radius: 16px;
            background: 
                linear-gradient(135deg, 
                    rgba(214, 160, 25, 0.9) 0%,
                    rgba(255, 204, 0, 0.8) 50%,
                    rgba(214, 160, 25, 0.9) 100%
                );
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition-bounce);
            position: relative;
            overflow: hidden;
            box-shadow: 
                0 8px 32px rgba(214, 160, 25, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
        }

        .back-to-top-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: var(--transition-smooth);
        }

        .back-to-top-btn:hover::before {
            left: 100%;
        }

        .back-to-top-btn:hover {
            transform: translateY(-4px) scale(1.05);
            box-shadow: 
                0 12px 40px rgba(214, 160, 25, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
        }

        .back-to-top-btn:active {
            transform: translateY(-2px) scale(1.02);
        }

        .back-to-top-icon {
            width: 20px;
            height: 20px;
            transition: var(--transition-smooth);
        }

        .back-to-top-icon path {
            fill: var(--text-dark);
            filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
        }

        .back-to-top-btn:hover .back-to-top-icon {
            transform: translateY(-2px);
        }

        /* Progress Ring */
        .progress-ring {
            position: absolute;
            top: -2px;
            left: -2px;
            width: 60px;
            height: 60px;
            transform: rotate(-90deg);
        }

        .progress-ring-circle {
            fill: none;
            stroke: rgba(255, 204, 0, 0.6);
            stroke-width: 2;
            stroke-linecap: round;
            stroke-dasharray: 176;
            stroke-dashoffset: 176;
            transition: stroke-dashoffset 0.3s ease;
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .footer-container {
                grid-template-columns: 1fr;
                gap: 3rem;
                text-align: center;
            }

                  
            .nav__brand img {
                width: 9rem;
            }
            

            .footer-ompany-stats {
                justify-content: center;
            }

            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }

            .footer-legal {
                flex-direction: column;
                gap: 1rem;
            }
        }

        @media (max-width: 768px) {
            .footer-section {
                padding: 4rem 1rem 3rem;
            }

            .footer-container {
                gap: 2rem;
            }

            .footer-company-stats {
                flex-direction: column;
                gap: 1rem;
            }

            .newsletter-form {
                flex-direction: column;
            }

            .back-to-top {
                bottom: 1rem;
                right: 1rem;
            }

            .back-to-top-btn {
                width: 48px;
                height: 48px;
                border-radius: 12px;
            }

            .back-to-top-icon {
                width: 16px;
                height: 16px;
            }
            .footer-company-stats{
               display: none; 
            }

            .footer-logo{
                width: 100px;
            }

            .footer-brand{
                align-items: center;
            }
        }
