/* ===== CSS Reset & Variables ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Master brand color: update this once to theme site-wide */
    --brand-color: #d4af37;
    --primary-color: #1a1a1a;
    --secondary-color: var(--brand-color);
    --accent-color: #8b7355;
    --text-dark: #333;
    --text-light: #666;
    --bg-light: #f9f7f4;
    --white: #ffffff;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lato', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ===== Header & Navigation (two-row transparent) ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    transition: all 0.3s ease;
}

.header::after {
    content: '';
    position: absolute;
    left: 0; right: 0; top: 0; bottom: 0;
    backdrop-filter: none;
    pointer-events: none;
    transition: backdrop-filter 0.3s ease, background 0.3s ease;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.utility-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

.utility-left { display: flex; align-items: center; gap: 0.6rem; flex: 1; }
.menu-label { color: var(--white); text-transform: lowercase; letter-spacing: 1px; font-weight: 400; font-size: 0.85rem; opacity: 0.9; }

.utility-right { display: flex; align-items: center; gap: 1.25rem; flex: 1; justify-content: flex-end; }
.utility-link { color: var(--white); text-decoration: none; font-size: 0.85rem; opacity: 0.95; font-weight: 400; }
.utility-link:hover { opacity: 1; color: var(--white); }

.brand { text-align: center; flex: 0 0 auto; }

/* Full-width separator line */
.header-separator {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    margin: 0;
}

/* Centered brand wordmark */
.brand-center {
    text-align: center;
    padding: 0.75rem 2rem;
}

.wordmark { 
    font-family: 'Playfair Display', serif; 
    font-weight: 400; 
    letter-spacing: 6px; 
    font-size: 2.5rem; 
    color: var(--white); 
    text-decoration: none;
    display: inline-block;
}
.wordmark .dot { color: var(--brand-color); }
.wordmark:hover { color: var(--white); }

.main-nav { padding: 0.75rem 2rem 1rem; }
.nav-menu { list-style: none; display: flex; justify-content: center; gap: 3rem; flex-wrap: wrap; }
.nav-menu a { 
    text-decoration: none; 
    color: var(--white); 
    font-family: 'Avenir Next', Roboto, sans-serif;
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 300;
    letter-spacing: 0.10rem;
    position: relative; 
    /* text-shadow: 1px 1px 2px rgba(0,0,0,0.25); */
    transition: opacity 0.2s ease;
}
.nav-menu a:hover { color: var(--white); opacity: 1; }
.nav-menu a::after { content: ''; position: absolute; left: 0; bottom: -6px; width: 0; height: 1px; background: var(--white); transition: width 0.25s ease; }
.nav-menu a:hover::after { width: 100%; }

.reserve-btn { 
    background: var(--white); 
    color: var(--text-dark); 
    padding: 0.6rem 1.25rem; 
    border-radius: 3px; 
    font-weight: 700; 
    font-size: 0.75rem; 
    border: 1px solid var(--white); 
    text-decoration: none; 
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
}
.reserve-btn:hover { 
    background: transparent; 
    color: var(--white); 
    border-color: var(--white);
}

/* Scrolled state colors */
.header.scrolled .wordmark,
.header.scrolled .menu-label,
.header.scrolled .utility-link,
.header.scrolled .nav-menu a { color: var(--text-dark); text-shadow: none; }
.header.scrolled .utility-link:hover,
.header.scrolled .nav-menu a:hover { color: var(--text-dark); }
.header.scrolled .nav-menu a::after { background: var(--text-dark); }
.header.scrolled .reserve-btn { background: var(--secondary-color); color: var(--white); border-color: var(--secondary-color); }
.header.scrolled .header-separator { background: rgba(0, 0, 0, 0.1); }

/* Mobile menu behavior */
.menu-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; }
.menu-toggle span { width: 24px; height: 2px; background: var(--white); transition: var(--transition); border-radius: 2px; }
.header.scrolled .menu-toggle span { background: var(--text-dark); }

