@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Outfit:wght@200;300;400;500&display=swap&font-display=swap');

:root {
    /* New Calm Palette */
    --primary: #4A5D5E;
    /* Muted Deep Teal */
    --primary-light: #6B8283;
    --accent: #C5A065;
    /* Soft Muted Gold */
    --accent-light: #E0C89B;

    --bg-body: #FAF7F2;
    /* Warm Cream */
    --bg-surface: #FFFFFF;
    --bg-alt: #F0EBE5;
    /* Soft Greige */

    --text-main: #2C3535;
    --text-muted: #666666;

    --container-padding: 2rem;
    --max-width: 1200px;

    --font-heading: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;

    --transition: opacity 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), background-color 0.4s, border-color 0.4s;
    --transition-fast: all 0.2s ease-out;

    --shadow-soft: 0 10px 30px -10px rgba(74, 93, 94, 0.1);
    --shadow-hover: 0 15px 40px -10px rgba(74, 93, 94, 0.2);

    --radius-lg: 20px;
    --radius-md: 12px;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--bg-body);
    color: var(--text-main);
    line-height: 1.7;
    overflow-x: hidden;
}

h1,
h2,
h3 {
    font-family: var(--font-heading);
    color: var(--primary);
    font-weight: 600;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 1rem 2.8rem;
    background-color: var(--primary);
    color: white;
    font-weight: 400;
    letter-spacing: 0.5px;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid transparent;
}

.btn:hover {
    background-color: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(74, 93, 94, 0.3);
}

.btn-accent {
    background-color: var(--accent);
    color: white;
}

.btn-accent:hover {
    background-color: var(--accent-light);
    color: white;
}

/* --- Sections --- */
.section-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.section-subtitle {
    text-align: center;
    color: var(--accent);
    letter-spacing: 3px;
    font-size: 0.85rem;
    text-transform: uppercase;
    margin-bottom: 4rem;
}

/* --- Header --- */
header {
    background-color: rgba(250, 247, 242, 0.9);
    backdrop-filter: blur(15px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 1.2rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

/* --- SVGs --- */
.logo-svg {
    width: 180px;
    height: auto;
    display: block;
}

[dir="rtl"] .logo-svg text {
    text-anchor: end;
}

.hero-svg {
    width: 100%;
    max-width: 450px;
    height: auto;
    margin-bottom: 1.5rem;
}

.footer-logo-svg {
    width: 180px;
    height: auto;
    margin: 0 auto;
}

/* --- Language Switcher --- */
.lang-switcher {
    margin-right: auto;
}

[dir="rtl"] .lang-switcher {
    margin-right: 0;
    margin-left: auto;
}

.lang-btn {
    background: var(--bg-surface);
    color: var(--primary);
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 0.5rem 1.2rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    font-family: var(--font-body);
    transition: var(--transition);
    box-shadow: var(--shadow-soft);
}

.lang-btn:hover {
    background: var(--bg-alt);
    transform: translateY(-1px);
    box-shadow: var(--shadow-hover);
}

/* --- Navigation --- */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-links {
    display: none !important;
    /* Unified: No more horizontal links on any device */
}

.mobile-menu-btn {
    display: flex;
    /* Unified: Hamburger menu for everyone */
    flex-direction: column;
    justify-content: space-between;
    width: 32px;
    height: 22px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1100;
    padding: 0;
}

.mobile-menu-btn span {
    width: 100%;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition-fast);
    border-radius: 2px;
}

/* Animation for active menu */
.mobile-menu-btn.active span:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
}

.mobile-nav {
    display: block;
    position: fixed;
    top: 0;
    right: -100%;
    width: 400px;
    /* Wider for desktop, will be 80% on mobile via override */
    max-width: 80%;
    height: 100vh;
    background: white;
    z-index: 1050;
    transition: right 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    padding: 7rem 3rem;
    box-shadow: -15px 0 45px rgba(0, 0, 0, 0.15);
}

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

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    list-style: none;
    padding: 0;
}

.mobile-nav-links a {
    font-size: 1.8rem;
    font-family: var(--font-heading);
    color: var(--primary);
    font-weight: 600;
    display: block;
    border-bottom: 3px solid transparent;
    transition: var(--transition-fast);
    padding-bottom: 0.5rem;
}

.mobile-nav-links a:hover {
    color: var(--accent);
    border-color: var(--accent);
    padding-left: 10px;
}

[dir="rtl"] .mobile-nav {
    right: auto;
    left: -100%;
    box-shadow: 15px 0 45px rgba(0, 0, 0, 0.15);
}

[dir="rtl"] .mobile-nav.active {
    left: 0;
}

