/* ===== CSS Reset & Base Styles ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Tiffany Blue Mid-Century Palette */
    --tiffany-blue: #0ABAB5;
    --light-tiffany: #81D8D0;
    --deep-teal: #008B8B;
    --blush-pink: #FFB6C1;
    --coral: #FF7F7F;
    --gold: #D4AF37;
    --cream: #FFF9F5;
    --charcoal: #2C2C2C;
    --warm-white: #FFFFFF;
    --light-gray: #F5F5F5;
    --navy: #1B3A4B;

    /* Fonts */
    --heading-font: 'Bebas Neue', sans-serif;
    --body-font: 'Raleway', sans-serif;
}

body {
    font-family: var(--body-font);
    color: var(--charcoal);
    background-color: var(--warm-white);
    line-height: 1.6;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ===== Navigation ===== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(244, 235, 217, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 3px solid var(--tiffany-blue);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--heading-font);
    font-size: 1.5rem;
    color: var(--tiffany-blue);
    letter-spacing: 2px;
}

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

.nav-menu a {
    color: var(--charcoal);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.nav-menu a:hover {
    color: var(--tiffany-blue);
}

.btn-book {
    background: var(--tiffany-blue);
    color: white !important;
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    transition: all 0.3s;
}

.btn-book:hover {
    background: var(--deep-teal);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(10, 186, 181, 0.3);
}

/* ===== Hero Section ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background:
        linear-gradient(135deg, rgba(250, 245, 240, 0.85) 0%, rgba(129, 216, 208, 0.85) 100%),
        url('images/hero-background.jpg') center/cover no-repeat;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

/* Animated Starbursts */
.starburst {
    position: absolute;
    opacity: 0.08;
}

.starburst::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(0deg, transparent 48%, var(--tiffany-blue) 48%, var(--tiffany-blue) 52%, transparent 52%),
        linear-gradient(45deg, transparent 48%, var(--tiffany-blue) 48%, var(--tiffany-blue) 52%, transparent 52%),
        linear-gradient(90deg, transparent 48%, var(--tiffany-blue) 48%, var(--tiffany-blue) 52%, transparent 52%),
        linear-gradient(135deg, transparent 48%, var(--tiffany-blue) 48%, var(--tiffany-blue) 52%, transparent 52%);
}

/* Individual Star Positions and Sizes */
.star-1 {
    width: 400px;
    height: 400px;
    top: 15%;
    left: 10%;
    animation: float1 25s ease-in-out infinite;
}

.star-2 {
    width: 250px;
    height: 250px;
    top: 60%;
    left: 80%;
    animation: float2 30s ease-in-out infinite;
    opacity: 0.06;
}

.star-3 {
    width: 150px;
    height: 150px;
    top: 25%;
    right: 15%;
    animation: float3 20s ease-in-out infinite;
}

.star-4 {
    width: 180px;
    height: 180px;
    bottom: 20%;
    left: 20%;
    animation: float4 28s ease-in-out infinite;
    opacity: 0.05;
}

.star-5 {
    width: 300px;
    height: 300px;
    top: 40%;
    left: 50%;
    animation: float5 35s ease-in-out infinite;
    opacity: 0.07;
}

.star-6 {
    width: 120px;
    height: 120px;
    bottom: 30%;
    right: 25%;
    animation: float6 22s ease-in-out infinite;
}

/* Floating Animations */
@keyframes float1 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(30px, -40px) rotate(90deg); }
    50% { transform: translate(-20px, -60px) rotate(180deg); }
    75% { transform: translate(-40px, 20px) rotate(270deg); }
}

@keyframes float2 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(-50px, 30px) rotate(120deg); }
    66% { transform: translate(40px, -30px) rotate(240deg); }
}

@keyframes float3 {
    0%, 100% { transform: translate(0, 0) rotate(360deg); }
    50% { transform: translate(-30px, 50px) rotate(0deg); }
}

@keyframes float4 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(20px, -30px) rotate(-90deg); }
    50% { transform: translate(-30px, -40px) rotate(-180deg); }
    75% { transform: translate(30px, 10px) rotate(-270deg); }
}

@keyframes float5 {
    0%, 100% { transform: translate(-50%, -50%) rotate(0deg); }
    50% { transform: translate(calc(-50% + 40px), calc(-50% - 40px)) rotate(180deg); }
}