@media (max-width: 1024px) {
    .nav-menu { gap: 1.1rem; }
}

@media (max-width: 768px) {
    .menu-toggle { display: flex; }
    .main-nav { position: absolute; top: 100%; left: 0; right: 0; display: none; background: rgba(0,0,0,0.6); padding: 1rem 2rem; }
    .main-nav .nav-menu { flex-direction: column; align-items: flex-start; gap: 1rem; }
    .nav-menu a { font-size: 0.95rem; }
    .main-nav.active { display: block; }
}

.menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.header.scrolled .menu-toggle span {
    background: var(--text-dark);
}

/* ===== Hero Section ===== */
.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
    margin-top: 0;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.scroll-text {
    color: var(--white);
    font-family: 'Avenir Next', Roboto, sans-serif;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.15rem;
    text-transform: uppercase;
    opacity: 0.9;
}

.mouse-scroll {
    margin: 16px 0 12px;
}

.mouse-outline {
    width: 26px;
    height: 42px;
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    position: relative;
    margin: 0 auto;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.15);
}

.mouse-wheel {
    width: 4px;
    height: 8px;
    background: var(--brand-color);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: mouseWheel 2s ease-in-out infinite;
}

.scroll-hint {
    color: rgba(255, 255, 255, 0.75);
    font-family: 'Avenir Next', Roboto, sans-serif;
    font-size: 0.65rem;
    font-weight: 400;
    letter-spacing: 0.12rem;
    text-transform: uppercase;
    margin-top: 8px;
    opacity: 0.85;
}

@keyframes mouseWheel {
    0% { opacity: 1; top: 8px; }
    50% { opacity: 0.3; top: 20px; }
    100% { opacity: 1; top: 8px; }
}

/* Video background */
.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}
.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.25) 40%, rgba(0,0,0,0.35) 100%);
    z-index: 2;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.hero-slide.active {
    opacity: 1;
}

/* Flat rules replacing nested selectors */
.hero-slide.active .hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-slide.active .hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.25) 40%, rgba(0,0,0,0.35) 100%);
    z-index: 2;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--white);
    z-index: 3;
    width: 90%;
    max-width: 800px;
}

/* mobile fallback placeholder; 
   rule moved into media query */
.hero-content .hero-video { display: block; }

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    letter-spacing: 2px;
}

.slider-nav {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 10;
}

.slider-btn {
    background: rgba(255, 255, 255, 0.3);
    border: 2px solid var(--white);
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
}

/* ===== CTA Button ===== */
.cta-button {
    background: var(--secondary-color);
    color: var(--white);
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    letter-spacing: 1px;
    border-radius: 4px;
}

.cta-button:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.cta-button.secondary {
    background: var(--primary-color);
    color: var(--white);
    border: 2px solid var(--secondary-color);
}

.cta-button.secondary:hover {
    background: var(--secondary-color);
}

/* ===== Booking Section ===== */
.booking-section {
    background: var(--bg-light);
    padding: 3rem 2rem;
    transform: translateY(-50px);
    position: relative;
    z-index: 5;
}

.booking-container {
    max-width: 1200px;
    margin: 0 auto;
}

.booking-container h2 {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.booking-form {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 700;
    color: var(--text-dark);
    font-size: 0.9rem;
}

.form-group input,
.form-group select {
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 5px rgba(212, 175, 55, 0.3);
}

.search-btn {
    background: var(--secondary-color);
    color: var(--white);
    border: none;
    padding: 0.8rem 2rem;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    border-radius: 4px;
    transition: var(--transition);
    align-self: flex-end;
}

.search-btn:hover {
    background: var(--accent-color);
}

/* ===== Featured Hotels Section ===== */
.featured-hotels {
    padding: 4rem 2rem;
    background: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
}

.hotels-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.hotel-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.hotel-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.hotel-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.hotel-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.hotel-card:hover .hotel-image img {
    transform: scale(1.05);
}

.badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--secondary-color);
    color: var(--white);
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 4px;
    letter-spacing: 1px;
}

