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

/* Color System Variable Declaration (STRICT COLOR SCHEMA) */
:root {
    --color-primary-dark: #121358;  /* Deep Royal Blue */
    --color-secondary-dark: #232F72;/* Midnight Blue */
    --color-medium-blue: #2F578A;   /* Steel/Slate Blue */
    --color-teal-accent: #36ADA3;   /* Teal Highlight */
    --color-white: #ffffff;
    --color-light-bg: #121358;      /* Sticking to provided colors */
    --color-card-bg: #232F72;       /* Mid tone */
    --color-border: #2F578A;        /* Slate tone */
    
    /* Typography */
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans: 'Outfit', sans-serif;
    
    /* Transitions & Shadows */
    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    --shadow-premium: 0 15px 35px rgba(18, 19, 88, 0.3);
    --shadow-glow: 0 0 15px rgba(54, 173, 163, 0.4);
}

/* Global Reset & Base Layout */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--color-primary-dark);
    color: var(--color-white);
    font-family: var(--font-sans);
    line-height: 1.6;
    overflow-x: hidden;
    padding-bottom: 60px; /* Space for sticky bar */
}

/* Typography Defaults */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    font-weight: 700;
}

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

/* 1. TOP BANNER SECTION WITH OVERLAY TEXT */
.top-banner-section {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    position: relative;
    border-bottom: 4px solid var(--color-teal-accent);
}

.banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: none; /* Image is full with no filters/effects */
}

/* Semi-transparent overlay matching primary dark theme color */
.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(18, 19, 88, 0.8) 0%, rgba(18, 19, 88, 0.4) 60%, rgba(18, 19, 88, 0.1) 100%);
    z-index: 1;
}

.banner-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;  
    z-index: 2;
}

.banner-h1 {
    font-family: var(--font-serif);
    font-size: 56px;
    color: var(--color-white);
    text-shadow: 2px 2px 8px rgba(18, 19, 88, 0.8);
    position: relative; 
    /* max-width: 600px; */
}

.banner-h1::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background-color: var(--color-teal-accent);
    margin-top: 15px;
}

/* 2. NAVBAR DIRECTLY BELOW BANNER */
.main-header {
    background-color: var(--color-secondary-dark);
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    border-bottom: 2px solid var(--color-border);
}

.navbar {
    max-width: 1300px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Mobile Menu Toggle Button */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1005;
}

.menu-toggle span {
    width: 100%;
    height: 3px;
    background-color: var(--color-white);
    border-radius: 2px;
    transition: var(--transition-smooth);
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
    background-color: var(--color-teal-accent);
}

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

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
    background-color: var(--color-teal-accent);
}

.logo-container .logo-link {
    display: flex;
    align-items: center;
    gap: 5px;
}

.logo-text-large {
    font-family: var(--font-sans);
    font-size: 26px;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--color-white);
}

.logo-text-small {
    font-family: var(--font-serif);
    font-size: 22px;
    font-weight: 700;
    color: var(--color-teal-accent);
    font-style: italic;
}

.nav-menu {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-menu li a {
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 1px;
    padding: 8px 12px;
    position: relative;
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 12px;
    width: 0;
    height: 2px;
    background-color: var(--color-teal-accent);
    transition: var(--transition-smooth);
}

.nav-menu li a:hover {
    color: var(--color-teal-accent);
}

.nav-menu li a:hover::after {
    width: calc(100% - 24px);
}

.nav-cta .nav-btn-call {
    display: inline-block;
    background-color: var(--color-teal-accent);
    color: var(--color-primary-dark);
    padding: 10px 22px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    box-shadow: var(--shadow-glow);
}

.nav-cta .nav-btn-call:hover {
    background-color: var(--color-white);
    color: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}

/* 3. SECTION WITH LEFT IMAGE & RIGHT CONTENT (IMAGE FULL, NO EFFECTS) */
.intro-section {
    width: 100%;
    padding: 0;
    background-color: var(--color-primary-dark);
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    min-height: 550px;direction: rtl;
}

.intro-image-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.intro-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    /* STRICTLY FULL WITH NO EFFECTS */
    filter: none !important;
    transform: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    opacity: 1 !important;
}