@keyframes float6 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    20% { transform: translate(25px, 25px) rotate(72deg); }
    40% { transform: translate(-25px, 40px) rotate(144deg); }
    60% { transform: translate(-40px, -25px) rotate(216deg); }
    80% { transform: translate(15px, -35px) rotate(288deg); }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 2rem;
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold), var(--tiffany-blue));
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(10, 186, 181, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.hero-title {
    font-family: var(--heading-font);
    font-size: 5rem;
    color: var(--tiffany-blue);
    margin-bottom: 1rem;
    text-shadow: 3px 3px 0 rgba(0,0,0,0.1);
    letter-spacing: 3px;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--charcoal);
    margin-bottom: 1rem;
    font-weight: 300;
}

.hero-address {
    font-size: 1.1rem;
    color: var(--deep-teal);
    margin-bottom: 2rem;
    font-weight: 600;
}

.btn-primary {
    display: inline-block;
    background: var(--tiffany-blue);
    color: white;
    padding: 1rem 3rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 10px 30px rgba(10, 186, 181, 0.3);
}

.btn-primary:hover {
    background: var(--deep-teal);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 139, 139, 0.4);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2rem;
    color: var(--tiffany-blue);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

/* ===== Section Titles ===== */
.section-title {
    font-family: var(--heading-font);
    font-size: 3.5rem;
    color: var(--tiffany-blue);
    text-align: center;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--navy);
    margin-bottom: 3rem;
    font-style: italic;
}