.hotel-info {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.hotel-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.location {
    color: var(--secondary-color);
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.description {
    color: var(--text-light);
    margin-bottom: 1rem;
    flex-grow: 1;
}

.rating {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
    align-items: center;
}

.stars {
    color: var(--secondary-color);
    font-size: 0.9rem;
}

.reviews {
    color: var(--text-light);
    font-size: 0.85rem;
}

.explore-link {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition);
}

.explore-link:hover {
    color: var(--accent-color);
}

/* ===== Residences Section ===== */
.residences {
    padding: 4rem 2rem;
    background: var(--bg-light);
}

.residences-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.residences-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.residences-text p {
    color: var(--text-light);
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

.benefits-list {
    list-style: none;
    margin-bottom: 2rem;
}

.benefits-list li {
    padding: 0.8rem 0;
    color: var(--text-dark);
    font-weight: 500;
}

.benefits-list i {
    color: var(--secondary-color);
    margin-right: 1rem;
    font-size: 1.2rem;
}

.residences-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

/* ===== Dining Section ===== */
.dining {
    padding: 4rem 2rem;
    background: var(--white);
}

.dining-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.dining-card {
    text-align: center;
    transition: var(--transition);
    border-radius: 8px;
    overflow: hidden;
}

.dining-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.dining-card:hover img {
    transform: scale(1.05);
    box-shadow: var(--shadow);
}

.dining-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.cuisine {
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
    letter-spacing: 1px;
}

.dining-card .description {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.link-btn {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition);
}

.link-btn:hover {
    color: var(--accent-color);
}

/* ===== Wellness Section ===== */
.wellness {
    padding: 4rem 2rem;
    background: var(--bg-light);
}

.wellness-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.wellness-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.wellness-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.wellness-card i {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.wellness-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.wellness-card p {
    color: var(--text-light);
}

/* ===== Offers Section ===== */
.offers {
    padding: 4rem 2rem;
    background: var(--white);
}

.offers-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.offer-card {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.offer-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.offer-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.offer-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.offer-card:hover .offer-image img {
    transform: scale(1.1);
}

.offer-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--secondary-color);
    color: var(--white);
    padding: 0.8rem 1.5rem;
    font-weight: 700;
    border-radius: 4px;
    font-size: 0.9rem;
}

.offer-content {
    padding: 1.5rem;
}

.offer-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.offer-content p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.offer-link {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition);
}

.offer-link:hover {
    color: var(--accent-color);
}

/* ===== Events Section ===== */
.events {
    padding: 4rem 2rem;
    background: var(--bg-light);
}

.events-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
}

.event-item {
    text-align: center;
}

.event-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--secondary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.event-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.event-item p {
    color: var(--text-light);
}

/* ===== Newsletter Section ===== */
.newsletter {
    background: linear-gradient(135deg, var(--primary-color), #2a2a2a);
    color: var(--white);
    padding: 4rem 2rem;
}

.newsletter-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.newsletter-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.newsletter-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
}

.newsletter-form input {
    flex: 1;
    padding: 1rem;
    border: none;
    border-radius: 4px;
    font-family: inherit;
}

.newsletter-form button {
    padding: 1rem 2rem;
    background: var(--secondary-color);
    color: var(--white);
    border: none;
    border-radius: 4px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    letter-spacing: 1px;
}

.newsletter-form button:hover {
    background: var(--accent-color);
}

/* ===== Footer ===== */
.footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 3rem 2rem 1rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--secondary-color);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--secondary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #999;
    font-size: 0.9rem;
}

.footer-bottom a {
    color: var(--secondary-color);
    text-decoration: none;
}