[dir="rtl"] .mobile-nav-links a:hover {
    padding-left: 0;
    padding-right: 10px;
}

/* --- Hero --- */
.hero {
    min-height: 90vh;
    background-color: #2C3535;
    background-image: url('https://images.unsplash.com/photo-1512290923902-8a9f81dc2069?q=80&w=2670&auto=format&fit=crop'), url('hero_final.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    will-change: transform;
    /* Hint to browser for smoother rendering */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    padding: 3rem 2rem;
    max-width: 900px;
    z-index: 2;
    animation: heroFadeUp 1.2s cubic-bezier(0.2, 1, 0.3, 1) forwards;
}

@keyframes heroFadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-divider {
    width: 60px;
    height: 2px;
    background: var(--accent);
    margin: 0 auto 2.5rem;
    position: relative;
}

.hero-divider::before,
.hero-divider::after {
    content: '';
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--accent);
    border-radius: 50%;
    top: -1px;
}

.hero-divider::before {
    left: -10px;
}

.hero-divider::after {
    right: -10px;
}

.hero-content p {
    font-size: 1.4rem;
    margin-bottom: 3.5rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 300;
    letter-spacing: 1px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
    font-family: var(--font-heading);
}

[dir="rtl"] .hero-content p {
    letter-spacing: 0;
    font-family: var(--font-body);
}

/* --- Service Cards --- */
.services {
    padding: 6rem 0;
    background-color: var(--bg-body);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    justify-content: center;
}

.service-card {
    background: var(--bg-surface);
    padding: 2rem 1.5rem;
    text-align: center;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: var(--shadow-soft);
    transition: var(--transition-fast);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--accent);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: inline-block;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.service-card p {
    color: var(--text-muted);
    font-weight: 400;
}

/* --- Booking Section --- */
.booking {
    padding: 6rem 0;
    background-color: var(--bg-alt);
}

.booking-container {
    background: white;
    padding: 0;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
}

.booking h2 {
    padding-top: 3rem;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 2rem;
}

.form-section {
    padding: 3rem;
    background: white;
    border-bottom: 1px solid #f0f0f0;
}

.form-section:nth-child(even) {
    background-color: #FAFAFA;
}

.form-section-title {
    font-size: 1rem;
    color: var(--accent);
    margin-bottom: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

label {
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

input,
select {
    padding: 1.2rem;
    background: #fcfcfc;
    border: 1px solid #e0e0e0;
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
}

input:focus,
select:focus {
    background: white;
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(197, 160, 101, 0.1);
    outline: none;
}

.submit-btn {
    margin: 2rem 3rem 3rem 3rem;
    width: calc(100% - 6rem);
    padding: 1.4rem;
    font-size: 1.1rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: var(--radius-lg);
    color: white;
    border: none;
    cursor: pointer;
    font-weight: 500;
    transition: var(--transition);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(74, 93, 94, 0.3);
}

/* --- Manage Booking Section (Ultra-Premium & Centered) --- */
.manage-booking-container {
    margin: 8rem auto 4rem;
    padding: 5rem 2rem;
    max-width: 850px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(197, 160, 101, 0.3);
    border-radius: 40px;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.15);
    /* Reduced shadow intensity */
    text-align: center;
    position: relative;
    overflow: hidden;
}

.manage-booking-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.manage-header h3 {
    font-size: 2.8rem;
    color: var(--primary);
    margin-bottom: 1rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 800;
    text-shadow: 0 4px 15px rgba(197, 160, 101, 0.1);
}

.manage-header p {
    color: #999;
    margin-bottom: 4rem;
    font-size: 1.2rem;
    font-style: italic;
    opacity: 0.8;
}

.search-box-wrapper {
    max-width: 600px;
    margin: 0 auto 5rem;
}

.premium-search-input {
    display: flex;
    background: #ffffff;
    padding: 15px;
    border-radius: 100px;
    border: 1px solid rgba(197, 160, 101, 0.2);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.08);
}

.premium-search-input:focus-within {
    border-color: var(--primary);
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 25px 60px rgba(197, 160, 101, 0.35);
}

.premium-search-input input {
    flex: 1;
    border: none;
    background: none;
    padding: 10px 40px;
    font-size: 1.4rem;
    outline: none;
    color: #111;
    text-align: center;
    font-weight: 600;
}