/* ===== Gallery Section ===== */
.gallery-section {
    padding: 6rem 0;
    background: var(--warm-white);
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: transparent;
    border: 2px solid var(--tiffany-blue);
    color: var(--tiffany-blue);
    padding: 0.7rem 1.5rem;
    border-radius: 30px;
    cursor: pointer;
    font-family: var(--body-font);
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--tiffany-blue);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(10, 186, 181, 0.3);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.gallery-item {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s;
    background: white;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.image-placeholder {
    width: 100%;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    font-weight: 700;
    position: relative;
    overflow: hidden;
}

.image-placeholder span {
    position: relative;
    z-index: 2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    font-family: var(--heading-font);
    letter-spacing: 2px;
}

/* Unique gradient patterns for each room type */
.living-room { background: linear-gradient(135deg, var(--tiffany-blue) 0%, var(--light-tiffany) 100%); }
.lounge { background: linear-gradient(135deg, var(--gold) 0%, var(--blush-pink) 100%); }
.master-bedroom { background: linear-gradient(135deg, var(--blush-pink) 0%, var(--coral) 100%); }
.guest-bedroom { background: linear-gradient(135deg, var(--light-tiffany) 0%, var(--tiffany-blue) 100%); }
.kitchen { background: linear-gradient(135deg, var(--tiffany-blue) 0%, var(--gold) 100%); }
.dining { background: linear-gradient(135deg, var(--deep-teal) 0%, var(--tiffany-blue) 100%); }
.pool { background: linear-gradient(135deg, #4A90E2 0%, var(--tiffany-blue) 100%); }
.backyard { background: linear-gradient(135deg, var(--deep-teal) 0%, #8FBC8F 100%); }
.view { background: linear-gradient(135deg, var(--light-tiffany) 0%, #FFB347 100%); }

/* Add decorative pattern overlay */
.image-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(255,255,255,0.1) 35px, rgba(255,255,255,0.1) 70px);
    z-index: 1;
}

.gallery-caption {
    padding: 1.5rem;
    font-size: 1rem;
    color: var(--charcoal);
    font-weight: 600;
    text-align: center;
}

/* ===== Book Direct Section ===== */
.book-direct-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--light-tiffany) 0%, var(--tiffany-blue) 100%);
    color: white;
    text-align: center;
}

.book-direct-content {
    max-width: 900px;
    margin: 0 auto;
}

.book-direct-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.book-direct-section .section-title {
    color: white;
    margin-bottom: 0.5rem;
}

.book-direct-subtitle {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.95;
}

.savings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.savings-item {
    background: rgba(255, 255, 255, 0.15);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.savings-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.savings-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.savings-item h3 {
    font-family: var(--heading-font);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.savings-item p {
    font-size: 1rem;
    opacity: 0.9;
}

.book-direct-section .btn-primary {
    background: white;
    color: var(--tiffany-blue);
    font-weight: 700;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.book-direct-section .btn-primary:hover {
    background: var(--gold);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* ===== Location Section ===== */
.location-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--cream) 0%, var(--warm-white) 100%);
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-top: 3rem;
}

.location-content h3 {
    font-family: var(--heading-font);
    font-size: 2rem;
    color: var(--tiffany-blue);
    margin-bottom: 1rem;
}

.location-content > p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: var(--charcoal);
}

.location-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.highlight-item {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.highlight-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.highlight-icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.highlight-item h4 {
    color: var(--tiffany-blue);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.highlight-item p {
    color: var(--navy);
    font-size: 0.95rem;
}

.amenities {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    border-left: 5px solid var(--tiffany-blue);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.amenities h4 {
    font-family: var(--heading-font);
    color: var(--tiffany-blue);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.amenities ul {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
}

.amenities li {
    padding-left: 1.5rem;
    position: relative;
    color: var(--charcoal);
}

.amenities li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--tiffany-blue);
    font-weight: bold;
    font-size: 1.2rem;
}

.location-map {
    position: sticky;
    top: 100px;
}

.location-map iframe {
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
    margin-bottom: 1rem;
}

.map-directions-btn {
    display: block;
    text-align: center;
    background: var(--tiffany-blue);
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(10, 186, 181, 0.3);
}

.map-directions-btn:hover {
    background: var(--deep-teal);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(10, 186, 181, 0.4);
}

/* ===== FAQ Section ===== */
.faq-section {
    padding: 6rem 0;
    background: var(--warm-white);
}

.faq-grid {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.faq-item:hover {
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    padding: 1.25rem 1.75rem;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--body-font);
    transition: all 0.3s;
}

.faq-question:hover {
    background: rgba(10, 186, 181, 0.05);
}

.faq-question-content {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    flex: 1;
}

.faq-title {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--charcoal);
    transition: color 0.3s;
}

.faq-question:hover .faq-title {
    color: var(--tiffany-blue);
}

.faq-preview {
    font-size: 0.875rem;
    color: var(--charcoal);
    opacity: 0.6;
    font-weight: 400;
    transition: all 0.3s;
}

.faq-item.active .faq-preview {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--tiffany-blue);
    transition: transform 0.3s;
    font-weight: 300;
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    color: var(--deep-teal);
}

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

.faq-item.active .faq-answer {
    max-height: 500px;
    transition: max-height 0.5s ease-in;
}

.faq-answer p {
    padding: 0 1.75rem 1.25rem 1.75rem;
    color: var(--charcoal);
    line-height: 1.8;
    font-size: 0.95rem;
}

/* ===== Footer ===== */
.footer {
    background: var(--charcoal);
    color: var(--cream);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    font-family: var(--heading-font);
    color: var(--light-tiffany);
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.footer-section h4 {
    color: var(--light-tiffany);
    margin-bottom: 1rem;
}

.footer-section p {
    color: var(--cream);
    line-height: 1.8;
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: var(--light-tiffany);
    border: 2px solid var(--light-tiffany);
    padding: 0.8rem 2rem;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-secondary:hover {
    background: var(--light-tiffany);
    color: var(--charcoal);
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid rgba(244, 235, 217, 0.2);
    padding-top: 1.5rem;
    text-align: center;
    color: var(--cream);
    opacity: 0.7;
}

/* ===== Concierge Section ===== */
.concierge-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--warm-white) 0%, var(--cream) 100%);
    position: relative;
    overflow: hidden;
}

.concierge-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--light-tiffany) 0%, transparent 70%);
    opacity: 0.15;
    border-radius: 50%;
}

.concierge-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.concierge-badge {
    display: inline-block;
    background: var(--tiffany-blue);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1.5rem;
}

.concierge-subtitle {
    font-size: 1.3rem;
    color: var(--navy);
    margin-bottom: 4rem;
    font-weight: 400;
}

.concierge-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1100px;
    margin: 0 auto;
    text-align: left;
}

.concierge-info h3 {
    font-family: var(--heading-font);
    font-size: 2.5rem;
    color: var(--tiffany-blue);
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.concierge-info > p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--charcoal);
    margin-bottom: 2.5rem;
}