/* ===== Responsive Design ===== */
@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 3rem;
    }

    .booking-form {
        grid-template-columns: repeat(2, 1fr);
    }

    .residences-content {
        grid-template-columns: 1fr;
    }

    .nav-menu {
        gap: 1rem;
    }

    .nav-menu a {
        font-size: 0.8rem;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        right: 0;
        flex-direction: column;
        background: var(--white);
        padding: 2rem;
        gap: 1rem;
        box-shadow: var(--shadow);
    }

    .nav-menu.active {
        display: flex;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-right {
        flex-direction: column;
        gap: 0.5rem;
    }

    .hero {
        height: 500px;
    }

    .hero-video { display: none; }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .booking-section {
        transform: translateY(0);
    }

    .booking-form {
        grid-template-columns: 1fr;
    }

    .search-btn {
        align-self: stretch;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .hotels-grid,
    .dining-grid,
    .wellness-grid,
    .offers-grid {
        grid-template-columns: 1fr;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .nav-container {
        height: 60px;
    }

    .hero {
        height: 400px;
    }

    .hero-content h1 {
        font-size: 1.5rem;
    }

    .hero-content p {
        font-size: 0.9rem;
    }

    .booking-container h2 {
        font-size: 1.8rem;
    }

    .section-header h2 {
        font-size: 1.5rem;
    }

    .residences-text h2 {
        font-size: 1.8rem;
    }

    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .newsletter-content h2 {
        font-size: 1.8rem;
    }
}

/* ===== About Us Section ===== */
.about-us {
    padding: 120px 5% 100px;
    background: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 60vh;
}

.about-container {
    max-width: 1000px;
    margin: 0 auto;
}

.about-content {
    text-align: center;
    padding: 60px 40px;
}

.about-title {
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 35px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.about-description {
    font-family: 'Lato', sans-serif;
    font-size: 1.15rem;
    line-height: 1.9;
    color: #4a4a4a;
    margin-bottom: 30px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
}

.about-description em {
    font-style: italic;
    font-family: 'Playfair Display', serif;
    color: #2a2a2a;
}

.about-tagline {
    font-family: 'Lato', sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 40px;
    font-weight: 300;
}

.get-in-touch-btn {
    display: inline-block;
    padding: 16px 45px;
    background: #000000;
    color: #ffffff;
    text-decoration: none;
    font-family: 'Lato', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    border: 2px solid #000000;
}

.get-in-touch-btn:hover {
    background: transparent;
    color: #000000;
}

/* Responsive for About Us Section */
@media (max-width: 768px) {
    .about-us {
        padding: 80px 5% 60px;
        min-height: 50vh;
    }

    .about-content {
        padding: 40px 20px;
    }

    .about-title {
        font-size: 0.9rem;
        margin-bottom: 25px;
    }

    .about-description {
        font-size: 1rem;
        margin-bottom: 20px;
        line-height: 1.8;
    }

    .about-tagline {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .get-in-touch-btn {
        padding: 14px 35px;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .about-title {
        font-size: 0.85rem;
        letter-spacing: 1.5px;
    }

    .about-description {
        font-size: 0.95rem;
    }

    .about-tagline {
        font-size: 0.95rem;
    }
}

/* ===== Travel Options Section ===== */
.travel-options {
    padding: 60px 5% 80px;
    background: #f8f8f8;
}

.travel-options-container {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.travel-subtitle {
    font-family: 'Lato', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #666;
    margin-bottom: 10px;
}

.travel-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--primary-color);
    margin-bottom: 35px;
}

.travel-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 25px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.travel-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
}

/* Top 3 cards - equal width, 1/3 of container each */
.travel-card:nth-child(1),
.travel-card:nth-child(2),
.travel-card:nth-child(3) {
    flex: 0 0 calc(33.333% - 8px);
    aspect-ratio: 3/4;
}

/* Bottom 2 cards - equal width, 1/2 of container each, shorter height */
.travel-card:nth-child(4),
.travel-card:nth-child(5) {
    flex: 0 0 calc(50% - 6px);
    aspect-ratio: 2/1.5;
}

.travel-card:hover {
    transform: scale(1.02);
}

.travel-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}

.travel-card:hover .travel-image {
    transform: scale(1.1);
}

.travel-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
    padding: 25px 20px 20px;
    color: #ffffff;
    text-align: center;
}

.travel-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 400;
    margin-bottom: 10px;
    color: #ffffff;
}