.premium-search-input button {
    background: linear-gradient(135deg, var(--primary) 0%, #a6814b 100%);
    color: white;
    border: none;
    padding: 0 60px;
    border-radius: 100px;
    cursor: pointer;
    font-weight: 900;
    font-size: 1.2rem;
    transition: all 0.4s;
    box-shadow: 0 10px 30px rgba(197, 160, 101, 0.4);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.premium-search-input button:hover {
    box-shadow: 0 15px 40px rgba(197, 160, 101, 0.7);
    filter: brightness(1.25);
    letter-spacing: 4px;
}

.booking-result-card {
    background: rgba(255, 255, 255, 0.99);
    padding: 4rem;
    border-radius: 30px;
    margin: 0 auto 2.5rem;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(197, 160, 101, 0.15);
    transition: all 0.4s ease;
    animation: luxuryShowUp 0.8s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

@keyframes luxuryShowUp {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(40px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.booking-result-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 35px 80px rgba(0, 0, 0, 0.18);
    border-color: var(--primary);
}

.card-info h4 {
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    font-weight: 900;
    letter-spacing: 2px;
}

.card-info p {
    font-size: 1.2rem;
    color: #222;
    display: flex;
    justify-content: center;
    gap: 35px;
    background: #fdfaf5;
    padding: 18px 45px;
    border-radius: 100px;
    border: 1px solid rgba(197, 160, 101, 0.1);
}

.cancel-btn-elegant {
    background: none;
    border: 2px solid #ddd;
    color: #999;
    padding: 18px 50px;
    border-radius: 100px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 800;
    transition: all 0.4s;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.cancel-btn-elegant:hover {
    border-color: #ff3b3b;
    color: #ff3b3b;
    background: rgba(255, 59, 59, 0.05);
    transform: translateY(-4px) scale(1.08);
}

/* --- Footer --- */
footer {
    background-color: #2C3535;
    color: rgba(255, 255, 255, 0.8);
    padding: 4rem 0;
    text-align: center;
}

/* --- Responsive Rules --- */
@media (max-width: 992px) {
    .section-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .manage-booking-container {
        padding: 4rem 1.5rem;
        margin-top: 5rem;
    }

    .manage-header h3 {
        font-size: 2.2rem;
    }

    .premium-search-input {
        flex-direction: column;
        background: none;
        border: none;
        gap: 20px;
        padding: 0;
        box-shadow: none;
    }

    .premium-search-input:focus-within {
        transform: translateY(0) scale(1);
        box-shadow: none;
    }

    .premium-search-input input {
        background: white;
        border-radius: 50px;
        border: 2px solid rgba(197, 160, 101, 0.1);
        width: 100%;
        box-sizing: border-box;
        padding: 24px;
        font-size: 1.1rem;
    }

    .premium-search-input button {
        width: 100%;
        padding: 24px;
        font-size: 1.1rem;
    }

    .card-info p {
        flex-direction: column;
        gap: 15px;
        border-radius: 30px;
        padding: 25px;
    }

    .hero {
        min-height: 70vh;
        background-attachment: scroll !important;
    }

    .mobile-nav {
        width: 85%;
        max-width: 85%;
        padding: 6rem 1.5rem;
    }

    .mobile-nav-links a {
        font-size: 1.4rem;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .service-card {
        padding: 1.5rem 1rem;
    }
}

@media (max-width: 480px) {
    .manage-header h3 {
        font-size: 1.8rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .hero-content p {
        font-size: 1.1rem;
    }
}


/* ===== PREMIUM BUTTON AND MODAL STYLES ===== */

/* Details Button in Cards - Premium Design */
.btn-details {
    margin-top: 1.5rem;
    padding: 0.9rem 2rem;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
    border: none;
    color: white;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 4px 15px rgba(197, 160, 101, 0.3);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}

.btn-details::before {
    content: '→';
    position: absolute;
    right: -25px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    opacity: 0;
}

.btn-details:hover {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(74, 93, 94, 0.4);
    padding-right: 2.5rem;
}

.btn-details:hover::before {
    right: 1rem;
    opacity: 1;
}

.btn-details:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(74, 93, 94, 0.3);
}

[dir="rtl"] .btn-details::before {
    content: '←';
    right: auto;
    left: -25px;
}

[dir="rtl"] .btn-details:hover {
    padding-right: 2rem;
    padding-left: 2.5rem;
}

[dir="rtl"] .btn-details:hover::before {
    right: auto;
    left: 1rem;
}

/* --- Service Modal - Premium Design --- */
.service-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    overflow-y: auto;
    opacity: 0;
    transition: opacity 0.4s ease-out;
}

.service-modal.active {
    display: flex;
    opacity: 1;
}

.modal-content {
    background: linear-gradient(145deg, #ffffff 0%, #fafafa 100%);
    width: 100%;
    max-width: 650px;
    padding: 0;
    border-radius: 30px;
    position: relative;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(197, 160, 101, 0.3);
    margin: auto;
    overflow: hidden;
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.service-modal.active .modal-content {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 2001;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.modal-close:hover {
    color: white;
    background: var(--accent);
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 4px 15px rgba(197, 160, 101, 0.4);
}

.modal-header {
    text-align: center;
    padding: 3rem 2rem 2rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white;
    position: relative;
}

.modal-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--accent);
    border-radius: 2px;
}

.modal-icon {
    font-size: 5rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
    animation: iconFloat 3s ease-in-out infinite;
}

@keyframes iconFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.modal-title {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: white;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.modal-body {
    padding: 3rem 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.detail-section {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border-left: 4px solid var(--accent);
    transition: all 0.3s ease;
}

.detail-section:hover {
    transform: translateX(5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

[dir="rtl"] .detail-section {
    border-left: none;
    border-right: 4px solid var(--accent);
}

[dir="rtl"] .detail-section:hover {
    transform: translateX(-5px);
}

.detail-section p {
    color: var(--text-main);
    font-size: 1.1rem;
    line-height: 1.8;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .modal-content {
        max-width: 95%;
        border-radius: 25px;
    }

    .modal-header {
        padding: 2.5rem 1.5rem 1.5rem;
    }

    .modal-icon {
        font-size: 4rem;
    }

    .modal-title {
        font-size: 2rem;
    }

    .modal-body {
        padding: 2rem 1.5rem;
    }

    .detail-section {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .modal-content {
        max-width: 100%;
        border-radius: 20px;
    }

    .modal-header {
        padding: 2rem 1rem 1.5rem;
    }

    .modal-icon {
        font-size: 3.5rem;
    }

    .modal-title {
        font-size: 1.8rem;
    }

    .modal-body {
        padding: 1.5rem 1rem;
        gap: 1.5rem;
    }

    .detail-section {
        padding: 1.2rem;
    }

    .detail-section p {
        font-size: 1rem;
    }
}


/* ===== PREMIUM COLORFUL BUTTON OVERRIDE ===== */
/* Premium Colorful Details Button */
.btn-details {
    margin-top: 1.5rem;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    background-size: 200% 200%;
    border: none;
    color: white;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.btn-details::before {
    content: '✨';
    position: absolute;
    left: -30px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    opacity: 0;
}

.btn-details::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-details:hover {
    background: linear-gradient(135deg, #f093fb 0%, #764ba2 50%, #667eea 100%);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.6);
    padding-left: 3rem;
}

.btn-details:hover::before {
    left: 1rem;
    opacity: 1;
}

.btn-details:hover::after {
    width: 300px;
    height: 300px;
}

.btn-details:active {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.5);
}

[dir='rtl'] .btn-details::before {
    content: '✨';
    left: auto;
    right: -30px;
}

[dir='rtl'] .btn-details:hover {
    padding-left: 2.5rem;
    padding-right: 3rem;
}

[dir='rtl'] .btn-details:hover::before {
    left: auto;
    right: 1rem;
}

/* --- Packages Section --- */
.packages {
    padding: 8rem 0;
    background-color: var(--bg-alt);
    position: relative;
}

.premium-bg {
    background: linear-gradient(180deg, var(--bg-body) 0%, var(--bg-alt) 100%);
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 4rem;
}

.package-card {
    background: #FDFBF8;
    /* Warmer, premium off-white */
    padding: 3.5rem 2.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(197, 160, 101, 0.1);
    /* Subtle gold hint */
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.03);
    /* Softer shadow */
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--accent);
}

.package-card.featured {
    border: 2px solid var(--accent);
    transform: scale(1.05);
    z-index: 2;
    background: linear-gradient(135deg, #FFFDFB 0%, #F8F4ED 100%);
    /* Subtle premium glow */
    box-shadow: 0 20px 50px rgba(197, 160, 101, 0.15);
    /* Warm accent shadow */
}

.package-card.featured:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 25px 60px rgba(197, 160, 101, 0.25);
}

.featured-badge {
    position: absolute;
    top: 2rem;
    right: -3rem;
    background: var(--accent);
    color: white;
    padding: 0.5rem 3.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    transform: rotate(45deg);
    letter-spacing: 1px;
}

.package-header {
    text-align: center;
    margin-bottom: 2rem;
}

.package-tier {
    font-size: 0.9rem;
    /* Slightly larger */
    text-transform: uppercase;
    letter-spacing: 4px;
    /* More elegant tracking */
    font-weight: 700;
    display: block;
    margin-bottom: 0.8rem;
}

.silver {
    color: #A8A8A8;
}

.gold {
    color: var(--accent);
}

.platinum {
    color: #4A5D5E;
}

.package-price {
    font-size: 4rem;
    /* Larger, more impactful price */
    font-family: var(--font-heading);
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 1rem;
}

.package-desc {
    color: var(--text-muted);
    text-align: center;
    font-size: 1.1rem;
    /* Better readability */
    line-height: 1.8;
    margin-bottom: 2.5rem;
    flex-grow: 1;
    max-width: 250px;
    /* Narrower for better line breaks */
}

.btn-outline {
    background: transparent;
    border: 1.5px solid var(--primary);
    /* Slightly thicker for premium feel */
    color: var(--primary);
    font-weight: 600;
    letter-spacing: 1px;
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
    box-shadow: 0 8px 20px rgba(74, 93, 94, 0.2);
}



/* --- Responsive for Packages & Offers --- */
@media (max-width: 1024px) {
    .packages-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }


}

@media (max-width: 768px) {
    .packages-grid {
        grid-template-columns: 1fr;
    }

    .package-card.featured {
        transform: scale(1);
    }

    .package-card.featured:hover {
        transform: translateY(-10px);
    }


}


/* --- Payment Method Styles --- */
.payment-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 1.5rem 0;
}

.payment-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 1rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    background: #fdfdfd;
}

.payment-option:hover {
    border-color: #C5A065;
    background: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.payment-option input[type="radio"] {
    display: none;
}

.radio-custom {
    width: 20px;
    height: 20px;
    border: 2px solid #ddd;
    border-radius: 50%;
    position: relative;
    transition: all 0.3s ease;
}

.payment-option input[type="radio"]:checked+.radio-custom {
    border-color: #C5A065;
}

.payment-option input[type="radio"]:checked+.radio-custom::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background: #C5A065;
    border-radius: 50%;
}

.payment-text {
    font-weight: 500;
    color: var(--primary);
}

.payment-info-box {
    background: #fff9f0;
    border: 1px solid #ffe8cc;
    padding: 1.2rem;
    border-radius: 12px;
    margin-top: 1rem;
    font-size: 0.95rem;
    color: #856404;
    animation: fadeInPayment 0.4s ease;
    line-height: 1.5;
}

.btn-book-package {
    cursor: pointer;
}

@keyframes fadeInPayment {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- Ultra Premium Offers Section --- */
.offers {
    background-color: #fcfaf7;
    /* Slightly warmer than pure white */
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.offers-slider-container {
    margin-top: 50px;
    padding: 20px 0 60px;
    position: relative;
}

.offer-card {
    height: 320px;
    border-radius: 20px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    color: white;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    cursor: pointer;
    border: 1px solid rgba(197, 160, 101, 0.1);
}

.offer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(197, 160, 101, 0.1), transparent);
    z-index: 1;
    transition: opacity 0.3s ease;
}

.offer-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    border-color: rgba(197, 160, 101, 0.4);
}

.offer-card:hover::before {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.3) 60%, rgba(197, 160, 101, 0.1) 100%);
}

.offer-occasion-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #C5A065;
    color: white;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    z-index: 5;
    box-shadow: 0 4px 15px rgba(197, 160, 101, 0.4);
    text-transform: uppercase;
    animation: badgeFloat 3s ease-in-out infinite;
}

@keyframes badgeFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

.offer-content {
    position: relative;
    z-index: 2;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.offer-card:hover .offer-content {
    transform: translateY(0);
}

.offer-title {
    font-family: "Playfair Display", serif;
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: #fdfbf8;
}

.offer-description {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 25px;
    opacity: 0;
    max-height: 0;
    transition: all 0.4s ease;
    overflow: hidden;
}

.offer-card:hover .offer-description {
    opacity: 1;
    max-height: 100px;
}

.offer-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
}

.offer-pricing {
    display: flex;
    flex-direction: column;
}

.offer-old-price {
    font-size: 0.9rem;
    text-decoration: line-through;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 2px;
}

.offer-current-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #C5A065;
}

.btn-book-offer {
    background: white;
    color: black;
    border: none;
    padding: 10px 22px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-book-offer:hover {
    background: #C5A065;
    color: white;
    transform: scale(1.05);
}

/* Swiper Bullet Customization */
.offers-swiper .swiper-pagination-bullet {
    background: #C5A065;
    opacity: 0.3;
    width: 10px;
    height: 10px;
    transition: all 0.3s ease;
}

.offers-swiper .swiper-pagination-bullet-active {
    opacity: 1;
    width: 30px;
    border-radius: 5px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .offer-card {
        height: 380px;
    }

    .offer-title {
        font-size: 1.5rem;
    }
}