.intro-content-wrapper {
    padding: 30px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: var(--color-secondary-dark);
    border-left: 4px solid var(--color-teal-accent);
    text-align: left; /* Explicitly no center text */
}

.section-subtitle {
    display: block;
    color: var(--color-teal-accent);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 12px;
    text-align: left;
}

.section-title {
    font-size: 40px;
    color: var(--color-white);
    margin-bottom: 25px;
    line-height: 1.2;
    text-align: left;
}

.intro-text {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 20px;
    line-height: 1.8;
    text-align: left;
}

.intro-actions {
    margin-top: 20px;
    display: flex;
    gap: 15px;
}

.btn-primary {
    background-color: var(--color-teal-accent);
    color: var(--color-primary-dark);
    padding: 14px 35px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 15px;
    box-shadow: var(--shadow-glow);
    display: inline-block;
}

.btn-primary:hover {
    background-color: var(--color-white);
    color: var(--color-primary-dark);
    transform: translateY(-3px);
}

.btn-secondary {
    border: 2px solid var(--color-teal-accent);
    color: var(--color-white);
    padding: 12px 35px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 15px;
    display: inline-block;
}

.btn-secondary:hover {
    background-color: var(--color-teal-accent);
    color: var(--color-primary-dark);
    transform: translateY(-3px);
}

/* 4. VIDEO SECTION (NO OVERLAY TEXT) */
.video-showcase-section {
    width: 100%;    
    height: 500px;
    position: relative;
    overflow: hidden;
    border-top: 4px solid var(--color-border);
    border-bottom: 4px solid var(--color-border);
    background-color: #121358;
}

.video-wrapper {
    width: 100%;
    height: 100%;
}

.showcase-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* 5. CONTENT SECTION 1 (DUMMY CONTENT, NO CENTER TEXT) */
.seo-content-section-one {
    padding: 40px 20px;
    background-color: var(--color-primary-dark);
}

.content-container {
    max-width: 1100px;
    margin: 0 auto;
    text-align: left; /* Strict alignment rule */
}

.content-h2 {
    font-size: 32px;
    color: var(--color-teal-accent);
    margin-bottom: 20px;
    text-align: left;
}

.content-h3 {
    font-size: 24px;
    color: var(--color-white);
    margin-top: 35px;
    margin-bottom: 15px;
    text-align: left;
}

.content-p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    line-height: 1.8;
    text-align: left;
}

/* 6. PROFILE GALLERY SECTION (20 PROFILES, 4 IN A ROW) */
.gallery-section {
    padding: 40px 20px;
    background-color: var(--color-secondary-dark);
    border-top: 2px solid var(--color-border);
    border-bottom: 2px solid var(--color-border);
}

.gallery-container {
    max-width: 1300px;
    margin: 0 auto;
}

.gallery-header {
    text-align: left; /* Left-aligned header content */
    margin-bottom: 50px;
}

.gallery-title {
    font-size: 40px;
    color: var(--color-white);
    margin-bottom: 15px;
}

.gallery-desc {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 700px;
}

.profiles-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* Exactly 4 in a row */
    gap: 30px;
}

.profile-card {
    background-color: var(--color-primary-dark);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition-smooth);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

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

.profile-img-holder {
    width: 100%;
    height: 320px;
    overflow: hidden;
}

.profile-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: var(--transition-smooth);
}

.profile-card:hover .profile-card-img {
    transform: scale(1.05);
}

.profile-info {
    padding: 20px;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.profile-name {
    font-size: 22px;
    color: var(--color-white);
    margin-bottom: 0;
}

.profile-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

.profile-status {
    color: var(--color-teal-accent);
    font-weight: 600;
}

.profile-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 0;
}

.stars {
    color: var(--color-teal-accent);
    font-size: 16px;
    letter-spacing: 2px;
}

.rating-value {
    color: var(--color-white);
    font-weight: 600;
    font-size: 14px;
}

.profile-book-btn {
    display: block;
    width: 100%;
    text-align: center;
    background-color: var(--color-secondary-dark);
    border: 1px solid var(--color-teal-accent);
    color: var(--color-white);
    padding: 10px 0;
    border-radius: 4px;
    font-weight: 600;
    font-size: 14px;
}