.travel-card-description {
    font-family: 'Lato', sans-serif;
    font-size: 0.8rem;
    line-height: 1.5;
    color: #ffffff;
    font-weight: 300;
}

/* Responsive for Travel Options */
@media (max-width: 1024px) {
    .travel-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }

    .travel-card:nth-child(1),
    .travel-card:nth-child(2),
    .travel-card:nth-child(3) {
        aspect-ratio: 3/4;
    }

    .travel-card:nth-child(4) {
        grid-column: 1 / 3;
        aspect-ratio: 21/9;
    }

    .travel-card:nth-child(5) {
        grid-column: 3 / 4;
        aspect-ratio: 3/4;
    }
}

@media (max-width: 768px) {
    .travel-options {
        padding: 60px 5% 80px;
    }

    .travel-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }

    .travel-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .travel-card:nth-child(1),
    .travel-card:nth-child(2),
    .travel-card:nth-child(3),
    .travel-card:nth-child(4),
    .travel-card:nth-child(5) {
        grid-column: 1;
        aspect-ratio: 16/10;
    }

    .travel-card-title {
        font-size: 1.5rem;
        margin-bottom: 10px;
    }

    .travel-card-description {
        font-size: 0.9rem;
    }

    .travel-overlay {
        padding: 30px 20px 25px;
    }
}

@media (max-width: 480px) {
    .travel-title {
        font-size: 1.6rem;
    }

    .travel-subtitle {
        font-size: 0.7rem;
    }

    .travel-card-title {
        font-size: 1.3rem;
    }

    .travel-card-description {
        font-size: 0.85rem;
    }
}

/* ===== Start Your Journey Section ===== */
.journey-section {
    padding: 80px 5% 0px;
    background: #ffffff;
}

.journey-container {
    max-width: 1400px;
    margin: 0 auto;
}

.journey-title {
    font-family: 'Lato', sans-serif;
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 40px;
}

/* Tabs */
.journey-tabs {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 50px;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 15px;
}

.journey-tab {
    font-family: 'Lato', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    background: none;
    border: none;
    color: #999;
    cursor: pointer;
    padding: 10px 0;
    position: relative;
    transition: color 0.3s ease;
}

.journey-tab:hover {
    color: var(--primary-color);
}

.journey-tab.active {
    color: var(--primary-color);
}

.journey-tab.active::after {
    content: '';
    position: absolute;
    bottom: -16px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary-color);
}

/* Cards Wrapper for Scrolling */
.journey-cards-wrapper {
    overflow: hidden;
    position: relative;
}

.journey-cards {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 20px;
}

.journey-cards::-webkit-scrollbar {
    display: none;
}

.journey-card {
    flex: 0 0 350px;
    height: 350px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.journey-card:hover {
    transform: translateY(-10px);
}

.journey-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.journey-card:hover .journey-image {
    transform: scale(1.1);
}

.journey-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.5) 100%);
}

.journey-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 400;
    letter-spacing: 1px;
    color: #ffffff;
    margin: 0;
    text-align: center;
}

/* View More Button */
.journey-view-more {
    text-align: center;
    margin-top: 50px;
}

.view-more-btn {
    display: inline-block;
    padding: 15px 50px;
    background: #000000;
    color: #ffffff;
    border: 2px solid #000000;
    font-family: 'Lato', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.view-more-btn:hover {
    background: transparent;
    color: #000000;
}

/* Responsive */
@media (max-width: 768px) {
    .journey-section {
        padding: 60px 5% 80px;
    }

    .journey-title {
        font-size: 1.5rem;
    }

    .journey-tabs {
        gap: 20px;
        flex-wrap: wrap;
    }

    .journey-tab {
        font-size: 0.75rem;
    }

    .journey-card {
        flex: 0 0 280px;
        height: 380px;
    }
}

/* ===== Spotlight Section ===== */
.spotlight-section {
    padding: 0;
    background: #ffffff;
    display: none;
}

.spotlight-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
}

