:root {
            --primary: #1E3A8A;
            --accent: #F5A623;
            --bg: #F7F8FA;
            --card: #FFFFFF;
            --text: #0F1F55;
            --subtext: #6B7280;
            --hover: #D4881A;
            --border: #E2E8F0;
            --offwhite: #F5F5F5;
            --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
            --shadow: 0 4px 6px rgba(0, 0, 0, 0.07), 0 2px 4px rgba(0, 0, 0, 0.06);
            --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.10), 0 4px 10px rgba(0, 0, 0, 0.06);
            --shadow-xl: 0 20px 50px rgba(0, 0, 0, 0.12), 0 8px 20px rgba(0, 0, 0, 0.08);
            --radius-sm: 8px;
            --radius: 12px;
            --radius-lg: 16px;
            --radius-xl: 20px;
            --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            scroll-padding-top: 80px;
        }

        body {
            font-family: 'Inter', sans-serif;
            background-color: var(--bg);
            color: var(--text);
            line-height: 1.6;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
        }

        /* ========== GLOBAL BUTTON ========== */
        .btn {
            text-decoration: none;
        }

        /* ========== STICKY HEADER ========== */
        .header {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: #FFFFFF;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            transition: var(--transition);
            padding: 0;
            border-bottom: 1px solid var(--border);
        }

        .header.scrolled {
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        }

        .navbar {
            display: flex;
            align-items: center;
            justify-content: space-between;
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 24px;
            height: 72px;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
            color: var(--primary);
            font-family: 'Poppins', sans-serif;
            font-weight: 700;
            font-size: 1.35rem;
            letter-spacing: -0.3px;
            white-space: nowrap;
        }

        .logo-img {
            height: 42px;
            width: auto;
            object-fit: contain;
            border-radius: var(--radius-sm);
            display: block;
            transition: var(--transition-fast);
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 6px;
            align-items: center;
        }

        .nav-links a {
            color: var(--text);
            text-decoration: none;
            padding: 10px 16px;
            border-radius: 8px;
            font-weight: 500;
            font-size: 0.95rem;
            transition: var(--transition-fast);
            position: relative;
            white-space: nowrap;
        }

        .nav-links a:hover {
            background: rgba(30, 58, 138, 0.06);
            color: var(--primary);
        }

        .nav-links a.active {
            background: var(--primary);
            color: #FFFFFF !important;
            font-weight: 600;
        }

        .nav-links a.active:hover {
            background: var(--primary);
            color: #FFFFFF !important;
        }

        .nav-links .nav-cta {
            background: var(--accent);
            color: #fff !important;
            font-weight: 600;
            padding: 10px 20px;
            border-radius: 25px;
            margin-left: 8px;
            transition: var(--transition);
            box-shadow: 0 4px 14px rgba(245, 166, 35, 0.35);
        }

        .nav-links .nav-cta:hover {
            background: var(--hover);
            color: #fff !important;
            box-shadow: 0 6px 20px rgba(245, 166, 35, 0.5);
            transform: translateY(-1px);
        }

        /* Product Dropdown */
        .dropdown {
            position: relative;
        }

        .dropdown-toggle {
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .dropdown-toggle i {
            font-size: 0.7rem;
            transition: var(--transition-fast);
        }

        .dropdown:hover .dropdown-toggle i {
            transform: rotate(180deg);
        }

        .dropdown-menu {
            position: absolute;
            top: 100%;
            left: 50%;
            transform: translateX(-50%) translateY(8px);
            background: #fff;
            border-radius: var(--radius);
            box-shadow: var(--shadow-xl);
            padding: 20px;
            min-width: 680px;
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
            transition: var(--transition);
            z-index: 1001;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 6px;
        }

        .dropdown:hover .dropdown-menu {
            opacity: 1;
            visibility: visible;
            pointer-events: all;
            transform: translateX(-50%) translateY(4px);
        }

        .dropdown-menu a {
            color: var(--text) !important;
            padding: 10px 14px !important;
            border-radius: 6px !important;
            font-size: 0.88rem !important;
            font-weight: 500 !important;
            transition: var(--transition-fast) !important;
            background: transparent !important;
            display: block;
            white-space: nowrap;
        }

        .dropdown-menu a:hover {
            background: #f0f4ff !important;
            color: var(--primary) !important;
            font-weight: 600 !important;
        }

        .dropdown-menu a i {
            color: var(--accent);
            margin-right: 6px;
            font-size: 0.75rem;
        }

        /* Mobile Menu Toggle */
        .menu-toggle {
            display: none;
            background: none;
            border: none;
            color: var(--primary);
            font-size: 1.6rem;
            cursor: pointer;
            padding: 8px;
            border-radius: 6px;
            transition: var(--transition-fast);
        }

        .menu-toggle:hover {
            background: rgba(30, 58, 138, 0.08);
        }
        
        .testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

        /* Mobile Menu */
        .mobile-menu {
            display: none;
            position: fixed;
            top: 72px;
            left: 0;
            right: 0;
            bottom: 0;
            background: var(--primary);
            z-index: 999;
            padding: 20px;
            overflow-y: auto;
            flex-direction: column;
            gap: 4px;
        }

        .mobile-menu.active {
            display: flex;
        }

        .mobile-menu a {
            color: #fff;
            text-decoration: none;
            padding: 14px 18px;
            border-radius: 10px;
            font-weight: 500;
            font-size: 1rem;
            transition: var(--transition-fast);
            display: block;
        }

        .mobile-menu a:hover {
            background: rgba(255, 255, 255, 0.1);
        }

        .mobile-menu .mobile-cta {
            background: var(--accent);
            text-align: center;
            font-weight: 600;
            margin-top: 12px;
            border-radius: 25px;
        }

        .mobile-submenu {
            padding-left: 16px;
            display: none;
            flex-direction: column;
            gap: 2px;
        }

        .mobile-submenu.active {
            display: flex;
        }

        .mobile-submenu a {
            font-size: 0.9rem;
            padding: 10px 14px;
        }

        .mobile-dropdown-toggle {
            display: flex;
            align-items: center;
            justify-content: space-between;
            cursor: pointer;
            color: #fff;
            padding: 14px 18px;
            border-radius: 10px;
            font-weight: 500;
            font-size: 1rem;
            transition: var(--transition-fast);
        }

        .mobile-dropdown-toggle:hover {
            background: rgba(255, 255, 255, 0.1);
        }

        .mobile-dropdown-toggle i {
            transition: var(--transition-fast);
        }

        .mobile-dropdown-toggle.open i {
            transform: rotate(180deg);
        }

        /* ========== HERO SECTION ========== */
        .hero {
            background: var(--primary);
            color: #fff;
            padding: 70px 24px 90px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -100px;
            right: -120px;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(245, 166, 35, 0.25) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }

        .hero::after {
            content: '';
            position: absolute;
            bottom: -80px;
            left: -100px;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(245, 166, 35, 0.18) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 800px;
            margin: 0 auto;
        }

        .hero-badge {
            display: inline-block;
            background: rgba(255, 255, 255, 0.12);
            border: 1px solid rgba(255, 255, 255, 0.25);
            padding: 8px 18px;
            border-radius: 25px;
            font-size: 0.9rem;
            font-weight: 500;
            margin-bottom: 20px;
            letter-spacing: 0.5px;
            animation: fadeInDown 0.7s ease-out;
        }

        .hero h1 {
            font-family: 'Poppins', sans-serif;
            font-size: 3.2rem;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 16px;
            letter-spacing: -1px;
            animation: fadeInUp 0.7s ease-out;
        }

        .hero h1 span {
            color: var(--accent);
        }

        .hero p {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.85);
            margin-bottom: 32px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            animation: fadeInUp 0.8s ease-out;
        }

        .hero-search {
            display: flex;
            max-width: 580px;
            margin: 0 auto;
            background: #fff;
            border-radius: 50px;
            overflow: hidden;
            box-shadow: var(--shadow-xl);
            animation: fadeInUp 0.9s ease-out;
        }

        .hero-search input {
            flex: 1;
            border: none;
            padding: 16px 24px;
            font-size: 1rem;
            font-family: 'Inter', sans-serif;
            outline: none;
            color: var(--text);
        }

        .hero-search input::placeholder {
            color: #9ca3af;
        }

        .hero-search button {
            background: var(--accent);
            color: #fff;
            border: none;
            padding: 16px 28px;
            font-weight: 600;
            font-size: 0.95rem;
            cursor: pointer;
            font-family: 'Inter', sans-serif;
            transition: var(--transition);
            white-space: nowrap;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .hero-search button:hover {
            background: var(--hover);
        }

        .hero-stats {
            display: flex;
            gap: 40px;
            justify-content: center;
            margin-top: 40px;
            flex-wrap: wrap;
            animation: fadeInUp 1s ease-out;
        }

        .hero-stat {
            text-align: center;
        }

        .hero-stat h3 {
            font-family: 'Poppins', sans-serif;
            font-size: 2rem;
            font-weight: 700;
            color: var(--accent);
        }

        .hero-stat p {
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.7);
            margin: 0;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* ========== SECTION STYLES ========== */
        .section {
            padding: 45px 24px;
        }

        .section-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-header {
            text-align: center;
            margin-bottom: 35px;
        }

        .section-badge {
            display: inline-block;
            background: #fef3e0;
            color: #b87514;
            padding: 6px 16px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
            letter-spacing: 0.5px;
            margin-bottom: 12px;
        }

        .section-header h2 {
            font-family: 'Poppins', sans-serif;
            font-size: 2.4rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 10px;
            letter-spacing: -0.5px;
        }

        .section-header p {
            color: var(--subtext);
            font-size: 1.05rem;
            max-width: 550px;
            margin: 0 auto;
        }

        /* ========== FEATURED PRODUCTS (HOME) ========== */
        .featured-products {
            background: #fff;
        }

        .product-cards-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
            gap: 24px;
        }

        .product-card {
            background: #fff;
            border-radius: var(--radius-lg);
            overflow: hidden;
            border: 1px solid var(--border);
            transition: var(--transition);
            cursor: pointer;
            box-shadow: var(--shadow-sm);
            position: relative;
        }

        .product-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-xl);
            border-color: transparent;
        }

        .product-card-img {
            height: 200px;
            background: #e8edf5;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3.5rem;
            color: var(--primary);
            position: relative;
            overflow: hidden;
        }

        .product-card-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

        .product-card:hover .product-card-img img {
            transform: scale(1.08);
        }

        .product-card-img .icon-placeholder {
            font-size: 4rem;
            color: var(--primary);
            opacity: 0.6;
        }

        .product-card-body {
            padding: 20px;
        }

        .product-card-body h3 {
            font-family: 'Poppins', sans-serif;
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--text);
            margin-bottom: 6px;
        }

        .product-card-body p {
            font-size: 0.88rem;
            color: var(--subtext);
            margin: 0;
        }

        .product-card .card-arrow {
            position: absolute;
            bottom: 20px;
            right: 20px;
            width: 36px;
            height: 36px;
            background: var(--accent);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 0.85rem;
            opacity: 0;
            transform: translateX(-8px);
            transition: var(--transition);
        }

        .product-card:hover .card-arrow {
            opacity: 1;
            transform: translateX(0);
        }

        /* ========== TESTIMONIALS ========== */
        .testimonials {
            background: var(--bg);
        }

        .testimonial-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
            gap: 24px;
        }

        .testimonial-card {
            background: #fff;
            border-radius: var(--radius-lg);
            padding: 28px;
            box-shadow: var(--shadow);
            border: 1px solid var(--border);
            transition: var(--transition);
        }

        .testimonial-card:hover {
            box-shadow: var(--shadow-lg);
            transform: translateY(-3px);
        }

        .testimonial-card .stars {
            color: var(--accent);
            margin-bottom: 12px;
            font-size: 0.9rem;
        }

        .testimonial-card .quote {
            font-style: italic;
            color: var(--text);
            margin-bottom: 16px;
            font-size: 0.95rem;
            line-height: 1.7;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .testimonial-author .avatar {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: var(--primary);
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 600;
            font-size: 1rem;
        }

        .testimonial-author .info h4 {
            font-weight: 600;
            font-size: 0.9rem;
            color: var(--text);
        }

        .testimonial-author .info p {
            font-size: 0.8rem;
            color: var(--subtext);
            margin: 0;
        }

        /* ========== CTA SECTION ========== */
        .cta-section {
            background: var(--primary);
            color: #fff;
            text-align: center;
            padding: 70px 24px;
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: -60px;
            right: -80px;
            width: 350px;
            height: 350px;
            background: radial-gradient(circle, rgba(245, 166, 35, 0.3) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }

        .cta-section h2 {
            font-family: 'Poppins', sans-serif;
            font-size: 2.2rem;
            font-weight: 700;
            margin-bottom: 12px;
            position: relative;
            z-index: 2;
        }

        .cta-section p {
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 24px;
            position: relative;
            z-index: 2;
            font-size: 1.05rem;
        }

        .cta-section .btn {
            display: inline-block;
            background: var(--accent);
            color: #fff;
            padding: 14px 32px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem;
            transition: var(--transition);
            position: relative;
            z-index: 2;
            box-shadow: 0 6px 20px rgba(245, 166, 35, 0.4);
        }

        .cta-section .btn:hover {
            background: var(--hover);
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(245, 166, 35, 0.5);
        }

        /* ========== ABOUT SECTION ========== */
        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }

        .about-image {
            border-radius: var(--radius-xl);
            overflow: hidden;
            box-shadow: var(--shadow-xl);
            position: relative;
        }

        .about-image img {
            width: 100%;
            height: auto;
            display: block;
            border-radius: var(--radius-xl);
        }

        .about-image .experience-badge {
            position: absolute;
            bottom: 24px;
            right: 24px;
            background: var(--accent);
            color: #fff;
            padding: 16px 22px;
            border-radius: var(--radius);
            text-align: center;
            font-weight: 700;
            font-family: 'Poppins', sans-serif;
            box-shadow: var(--shadow-lg);
        }

        .about-image .experience-badge span {
            font-size: 2rem;
            display: block;
            line-height: 1;
        }

        .about-content h2 {
            font-family: 'Poppins', sans-serif;
            font-size: 2.2rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 16px;
            letter-spacing: -0.5px;
        }

        .about-content .tagline {
            color: var(--accent);
            font-weight: 600;
            font-size: 1rem;
            margin-bottom: 12px;
            letter-spacing: 0.5px;
        }

        .about-content p {
            color: var(--subtext);
            margin-bottom: 20px;
            line-height: 1.7;
        }

        .why-choose-list {
            list-style: none;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
        }

        .why-choose-list li {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            font-size: 0.9rem;
            color: var(--text);
            padding: 8px 0;
            font-weight: 700;
        }

        .why-choose-list li i {
            color: var(--accent);
            font-size: 1.1rem;
            margin-top: 2px;
            flex-shrink: 0;
        }

        /* ========== PRODUCTS PAGE ========== */
        .products-full-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
            gap: 18px;
        }

        .product-item-card {
            background: #fff;
            border-radius: var(--radius);
            padding: 22px 18px;
            text-align: center;
            border: 1px solid var(--border);
            transition: var(--transition);
            cursor: pointer;
            box-shadow: var(--shadow-sm);
        }

        .product-item-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-lg);
            border-color: var(--accent);
        }

        .product-item-card .icon-wrap {
            width: 56px;
            height: 56px;
            background: #f0f4ff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 14px;
            font-size: 1.5rem;
            color: var(--primary);
            transition: var(--transition);
        }

        .product-item-card:hover .icon-wrap {
            background: var(--accent);
            color: #fff;
        }

        .product-item-card h4 {
            font-family: 'Poppins', sans-serif;
            font-size: 0.92rem;
            font-weight: 600;
            color: var(--text);
            margin: 0;
        }

        /* ========== GALLERY SECTION ========== */
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 20px;
        }

        .gallery-item {
            position: relative;
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow);
            aspect-ratio: 4/3;
            cursor: pointer;
            border: 1px solid var(--border);
            transition: var(--transition);
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
            display: block;
        }

        .gallery-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to top, rgba(12, 29, 63, 0.9) 0%, rgba(12, 29, 63, 0.2) 100%);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: var(--transition);
            color: #fff;
            padding: 20px;
            text-align: center;
        }

        .gallery-overlay i {
            font-size: 2rem;
            margin-bottom: 10px;
            transform: translateY(15px);
            transition: var(--transition);
            color: var(--accent);
        }

        .gallery-overlay span {
            font-family: 'Poppins', sans-serif;
            font-size: 1.1rem;
            font-weight: 600;
            transform: translateY(15px);
            transition: var(--transition);
        }

        .gallery-item:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-xl);
            border-color: transparent;
        }

        .gallery-item:hover img {
            transform: scale(1.08);
        }

        .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }

        .gallery-item:hover .gallery-overlay i,
        .gallery-item:hover .gallery-overlay span {
            transform: translateY(0);
        }

        /* ========== LIGHTBOX MODAL ========== */
        .lightbox {
            display: none;
            position: fixed;
            z-index: 9999;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            overflow: auto;
            background-color: rgba(12, 29, 63, 0.95);
            align-items: center;
            justify-content: center;
            flex-direction: column;
            padding: 20px;
            backdrop-filter: blur(8px);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .lightbox.active {
            display: flex;
            opacity: 1;
        }

        .lightbox-content {
            margin: auto;
            display: block;
            max-width: 90%;
            max-height: 80vh;
            border-radius: var(--radius);
            box-shadow: var(--shadow-xl);
            transform: scale(0.95);
            transition: transform 0.3s ease;
        }

        .lightbox.active .lightbox-content {
            transform: scale(1);
        }

        .lightbox-close {
            position: absolute;
            top: 30px;
            right: 40px;
            color: #fff;
            font-size: 40px;
            font-weight: bold;
            transition: 0.3s;
            cursor: pointer;
            z-index: 10000;
        }

        .lightbox-close:hover {
            color: var(--accent);
            transform: scale(1.1);
        }

        .lightbox-caption {
            margin: 15px auto 0;
            display: block;
            width: 80%;
            max-width: 700px;
            text-align: center;
            color: #ccc;
            font-size: 1.1rem;
            font-weight: 500;
            font-family: 'Poppins', sans-serif;
        }

        @media (max-width: 768px) {
            .gallery-grid {
                grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
                gap: 15px;
            }
        }

        @media (max-width: 480px) {
            .gallery-grid {
                grid-template-columns: 1fr;
                gap: 12px;
            }
        }

        /* ========== BLOG SECTION ========== */
        .blog-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
            gap: 24px;
        }

        .blog-card {
            background: #fff;
            border-radius: var(--radius-lg);
            overflow: hidden;
            border: 1px solid var(--border);
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
        }

        .blog-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-xl);
        }

        .blog-card-img {
            height: 200px;
            background: #dce3f0;
            position: relative;
            overflow: hidden;
        }

        .blog-card-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

        .blog-card:hover .blog-card-img img {
            transform: scale(1.06);
        }

        .blog-card-img .blog-tag {
            position: absolute;
            top: 14px;
            left: 14px;
            background: var(--accent);
            color: #fff;
            padding: 5px 12px;
            border-radius: 15px;
            font-size: 0.78rem;
            font-weight: 600;
        }

        .blog-card-body {
            padding: 20px;
        }

        .blog-card-body .blog-date {
            font-size: 0.8rem;
            color: var(--subtext);
            margin-bottom: 8px;
        }

        .blog-card-body h3 {
            font-family: 'Poppins', sans-serif;
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--text);
            margin-bottom: 8px;
            line-height: 1.4;
        }

        .blog-card-body p {
            font-size: 0.9rem;
            color: var(--subtext);
            line-height: 1.6;
        }

        .blog-card-body .read-more {
            color: var(--accent);
            font-weight: 600;
            text-decoration: none;
            font-size: 0.9rem;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            transition: var(--transition-fast);
        }

        .blog-card-body .read-more:hover {
            color: var(--hover);
            gap: 10px;
        }

        /* ========== CONTACT & BOOKING ========== */
        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
        }

        .contact-info-cards {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .contact-info-card {
            background: #fff;
            border-radius: var(--radius);
            padding: 20px;
            display: flex;
            align-items: flex-start;
            gap: 16px;
            border: 1px solid var(--border);
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
        }

        .contact-info-card:hover {
            box-shadow: var(--shadow);
            border-color: #d0d7e8;
        }

        .contact-info-card .ci-icon {
            width: 46px;
            height: 46px;
            background: #f0f4ff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            font-size: 1.1rem;
            color: var(--primary);
        }

        .contact-info-card h4 {
            font-weight: 600;
            font-size: 0.95rem;
            color: var(--text);
            margin-bottom: 2px;
        }

        .contact-info-card p {
            font-size: 0.85rem;
            color: var(--subtext);
            margin: 0;
        }

        .booking-form-wrap {
            background: #fff;
            border-radius: var(--radius-lg);
            padding: 32px;
            border: 1px solid var(--border);
            box-shadow: var(--shadow-lg);
        }

        .booking-form-wrap h3 {
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
            color: var(--primary);
            margin-bottom: 20px;
            font-size: 1.3rem;
        }

        .form-group {
            margin-bottom: 16px;
        }

        .form-group label {
            display: block;
            font-weight: 500;
            font-size: 0.88rem;
            color: var(--text);
            margin-bottom: 6px;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 12px 16px;
            border: 1.5px solid var(--border);
            border-radius: var(--radius-sm);
            font-family: 'Inter', sans-serif;
            font-size: 0.95rem;
            transition: var(--transition-fast);
            background: #fafbfc;
            color: var(--text);
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--accent);
            box-shadow: 0 0 0 3px rgba(245, 166, 35, 0.1);
            background: #fff;
        }

        .form-group textarea {
            resize: vertical;
            min-height: 100px;
        }

        .submit-btn {
            width: 100%;
            background: var(--accent);
            color: #fff;
            border: none;
            padding: 14px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            font-family: 'Inter', sans-serif;
            transition: var(--transition);
            box-shadow: 0 4px 14px rgba(245, 166, 35, 0.3);
        }

        .submit-btn:hover {
            background: var(--hover);
            box-shadow: 0 6px 20px rgba(245, 166, 35, 0.45);
        }

        .map-container {
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-lg);
            margin-top: 30px;
            border: 1px solid var(--border);
        }

        .map-container iframe {
            width: 100%;
            height: 350px;
            border: none;
            display: block;
        }

        /* ========== FAQ ========== */
        .faq-section {
            background: #fff;
        }

        .faq-list {
            max-width: 750px;
            margin: 0 auto;
        }

        .faq-item {
            border: 1px solid var(--border);
            border-radius: var(--radius);
            margin-bottom: 10px;
            overflow: hidden;
            background: #fff;
            transition: var(--transition);
        }

        .faq-item.active {
            box-shadow: var(--shadow);
        }

        .faq-question {
            padding: 18px 20px;
            cursor: pointer;
            font-weight: 600;
            color: var(--text);
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: var(--transition-fast);
            user-select: none;
        }

        .faq-question:hover {
            color: var(--primary);
        }

        .faq-question i {
            transition: var(--transition-fast);
            color: var(--accent);
        }

        .faq-item.active .faq-question i {
            transform: rotate(45deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease, padding 0.4s ease;
            padding: 0 20px;
        }

        .faq-item.active .faq-answer {
            max-height: 300px;
            padding: 0 20px 18px;
        }

        .faq-answer p {
            color: var(--subtext);
            font-size: 0.9rem;
            line-height: 1.6;
            margin: 0;
        }

        /* ========== FOOTER ========== */
        .footer {
            background: #0c1d3f;
            color: #fff;
            padding: 50px 24px 24px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto 30px;
        }

        .footer-col {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .footer-col h4 {
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
            margin-bottom: 5px;
            font-size: 1rem;
            color: var(--accent);
        }

        .footer-col p {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.88rem;
            line-height: 1.5;
            margin: 0;
        }

        .footer-col a {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.88rem;
            text-decoration: none;
            display: inline-block;
            width: fit-content;
            transition: transform 0.2s ease, color var(--transition-fast);
        }

        .footer-col a:hover {
            color: #fff;
            transform: translateX(4px);
        }

        .footer-bottom {
            text-align: center;
            border-top: 1px solid rgba(255, 255, 255, 0.12);
            padding-top: 20px;
            max-width: 1200px;
            margin: 0 auto;
            color: rgba(255, 255, 255, 0.5);
            font-size: 0.82rem;
        }

        /* ========== FLOATING BUTTONS ========== */
        .floating-buttons {
            position: fixed;
            bottom: 24px;
            right: 24px;
            z-index: 999;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .float-btn {
            width: 52px;
            height: 52px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.4rem;
            color: #fff;
            text-decoration: none;
            box-shadow: var(--shadow-lg);
            transition: var(--transition);
            cursor: pointer;
            position: relative;
        }

        .float-btn.whatsapp {
            background: #25D366;
            animation: pulse-wa 2s infinite;
        }

        .float-btn.call {
            background: var(--primary);
            animation: pulse-call 2.5s infinite;
        }

        .float-btn:hover {
            transform: scale(1.1);
            box-shadow: var(--shadow-xl);
        }

        .float-btn .tooltip {
            position: absolute;
            right: 62px;
            background: #333;
            color: #fff;
            padding: 6px 14px;
            border-radius: 20px;
            font-size: 0.8rem;
            white-space: nowrap;
            opacity: 0;
            pointer-events: none;
            transition: var(--transition-fast);
        }

        .float-btn:hover .tooltip {
            opacity: 1;
        }

        @keyframes pulse-wa {

            0%,
            100% {
                box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
            }

            50% {
                box-shadow: 0 0 0 18px rgba(37, 211, 102, 0);
            }
        }

        @keyframes pulse-call {

            0%,
            100% {
                box-shadow: 0 0 0 0 rgba(30, 58, 138, 0.5);
            }

            50% {
                box-shadow: 0 0 0 18px rgba(30, 58, 138, 0);
            }
        }

        /* ========== SCROLL ANIMATIONS ========== */
        .reveal {
            opacity: 0;
            transform: translateY(40px);
            transition: opacity 0.7s ease-out, transform 0.7s ease-out;
        }

        .reveal.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* ========== RESPONSIVE ========== */
        @media (max-width: 1024px) {
            .dropdown-menu {
                min-width: 500px;
                grid-template-columns: repeat(2, 1fr);
            }

            .about-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .contact-grid {
                grid-template-columns: 1fr;
            }

            .hero h1 {
                font-size: 2.4rem;
            }

            .why-choose-list {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }

            .menu-toggle {
                display: block;
            }

            .dropdown-menu {
                display: none;
            }

            .hero {
                padding: 50px 16px 60px;
            }

            .hero h1 {
                font-size: 1.8rem;
                letter-spacing: -0.3px;
            }

            .hero p {
                font-size: 1rem;
            }

            .hero-search {
                flex-direction: column;
                border-radius: var(--radius);
                overflow: visible;
                gap: 10px;
                background: transparent;
                box-shadow: none;
            }

            .hero-search input {
                border-radius: 50px;
                padding: 14px 20px;
                box-shadow: var(--shadow);
            }

            .hero-search button {
                border-radius: 50px;
                justify-content: center;
                padding: 14px 20px;
            }

            .hero-stats {
                gap: 20px;
            }

            .hero-stat h3 {
                font-size: 1.5rem;
            }

            .section-header h2 {
                font-size: 1.7rem;
            }

            .section {
                padding: 25px 16px;
            }

            .product-cards-grid,
            .products-full-grid {
                grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
                gap: 12px;
            }

            .product-item-card {
                padding: 16px 12px;
            }

            .product-item-card .icon-wrap {
                width: 44px;
                height: 44px;
                font-size: 1.2rem;
            }

            .product-item-card h4 {
                font-size: 0.8rem;
            }

            .testimonial-grid {
                grid-template-columns: 1fr;
            }

            .blog-grid {
                grid-template-columns: 1fr;
            }

            .why-choose-list {
                grid-template-columns: 1fr;
            }

            .floating-buttons {
                bottom: 16px;
                right: 12px;
                gap: 8px;
            }

            .float-btn {
                width: 44px;
                height: 44px;
                font-size: 1.2rem;
            }

            .booking-form-wrap {
                padding: 20px;
            }

            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }

            .hero-search input {
                font-size: 0.9rem;
            }
        }

        @media (max-width: 480px) {
            .navbar {
                height: 60px;
                padding: 0 14px;
            }

            .logo {
                font-size: 1rem;
            }

            .logo-img {
                height: 34px;
            }

            .mobile-menu {
                top: 60px;
            }

            .hero h1 {
                font-size: 1.5rem;
            }

            .hero {
                padding: 40px 12px 50px;
            }

            .hero-search input,
            .hero-search button {
                padding: 12px 16px;
                font-size: 0.85rem;
            }

            .section-header h2 {
                font-size: 1.4rem;
            }

            .product-cards-grid,
            .products-full-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 10px;
            }

            .product-card-img {
                height: 140px;
            }

            .product-card-body h3 {
                font-size: 0.9rem;
            }

            .footer-grid {
                grid-template-columns: 1fr;
            }

            .cta-section h2 {
                font-size: 1.5rem;
            }

            .about-content h2 {
                font-size: 1.5rem;
            }
        }

        /* ========== GALLERY TAB BUTTONS ========== */
        .tab-btn {
            padding: 10px 24px;
            font-weight: 600;
            font-size: 0.95rem;
            border-radius: 30px;
            border: 1.5px solid var(--border);
            cursor: pointer;
            background: #fff;
            color: var(--text);
            transition: var(--transition);
            font-family: 'Inter', sans-serif;
            box-shadow: var(--shadow-sm);
        }

        .tab-btn:hover {
            border-color: var(--primary);
            color: var(--primary);
            transform: translateY(-1px);
            box-shadow: var(--shadow);
        }

        .tab-btn.active {
            background: var(--primary);
            border-color: var(--primary);
            color: #fff !important;
            box-shadow: 0 4px 14px rgba(30, 58, 138, 0.35);
        }
        
        .tab-btn.active:hover {
            background: var(--primary);
            color: #fff !important;
            transform: translateY(0);
        }

        /* ========== HERO BACKGROUND SLIDER ========== */
        .hero-slider {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
            overflow: hidden;
        }

        .hero-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            opacity: 0;
            transition: opacity 1s ease-in-out;
        }

        .hero-slide.active {
            opacity: 1;
        }

        /* ========== HIGHLIGHT STATS BANNER ========== */
        .stats-highlight-banner {
            background: linear-gradient(135deg, var(--primary) 0%, #152960 100%);
            padding: 30px 24px;
            margin: 0;
            color: #fff;
            border-bottom: 4px solid var(--accent);
        }

        .stats-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            text-align: center;
            align-items: center;
        }

        .stat-box {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 20px;
            padding: 10px;
        }

        .stat-box i {
            font-size: 2.8rem;
            color: var(--accent);
            opacity: 0.95;
        }

        .stat-info {
            text-align: left;
        }

        .stat-info h4 {
            font-family: 'Poppins', sans-serif;
            font-size: 2.4rem;
            font-weight: 800;
            line-height: 1.1;
            margin: 0;
            color: var(--accent);
        }

        .stat-info p {
            font-size: 0.95rem;
            font-weight: 500;
            margin: 0;
            color: rgba(255, 255, 255, 0.9);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        @media (max-width: 768px) {
            .stats-container {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            .stat-box {
                flex-direction: column;
                text-align: center;
            }
            .stat-info {
                text-align: center;
            }
        }