.profile-card:hover .profile-book-btn {
    background-color: var(--color-teal-accent);
    color: var(--color-primary-dark);
    border-color: var(--color-teal-accent);
}

/* 7. CONTENT SECTION 2 (DUMMY CONTENT, NO CENTER TEXT) */
.seo-content-section-two {
    padding: 40px 20px;
    background-color: var(--color-primary-dark);
}

/* 8. RATES SECTION (CARD FORM, ATTRACTIVE DESIGN) */
.rates-section {
    padding: 40px 20px;
    background-color: var(--color-secondary-dark);
    border-top: 2px solid var(--color-border);
    border-bottom: 2px solid var(--color-border);
}

.rates-container {
    max-width: 1300px;
    margin: 0 auto;
}

.rates-header {
    text-align: left;
    margin-bottom: 50px;
}

.rates-title {
    font-size: 40px;
    color: var(--color-white);
    margin-bottom: 15px;
}

.rates-desc {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
}

.rates-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: stretch;
}

.rate-card {
    background-color: var(--color-primary-dark);
    border: 2px solid var(--color-border);
    border-radius: 12px;
    padding: 40px 30px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
}

.rate-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-premium);
}

/* Special Highlight Card styling */
.rate-card.highlighted {
    border-color: var(--color-teal-accent);
    background-color: var(--color-secondary-dark);
    box-shadow: var(--shadow-glow);
}

.card-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--color-border);
    color: var(--color-white);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.card-badge-vip {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--color-teal-accent);
    color: var(--color-primary-dark);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.rate-package-title {
    font-size: 24px;
    color: var(--color-white);
    margin-bottom: 15px;
    border-bottom: 1px solid var(--color-border);
    padding-bottom: 15px;
}

.rate-price {
    font-size: 44px;
    font-weight: 800;
    color: var(--color-teal-accent);
    margin-bottom: 25px;
    font-family: var(--font-sans);
}

.rate-duration {
    font-size: 16px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.6);
}

.rate-features {
    list-style: none;
    margin-bottom: 35px;
    flex-grow: 1;
}

.rate-features li {
    padding: 10px 0 10px 25px;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.85);
    position: relative;
}

.rate-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-teal-accent);
    font-weight: bold;
}