.spotlight-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.spotlight-card {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1/1;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.spotlight-card:hover {
    transform: translateY(-5px);
}

.spotlight-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}

.spotlight-card:hover .spotlight-image {
    transform: scale(1.1);
}

.spotlight-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.5) 100%);
    padding: 30px;
}

.spotlight-title {
    font-family: 'Lato', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: #ffffff;
    margin: 0;
    text-align: center;
    text-transform: uppercase;
}

/* Responsive for Spotlight */
@media (max-width: 1024px) {
    .spotlight-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .spotlight-card:last-child {
        grid-column: 1 / -1;
        aspect-ratio: 1/1;
    }
}

@media (max-width: 768px) {
    .spotlight-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .spotlight-card,
    .spotlight-card:last-child {
        grid-column: 1;
        aspect-ratio: 1/1;
    }

    .spotlight-title {
        font-size: 1.2rem;
    }
}

/* ===== By Month Calendar Section ===== */
.month-calendar-section {
    padding: 0;
    background: #ffffff;
}

.month-calendar-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
}

.month-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
}

.month-card {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.month-card:hover {
    transform: translateY(-5px);
}

.month-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}

.month-card:hover .month-image {
    transform: scale(1.1);
}

.month-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.5) 100%);
}

.month-name {
    font-family: 'Lato', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: #ffffff;
    margin: 0;
    text-align: center;
    text-transform: uppercase;
}

/* Responsive for Month Calendar */
@media (max-width: 1024px) {
    .month-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .month-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }

    .month-name {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .month-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .month-name {
        font-size: 0.8rem;
        letter-spacing: 1.5px;
    }
}

/* ===== Booking Process Section ===== */
.booking-process-section {
    padding: 100px 5%;
    background: #f5f5f5;
}

.booking-process-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.booking-subtitle {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.booking-description {
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 60px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.booking-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 400;
    color: var(--primary-color);
    margin-bottom: 60px;
    position: relative;
    display: inline-block;
}

.booking-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--brand-color);
}

.booking-steps {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 60px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.booking-step {
    flex: 1;
    position: relative;
    text-align: center;
}

.step-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    color: var(--brand-color);
    transition: transform 0.3s ease;
}

.booking-step:hover .step-icon {
    transform: scale(1.1);
}

.step-arrow {
    position: absolute;
    top: 35px;
    right: -40px;
    font-size: 2rem;
    color: var(--brand-color);
}

.booking-step:last-child .step-arrow {
    display: none;
}

.step-number {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.step-description {
    font-family: 'Lato', sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #666;
}

.booking-cta {
    margin-top: 50px;
}

.enquire-now-btn {
    display: inline-block;
    padding: 16px 50px;
    background: var(--brand-color);
    color: #ffffff;
    border: 2px solid var(--brand-color);
    font-family: 'Lato', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.enquire-now-btn:hover {
    background: transparent;
    color: var(--brand-color);
}

/* Responsive for Booking Process */
@media (max-width: 1024px) {
    .booking-steps {
        gap: 30px;
    }

    .step-arrow {
        right: -30px;
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .booking-process-section {
        padding: 60px 5%;
    }

    .booking-subtitle {
        font-size: 1.5rem;
    }

    .booking-description {
        font-size: 0.95rem;
    }

    .booking-title {
        font-size: 1.8rem;
    }

    .booking-steps {
        flex-direction: column;
        gap: 50px;
    }

    .step-arrow {
        display: none;
    }

    .step-icon {
        width: 70px;
        height: 70px;
    }

    .step-number {
        font-size: 1.2rem;
    }

    .step-description {
        font-size: 0.9rem;
    }
}

/* ===== India Interactive Map Section ===== */
.india-destinations-section {
    padding: 100px 5%;
    background: linear-gradient(to bottom, #ffffff 0%, #f9f9f9 100%);
}

.india-destinations-section .section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 15px;
}

.india-destinations-section .section-subtitle {
    font-family: 'Lato', sans-serif;
    font-size: 1.1rem;
    color: #666;
    text-align: center;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .india-destinations-section {
        padding: 60px 5%;
    }

    .india-destinations-section .section-title {
        font-size: 2rem;
    }

    .india-destinations-section .section-subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
    }
}

/* ===== Featured Dual Section (Exact Scott Dunn Style) ===== */
.featured-dual-section {
    padding: 0;
    margin: 0;
}

.featured-dual-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 600px;
}

.featured-dual-card {
    position: relative;
    overflow: hidden;
    height: 100%;
}

.featured-dual-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}

