* { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: 'Inter', sans-serif; color: #333; overflow-x: hidden; background: #fff; line-height: 1.6; }

        /* Header / Navbar */
        .top-bar { background: #0a1628; padding: 20px 0; width: 100%; position: sticky; top: 0; z-index: 100; box-shadow: 0 4px 20px rgba(0,0,0,0.15); }
        .container { width: 100%; padding: 0 40px; max-width: 1400px; margin-left: auto; margin-right: auto; }
        .header-inner { display: flex; justify-content: space-between; align-items: center; }
        
        .brand-logo .logo-title { font-family: 'Inter', sans-serif; font-size: 22px; font-weight: 700; color: #fff; letter-spacing: 0.5px; }
        .brand-logo .logo-subtitle { font-size: 11px; color: #e67e22; letter-spacing: 2px; text-transform: uppercase; font-weight: 600; }
        .nav-links { display: flex; gap: 35px; list-style: none; }
        .nav-links a { color: #fff; text-decoration: none; font-size: 15px; font-weight: 500; transition: color 0.3s; }
        .nav-links a:hover, .nav-links a.active { color: #e67e22; }
        .header-actions { display: flex; align-items: center; gap: 15px; }
        .btn-catalog, .btn-shop { background: #e67e22; color: #fff; padding: 8px 18px; border-radius: 4px; text-decoration: none; font-size: 12px; font-weight: 600; display: flex; align-items: center; gap: 6px; transition: all 0.3s; }
        .btn-catalog:hover, .btn-shop:hover { background: #d35400; transform: translateY(-1px); }
        .search-icon { color: #fff; font-size: 16px; cursor: pointer; transition: color 0.3s; }

        /* Page Hero */
        .page-hero { position: relative; height: 480px; width: 100%; background: linear-gradient(rgba(10,22,40,0.8), rgba(10,22,40,0.92)), url('../img/gallery/akana_2018-17.jpg') center/cover no-repeat; display: flex; align-items: center; justify-content: center; text-align: center; overflow: hidden; }
        .page-hero-content h1 { font-family: 'Inter', sans-serif; font-size: 56px; color: #fff; font-weight: 700; line-height: 1.2; text-shadow: 2px 2px 8px rgba(0,0,0,0.5); }
        .page-hero-content p { color: #e67e22; font-size: 15px; margin-top: 15px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; }
        .breadcrumb { display: flex; align-items: center; gap: 12px; margin-top: 20px; color: rgba(255,255,255,0.6); font-size: 13px; justify-content: center; }
        .breadcrumb a { color: rgba(255,255,255,0.8); text-decoration: none; transition: color 0.3s; }
        .breadcrumb a:hover { color: #e67e22; }

        /* Filter Controls */
        .filter-section { padding: 50px 0 20px; background: #fff; text-align: center; }
        .filter-buttons { display: flex; justify-content: center; gap: 15px; flex-wrap: wrap; }
        .filter-btn { background: #f8f9fa; border: 1px solid #eee; padding: 10px 24px; border-radius: 30px; font-size: 14px; font-weight: 600; color: #1a2744; cursor: pointer; transition: all 0.3s; }
        .filter-btn:hover, .filter-btn.active { background: #e67e22; color: #fff; border-color: #e67e22; box-shadow: 0 5px 15px rgba(230,126,34,0.3); }

        /* Gallery Grid Section */
        .gallery-section { padding: 40px 0 100px; background: #fff; }
        .gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
        .gallery-item { position: relative; border-radius: 16px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.06); border: 1px solid #eee; background: #0a1628; cursor: pointer; transition: all 0.4s; }
        .gallery-item:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(0,0,0,0.15); border-color: #e67e22; }
        .gallery-item img { width: 100%; height: 380px; object-fit: cover; display: block; transition: transform 0.5s, opacity 0.5s; opacity: 0.95; }
        .gallery-item:hover img { transform: scale(1.08); opacity: 1; }
        
        .item-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,22,40,0.9) 0%, rgba(10,22,40,0.2) 60%, transparent 100%); display: flex; flex-direction: column; justify-content: flex-end; padding: 25px; opacity: 0; transition: opacity 0.3s; }
        .gallery-item:hover .item-overlay { opacity: 1; }
        .item-category { color: #e67e22; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 6px; }
        .item-title { color: #fff; font-family: 'Inter', sans-serif; font-size: 20px; font-weight: 700; line-height: 1.3; }
        .item-zoom-icon { position: absolute; top: 20px; right: 20px; width: 42px; height: 42px; background: rgba(230,126,34,0.9); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 16px; transition: transform 0.3s; }
        .gallery-item:hover .item-zoom-icon { transform: scale(1.1); }

        /* Lightbox Modal */
        .lightbox-modal { position: fixed; inset: 0; background: rgba(10,22,40,0.95); z-index: 1000; display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: all 0.3s; padding: 30px; }
        .lightbox-modal.active { opacity: 1; visibility: visible; }
        .lightbox-content { position: relative; max-width: 1000px; max-height: 90vh; width: 100%; text-align: center; }
        .lightbox-img { max-width: 100%; max-height: 80vh; object-fit: contain; border-radius: 12px; box-shadow: 0 20px 60px rgba(0,0,0,0.5); }
        .lightbox-caption { color: #fff; margin-top: 15px; font-size: 18px; font-family: 'Inter', sans-serif; }
        .lightbox-close { position: absolute; top: -45px; right: 0; color: #fff; font-size: 28px; cursor: pointer; transition: color 0.3s; }
        .lightbox-close:hover { color: #e67e22; }

        /* CTA Section */
        .cta-section { padding: 100px 0; background: linear-gradient(135deg, #1a2744 0%, #0f1b2e 100%); text-align: center; position: relative; overflow: hidden; }
        .cta-title { font-family: 'Inter', sans-serif; font-size: 42px; color: #fff; font-weight: 700; margin-bottom: 20px; }
        .cta-text { color: rgba(255,255,255,0.7); font-size: 16px; max-width: 650px; margin: 0 auto 35px; line-height: 1.7; }
        .cta-buttons { display: flex; gap: 20px; justify-content: center; }
        .btn-cta-primary { background: #e67e22; color: #fff; padding: 14px 35px; border-radius: 6px; text-decoration: none; font-size: 14px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; transition: all 0.3s; display: inline-flex; align-items: center; gap: 8px; }
        .btn-cta-primary:hover { background: #d35400; transform: translateY(-2px); box-shadow: 0 10px 30px rgba(230,126,34,0.3); }
        .btn-cta-secondary { background: transparent; color: #fff; padding: 14px 35px; border-radius: 6px; text-decoration: none; font-size: 14px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; border: 2px solid rgba(255,255,255,0.3); transition: all 0.3s; display: inline-flex; align-items: center; gap: 8px; }
        .btn-cta-secondary:hover { border-color: #e67e22; color: #e67e22; }

        /* Footer */
        .footer { background: #0a1628; padding: 60px 0 30px; color: rgba(255,255,255,0.6); }
        .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 50px; margin-bottom: 40px; }
        .footer-brand h3 {
            font-family: 'Inter', sans-serif !important;
            font-size: 24px !important;
            color: #E67E22 !important;
            font-weight: 700 !important;
            margin-bottom: 18px !important;
        }
        .footer-brand p { font-size: 14px; line-height: 1.8; margin-bottom: 20px; }
        .footer-social { display: flex; gap: 12px; }
        .footer-social a { width: 40px; height: 40px; background: rgba(255,255,255,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; text-decoration: none; transition: all 0.3s; }
        .footer-social a:hover { background: #e67e22; transform: translateY(-3px); }
        .footer-links h4 {
            color: #E67E22 !important;
            font-size: 16px !important;
            font-weight: 600 !important;
            margin-bottom: 22px !important;
        }
        .footer-links ul { list-style: none; }
        .footer-links li { margin-bottom: 12px; }
        .footer-links a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 14px; transition: color 0.3s; }
        .footer-links a:hover { color: #e67e22; }
        .footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 25px; text-align: center; font-size: 13px; }
        .scroll-top { position: fixed; bottom: 30px; right: 30px; width: 45px; height: 45px; background: #e67e22; color: #fff; border-radius: 8px; display: flex; align-items: center; justify-content: center; cursor: pointer; z-index: 100; transition: all 0.3s; border: none; opacity: 0; visibility: hidden; }
        .scroll-top.visible { opacity: 1; visibility: visible; }
        .mobile-menu-btn { display: none; background: none; border: none; color: #fff; font-size: 24px; cursor: pointer; padding: 5px; }

        @media (max-width: 1100px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } .footer-grid { grid-template-columns: 1fr 1fr; } }
        @media (max-width: 768px) { .nav-links { display: none; } .mobile-menu-btn { display: block; } .page-hero-content h1 { font-size: 38px; } .gallery-grid { grid-template-columns: 1fr; } .footer-grid { grid-template-columns: 1fr; } }
        
        /* 3D Modern White Brand Logo */
        
        .brand-logo .logo-title {
            font-family: 'Inter', sans-serif;
            font-size: 23px;
            font-weight: 700;
            color: #ffffff;
            letter-spacing: 0.8px;
            line-height: 1.15;
            text-shadow: 
                0 1px 0 #cccccc,
                0 2px 4px rgba(0, 0, 0, 0.35);
        }
        .brand-logo .logo-subtitle {
            font-size: 11px;
            color: #ffffff;
            letter-spacing: 2.8px;
            text-transform: uppercase;
            font-weight: 700;
            margin-top: 3px;
            opacity: 0.95;
            text-shadow: 
                0 1px 2px rgba(0,0,0,0.8),
                0 2px 6px rgba(0,0,0,0.5);
        }
            5% {
                transform: translate(130%, 130%) rotate(30deg);
            }
            8% {
                transform: translate(-130%, -130%) rotate(30deg);
            }
            10% {
                transform: translate(-130%, -130%) rotate(30deg);
            }
            100% {
                transform: translate(-130%, -130%) rotate(30deg);
            }
        }
            100% {
                left: 140%;
                top: 0;
            }
        }

    
        /* Custom SkewX Slide Logo Shine Animation */
        .logo-img-box {
            position: relative;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            border-radius: 4px;
        }

        .logo-img-box img {
            height: 48px;
            width: auto;
            display: block;
        }

        .logo-img-box:before {
            content: '';
            position: absolute;
            top: 0;
            left: -100px;
            width: 70px;
            height: 100%;
            transform: skewX(-30deg);
            animation-name: slide;
            animation-duration: 7s;
            animation-timing-function: ease-in-out;
            animation-delay: .3s;
            animation-iteration-count: infinite;
            animation-direction: alternate;
            background: linear-gradient(
                to right, 
                rgba(255, 255, 255, 0.13) 0%,
                rgba(255, 255, 255, 0.13) 77%,
                rgba(255, 255, 255, 0.5) 92%,
                rgba(255, 255, 255, 0.0) 100%
            );
            pointer-events: none;
            z-index: 2;
        }
            100% {
                left: 140%;
                top: 0;
            }
        }

        /* Custom SkewX Slide Logo Shine Animation */
        .logo-img-box {
            position: relative;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            border-radius: 4px;
        }

        .logo-img-box img {
            height: 48px;
            width: auto;
            display: block;
        }

        .logo-img-box:before {
            content: '';
            position: absolute;
            top: 0;
            left: -100px;
            width: 70px;
            height: 100%;
            transform: skewX(-30deg);
            animation-name: slide;
            animation-duration: 7s;
            animation-timing-function: ease-in-out;
            animation-delay: .3s;
            animation-iteration-count: infinite;
            animation-direction: alternate;
            background: linear-gradient(
                to right, 
                rgba(255, 255, 255, 0.13) 0%,
                rgba(255, 255, 255, 0.13) 77%,
                rgba(255, 255, 255, 0.5) 92%,
                rgba(255, 255, 255, 0.0) 100%
            );
            pointer-events: none;
            z-index: 2;
        }

        @keyframes slide {
            0% {
                left: -100px;
                top: 0;
            }
            50% {
                left: 40%;
                top: 0px;
            }
            100% {
                left: 140%;
                top: 0;
            }
        }

    
        /* Mask Gradient Logo Shine Effect */
        .header-logo-img {
            height: 48px;
            width: auto;
            object-fit: contain;
            filter: drop-shadow(0 4px 10px rgba(0,0,0,0.5));
            transition: transform 0.4s ease, mask-position 2s ease, -webkit-mask-position 2s ease;
            -webkit-mask-image: linear-gradient(45deg, #000 25%, rgba(0, 0, 0, 0.25) 50%, #000 75%);
            mask-image: linear-gradient(45deg, #000 25%, rgba(0, 0, 0, 0.25) 50%, #000 75%);
            -webkit-mask-size: 800%;
            mask-size: 800%;
            -webkit-mask-position: 0%;
            mask-position: 0%;
            animation: logoMaskShineLoop 20s infinite ease-in-out;
        }

        .brand-logo:hover .header-logo-img {
            transform: scale(1.06) rotate(-2deg);
            -webkit-mask-position: 140%;
            mask-position: 140%;
        }

        @keyframes logoMaskShineLoop {
            0% {
                -webkit-mask-position: 0%;
                mask-position: 0%;
            }
            12% {
                -webkit-mask-position: 140%;
                mask-position: 140%;
            }
            14% {
                -webkit-mask-position: 140%;
                mask-position: 140%;
            }
            26% {
                -webkit-mask-position: 0%;
                mask-position: 0%;
            }
            28% {
                -webkit-mask-position: 0%;
                mask-position: 0%;
            }
            100% {
                -webkit-mask-position: 0%;
                mask-position: 0%;
            }
        }

    
        

        /* Fullscreen Mobile Nav Overlay */
        .mobile-nav {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: rgba(10, 22, 40, 0.98);
            backdrop-filter: blur(15px);
            z-index: 1000;
            display: flex;
            flex-direction: column;
            opacity: 0;
            visibility: hidden;
            transition: all 0.35s ease;
        }

        .mobile-nav.active {
            opacity: 1;
            visibility: visible;
        }

        .mobile-nav-header {
            padding: 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .mobile-nav-close {
            background: none;
            border: none;
            color: #fff;
            font-size: 26px;
            cursor: pointer;
        }

        .mobile-nav-body {
            padding: 25px 20px 40px;
            overflow-y: auto;
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .mobile-nav-body a {
            color: #fff;
            text-decoration: none;
            font-size: 17px;
            font-weight: 600;
            transition: color 0.3s;
        }

        .mobile-nav-body a:hover {
            color: #e67e22;
        }

        .mobile-sublinks {
            display: flex;
            flex-direction: column;
            gap: 10px;
            padding-left: 15px;
            margin-top: 8px;
            border-left: 2px solid rgba(230, 126, 34, 0.5);
        }

        .mobile-sublinks a {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.85);
            font-weight: 500;
        }

        .mobile-nav-actions {
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin-top: 20px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

    
        /* Full Width Header Styling */
        .top-bar {
            background: #0a1628;
            padding: 20px 0;
            width: 100%;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 4px 20px rgba(0,0,0,0.15);
        }

        .top-bar .container {
            width: 100% !important;
            max-width: 100% !important;
            padding: 0 40px !important;
            margin: 0 !important;
        }

        .header-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
        }

        /* 3D Modern White Brand Logo */
        
        .brand-logo .logo-title {
            font-family: 'Inter', sans-serif;
            font-size: 23px;
            font-weight: 700;
            color: #ffffff;
            letter-spacing: 0.8px;
            line-height: 1.15;
            text-shadow: 
                0 1px 0 #cccccc,
                0 2px 4px rgba(0, 0, 0, 0.35);
        }
        .brand-logo .logo-subtitle {
            font-family: 'Inter', sans-serif;
            font-size: 11px;
            color: #ffffff;
            letter-spacing: 2.8px;
            text-transform: uppercase;
            font-weight: 700;
            margin-top: 3px;
            opacity: 0.95;
            text-shadow: 
                0 1px 2px rgba(0,0,0,0.8),
                0 2px 6px rgba(0,0,0,0.5);
        }

        /* Navigation & Dropdown Styling */
        .nav-links { display: flex; gap: 35px; list-style: none; }
        .nav-links > li { position: relative; padding: 10px 0; }
        .nav-links a { color: #fff; text-decoration: none; font-size: 15px; font-weight: 500; transition: color 0.3s; }
        .nav-links a:hover, .nav-links a.active { color: #e67e22; }

        /* Dropdown Submenu */
        .dropdown-menu {
            position: absolute;
            top: 100%;
            left: 0;
            background: #0a1628;
            min-width: 240px;
            box-shadow: 0 12px 35px rgba(0,0,0,0.45);
            border-radius: 8px;
            padding: 8px 0;
            list-style: none;
            opacity: 0;
            visibility: hidden;
            transform: translateY(12px);
            transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
            z-index: 200;
            border: 1px solid rgba(255,255,255,0.1);
        }
        .nav-links li:hover .dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        .dropdown-menu li { width: 100%; }
        .dropdown-menu a {
            padding: 10px 20px;
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 14px;
            color: rgba(255,255,255,0.85);
            white-space: nowrap;
            transition: all 0.2s;
        }
        .dropdown-menu a:hover {
            background: rgba(230, 126, 34, 0.15);
            color: #e67e22;
            padding-left: 24px;
        }

        /* Header Action Buttons */
        .header-actions {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        .btn-catalog, .btn-shop {
            background: #e67e22;
            color: #fff;
            padding: 8px 18px;
            border-radius: 4px;
            text-decoration: none;
            font-size: 12px;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 6px;
            transition: all 0.3s;
        }
        .btn-catalog:hover, .btn-shop:hover {
            background: #d35400;
            transform: translateY(-1px);
        }
        .search-icon {
            color: #fff;
            font-size: 16px;
            cursor: pointer;
        }

        /* Mask Gradient Logo Shine Effect */
        .header-logo-img {
            height: 48px;
            width: auto;
            object-fit: contain;
            filter: drop-shadow(0 4px 10px rgba(0,0,0,0.5));
            transition: transform 0.4s ease, mask-position 2.5s ease, -webkit-mask-position 2.5s ease;
            -webkit-mask-image: linear-gradient(45deg, #000 25%, rgba(0, 0, 0, 0.25) 50%, #000 75%);
            mask-image: linear-gradient(45deg, #000 25%, rgba(0, 0, 0, 0.25) 50%, #000 75%);
            -webkit-mask-size: 800%;
            mask-size: 800%;
            -webkit-mask-position: 0%;
            mask-position: 0%;
            animation: logoMaskShineLoop 20s infinite ease-in-out;
        }

        .brand-logo:hover .header-logo-img {
            transform: scale(1.06) rotate(-2deg);
            -webkit-mask-position: 140%;
            mask-position: 140%;
        }

        @keyframes logoMaskShineLoop {
            0% { -webkit-mask-position: 0%; mask-position: 0%; }
            12% { -webkit-mask-position: 140%; mask-position: 140%; }
            14% { -webkit-mask-position: 140%; mask-position: 140%; }
            26% { -webkit-mask-position: 0%; mask-position: 0%; }
            28% { -webkit-mask-position: 0%; mask-position: 0%; }
            100% { -webkit-mask-position: 0%; mask-position: 0%; }
        }

        

    
        /* 3D Modern White Brand Logo - Side-by-side flex layout */
        .brand-logo {
            text-decoration: none !important;
            display: flex !important;
            flex-direction: row !important;
            align-items: center !important;
            gap: 14px !important;
            transition: transform 0.3s ease;
        }
        .brand-logo:hover {
            transform: translateY(-1px);
        }
        .header-logo-img {
            height: 48px !important;
            width: auto !important;
            object-fit: contain;
            filter: drop-shadow(0 4px 10px rgba(0,0,0,0.5));
            transition: transform 0.4s ease, mask-position 2.5s ease, -webkit-mask-position 2.5s ease;
            -webkit-mask-image: linear-gradient(45deg, #000 25%, rgba(0, 0, 0, 0.25) 50%, #000 75%);
            mask-image: linear-gradient(45deg, #000 25%, rgba(0, 0, 0, 0.25) 50%, #000 75%);
            -webkit-mask-size: 800%;
            mask-size: 800%;
            -webkit-mask-position: 0%;
            mask-position: 0%;
            animation: logoMaskShineLoop 20s infinite ease-in-out;
        }
        .logo-text-wrap {
            display: flex !important;
            flex-direction: column !important;
        }
        .brand-logo .logo-title {
            font-family: 'Inter', sans-serif !important;
            font-size: 23px !important;
            font-weight: 700 !important;
            color: #ffffff !important;
            letter-spacing: 0.8px;
            line-height: 1.15;
            text-shadow: 
                0 1px 0 #cccccc,
                0 2px 4px rgba(0, 0, 0, 0.35);
        }
        .brand-logo .logo-subtitle {
            font-family: 'Inter', sans-serif !important;
            font-size: 11px !important;
            color: #ffffff !important;
            letter-spacing: 2.8px;
            text-transform: uppercase;
            font-weight: 700;
            margin-top: 3px;
            opacity: 0.95;
            text-shadow: 
                0 1px 2px rgba(0,0,0,0.8),
                0 2px 6px rgba(0,0,0,0.5);
        }

    
        /* Mobile Menu Button - Hidden on Desktop */
        .mobile-menu-btn {
            display: none !important;
        }

        /* Responsive Mobile Header (Only Logo + Hamburger on Mobile <= 968px) */
        @media screen and (max-width: 968px) {
            .top-bar { padding: 14px 0; }
            .top-bar .container { padding: 0 20px !important; }
            .nav-links, .header-actions { display: none !important; }
            .mobile-menu-btn {
                display: flex !important;
                align-items: center;
                justify-content: center;
                background: none;
                border: none;
                color: #fff;
                font-size: 24px;
                cursor: pointer;
                padding: 6px;
            }
        }

    
        /* 4-Column Footer Styling */
        .footer {
            background: #0a1628 !important;
            padding: 70px 0 30px !important;
            color: rgba(255,255,255,0.7) !important;
            width: 100% !important;
        }
        .footer-grid {
            display: grid !important;
            grid-template-columns: 2fr 1fr 1fr 1fr !important;
            gap: 50px !important;
            margin-bottom: 50px !important;
        }
        .footer-brand h3 {
            font-family: 'Inter', sans-serif !important;
            font-size: 24px !important;
            color: #E67E22 !important;
            font-weight: 700 !important;
            margin-bottom: 18px !important;
        }
        .footer-brand p {
            font-size: 14px !important;
            line-height: 1.8 !important;
            margin-bottom: 22px !important;
            color: rgba(255,255,255,0.65) !important;
        }
        .footer-social {
            display: flex !important;
            gap: 12px !important;
        }
        .footer-social a {
            width: 40px !important;
            height: 40px !important;
            background: rgba(255,255,255,0.08) !important;
            border-radius: 50% !important;
            display: flex !important;
            align-items: center !important;
            justify-content: center !important;
            color: #fff !important;
            text-decoration: none !important;
            transition: all 0.3s ease !important;
        }
        .footer-social a:hover {
            background: #e67e22 !important;
            transform: translateY(-3px) !important;
        }
        .footer-links h4 {
            color: #E67E22 !important;
            font-size: 16px !important;
            font-weight: 600 !important;
            margin-bottom: 22px !important;
        }
        .footer-links ul {
            list-style: none !important;
            padding: 0 !important;
            margin: 0 !important;
        }
        .footer-links li {
            margin-bottom: 12px !important;
        }
        .footer-links a {
            color: rgba(255,255,255,0.65) !important;
            text-decoration: none !important;
            font-size: 14px !important;
            transition: color 0.3s ease !important;
            display: inline-flex !important;
            align-items: center !important;
            gap: 8px !important;
        }
        .footer-links a:hover {
            color: #e67e22 !important;
        }
        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.1) !important;
            padding-top: 25px !important;
            text-align: center !important;
            font-size: 13.5px !important;
            color: rgba(255,255,255,0.5) !important;
        }

        @media (max-width: 968px) {
            .footer-grid {
                grid-template-columns: 1fr 1fr !important;
                gap: 30px !important;
            }
        }
        @media (max-width: 600px) {
            .footer-grid {
                grid-template-columns: 1fr !important;
            }
        }

    
        /* Centered Boxed Footer Container (Not Full-Width) */
        .footer .container {
            width: 100% !important;
            max-width: 1300px !important;
            margin-left: auto !important;
            margin-right: auto !important;
            padding-left: 40px !important;
            padding-right: 40px !important;
        }

        @media (max-width: 768px) {
            .footer .container {
                padding-left: 20px !important;
                padding-right: 20px !important;
            }
        }