.rate-book-btn {
    display: block;
    width: 100%;
    text-align: center;
    background-color: var(--color-teal-accent);
    color: var(--color-primary-dark);
    padding: 14px 0;
    border-radius: 6px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.rate-card:not(.highlighted) .rate-book-btn {
    background-color: transparent;
    border: 2px solid var(--color-teal-accent);
    color: var(--color-white);
}

.rate-card:not(.highlighted) .rate-book-btn:hover {
    background-color: var(--color-teal-accent);
    color: var(--color-primary-dark);
}

.rate-card.highlighted .rate-book-btn:hover {
    background-color: var(--color-white);
    color: var(--color-primary-dark);
}

/* 9. FAQ SECTION */
.faq-section {
    padding: 30px 20px;
    background-color: var(--color-primary-dark);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-header {
    text-align: left;
    margin-bottom: 50px;
}

.faq-title {
    font-size: 40px;
    color: var(--color-white);
    margin-bottom: 15px;
}

.faq-desc {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background-color: var(--color-secondary-dark);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.faq-question-block {
    padding: 24px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.faq-question {
    font-size: 18px;
    color: var(--color-white);
    font-family: var(--font-sans);
    font-weight: 600;
}

.faq-toggle-icon {
    font-size: 22px;
    font-weight: bold;
    color: var(--color-teal-accent);
    transition: transform 0.3s ease;
}

.faq-answer-block {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-answer {
    padding: 0 30px 30px 30px;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.8;
}

.faq-item.active {
    border-color: var(--color-teal-accent);
}

/* 10. LOCATIONS SECTION (CAPSULE OR DESIGN BUTTON FORM) */
.locations-section {
    padding: 30px 20px;
    background-color: var(--color-secondary-dark);
    border-top: 2px solid var(--color-border);
}

.locations-container {
    max-width: 1200px;
    margin: 0 auto;
}

.locations-header {
    text-align: left;
    margin-bottom: 50px;
}

.locations-title {
    font-size: 40px;
    color: var(--color-white);
    margin-bottom: 15px;
}

.locations-desc {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
}

.locations-capsules-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: flex-start;
}

.location-capsule {
    background-color: var(--color-primary-dark);
    border: 1px solid var(--color-border);
    color: var(--color-white);
    padding: 12px 28px;
    border-radius: 50px; /* Capsule pill design */
    font-size: 15px;
    font-weight: 600;
    transition: var(--transition-smooth);
}

.location-capsule:hover {
    background-color: var(--color-teal-accent);
    color: var(--color-primary-dark);
    border-color: var(--color-teal-accent);
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

/* 11. SINGLE LINE FOOTER ONLY */
.single-line-footer {
    background-color: var(--color-primary-dark);
    padding: 25px 20px;
    border-top: 1px solid var(--color-border);
    text-align: center;
}

.footer-wrap {
    max-width: 1300px;
    margin: 0 auto;
}

.footer-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.5px;
}

/* STICKY BOTTOM ACTION BAR */
.sticky-action-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    z-index: 9999;
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.3);
}

.action-btn-call, .action-btn-wa {
    flex: 1;
    text-align: center;
    padding: 16px 10px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: flex;
    justify-content: center;
    align-items: center;
}

.action-btn-call {
    background-color: var(--color-teal-accent);
    color: var(--color-primary-dark);
}

.action-btn-wa {
    background-color: var(--color-medium-blue);
    color: var(--color-white);
}

.sticky-action-bar a:hover {
    filter: brightness(1.1);
}

/* Responsive Styling for Mobile / Tablets */
@media (max-width: 1024px) {
    .intro-grid {
        grid-template-columns: 1fr;
        display: block;
    }

    .top-banner-section{
        height: auto;
    }
    
    .intro-content-wrapper {
        border-left: none;
        border-top: 4px solid var(--color-teal-accent);
        padding: 40px 30px;
    }
    
    .intro-image-wrapper {
        height: 400px;
        width: 100%;
    }
    
    .profiles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .rates-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .top-banner-section {
        height: 250px;
    }
    .banner-content {
        padding-left: 40px;
    }
    .banner-h1 {
        font-size: 38px;
    }
    .banner-h1::after {
        margin-top: 10px;
        width: 60px;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    
    .navbar {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        position: relative;
    }
    
    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--color-secondary-dark);
        border-bottom: 2px solid var(--color-border);
        padding: 20px 0;
        gap: 15px;
        z-index: 999;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-menu li {
        width: 100%;
        text-align: center;
    }
    
    .nav-menu li a {
        display: block;
        padding: 10px 20px;
        width: 100%;
    }
    
    .nav-menu li a::after {
        display: none; /* Hide standard desktop hover line on mobile */
    }
    
    .nav-cta {
        display: none; /* Hide CTA button in navbar on mobile */
    }
    
    .video-showcase-section {
        height: 350px;
    }
    
    .section-title {
        font-size: 30px;
    }
    
    .content-h2 {
        font-size: 26px;
    }
    
    .gallery-title {
        font-size: 32px;
    }
    
    .rates-title {
        font-size: 32px;
    }
    
    .faq-title {
        font-size: 32px;
    }
    
    .locations-title {
        font-size: 32px;
    }
}

@media (max-width: 600px) {
    .profiles-grid {
        grid-template-columns: 1fr;
        max-width: 320px;
        margin: 0 auto;
    }
    
    .top-banner-section {
        height: 180px;
    }
    
    .intro-image-wrapper {
        height: 280px;
    }
    
    .banner-content {
        padding-left: 20px;
    }
    
    .banner-h1 {
        font-size: 24px;
    }
    
    .banner-h1::after {
        margin-top: 5px;
        width: 40px;
        height: 2px;
    }
    
    .location-capsule {
        padding: 10px 20px;
        font-size: 13px;
    }
    
    .faq-question-block {
        padding: 20px;
    }
    
    .faq-answer {
        padding: 0 20px 20px 20px;
    }
}