.featured-dual-card:hover .featured-dual-bg {
    transform: scale(1.05);
}

.featured-dual-overlay {
    position: absolute;
    top: 50%;
    left: auto;
    right: 60px;
    transform: translateY(-50%);
    background: #00493f;
    padding: 50px 40px;
    max-width: 450px;
    z-index: 2;
}

.featured-dual-overlay-right {
    left: auto;
    right: 60px;
    background: #00493f;
}

.featured-dual-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.featured-dual-description {
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    color: #ffffff;
    margin-bottom: 30px;
    line-height: 1.7;
}

.featured-dual-btn {
    display: inline-block;
    background: #ff9bb0;
    color: #ffffff;
    padding: 14px 32px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
}

.featured-dual-btn:hover {
    background: #ff7a96;
}

@media (max-width: 1024px) {
    .featured-dual-grid {
        height: 500px;
    }

    .featured-dual-overlay {
        left: 40px;
        padding: 40px 30px;
        max-width: 380px;
    }

    .featured-dual-overlay-right {
        right: 40px;
    }

    .featured-dual-title {
        font-size: 2rem;
    }

    .featured-dual-description {
        font-size: 0.95rem;
    }
}

@media (max-width: 768px) {
    .featured-dual-grid {
        grid-template-columns: 1fr;
        height: auto;
    }

    .featured-dual-card {
        height: 500px;
    }

    .featured-dual-overlay {
        left: 20px;
        right: 20px;
        padding: 35px 25px;
        max-width: calc(100% - 40px);
    }

    .featured-dual-overlay-right {
        left: 20px;
        right: 20px;
    }

    .featured-dual-title {
        font-size: 1.8rem;
    }

    .featured-dual-description {
        font-size: 0.9rem;
        margin-bottom: 25px;
    }

    .featured-dual-btn {
        padding: 12px 28px;
        font-size: 0.8rem;
    }
}

/* ===== Testimonials Section ===== */
.testimonials-section {
    background: #f5f5f5;
    padding: 80px 40px;
}

.testimonials-container {
    max-width: 1400px;
    margin: 0 auto;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 30px;
}

.view-all-testimonials-btn {
    background: #ff9bb0;
    color: white;
    padding: 14px 32px;
    border: none;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.view-all-testimonials-btn:hover {
    background: #ff7a96;
}

.testimonials-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 400;
    text-align: center;
    color: #00493f;
    margin-bottom: 60px;
    line-height: 1.3;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: white;
    padding: 35px 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.testimonial-rating {
    margin-bottom: 20px;
}

.testimonial-rating .star {
    color: #ffd700;
    font-size: 1.2rem;
    margin-right: 2px;
}

.testimonial-text {
    font-family: 'Lato', sans-serif;
    font-size: 0.95rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    font-family: 'Lato', sans-serif;
    font-size: 0.9rem;
    color: #333;
    font-weight: 600;
}

@media (max-width: 1200px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .testimonials-section {
        padding: 60px 20px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .testimonials-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }

    .testimonial-card {
        padding: 30px 25px;
    }

    .view-all-testimonials-btn {
        padding: 12px 28px;
        font-size: 0.8rem;
    }
}

/* ===== Travel Specialists Section ===== */
.travel-specialists-section {
    background: #00493f;
    padding: 80px 40px;
    color: white;
}

.specialists-container {
    max-width: 1400px;
    margin: 0 auto;
}

.specialists-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 400;
    text-align: center;
    color: white;
    margin-bottom: 60px;
    line-height: 1.3;
}