.concierge-services {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.service-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    transition: all 0.3s;
}

.service-item:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(10, 186, 181, 0.15);
}

.service-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.service-item h4 {
    font-size: 1.1rem;
    color: var(--tiffany-blue);
    margin-bottom: 0.3rem;
    font-weight: 600;
}

.service-item p {
    font-size: 0.95rem;
    color: var(--charcoal);
    opacity: 0.7;
}

.btn-concierge {
    display: inline-block;
    background: var(--tiffany-blue);
    color: white;
    padding: 1.2rem 2.5rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: 0 10px 30px rgba(10, 186, 181, 0.3);
}

.btn-concierge:hover {
    background: var(--deep-teal);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 139, 139, 0.4);
}

.concierge-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.concierge-card {
    background: linear-gradient(135deg, var(--charcoal) 0%, var(--navy) 100%);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    text-align: center;
    position: relative;
    overflow: hidden;
    max-width: 400px;
}

.concierge-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, var(--gold) 0%, transparent 50%);
    opacity: 0.05;
    animation: float5 20s ease-in-out infinite;
}

.card-logo {
    font-family: var(--heading-font);
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.card-tagline {
    color: var(--cream);
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.card-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
    padding: 2rem 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.stat-number {
    font-family: var(--heading-font);
    font-size: 2rem;
    color: var(--gold);
    letter-spacing: 1px;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--cream);
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card-note {
    font-size: 0.9rem;
    color: var(--cream);
    opacity: 0.6;
    line-height: 1.6;
}

/* ===== Responsive Design ===== */
@media (max-width: 968px) {
    .nav-menu {
        gap: 1rem;
        font-size: 0.85rem;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .location-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .location-map {
        position: relative;
        top: 0;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .amenities ul {
        grid-template-columns: 1fr;
    }

    .concierge-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .location-highlights {
        grid-template-columns: 1fr;
    }

    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* ===== Gallery Filter Animation ===== */
.gallery-item {
    animation: fadeIn 0.5s ease-in;
}

.gallery-item.hide {
    display: none;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ===== Booking Modal ===== */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(44, 44, 44, 0.9);
    backdrop-filter: blur(5px);
    overflow-y: auto;
    animation: fadeInModal 0.3s ease-in;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

@keyframes fadeInModal {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.modal-content {
    background: var(--warm-white);
    border-radius: 20px;
    max-width: 700px;
    width: 100%;
    position: relative;
    box-shadow: 0 30px 90px rgba(0,0,0,0.5);
    animation: slideUp 0.4s ease-out;
    max-height: 90vh;
    overflow-y: auto;
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: transparent;
    border: none;
    font-size: 2.5rem;
    color: var(--charcoal);
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s;
    z-index: 10;
}

.modal-close:hover {
    background: var(--light-tiffany);
    color: white;
    transform: rotate(90deg);
}

.modal-header {
    background: linear-gradient(135deg, var(--tiffany-blue) 0%, var(--light-tiffany) 100%);
    padding: 3rem 2rem 2rem 2rem;
    border-radius: 20px 20px 0 0;
    color: white;
    text-align: center;
}

.modal-header h2 {
    font-family: var(--heading-font);
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.modal-header p {
    font-size: 1rem;
    opacity: 0.9;
}

.modal-savings {
    background: rgba(10, 186, 181, 0.15);
    color: var(--ivory);
    padding: 0.5rem 1.2rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.95rem;
    margin: 1rem auto;
    display: inline-block;
    border: 1px solid rgba(10, 186, 181, 0.3);
    letter-spacing: 0.3px;
}

.booking-form {
    padding: 2.5rem 2rem;
}

/* ===== Calendar Widget ===== */
.calendar-widget {
    margin-bottom: 2rem;
    padding: 2rem;
    background: var(--light-gray);
    border-radius: 15px;
}

.calendar-widget h3 {
    font-family: var(--heading-font);
    font-size: 1.8rem;
    color: var(--tiffany-blue);
    margin-bottom: 0.5rem;
    text-align: center;
    letter-spacing: 1px;
}

.calendar-instructions {
    text-align: center;
    color: var(--charcoal);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.availability-calendar {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 1rem;
}

.calendar-loading {
    text-align: center;
    padding: 2rem;
    color: var(--charcoal);
    font-style: italic;
}

.calendar-month {
    background: white;
    border-radius: 10px;
    padding: 1rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.calendar-month-header {
    font-family: var(--heading-font);
    font-size: 1.3rem;
    color: var(--tiffany-blue);
    text-align: center;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.3rem;
    margin-bottom: 0.5rem;
}

.calendar-weekdays div {
    text-align: center;
    font-weight: 700;
    font-size: 0.8rem;
    color: var(--deep-teal);
    padding: 0.3rem;
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.3rem;
}

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: default;
}

.calendar-day.empty {
    background: transparent;
}

.calendar-day.past {
    background: #f0f0f0;
    color: #ccc;
}

.calendar-day.available {
    background: #e8f9f8;
    color: var(--deep-teal);
    border: 2px solid var(--light-tiffany);
}

.calendar-day.booked {
    background: #ffebee;
    color: #c62828;
    border: 2px solid #ef9a9a;
    position: relative;
}

.calendar-day.booked::after {
    content: '×';
    position: absolute;
    font-size: 1.5rem;
    color: #c62828;
    opacity: 0.3;
}

.calendar-day.selected-checkin,
.calendar-day.selected-checkout {
    background: var(--tiffany-blue);
    color: white;
    border: 2px solid var(--deep-teal);
    font-weight: 700;
    transform: scale(1.05);
    box-shadow: 0 3px 10px rgba(10, 186, 181, 0.4);
}

.calendar-day.selected-range {
    background: var(--light-tiffany);
    color: var(--deep-teal);
    border: 2px solid var(--tiffany-blue);
    opacity: 0.6;
}

.calendar-day.available:hover {
    transform: scale(1.1);
    box-shadow: 0 2px 8px rgba(10, 186, 181, 0.3);
    background: var(--tiffany-blue);
    color: white;
    transition: all 0.2s ease;
}

.calendar-legend {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid #e0e0e0;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.legend-color {
    width: 20px;
    height: 20px;
    border-radius: 4px;
    border: 2px solid;
}

.legend-color.available {
    background: #e8f9f8;
    border-color: var(--light-tiffany);
}

.legend-color.booked {
    background: #ffebee;
    border-color: #ef9a9a;
}

.legend-color.selected {
    background: var(--tiffany-blue);
    border-color: var(--deep-teal);
}

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

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 1.5rem;
}

.form-group label {
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.9rem 1.2rem;
    border: 2px solid var(--light-gray);
    border-radius: 10px;
    font-family: var(--body-font);
    font-size: 1rem;
    transition: all 0.3s;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--tiffany-blue);
    box-shadow: 0 0 0 3px rgba(10, 186, 181, 0.1);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%230ABAB5' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 3rem;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.radio-group {
    display: flex;
    gap: 2rem;
    margin-top: 0.5rem;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-weight: 400;
}

.radio-label input[type="radio"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: var(--tiffany-blue);
}

.radio-label span {
    font-size: 1rem;
    color: var(--charcoal);
}

.form-note {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: var(--navy);
    background: var(--cream);
    padding: 0.8rem 1rem;
    border-radius: 8px;
    border-left: 3px solid var(--tiffany-blue);
}

.form-note a {
    color: var(--tiffany-blue);
    text-decoration: underline;
    font-weight: 600;
}

.form-note a:hover {
    color: var(--deep-teal);
}

.btn-submit {
    width: 100%;
    background: var(--tiffany-blue);
    color: white;
    padding: 1.2rem 2rem;
    border: none;
    border-radius: 50px;
    font-family: var(--body-font);
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: 0 10px 30px rgba(10, 186, 181, 0.3);
    margin-top: 1rem;
}

.btn-submit:hover {
    background: var(--deep-teal);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 139, 139, 0.4);
}

/* Mobile Responsive for Modal */
@media (max-width: 768px) {
    .modal.active {
        padding: 1rem;
    }

    .modal-content {
        max-height: 95vh;
    }

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

    .modal-header h2 {
        font-size: 2rem;
    }

    .booking-form {
        padding: 2rem 1.5rem;
    }

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

    .radio-group {
        gap: 1rem;
    }
}
