
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Cairo', sans-serif;
            background-color: #F8F5F0;
            color: #06362D;
            overflow-x: hidden;
        }

        .font-amiri {
            font-family: 'Amiri', serif;
        }

        ::-webkit-scrollbar {
            width: 8px;
        }

        ::-webkit-scrollbar-track {
            background: #F8F5F0;
        }

        ::-webkit-scrollbar-thumb {
            background: #C9A84C;
            border-radius: 10px;
        }

        ::-webkit-scrollbar-thumb:hover {
            background: #A8892E;
        }

        .gold-gradient {
            background: linear-gradient(135deg, #C9A84C 0%, #F3E5AB 50%, #C9A84C 100%);
        }

        .gold-text {
            background: linear-gradient(135deg, #A8892E 0%, #C9A84C 50%, #A8892E 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .nav-glass {
            background: rgba(255, 255, 255, 0.92);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(201, 168, 76, 0.15);
        }

        .nav-link {
            color: #06362D;
            font-weight: 700;
            position: relative;
            transition: all 0.3s ease;
            font-size: 0.95rem;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -6px;
            right: 0;
            width: 0;
            height: 2px;
            background: #C9A84C;
            transition: width 0.3s ease;
            border-radius: 2px;
        }

        .nav-link:hover {
            color: #094F42;
        }

        .nav-link:hover::after {
            width: 100%;
        }

        .elegant-card {
            background: #ffffff;
            border-radius: 24px;
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            border: 1px solid rgba(201, 168, 76, 0.12);
            box-shadow: 0 10px 30px rgba(6, 54, 45, 0.03);
        }

        .elegant-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 50px rgba(6, 54, 45, 0.08);
            border-color: rgba(201, 168, 76, 0.35);
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: 900;
            position: relative;
            display: inline-block;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -12px;
            right: 50%;
            transform: translateX(50%);
            width: 70px;
            height: 4px;
            background: linear-gradient(90deg, #C9A84C, #F3E5AB);
            border-radius: 4px;
        }

        .section-title span {
            color: #C9A84C;
        }

        .carousel-slide {
            transition: opacity 0.8s ease-in-out, transform 0.8s ease-in-out;
            opacity: 0;
            position: absolute;
            inset: 0;
            pointer-events: none;
            transform: scale(0.98);
        }

        .carousel-slide.active {
            opacity: 1;
            position: relative;
            pointer-events: auto;
            transform: scale(1);
        }

        .whatsapp-float {
            position: fixed;
            bottom: 28px;
            left: 28px;
            z-index: 999;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: #25d366;
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 32px;
            box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .whatsapp-float:hover {
            transform: scale(1.1);
            box-shadow: 0 10px 35px rgba(37, 211, 102, 0.6);
            color: #fff;
        }

        .whatsapp-float .pulse {
            position: absolute;
            inset: -6px;
            border-radius: 50%;
            border: 2px solid #25d366;
            animation: pulse-wa 2s infinite;
        }

        @keyframes pulse-wa {
            0% {
                transform: scale(1);
                opacity: 0.7;
            }

            100% {
                transform: scale(1.5);
                opacity: 0;
            }
        }

        .testimonial-card {
            background: #fff;
            border-radius: 20px;
            padding: 28px 32px;
            border: 1px solid rgba(201, 168, 76, 0.12);
            transition: all 0.3s ease;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.02);
            position: relative;
        }

        .testimonial-card::before {
            content: '\201D';
            position: absolute;
            top: -10px;
            right: 24px;
            font-size: 70px;
            color: #C9A84C;
            opacity: 0.15;
            font-family: 'Amiri', serif;
            line-height: 1;
        }

        .testimonial-card:hover {
            border-color: #C9A84C;
            box-shadow: 0 12px 40px rgba(201, 168, 76, 0.1);
        }

        .contact-action-btn {
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            padding: 12px 28px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 0.95rem;
        }

        @keyframes fadeUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .animate-fadeUp {
            animation: fadeUp 0.8s ease forwards;
        }

        @keyframes float {

            0%,
            100% {
                transform: translateY(0px);
            }

            50% {
                transform: translateY(-12px);
            }
        }

        .float-anim {
            animation: float 4s ease-in-out infinite;
        }

        .hotel-card img {
            transition: transform 0.5s ease;
        }

        .hotel-card:hover img {
            transform: scale(1.05);
        }

        @media (max-width: 768px) {
            .section-title {
                font-size: 2rem;
            }

            .whatsapp-float {
                width: 52px;
                height: 52px;
                font-size: 26px;
                bottom: 20px;
                left: 20px;
            }
        }

        .hero-bg {
            background: linear-gradient(rgba(6, 54, 45, 0.55), rgba(6, 54, 45, 0.65)),
                url('./assets/images/') center/cover no-repeat;
        }

        .table-wrap {
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
        }

        .pricing-table {
            min-width: 600px;
            width: 100%;
            border-collapse: collapse;
            font-size: 0.85rem;
        }

        .pricing-table th {
            background: #094F42;
            color: #fff;
            padding: 10px 12px;
            text-align: center;
            font-weight: 700;
            border: 1px solid #1A7A65;
        }

        .pricing-table td {
            padding: 10px 12px;
            text-align: center;
            border: 1px solid #e5e7eb;
            background: #fff;
        }

        .pricing-table tr:nth-child(even) td {
            background: #faf8f5;
        }

        .pricing-table .cat-label {
            background: #f0ede5;
            font-weight: 700;
            color: #06362D;
            text-align: right;
            padding-right: 16px;
        }

        .pricing-table .hotel-name {
            font-weight: 600;
            color: #06362D;
            text-align: right;
            padding-right: 12px;
            font-size: 0.8rem;
        }

        .pricing-table .price-cell {
            font-weight: 700;
            color: #094F42;
            font-family: 'Cairo', sans-serif;
        }

        .table-caption {
            background: #f8f5f0;
            padding: 10px 16px;
            border-radius: 12px 12px 0 0;
            font-weight: 700;
            color: #094F42;
            border: 1px solid #e5e7eb;
            border-bottom: none;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 8px;
        }

        .table-caption .badge {
            background: #C9A84C;
            color: #fff;
            padding: 2px 14px;
            border-radius: 20px;
            font-size: 0.7rem;
            font-weight: 700;
        }

        .star-icon {
            color: #C9A84C;
            font-size: 0.7rem;
        }

        .note-box {
            background: #f0ede5;
            border-right: 4px solid #C9A84C;
            padding: 12px 18px;
            border-radius: 8px;
            font-size: 0.85rem;
            color: #3d3d3d;
            margin-top: 12px;
        }
        .social-bubble {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 70px;
            height: 70px;
            border-radius: 50%;
            font-size: 32px;
            color: #fff;
            transition: all 0.3s ease;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
            text-decoration: none;
            margin: 8px;
        }

        .social-bubble:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
        }

        .social-bubble.whatsapp {
            background: #25d366;
        }

        .social-bubble.facebook {
            background: #1877f2;
        }

        .social-bubble.instagram {
            background: #e4405f;
        }

        .social-bubble.youtube {
            background: #ff0000;
        }

        .social-bubble.twitter {
            background: #1da1f2;
        }

        .social-bubble.telegram {
            background: #0088cc;
        }

        .social-bubble.linkedin {
            background: #0a66c2;
        }

        .social-bubble.tiktok {
            background: #000000;
        }

        .social-bubble.snapchat {
            background: #fffc00;
            color: #000;
        }

        .contact-form-box {
            background: #fff;
            border-radius: 30px;
            padding: 40px;
            box-shadow: 0 20px 60px rgba(6, 54, 45, 0.08);
        }