.specialists-carousel {
    position: relative;
    padding: 0 60px;
    overflow: hidden;
}

.specialists-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    margin-bottom: 50px;
    transition: transform 0.4s ease;
}

.specialist-card {
    display: flex;
    align-items: flex-start;
    gap: 25px;
}

.specialist-avatar {
    flex-shrink: 0;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(255, 255, 255, 0.2);
}

.specialist-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.specialist-card:hover .specialist-avatar img {
    transform: scale(1.1);
}

.specialist-content {
    flex: 1;
    text-align: left;
}

.specialist-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 400;
    color: white;
    margin-bottom: 12px;
}

.specialist-bio {
    font-family: 'Lato', sans-serif;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 15px;
}

.specialist-link {
    font-family: 'Lato', sans-serif;
    font-size: 0.85rem;
    color: white;
    text-decoration: underline;
    transition: opacity 0.3s ease;
    display: inline-block;
}

.specialist-link:hover {
    opacity: 0.7;
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 10;
    padding: 10px;
    transition: opacity 0.3s ease;
}

.carousel-nav:hover {
    opacity: 0.7;
}

.carousel-prev {
    left: 0;
}

.carousel-next {
    right: 0;
}

.specialists-cta {
    text-align: center;
    margin-bottom: 30px;
}

.specialists-btn {
    background: #ff9bb0;
    color: white;
    padding: 16px 40px;
    border: none;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.specialists-btn:hover {
    background: #ff7a96;
}

.specialists-contact {
    text-align: center;
    margin-top: 30px;
}

.specialists-contact p {
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.specialists-contact strong {
    font-weight: 700;
}

@media (max-width: 1024px) {
    .specialists-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .specialists-title {
        font-size: 2.5rem;
    }

    .specialist-card {
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .travel-specialists-section {
        padding: 60px 20px;
    }

    .specialists-carousel {
        padding: 0 20px;
    }

    .specialists-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .specialist-card {
        flex-direction: column;
        text-align: center;
        max-width: 100%;
    }

    .specialist-avatar {
        width: 120px;
        height: 120px;
        margin: 0 auto;
    }

    .specialist-content {
        text-align: center;
    }

    .specialists-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }

    .specialist-name {
        font-size: 1.3rem;
    }

    .specialist-bio {
        font-size: 0.9rem;
    }

    .carousel-nav {
        display: none;
    }

    .specialists-btn {
        padding: 14px 32px;
        font-size: 0.8rem;
    }
}

/* ===== Ways to Explore Section ===== */
.ways-explore-section {
    background: #f5f5f5;
    padding: 80px 40px;
}

.ways-explore-container {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.ways-explore-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #00493f;
    margin-bottom: 18px;
    line-height: 1.2;
}

.ways-explore-subtitle {
    font-family: 'Lato', sans-serif;
    font-size: 1.15rem;
    color: #666;
    margin-bottom: 40px;
}

.ways-explore-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    justify-items: center;
}

.explore-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
    max-width: 340px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.explore-card:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.explore-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

.explore-label {
    font-family: 'Lato', sans-serif;
    font-size: 1.08rem;
    color: #00493f;
    font-weight: 700;
    padding: 18px 0;
    background: #fff;
    border-top: 1px solid #eee;
}

@media (max-width: 1024px) {
    .ways-explore-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    .explore-card {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .ways-explore-section {
        padding: 50px 10px;
    }
    .ways-explore-title {
        font-size: 1.5rem;
    }
    .ways-explore-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    .explore-card img {
        height: 140px;
    }
    .explore-label {
        font-size: 1rem;
        padding: 12px 0;
    }
}



