  /* ===== RESET & BASE ===== */
        :root {
            --primary: #d0c30b;
            --accent: #958903;
            --gold: #ac8d03;
            --dark: #02021a;
            --light: #cab606;
            --white: #ffffff;
            --texture: #ffffff;
            --gray: #6b6b6b;
            --light-gray: #e8e5e0;
            --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
            --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.12);
            --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.16);
            --radius-sm: 8px;
            --radius: 12px;
            --radius-lg: 20px;
        }

        * {
            font-family: 'Montserrat', sans-serif;
            border-radius: 1px !important;
        }

        body {
            background-color: var(--white);
            overflow-x: hidden;
            scroll-behavior: smooth;
        }

        /* ===== SCROLLBAR ===== */
        ::-webkit-scrollbar {
            width: 6px;
        }
        ::-webkit-scrollbar-track {
            background: #f1f1f1;
            border-radius: 1px;
        }
        ::-webkit-scrollbar-thumb {
            background: var(--accent);
            border-radius: 1px;
        }

        /* ===== TEXT OVERFLOW FIXES ===== */
        p,
        h1,
        h2,
        h3,
        h4,
        h5,
        h6,
        span,
        a,
        li,
        .nav-link,
        .btn-primary,
        .btn-outline,
        .btn-dark,
        .section-title,
        .section-subtitle,
        .hero-content h1,
        .booking-field label,
        .booking-field input,
        .booking-field select,
        .testimonial-card p,
        .gallery-overlay h5,
        .gallery-overlay p,
        .core-value-item p,
        .mika-description-text p,
        .mika-text-title {
            overflow-wrap: break-word !important;
            word-wrap: break-word !important;
            word-break: break-word !important;
            max-width: 100% !important;
        }

        /* ===== BOOKING BAR ===== */
        .booking-bar {
            max-width: 1100px;
            margin: -3rem auto 0;
            position: relative;
            z-index: 10;
            background: #ffffff;
            border-radius: var(--radius-lg);
            padding: 1.8rem 2rem;
            box-shadow: var(--shadow-lg);
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            align-items: flex-end;
            justify-content: space-between;
        }

        .booking-field {
            display: flex;
            flex-direction: column;
            gap: 0.35rem;
            flex: 1 1 160px;
            min-width: 120px;
        }

        .booking-field label {
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            color: var(--gray);
            font-weight: 600;
            overflow-wrap: break-word;
            word-wrap: break-word;
        }

        .booking-field input,
        .booking-field select {
            padding: 0.7rem 1rem;
            border: 2px solid var(--light-gray);
            border-radius: var(--radius-sm);
            font-size: 0.95rem;
            background: #fcfcfc;
            outline: none;
            width: 100%;
            min-width: 0;
            box-sizing: border-box;
        }

        .booking-field input:focus,
        .booking-field select:focus {
            border-color: var(--gold);
            background: #fff;
            box-shadow: 0 0 0 4px rgba(201, 169, 110, 0.1);
        }

        .booking-bar .btn-primary {
            flex: 0 0 auto;
            padding: 0.75rem 2.2rem;
            font-size: 1rem;
            white-space: nowrap;
        }

        /* ===== NAVBAR ===== */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            transition: all 0.4s ease;
            padding: 1.5rem 2rem;
            background: transparent;
        }

        .navbar.scrolled {
            background: rgba(255, 255, 255, 0.95);
            padding: 0.8rem 2rem;
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
            backdrop-filter: blur(10px);
        }

        .navbar .logo {
            color: #fff;
            font-weight: 800;
            font-size: 1.6rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            transition: all 0.3s ease;
        }

        .navbar.scrolled .logo {
            font-size: 1.3rem;
        }
        .navbar .logo span {
            color: var(--accent);
        }


        .nav-link {
            color: #021c32;
            font-weight: 500;
            font-size: 0.85rem;
            letter-spacing: 1px;
            text-transform: uppercase;
            transition: color 0.3s ease;
            padding: 0.5rem 0;
            white-space: nowrap;
        }

        @media (max-width: 1024px) {
            .nav-link {
                white-space: normal;
            }
        }

        .nav-link:hover {
            color: var(--gold);
        }

        .dropdown-menu {
            position: absolute;
            top: 100%;
            left: 0;
            background: rgba(13, 13, 26, 0.98);
            min-width: 220px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(15px);
            transition: all 0.35s ease;
            border: 1px solid rgba(0, 123, 255, 0.3);
            border-radius: 1px !important;
            padding: 0.5rem 0;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
        }

        .dropdown:hover .dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .dropdown-menu a {
            display: block;
            padding: 0.7rem 1.5rem;
            color: #ddd;
            font-size: 0.85rem;
            letter-spacing: 0.5px;
            transition: all 0.3s ease;
            overflow-wrap: break-word;
            word-wrap: break-word;
        }

        .dropdown-menu a:hover {
            background: rgba(0, 123, 255, 0.893);
            color: var(--white);
            padding-left: 2rem;
        }

        /* ===== MOBILE MENU ===== */
        .mobile-menu {
            position: fixed;
            top: 0;
            right: -100%;
            width: 80%;
            max-width: 350px;
            height: 100vh;
            background: rgba(13, 13, 26, 0.98);
            z-index: 2000;
            transition: right 0.4s ease;
            padding: 2rem;
            overflow-y: auto;
            backdrop-filter: blur(20px);
        }

        .mobile-menu.active {
            right: 0;
        }

        .mobile-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.6);
            z-index: 1999;
            opacity: 0;
            visibility: hidden;
            transition: all 0.4s ease;
        }

        .mobile-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .mobile-menu a {
            display: block;
            color: #fff;
            padding: 0.8rem 0;
            font-size: 1rem;
            letter-spacing: 1px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
            transition: all 0.3s ease;
            overflow-wrap: break-word;
            word-wrap: break-word;
        }

        .mobile-menu a:hover {
            color: var(--accent);
            padding-left: 0.8rem;
        }

        .mobile-menu .sub-links {
            padding-left: 1.5rem;
        }
        .mobile-menu .sub-links a {
            font-size: 0.85rem;
            padding: 0.5rem 0;
        }

        .hamburger {
            cursor: pointer;
            z-index: 2001;
            position: relative;
            width: 30px;
            height: 22px;
        }

        .hamburger span {
            display: block;
            width: 100%;
            height: 2px;
            background: #000212;
            margin: 5px 0;
            transition: all 0.3s ease;
            border-radius: 1px;
        }

        .hamburger.active span:nth-child(1) {
            transform: rotate(90deg) translate(5px, 5px);
        }
        .hamburger.active span:nth-child(2) {
            transform: rotate(90deg) translate(5px, 5px);
        }
        .hamburger.active span:nth-child(3) {
            transform: rotate(90deg) translate(5px, 5px);
        }

        /* ===== HERO ===== */
        .hero-slider {
            position: relative;
            width: 100%;
            height: 100vh;
            overflow: hidden;
        }

        .hero-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transform: scale(1.50);
            transition: all 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            background-size: cover;
            background-position: center;
            z-index: 1;
        }

        .hero-slide.active {
            opacity: 1;
            transform: scale(1);
            z-index: 2;
        }

        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, rgba(13, 13, 26, 0) 0%, rgba(13, 13, 26, 0) 50%, rgba(13, 13, 26, 0) 100%);
            z-index: 3;
        }

        .hero-content {
            position: relative;
            z-index: 4;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            height: 100%;
            text-align: center;
            padding: 0 2rem;
        }

        .hero-content h1 {
            font-size: 4.5rem;
            font-weight: 800;
            letter-spacing: 4px;
            color: #fff;
            text-transform: uppercase;
            overflow-wrap: break-word;
            word-wrap: break-word;
            word-break: break-word;
            max-width: 100%;
            line-height: 1.2;
        }

        .hero-content h1 span {
            color: var(--white);
        }

        .hero-dots {
            position: absolute;
            bottom: 3rem;
            left: 50%;
            transform: translateX(-50%);
            z-index: 5;
            display: flex;
            gap: 0.8rem;
        }

        .hero-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: var(--accent);
            cursor: pointer;
            transition: all 0.4s ease;
            border: 1px solid var(--accent);
        }

        .hero-dot.active {
            background: var(--accent);
            width: 30px;
            border-radius: 5px;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* ===== SECTION TITLES ===== */
        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--dark);
            position: relative;
            display: inline-block;
            text-align: center;
            overflow-wrap: break-word;
            word-wrap: break-word;
            word-break: break-word;
            max-width: 100%;
        }

        .section-cream img {
            height: 100%;
            width: 100%;
            object-fit: cover;
            
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background: var(--accent);
        }

        .section-subtitle {
            color: var(--accent);
            letter-spacing: 3px;
            font-weight: 500;
            font-size: 0.9rem;
            text-transform: uppercase;
            overflow-wrap: break-word;
            word-wrap: break-word;
        }

        /* ===== BUTTONS ===== */
        .btn-primary {
            background: var(--accent);
            color: #fff;
            padding: 0.9rem 2.5rem;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            font-size: 0.85rem;
            transition: all 0.35s ease;
            display: inline-block;
            cursor: pointer;
            border: 2px solid var(--accent);
            overflow-wrap: break-word;
            word-wrap: break-word;
            text-align: center;
        }

        .btn-primary:hover {
            background: transparent;
            color: var(--accent);
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(201, 169, 110, 0.3);
        }

        .btn-outline {
            background: transparent;
            color: #fff;
            padding: 0.9rem 2.5rem;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            font-size: 0.85rem;
            transition: all 0.35s ease;
            display: inline-block;
            cursor: pointer;
            border: 2px solid #fff;
            overflow-wrap: break-word;
            word-wrap: break-word;
            text-align: center;
        }

        .btn-outline:hover {
            background: #fff;
            color: var(--dark);
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
        }

        .btn-dark {
            background: var(--dark);
            color: #fff;
            padding: 0.9rem 2.5rem;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            font-size: 0.85rem;
            transition: all 0.35s ease;
            display: inline-block;
            cursor: pointer;
            border: 2px solid var(--dark);
            overflow-wrap: break-word;
            word-wrap: break-word;
            text-align: center;
        }

        .btn-dark:hover {
            background: transparent;
            color: var(--dark);
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(26, 26, 46, 0.2);
        }

        /* ===== PRODUCT CAROUSEL ===== */
        .product-carousel {
            position: relative;
            overflow: hidden;
        }

        .product-track {
            display: flex;
            transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .product-card {
            flex: 0 0 calc(33.333% - 1.5rem);
            margin: 0 0.75rem;
            background: #fff;
            box-shadow: 0 5px 25px rgba(0, 0, 0, 0.06);
            transition: all 0.4s ease;
            overflow: hidden;
        }

        .product-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
        }

        .product-card img {
            width: 100%;
            height: 320px;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .product-card:hover img {
            transform: scale(1.05);
        }

        .carousel-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: var(--accent);
            color: #fff;
            width: 45px;
            height: 45px;
            border: none;
            cursor: pointer;
            font-size: 1.2rem;
            z-index: 10;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .carousel-nav:hover {
            background: var(--dark);
            transform: translateY(-50%) scale(1.08);
        }

        .carousel-prev {
            left: 10px;
        }
        .carousel-next {
            right: 10px;
        }

        /* ===== SMOOTH SLIDERS ===== */
        .smooth-slider-container {
            position: relative;
            overflow: hidden;
        }

        .smooth-slider-track {
            display: flex;
            transition: transform 0.7s ease-in-out;
        }

        .smooth-slide {
            min-width: 100%;
        }

        .smooth-slide img {
            width: 100%;
            height: 600px;
            object-fit: cover;
        }

        /* ===== GALLERY ===== */
        .gallery-item {
            position: relative;
            overflow: hidden;
            cursor: pointer;
        }

        .gallery-item img {
            width: 100%;
            height: 340px;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .gallery-item:hover img {
            transform: scale(1.08);
        }

        .gallery-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent);
            padding: 1.5rem;
            color: #fff;
            transform: translateY(30%);
            transition: transform 0.4s ease;
        }

        .gallery-item:hover .gallery-overlay {
            transform: translateY(0);
        }

        .gallery-overlay h5,
        .gallery-overlay p {
            overflow-wrap: break-word;
            word-wrap: break-word;
            word-break: break-word;
        }

        /* ===== TESTIMONIALS ===== */
        .testimonial-card {
            background: #fff;
            padding: 2.5rem;
            box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
            transition: all 0.5s ease;
            border-left: 3px solid transparent;
            cursor: pointer;
            position: relative;
        }

        .testimonial-card:hover {
            background: #fdfaf5;
            border-left-color: var(--accent);
            box-shadow: 0 15px 40px rgba(201, 169, 110, 0.15);
            transform: translateY(-5px);
        }

        .testimonial-card:hover .testimonial-quote {
            color: var(--accent);
        }

        .testimonial-card::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background: var(--accent);
            transition: width 0.5s ease;
        }

        .testimonial-card:hover::after {
            width: 100%;
        }

        .testimonial-quote {
            transition: color 0.5s ease;
            color: #999;
            font-size: 2rem;
        }

        .testimonial-card p {
            overflow-wrap: break-word;
            word-wrap: break-word;
            word-break: break-word;
        }

        /* ===== CORE VALUES ===== */
        .core-value-item {
            text-align: center;
            padding: 2rem;
            transition: all 0.4s ease;
        }

        .core-value-number {
            font-size: 3.5rem;
            font-weight: 800;
            color: var(--accent);
            letter-spacing: 1px;
            transition: all 0.3s ease;
        }

        .core-value-item:hover .core-value-number {
            transform: scale(1.1);
        }

        /* ===== MARQUEE ===== */
        .marquee-container {
            overflow: hidden;
            white-space: nowrap;
            padding: 1.5rem 0;
            background: #fff;
        }

        .marquee-track {
            display: inline-flex;
            animation: marquee 20s linear infinite;
            width: max-content;
        }

        .marquee-track img {
            height: 120px;
            margin: 0 2rem;
            object-fit: contain;
            filter: grayscale(30%);
            transition: filter 0.3s ease;
            flex-shrink: 0;
        }

        .marquee-track img:hover {
            filter: grayscale(0%);
        }

        @keyframes marquee {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-50%);
            }
        }

        /* ===== MODALS ===== */
        .modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            z-index: 3000;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            visibility: hidden;
            transition: all 0.4s ease;
        }

        .modal-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .modal-box {
            background: #fff;
            max-width: 500px;
            width: 90%;
            padding: 0.2rem;
            text-align: center;
            position: relative;
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
            animation: modalIn 0.5s ease;
            overflow-wrap: break-word;
            word-wrap: break-word;
        }

        @keyframes modalIn {
            from {
                transform: scale(0.8) translateY(-40px);
                opacity: 0;
            }
            to {
                transform: scale(1) translateY(0);
                opacity: 1;
            }
        }

        .modal-close {
            position: absolute;
            top: 10px;
            right: 15px;
            font-size: 1.5rem;
            cursor: pointer;
            color: #000000;
            transition: color 0.3s ease;
            background: none;
            border: none;
        }

        .modal-close:hover {
            color: var(--dark);
        }

        /* ===== TOAST ===== */
        .success-toast {
            position: fixed;
            top: 30px;
            right: -400px;
            background: #2d6a4f;
            color: #fff;
            padding: 1.2rem 2rem;
            z-index: 4000;
            font-weight: 500;
            letter-spacing: 1px;
            transition: right 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            max-width: 90%;
            overflow-wrap: break-word;
            word-wrap: break-word;
        }

        .success-toast.show {
            right: 30px;
        }

        /* ===== FLOATING BUTTONS ===== */
        .whatsapp-float {
            position: fixed;
            bottom: 30px;
            right: 30px;
            z-index: 2500;
            background: #25D366;
            color: #fff;
            width: 55px;
            height: 55px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
            transition: transform 0.3s ease;
            cursor: pointer;
        }

        .whatsapp-float:hover {
            transform: scale(1.1);
        }

        .feedback-float {
            position: fixed;
            bottom: 100px;
            right: 30px;
            z-index: 2500;
            background: var(--accent);
            color: #fff;
            width: 55px;
            height: 55px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
            transition: transform 0.3s ease;
            cursor: pointer;
        }

        .feedback-float:hover {
            transform: scale(1.1);
        }

        .audio-float {
            position: fixed;
            bottom: 30px;
            left: 30px;
            z-index: 2500;
            background: #1a1a2e;
            color: #ffffff;
            width: 55px;
            height: 55px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.079);
            transition: transform 0.3s ease;
            cursor: pointer;
            margin-bottom: 60px;
            margin-left: -10px;
        }

        .audio-float:hover {
            transform: scale(1.1);
        }

        .audio-player-modal .carousel-nav {
            position: static;
            transform: none;
            display: inline-flex;
        }

        .video-float {
            position: fixed;
            bottom: 15px;
            margin-bottom: 150px;
            right: 0px;
            margin-right: 30px;
            z-index: 2500;
            background: #f30303;
            color: #ffffff;
            width: 55px;
            height: 50px;
            border-radius: 0%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
            transition: transform 0.3s ease;
            cursor: pointer;
        }

        .video-float:hover {
            transform: scale(1.1);
        }

        .video-player-modal .carousel-nav {
            position: static;
            transform: none;
            display: inline-flex;
        }

        .video-container {
            position: relative;
            background: #000;
        }

        .video-container video {
            width: 100%;
            display: block;
        }

        .video-controls-custom {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.5rem;
            background: rgba(0, 0, 0, 0.7);
            color: #fff;
            flex-wrap: wrap;
        }

        .seek-bar {
            flex: 1;
            height: 5px;
            background: #555;
            cursor: pointer;
            position: relative;
            min-width: 60px;
        }

        .seek-bar-fill {
            height: 100%;
            background: var(--accent);
            width: 0%;
            transition: width 0.1s linear;
        }

        .fullscreen-btn {
            background: none;
            border: none;
            color: #fff;
            cursor: pointer;
            font-size: 1.2rem;
            padding: 0.2rem;
        }

        /* ===== DESCRIPTION BLOCKS ===== */
        .mika-description-block {
            display: flex;
            align-items: center;
            gap: 60px;
            margin-bottom: 80px;
            flex-wrap: wrap;
            margin: 100px;
        }

        .mika-description-block:last-child {
            margin-bottom: 0;
        }

        .mika-description-block.mika-block-reverse {
            flex-direction: row-reverse;
        }

        .mika-description-image {
            flex: 1 1 45%;
            border-radius: 4px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
        }

        .mika-description-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
            display: block;
        }

        .mika-description-image:hover img {
            transform: scale(1.03);
        }

        .mika-description-text {
            flex: 1 1 45%;
            overflow-wrap: break-word;
            word-wrap: break-word;
            word-break: break-word;
        }

        .mika-text-title {
            font-family: 'Segoe UI', Roboto, system-ui, sans-serif;
            font-size: 2rem;
            font-weight: 600;
            color: #1a1a1a;
            margin-bottom: 18px;
            position: relative;
            padding-bottom: 12px;
            overflow-wrap: break-word;
            word-wrap: break-word;
            word-break: break-word;
        }

        .mika-text-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 2px;
            background-color: #0e69b3;
        }

        .mika-description-text p {
            font-size: 1.1rem;
            color: #000000;
            margin-bottom: 16px;
            line-height: 1.8;
            overflow-wrap: break-word;
            word-wrap: break-word;
            word-break: break-word;
        }

        .mika-signature {
            font-family: 'Playfair Display', serif;
            font-style: italic;
            color: #0055e7;
            margin-top: 20px;
            font-size: 1.2rem;
            overflow-wrap: break-word;
            word-wrap: break-word;
        }

        /* ===== LANGUAGE DROPDOWN ===== */
        .lang-dropdown-wrap {
            background: #0b4ca7;
        }

        .lang-dropdown {
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.25);
            color: #fff;
            padding: 0.5rem 2rem 0.5rem 1rem;
            border-radius: 25px;
            font-size: 0.85rem;
            cursor: pointer;
            appearance: none;
            -webkit-appearance: none;
            background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" viewBox="0 0 12 12"><path fill="%23c9a96e" d="M6 8L1 3h10z"/></svg>');
            background-repeat: no-repeat;
            background-position: right 12px center;
            background-size: 10px;
            max-width: 100%;
            overflow-wrap: break-word;
            word-wrap: break-word;
        }

        .lang-dropdown option {
            background: #1a3c34;
            color: #fff;
            overflow-wrap: break-word;
            word-wrap: break-word;
        }

        /* ===== HIDE GOOGLE TRANSLATE BANNER ===== */
        .goog-te-banner-frame,
        .skiptranslate iframe,
        .skiptranslate {
            display: none !important;
        }

        body {
            top: 0 !important;
        }

        .goog-logo-link {
            display: none !important;
        }
        .goog-te-gadget span {
            display: none !important;
        }

        /* ============================================================ */
        /* ===== RESPONSIVE BREAKPOINTS ===== */
        /* ============================================================ */

        /* ----- 1440px+ (large screens) ----- */
        @media (min-width: 1440px) {
            .hero-content h1 {
                font-size: 5rem;
            }
            .container {
                max-width: 1300px;
            }
            .product-card {
                flex: 0 0 calc(55% - 1.5rem);
            }
            .section-title {
                font-size: 3rem;
            }
            .hero-slider {
                height: 100vh;
            }
            .smooth-slide img {
                height: 600px;
            }
            .gallery-item img {
                height: 210px;
            }
             .navbar .logo img {
               
                margin-left: 70px;
            }

            .navbar {
                padding: 0.8rem 1rem;
            }

            .navbar.scrolled {
                padding: 0.5rem 1rem;
            }
            .modal-box img {
                height: 10rem;
            }
        }

        /* ----- 768px - 1023px (tablets) ----- */
        @media (max-width: 1023px) {
            .product-card {
                flex: 0 0 calc(50% - 1rem);
            }
            .btn-primary,
            .btn-outline,
            .btn-dark {
                padding: 0.7rem 1.8rem;
                font-size: 0.8rem;
            }
            .lang-dropdown {
                font-size: 0.8rem;
                padding: 0.4rem 1.8rem 0.4rem 0.8rem;
            }
            .booking-bar {
                flex-direction: row;
                margin-top: -2rem;
                padding: 1.5rem;
                gap: 0.75rem;
            }
            .booking-bar .btn-primary {
                width: 100%;
                text-align: center;
                white-space: normal;
            }
            .booking-field {
                flex: 1 1 140px;
                min-width: 100px;
            }
            #newsletterForm {
                flex-direction: column;
                gap: 0.5rem;
            }
            #newsletterForm input {
                width: 100%;
            }
            #newsletterForm .btn-primary {
                width: 100%;
                text-align: center;
                padding: 0.7rem 1rem;
            }
            .gallery-item img {
                height: 240px;
            }
            .smooth-slide img {
                height: 250px;
            }
            .hero-slider {
                height: 55vh;
                min-height: 350px;
                margin-top: 125px;
            }
            .hero-content h1 {
                font-size: 2.8rem;
                letter-spacing: 2px;
            }
            .product-card img {
                height: 220px;
            }
            .core-value-number {
                font-size: 2.2rem;
            }
            .testimonial-card {
                padding: 1.5rem;
            }
            .marquee-track img {
                height: 70px;
                margin: 0 1rem;
            }
            .video-float {
                bottom: 30px;
                margin-bottom: 120px;
                right: 0px;
                margin-right: 20px;
                width: 45px;
                height: 40px;
                border-radius: 50%;
                font-size: 1.5rem;
            }
            .carousel-nav {
                width: 35px;
                height: 35px;
                font-size: 1rem;
            }
            .modal-box img {
                height: 6rem;
            }
            .whatsapp-float {
                width: 50px;
                height: 50px;
                font-size: 1.5rem;
                bottom: 20px;
                right: 20px;
            }
            .feedback-float {
                width: 45px;
                height: 45px;
                font-size: 1.2rem;
                bottom: 90px;
                right: 20px;
            }
            .audio-float {
                width: 45px;
                height: 45px;
                font-size: 1.2rem;
                bottom: 20px;
                left: 20px;
            }
            .mika-description-block {
                gap: 30px;
                margin-bottom: 60px;
            }
            .mika-description-block.mika-block-reverse {
                flex-direction: column;
            }
            .mika-description-image {
                flex: 1 1 100%;
            }
            .mika-description-text {
                flex: 1 1 100%;
            }
            .mika-text-title {
                font-size: 1.8rem;
            }
            .mika-description-text p {
                font-size: 1rem;
            }
            .mika-signature {
                font-size: 1.1rem;
            }
             .navbar .logo img {
                width: 64px !important;
                height: 64px !important;
                margin-left: 15px;
            }

            .navbar {
                padding: 0.8rem 1rem;
            }

            .navbar.scrolled {
                padding: 0.5rem 1rem;
            }
        }

        /* ----- 680px and below ----- */
        @media (max-width: 680px) {
            .mika-description-block {
                gap: 30px;
                margin-bottom: 60px;
            }
            .mika-description-block.mika-block-reverse {
                flex-direction: column;
            }
            .mika-description-image {
                flex: 1 1 100%;
            }
            .mika-description-text {
                flex: 1 1 100%;
            }
            .mika-text-title {
                font-size: 1.6rem;
            }
            .mika-description-text p {
                font-size: 0.95rem;
            }
            .mika-signature {
                font-size: 1rem;
            }
        }

        /* ----- 480px and below (phones) ----- */
        @media (max-width: 480px) {
            .hero-slider {
                height: 50vh;
                min-height: 300px;
                margin-top: 80px;
            }

            .hero-content h1 {
                font-size: 2rem !important;
                letter-spacing: 1px !important;
                line-height: 1.2;
                padding: 0 0.5rem;
            }

            .hero-content p {
                font-size: 1.1rem !important;
                padding: 0 0.5rem;
            }

            .section-title {
                font-size: 1.6rem !important;
                letter-spacing: 1px;
            }

            .section-subtitle {
                font-size: 0.75rem;
                letter-spacing: 1.5px;
            }

            .product-card {
                flex: 0 0 calc(100% - 1rem) !important;
                margin: 0 0.5rem;
            }

            .product-card img {
                height: 200px;
            }

            .core-value-number {
                font-size: 2rem;
            }

            .testimonial-card {
                padding: 1.2rem;
            }

            .marquee-track img {
                height: 60px;
                margin: 0 0.8rem;
            }

            .smooth-slide img {
                height: 220px;
            }

            .whatsapp-float {
                width: 45px;
                height: 45px;
                font-size: 1.3rem;
                bottom: 15px;
                right: 15px;
            }

            .feedback-float {
                width: 40px;
                height: 40px;
                font-size: 1rem;
                bottom: 75px;
                right: 15px;
            }

            .audio-float {
                width: 40px;
                height: 40px;
                font-size: 1rem;
                bottom: 15px;
                left: 15px;
                margin-bottom: 40px;
                margin-left: -5px;
            }

            .video-float {
                width: 45px;
                height: 45px;
                font-size: 1.2rem;
                right: 70px;
                bottom: 15px;
                margin-bottom: 0;
                margin-right: 0;
                border-radius: 50%;
            }

            .lang-dropdown {
                min-width: auto;
                width: 60px;
                padding: 0.3rem 1.6rem 0.3rem 0.4rem;
                font-size: 0.7rem;
                background-position: right 6px center;
                background-size: 8px;
            }

            .lang-dropdown option {
                font-size: 0.8rem;
            }

            .btn-primary,
            .btn-outline,
            .btn-dark {
                padding: 0.5rem 1.2rem;
                font-size: 0.7rem;
                letter-spacing: 0.5px;
                white-space: normal;
            }

            .carousel-nav {
                width: 28px;
                height: 28px;
                font-size: 0.8rem;
            }

            .carousel-prev {
                left: 5px;
            }
            .carousel-next {
                right: 5px;
            }

            #newsletterForm .btn-primary {
                padding: 0.5rem 0.8rem;
                font-size: 0.7rem;
            }

            .modal-box {
                max-width: 320px;
                padding: 0.1rem;
            }

            .modal-box img {
                height: 10rem;
            }

            .booking-bar {
                padding: 1rem;
                gap: 0.5rem;
                margin-top: -1.5rem;
                flex-direction: column;
            }

            .booking-field {
                flex: 1 1 100%;
                min-width: 0;
            }

            .booking-field label {
                font-size: 0.7rem;
            }

            .booking-field input,
            .booking-field select {
                padding: 0.5rem 0.8rem;
                font-size: 0.85rem;
            }

            .booking-bar .btn-primary {
                width: 100%;
                text-align: center;
                padding: 0.5rem 1rem;
                font-size: 0.8rem;
                white-space: normal;
            }

            .gallery-item img {
                height: 200px;
            }

            .mika-description-block {
                gap: 20px;
                margin-bottom: 40px;
                margin: 50px;
            }

            .mika-text-title {
                font-size: 1.4rem;
                padding-bottom: 8px;
                margin-bottom: 12px;
            }

            .mika-text-title::after {
                width: 40px;
            }

            .mika-description-text p {
                font-size: 0.9rem;
                line-height: 1.6;
            }

            .mika-signature {
                font-size: 0.95rem;
                margin-top: 12px;
            }

            .navbar .logo img {
                width: 54px !important;
                height: 54px !important;
            }

            .navbar {
                padding: 0.8rem 1rem;
            }

            .navbar.scrolled {
                padding: 0.5rem 1rem;
            }

            .mobile-menu {
                padding: 1.5rem;
            }

            .mobile-menu a {
                font-size: 0.9rem;
                padding: 0.6rem 0;
            }

            .section-title::after {
                width: 40px;
                height: 2px;
                bottom: -6px;
            }

            .hero-dots {
                bottom: 1.5rem;
                gap: 0.5rem;
            }

            .hero-dot {
                width: 8px;
                height: 8px;
            }

            .hero-dot.active {
                width: 20px;
            }

            .success-toast {
                padding: 0.8rem 1.2rem;
                font-size: 0.85rem;
                right: -300px;
                top: 15px;
            }

            .success-toast.show {
                right: 15px;
            }

            .video-controls-custom {
                gap: 0.3rem;
                padding: 0.3rem;
            }

            .video-controls-custom .carousel-nav {
                width: 28px;
                height: 28px;
                font-size: 0.7rem;
            }

            .seek-bar {
                min-width: 40px;
            }

            .fullscreen-btn {
                font-size: 0.9rem;
            }

            .core-value-item {
                padding: 1rem;
            }

            .core-value-number {
                font-size: 1.8rem;
            }

            .core-value-item p {
                font-size: 0.75rem !important;
            }
        }

        /* ----- 400px and below (small phones) ----- */
        @media (max-width: 400px) {
            .hero-slider {
                height: 45vh;
                min-height: 260px;
                margin-top: 70px;
            }

            .hero-content h1 {
                font-size: 1.7rem !important;
            }

            .hero-content p {
                font-size: 0.95rem !important;
            }

            .section-title {
                font-size: 1.4rem !important;
            }

            .product-card img {
                height: 180px;
            }

            .smooth-slide img {
                height: 180px;
            }

            .gallery-item img {
                height: 170px;
            }

            .booking-bar {
                padding: 0.8rem;
                gap: 0.4rem;
            }

            .booking-field input,
            .booking-field select {
                padding: 0.4rem 0.6rem;
                font-size: 0.8rem;
            }

            .booking-bar .btn-primary {
                padding: 0.4rem 0.8rem;
                font-size: 0.7rem;
            }

            .btn-primary,
            .btn-outline,
            .btn-dark {
                padding: 0.4rem 1rem;
                font-size: 0.65rem;
            }

            .modal-box {
                max-width: 280px;
            }

            .modal-box img {
                height: 4rem;
            }

            .mika-text-title {
                font-size: 1.2rem;
            }

            .mika-description-text p {
                font-size: 0.85rem;
            }

            .mika-signature {
                font-size: 0.85rem;
            }

            .whatsapp-float {
                width: 40px;
                height: 40px;
                font-size: 1.1rem;
                bottom: 12px;
                right: 12px;
            }

            .feedback-float {
                width: 36px;
                height: 36px;
                font-size: 0.9rem;
                bottom: 65px;
                right: 12px;
            }

            .audio-float {
                width: 36px;
                height: 36px;
                font-size: 0.9rem;
                bottom: 12px;
                left: 12px;
                margin-bottom: 30px;
                margin-left: 0;
            }

            .video-float {
                width: 40px;
                height: 40px;
                font-size: 1rem;
                right: 60px;
                bottom: 12px;
            }

            .lang-dropdown {
                width: 50px;
                padding: 0.2rem 1.4rem 0.2rem 0.3rem;
                font-size: 0.6rem;
                background-size: 7px;
                background-position: right 4px center;
            }

            .navbar .logo img {
                width: 50px !important;
                height: 45px !important;
            }

            .carousel-nav {
                width: 24px;
                height: 24px;
                font-size: 0.7rem;
            }

            .core-value-number {
                font-size: 1.5rem;
            }
        }

        /* ----- 300px and below (very tiny) ----- */
        @media (max-width: 300px) {
            .hero-slider {
                height: 40vh;
                min-height: 200px;
                margin-top: 60px;
            }

            .hero-content h1 {
                font-size: 1.3rem !important;
                letter-spacing: 0.5px !important;
            }

            .hero-content p {
                font-size: 0.8rem !important;
            }

            .section-title {
                font-size: 1.2rem !important;
            }

            .section-subtitle {
                font-size: 0.65rem;
                letter-spacing: 1px;
            }

            .product-card img {
                height: 150px;
            }

            .smooth-slide img {
                height: 150px;
            }

            .gallery-item img {
                height: 140px;
            }

            .booking-bar {
                padding: 0.6rem;
                gap: 0.3rem;
            }

            .booking-field label {
                font-size: 0.6rem;
            }

            .booking-field input,
            .booking-field select {
                padding: 0.3rem 0.5rem;
                font-size: 0.7rem;
            }

            .booking-bar .btn-primary {
                padding: 0.3rem 0.6rem;
                font-size: 0.6rem;
                width: 100%;
            }

            .btn-primary,
            .btn-outline,
            .btn-dark {
                padding: 0.3rem 0.8rem;
                font-size: 0.6rem;
                letter-spacing: 0.3px;
            }

            .modal-box {
                max-width: 240px;
                padding: 0.1rem;
            }

            .modal-box img {
                height: 4rem;
            }

            .modal-close {
                top: 5px;
                right: 10px;
                font-size: 1.2rem;
            }

            .mika-text-title {
                font-size: 1rem;
            }

            .mika-description-text p {
                font-size: 0.75rem;
                line-height: 1.4;
            }

            .mika-signature {
                font-size: 0.75rem;
                margin-top: 8px;
            }

            .whatsapp-float {
                width: 34px;
                height: 34px;
                font-size: 0.9rem;
                bottom: 10px;
                right: 10px;
            }

            .feedback-float {
                width: 30px;
                height: 30px;
                font-size: 0.7rem;
                bottom: 55px;
                right: 10px;
            }

            .audio-float {
                width: 30px;
                height: 30px;
                font-size: 0.7rem;
                bottom: 10px;
                left: 10px;
                margin-bottom: 20px;
                margin-left: 0;
            }

            .video-float {
                width: 34px;
                height: 34px;
                font-size: 0.8rem;
                right: 50px;
                bottom: 10px;
            }

            .lang-dropdown {
                width: 40px;
                padding: 0.15rem 1.2rem 0.15rem 0.2rem;
                font-size: 0.5rem;
                background-size: 6px;
                background-position: right 3px center;
            }

            .navbar .logo img {
                width: 50px !important;
                height: 60px !important;
            }

            .navbar {
                padding: 0.5rem 0.6rem;
            }

            .navbar.scrolled {
                padding: 0.3rem 0.6rem;
            }

            .carousel-nav {
                width: 20px;
                height: 20px;
                font-size: 0.6rem;
            }

            .core-value-number {
                font-size: 1.2rem;
            }

            .core-value-item {
                padding: 0.5rem;
            }

            .core-value-item p {
                font-size: 0.6rem !important;
            }

            .testimonial-card {
                padding: 0.8rem;
            }

            .testimonial-card p {
                font-size: 0.7rem;
            }

            .testimonial-quote {
                font-size: 1.2rem;
            }

            .hero-dots {
                bottom: 1rem;
                gap: 0.3rem;
            }

            .hero-dot {
                width: 6px;
                height: 6px;
            }

            .hero-dot.active {
                width: 14px;
            }

            .success-toast {
                padding: 0.5rem 0.8rem;
                font-size: 0.7rem;
                right: -1200px;
                top: 10px;
            }

            .success-toast.show {
                right: 10px;
            }

            .video-controls-custom .carousel-nav {
                width: 22px;
                height: 22px;
                font-size: 0.6rem;
            }

            .seek-bar {
                min-width: 30px;
            }

            .fullscreen-btn {
                font-size: 0.7rem;
            }

            .gallery-overlay {
                padding: 0.8rem;
            }

            .gallery-overlay h5 {
                font-size: 0.8rem;
            }

            .gallery-overlay p {
                font-size: 0.6rem;
            }

            .mobile-menu {
                padding: 1rem;
            }

            .mobile-menu a {
                font-size: 0.75rem;
                padding: 0.4rem 0;
            }

            .mobile-menu .sub-links {
                padding-left: 1rem;
            }

            .mobile-menu .sub-links a {
                font-size: 0.7rem;
                padding: 0.3rem 0;
            }

            #newsletterForm .btn-primary {
                padding: 0.3rem 0.6rem;
                font-size: 0.6rem;
            }

            #newsletterForm input {
                padding: 0.3rem 0.5rem;
                font-size: 0.7rem;
            }

            .mika-description-block {
                gap: 12px;
                margin-bottom: 25px;
                margin: 30px;
            }

            .mika-description-image {
                border-radius: 2px;
            }

            .mika-text-title::after {
                width: 30px;
                height: 1.5px;
            }
               .mb-4 {
                margin-bottom: 0.2rem !important;
                font-size: 12px;
                margin: 2px;
            }
        }

        /* ----- 200px and below (extreme) ----- */
        @media (max-width: 200px) {
            .hero-slider {
                height: 35vh;
                min-height: 150px;
                margin-top: 50px;
            }

            .hero-content h1 {
                font-size: 0.9rem !important;
                letter-spacing: 0px !important;
            }

            .hero-content p {
                font-size: 0.6rem !important;
            }

            .hero-content .btn-outline {
                padding: 0.2rem 0.5rem;
                font-size: 0.5rem;
                margin-top: 0.3rem !important;
            }

            .section-title {
                font-size: 0.9rem !important;
                letter-spacing: 0.5px;
            }

            .section-subtitle {
                font-size: 0.5rem;
                letter-spacing: 0.5px;
            }

            .section-title::after {
                width: 25px;
                height: 1.5px;
                bottom: -4px;
            }

            .product-card img {
                height: 100px;
            }

            .product-card .p-5 {
                padding: 0.5rem !important;
            }

            .product-card h4 {
                font-size: 0.7rem !important;
            }

            .product-card p {
                font-size: 0.55rem !important;
            }

            .product-card .btn-dark {
                padding: 0.15rem 0.4rem !important;
                font-size: 0.5rem !important;
            }

            .smooth-slide img {
                height: 100px;
            }

            .gallery-item img {
                height: 100px;
            }

            .gallery-overlay {
                padding: 0.4rem;
            }

            .gallery-overlay h5 {
                font-size: 0.6rem;
            }

            .gallery-overlay p {
                font-size: 0.45rem;
            }

            .booking-bar {
                padding: 0.3rem;
                gap: 0.2rem;
                margin-top: -1rem;
            }

            .booking-field {
                flex: 1 1 100%;
                min-width: 0;
            }

            .booking-field label {
                font-size: 0.45rem;
                letter-spacing: 0.5px;
            }

            .booking-field input,
            .booking-field select {
                padding: 0.15rem 0.3rem;
                font-size: 0.5rem;
                border-width: 1px;
            }

            .booking-bar .btn-primary {
                padding: 0.15rem 0.4rem;
                font-size: 0.45rem;
                width: 100%;
                white-space: normal;
            }

            .btn-primary,
            .btn-outline,
            .btn-dark {
                padding: 0.2rem 0.5rem;
                font-size: 0.45rem;
                letter-spacing: 0px;
                border-width: 1px;
            }

            .navbar {
                padding: 0.3rem 0.4rem;
            }

            .navbar.scrolled {
                padding: 0.2rem 0.4rem;
            }

            .navbar .logo img {
                width: 30px !important;
                height: 27px !important;
            }

            .hamburger {
                width: 20px;
                height: 16px;
            }

            .hamburger span {
                height: 1.5px;
                margin: 3px 0;
            }

            .mobile-menu {
                padding: 0.8rem;
                max-width: 200px;
            }

            .mobile-menu a {
                font-size: 0.6rem;
                padding: 0.3rem 0;
            }

            .mobile-menu .sub-links a {
                font-size: 0.55rem;
                padding: 0.2rem 0;
            }

            .modal-box {
                max-width: 180px;
                padding: 0.05rem;
            }

            .modal-box img {
            height: 4rem;
            }

            .modal-box h3 {
                font-size: 0.8rem !important;
            }

            .modal-box p {
                font-size: 0.6rem !important;
            }

            .modal-close {
                top: 3px;
                right: 6px;
                font-size: 0.8rem;
            }

            .modal-box .btn-dark {
                padding: 0.15rem 0.4rem;
                font-size: 0.45rem;
            }

            .whatsapp-float {
                width: 26px;
                height: 26px;
                font-size: 0.6rem;
                bottom: 6px;
                right: 6px;
            }

            .feedback-float {
                width: 22px;
                height: 22px;
                font-size: 0.5rem;
                bottom: 40px;
                right: 6px;
            }

            .audio-float {
                width: 22px;
                height: 22px;
                font-size: 0.5rem;
                bottom: 6px;
                left: 6px;
                margin-bottom: 10px;
                margin-left: 0;
            }

            .video-float {
                width: 26px;
                height: 26px;
                font-size: 0.6rem;
                right: 40px;
                bottom: 6px;
                margin-bottom: 0;
                margin-right: 0;
            }

            .lang-dropdown {
                width: 30px;
                padding: 0.1rem 0.8rem 0.1rem 0.1rem;
                font-size: 0.4rem;
                background-size: 4px;
                background-position: right 2px center;
                border-radius: 12px;
                border-width: 1px;
            }

            .lang-dropdown option {
                font-size: 0.5rem;
            }

            .carousel-nav {
                width: 16px;
                height: 16px;
                font-size: 0.4rem;
            }

            .carousel-prev {
                left: 2px;
            }
            .carousel-next {
                right: 2px;
            }

            .core-value-number {
                font-size: 0.9rem;
            }

            .core-value-item {
                padding: 0.2rem;
            }

            .core-value-item p {
                font-size: 0.45rem !important;
                margin-top: 0.1rem !important;
            }

            .core-value-item span {
                font-size: 0.6rem !important;
            }

            .testimonial-card {
                padding: 0.4rem;
            }

            .testimonial-card p {
                font-size: 0.5rem;
                line-height: 1.2;
                margin-bottom: 0.2rem;
            }

            .testimonial-card h5 {
                font-size: 0.5rem !important;
            }

            .testimonial-card .text-xs {
                font-size: 0.4rem !important;
            }

            .testimonial-quote {
                font-size: 0.8rem;
                margin-bottom: 0.1rem !important;
            }

            .hero-dots {
                bottom: 0.5rem;
                gap: 0.2rem;
            }

            .hero-dot {
                width: 4px;
                height: 4px;
                border-width: 0.5px;
            }

            .hero-dot.active {
                width: 10px;
            }

            .success-toast {
                padding: 0.3rem 0.5rem;
                font-size: 0.5rem;
                right: -1150px;
                top: 6px;
            }

            .success-toast.show {
                right: 6px;
            }

            .video-controls-custom .carousel-nav {
                width: 16px;
                height: 16px;
                font-size: 0.4rem;
            }

            .seek-bar {
                min-width: 20px;
                height: 3px;
            }

            .fullscreen-btn {
                font-size: 0.5rem;
            }

            .video-controls-custom {
                gap: 0.15rem;
                padding: 0.15rem;
            }

            #newsletterForm .btn-primary {
                padding: 0.15rem 0.3rem;
                font-size: 0.4rem;
            }

            #newsletterForm input {
                padding: 0.15rem 0.3rem;
                font-size: 0.5rem;
            }

            #newsletterForm {
                gap: 0.2rem;
            }

            .mika-description-block {
                gap: 8px;
                margin-bottom: 15px;
                margin: 10px;
            }

            .mika-text-title {
                font-size: 0.7rem;
                padding-bottom: 4px;
                margin-bottom: 4px;
            }

            .mika-text-title::after {
                width: 20px;
                height: 1px;
                bottom: -2px;
            }

            .mika-description-text p {
                font-size: 0.5rem;
                line-height: 1.2;
                margin-bottom: 4px;
            }

            .mika-signature {
                font-size: 0.5rem;
                margin-top: 4px;
            }

            .mika-description-image {
                border-radius: 1px;
            }

            footer .grid {
                gap: 0.5rem !important;
            }

            footer h4 {
                font-size: 0.6rem !important;
                margin-bottom: 0.2rem !important;
            }

            footer a,
            footer p,
            footer li {
                font-size: 0.45rem !important;
            }

            footer .w-10 {
                width: 20px !important;
                height: 20px !important;
            }

            footer .w-10 i {
                font-size: 0.5rem !important;
            }

            footer .border-t {
                margin-top: 0.3rem !important;
                padding-top: 0.3rem !important;
            }

            footer .text-sm {
                font-size: 0.4rem !important;
            }

            .lang-dropdown-wrap {
                width: auto;
                margin-right: 0;
            }

            .section-cream.py-20 {
                padding: 1rem 0 !important;
            }

            .section-white.py-20 {
                padding: 1rem 0 !important;
            }

            .section-dark.py-20 {
                padding: 1rem 0 !important;
            }

            .section-light.py-20 {
                padding: 1rem 0 !important;
            }

            .px-4 {
                padding-left: 0.25rem !important;
                padding-right: 0.25rem !important;
            }

            .max-w-6xl {
                max-width: 100% !important;
            }

            .container {
                padding-left: 0.2rem !important;
                padding-right: 0.2rem !important;
            }

            .grid-cols-1 {
                gap: 0.2rem !important;
            }

            .grid-cols-2 {
                gap: 0.2rem !important;
            }

            .gap-4 {
                gap: 0.2rem !important;
            }

            .gap-6 {
                gap: 0.2rem !important;
            }

            .gap-8 {
                gap: 0.2rem !important;
            }

            .gap-10 {
                gap: 0.2rem !important;
            }

            .mb-16 {
                margin-bottom: 0.5rem !important;
            }

           
              .mb-4 {
                margin-bottom: 0.2rem !important;
                font-size: 12px;
                margin: 2px;
            }

            .mb-3 {
                margin-bottom: 0.15rem !important;
            }

            .mt-8 {
                margin-top: 0.3rem !important;
            }

            .p-8 {
                padding: 0.3rem !important;
            }

            .p-5 {
                padding: 0.2rem !important;
            }

            .text-2xl {
                font-size: 0.8rem !important;
            }

            .text-xl {
                font-size: 0.7rem !important;
            }

            .text-lg {
                font-size: 0.65rem !important;
            }

            .text-sm {
                font-size: 0.5rem !important;
            }

            .text-xs {
                font-size: 0.4rem !important;
            }

            .text-5xl {
                font-size: 1.5rem !important;
            }

            .fa-5x {
                font-size: 1.5rem !important;
            }

            .fa-4x {
                font-size: 1.2rem !important;
            }

            .fa-3x {
                font-size: 1rem !important;
            }

            .fa-2x {
                font-size: 0.8rem !important;
            }

            .h-\[400px\] {
                height: 150px !important;
            }

            .h-48 {
                height: 3rem !important;
            }

            .h-96 {
                height: 120px !important;
            }

            .lg\:h-\[500px\] {
                height: 150px !important;
            }

            .hero-slider .btn-outline {
                padding: 0.15rem 0.4rem !important;
                font-size: 0.45rem !important;
                border-width: 1px !important;
            }

            .hero-content {
                padding: 0 0.3rem;
            }

            .hero-overlay {
                background: linear-gradient(to bottom, rgba(13, 13, 26, 0.2) 0%, rgba(13, 13, 26, 0.4) 50%, rgba(13, 13, 26, 0.6) 100%);
            }

            .scroll-mt-20 {
                scroll-margin-top: 2rem !important;
            }

            .rounded-lg {
                border-radius: 1px !important;
            }

            .shadow-lg {
                box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
            }

            .shadow-2xl {
                box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12) !important;
            }

            .hover\:shadow-2xl:hover {
                box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
            }

            .transition-all {
                transition-duration: 0.2s !important;
            }

            .duration-500 {
                transition-duration: 0.2s !important;
            }

            .duration-300 {
                transition-duration: 0.15s !important;
            }

            .hover\:translate-y-\[-2px\]:hover {
                transform: translateY(-1px) !important;
            }

            .hover\:-translate-y-2:hover {
                transform: translateY(-1px) !important;
            }

            .hover\:scale-110:hover {
                transform: scale(1.05) !important;
            }

            .group-hover\:scale-110 {
                transform: scale(1.05) !important;
            }

            .transform {
                transition-duration: 0.15s !important;
            }
        }

        /* ============================================================ */
        /* ===== ADDITIONAL SAFETY FIXES ===== */
        /* ============================================================ */

        /* Force text wrapping on all containers */
        .container,
        .max-w-6xl,
        .max-w-7xl,
        .max-w-4xl,
        .max-w-3xl,
        .max-w-2xl,
        .max-w-xl,
        .max-w-lg,
        .max-w-md,
        .max-w-sm,
        .w-full,
        .w-auto,
        .flex-1,
        .flex-auto,
        .flex-shrink,
        .flex-grow,
        .min-w-0,
        .overflow-hidden {
            overflow-wrap: break-word !important;
            word-wrap: break-word !important;
        }

        /* Fix for flex containers with text */
        .flex,
        .inline-flex,
        .grid,
        .block,
        .inline-block {
            max-width: 100% !important;
        }

        /* Ensure all images are responsive */
        img {
            max-width: 100% !important;
            height: auto !important;
        }

        /* Fix for dropdown in small screens */
        .dropdown-menu {
            max-width: 90vw;
        }

        /* Fix for the newsletter form */
        #newsletterForm {
            flex-wrap: wrap;
        }

        #newsletterForm input {
            min-width: 0;
        }

        /* Fix for contact form */
        #contactForm input,
        #contactForm textarea {
            max-width: 100%;
            box-sizing: border-box;
        }

        /* Fix for the booking bar select */
        .booking-field select {
            text-overflow: ellipsis;
        }

        /* Fix for section-cream images */
        .section-cream img {
            max-width: 100%;
            height: auto;
        }

        /* Fix for the gallery overlay text */
        .gallery-overlay {
            max-width: 100%;
        }

        /* Fix for the marquee on small screens */
        .marquee-track img {
            max-height: 120px;
            width: auto;
        }

        /* Fix for the audio/video modals */
        .audio-player-modal,
        .video-player-modal {
            max-width: 95vw;
            width: 95%;
        }

        /* Fix for the promo modal */
        #promoModal .modal-box {
            max-width: 95vw;
        }

        #promoModal .modal-box img {
            height: auto;
            max-height: 500px;
            object-fit: cover;
        }

        /* Fix for the feedback modal */
        #feedbackModal .modal-box {
            max-width: 95vw;
        }

        /* Fix for the map iframe */
        iframe {
            max-width: 100% !important;
        }

        /* Fix for the language selector in footer */
        .lang-dropdown-wrap {
            max-width: 100%;
            overflow: hidden;
        }

        /* Fix for the hero content on very small screens */
        .hero-content .btn-outline {
            font-size: 0.75rem;
            padding: 0.5rem 1.2rem;
        }

        /* Ensure all buttons wrap text */
        .btn-primary,
        .btn-outline,
        .btn-dark {
            white-space: normal !important;
            min-height: 2.5rem;
        }

        /* Fix for core values text */
        .core-value-item p {
            overflow-wrap: break-word;
            word-wrap: break-word;
            word-break: break-word;
        }

        /* Fix for section titles on small screens */
        @media (max-width: 480px) {
            .section-title {
                font-size: 1.5rem !important;
            }
            .section-subtitle {
                font-size: 0.7rem !important;
            }
        }

        /* Fix for the hero slider height on small screens */
        @media (max-width: 480px) {
            .hero-slider {
                height: 50vh !important;
                min-height: 280px !important;
            }
        }

        /* Fix for the booking bar on small screens */
        @media (max-width: 480px) {
            .booking-bar {
                flex-direction: column !important;
                padding: 0.8rem !important;
            }
            .booking-field {
                width: 100% !important;
                flex: 1 1 auto !important;
            }
            .booking-bar .btn-primary {
                width: 100% !important;
                text-align: center !important;
            }
        }

        /* Fix for the product carousel on small screens */
        @media (max-width: 480px) {
            .product-card {
                flex: 0 0 calc(100% - 0.5rem) !important;
                margin: 0 0.25rem !important;
            }
            .product-card img {
                height: 180px !important;
            }
        }

        /* Fix for the gallery on small screens */
        @media (max-width: 480px) {
            .gallery-item img {
                height: 180px !important;
            }
        }

        /* Fix for the smooth slider on small screens */
        @media (max-width: 480px) {
            .smooth-slide img {
                height: 200px !important;
            }
        }

        /* Fix for the testimonials on small screens */
        @media (max-width: 480px) {
            .testimonial-card {
                padding: 1rem !important;
            }
            .testimonial-card p {
                font-size: 0.8rem !important;
            }
        }

        /* Fix for the footer on small screens */
        @media (max-width: 480px) {
            footer .grid {
                gap: 1.5rem !important;
            }
            footer .md\:grid-cols-4 {
                grid-template-columns: 1fr 1fr !important;
            }
        }

        /* Fix for the language dropdown on very small screens */
        @media (max-width: 380px) {
            .lang-dropdown {
                width: 50px !important;
                padding: 0.2rem 1.2rem 0.2rem 0.3rem !important;
                font-size: 0.55rem !important;
            }
        }

        /* Fix for the mobile menu on very small screens */
        @media (max-width: 300px) {
            .mobile-menu {
                max-width: 200px !important;
                padding: 0.8rem !important;
            }
            .mobile-menu a {
                font-size: 0.65rem !important;
                padding: 0.3rem 0 !important;
            }
            .mobile-menu .sub-links a {
                font-size: 0.55rem !important;
                padding: 0.2rem 0 !important;
            }
        }

        /* Fix for the floating buttons on very small screens */
        @media (max-width: 300px) {
            .whatsapp-float {
                width: 28px !important;
                height: 28px !important;
                font-size: 0.7rem !important;
                bottom: 6px !important;
                right: 6px !important;
            }
            .feedback-float {
                width: 24px !important;
                height: 24px !important;
                font-size: 0.55rem !important;
                bottom: 42px !important;
                right: 6px !important;
            }
            .audio-float {
                width: 24px !important;
                height: 24px !important;
                font-size: 0.55rem !important;
                bottom: 6px !important;
                left: 6px !important;
                margin-bottom: 8px !important;
            }
            .video-float {
                width: 28px !important;
                height: 28px !important;
                font-size: 0.7rem !important;
                right: 42px !important;
                bottom: 6px !important;
            }
        }

        /* Fix for the navbar logo on very small screens */
        @media (max-width: 300px) {
            .navbar .logo img {
                width: 35px !important;
                height: 32px !important;
            }
        }

        /* Fix for the hero dots on very small screens */
        @media (max-width: 300px) {
            .hero-dots {
                bottom: 0.5rem !important;
                gap: 0.2rem !important;
            }
            .hero-dot {
                width: 4px !important;
                height: 4px !important;
            }
            .hero-dot.active {
                width: 10px !important;
            }
        }

        /* Fix for the carousel arrows on very small screens */
        @media (max-width: 300px) {
            .carousel-nav {
                width: 16px !important;
                height: 16px !important;
                font-size: 0.4rem !important;
            }
        }

        /* Fix for the modal on very small screens */
        @media (max-width: 300px) {
            .modal-box {
                max-width: 180px !important;
                padding: 0.05rem !important;
            }
            .modal-box img {
                height: 2rem !important;
            }
            .modal-box h3 {
                font-size: 0.7rem !important;
            }
            .modal-box p {
                font-size: 0.5rem !important;
            }
            .modal-close {
                font-size: 0.7rem !important;
                top: 2px !important;
                right: 4px !important;
            }
        }

        /* ===== END RESPONSIVE ===== */

        /* ===== PAGE TRANSITION LOADER ===== */
        .page-loader {
            position: fixed;
            inset: 0;
            z-index: 99999;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #0a1628;
            opacity: 1;
            visibility: visible;
            transition: opacity 0.45s ease, visibility 0.45s ease;
        }

        .page-loader.is-hidden {
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
        }

        .page-loader-spinner {
            position: relative;
            width: 140px;
            height: 140px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .page-loader-spinner::before {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: 50%;
            border: 4px solid rgba(141, 129, 4, 0.18);
            border-top-color: #d8bd0f;
            border-right-color: #eeee11;
            animation: pageLoaderSpin 1s linear infinite;
        }

        .page-loader-logo {
            width: 100%;
            height: 100%;
            max-width: 100%;
            object-fit: contain;
            background: transparent;
            animation: pageLoaderPulse 1.4s ease-in-out infinite;
        }

        @keyframes pageLoaderSpin {
            to { transform: rotate(360deg); }
        }

        @keyframes pageLoaderPulse {
            0%, 100% { transform: scale(0.92); opacity: 0.85; }
            50% { transform: scale(1.04); opacity: 1; }
        }

        @media (max-width: 480px) {
            .page-loader-spinner {
                width: 100px;
                height: 100px;
            }
        }

        @media (prefers-reduced-motion: reduce) {
            .page-loader-spinner::before,
            .page-loader-logo {
                animation: none;
            }
        }
