@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Source+Sans+Pro:wght@300;400;600;700&display=swap');

html {
    font-display: swap;
}

:root {
    --color-warm-off-white: #F8F5EE;
    --color-soft-gold: #C29F55;
    --color-calm-green: #5A7C6B;
    --color-deep-charcoal: #333333;
    --color-deep-teal: #0A4A6A;
    
    --font-primary: 'Playfair Display', serif;
    --font-fallback: 'Source Sans Pro', sans-serif;
    
    --header-height: 80px;
    --header-height-mobile: 60px;
    --transition-smooth: all 0.3s ease-in-out;
}

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

html {
    scroll-behavior: smooth;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 600;
    line-height: 1.3;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.25rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

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

/* ========================================
   HEADER / NAVIGATION
   ======================================== */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    background-color: var(--color-warm-off-white);
    z-index: 1000;
    transition: var(--transition-smooth);
}

.header.scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    height: 70px;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

.logo {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-deep-charcoal);
    letter-spacing: 0.5px;
}

.logo span {
    color: var(--color-soft-gold);
}

.nav-desktop {
    display: none;
}

.nav-desktop ul {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-desktop a {
    font-size: 0.95rem;
    font-weight: 500;
    position: relative;
    padding: 5px 0;
}

.nav-desktop a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-soft-gold);
    transition: width 0.3s ease;
}

.nav-desktop a:hover::after {
    width: 100%;
}

.header-utility {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-contact {
    display: none;
    font-size: 0.85rem;
}

.header-contact a {
    display: flex;
    align-items: center;
    gap: 6px;
}

.header-contact svg {
    width: 16px;
    height: 16px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    font-family: var(--font-fallback);
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--color-soft-gold);
    color: var(--color-deep-charcoal);
    border-color: var(--color-soft-gold);
}

.btn-primary:hover {
    background-color: #b08d4a;
    border-color: #b08d4a;
    transform: scale(1.02);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-deep-charcoal);
    border-color: var(--color-deep-charcoal);
}

.btn-secondary:hover {
    background-color: var(--color-deep-charcoal);
    color: var(--color-warm-off-white);
}

.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--color-deep-charcoal);
    transition: var(--transition-smooth);
}

/* Mobile Menu Overlay */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-warm-off-white);
    z-index: 2000;
    transform: translateX(100%);
    transition: transform 0.4s ease;
    overflow-y: auto;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.mobile-menu-close {
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--color-deep-charcoal);
}

.mobile-menu-nav {
    padding: 30px 20px;
}

.mobile-menu-nav ul {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mobile-menu-nav a {
    font-size: 1.25rem;
    font-weight: 500;
    display: block;
    padding: 10px 0;
}

.mobile-menu-utility {
    padding: 0 20px;
    margin-top: 20px;
}

.mobile-menu-utility a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 0;
    font-size: 1rem;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.mobile-menu-utility .btn {
    width: 100%;
    margin-top: 20px;
}

.mobile-menu-social {
    display: flex;
    gap: 20px;
    padding: 30px 20px;
    justify-content: center;
}

.mobile-menu-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--color-deep-charcoal);
    color: var(--color-warm-off-white);
}

.mobile-menu-social svg {
    width: 20px;
    height: 20px;
}

/* ========================================
   HERO SECTIONS
   ======================================== */

.hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: var(--header-height);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.5));
}

.hero-content {
    text-align: center;
    color: white;
    padding: 20px;
    max-width: 900px;
    z-index: 1;
}

.hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-content h2 {
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: 30px;
    opacity: 0.95;
    font-family: var(--font-fallback);
}

/* Search Form */
.search-form {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    padding: 25px;
    max-width: 800px;
    margin: 0 auto;
}

.search-form form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.search-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.search-form label {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: white;
}

.search-form input,
.search-form select {
    padding: 12px 15px;
    border: none;
    border-radius: 6px;
    font-size: 0.95rem;
    background-color: white;
    color: var(--color-deep-charcoal);
}

.search-form button {
    grid-column: span 2;
    padding: 15px;
    font-size: 1rem;
}

/* Page Hero (smaller) */
.hero-page {
    min-height: 40vh;
}

.hero-page .hero-content h1 {
    font-size: 2rem;
}

/* ========================================
   FEATURED PROPERTIES
   ======================================== */

.section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    margin-bottom: 15px;
}

.section-header p {
    max-width: 600px;
    margin: 0 auto;
    color: #666;
}

.properties-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.property-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition-smooth);
}

.property-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.property-card-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.property-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.property-card-content {
    padding: 25px;
}

.property-card-content h3 {
    margin-bottom: 10px;
    color: var(--color-deep-charcoal);
}

.property-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: #666;
}

.property-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.property-meta svg {
    width: 16px;
    height: 16px;
    color: var(--color-soft-gold);
}

.property-amenities {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 15px;
}

.property-amenity {
    background: var(--color-warm-off-white);
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--color-calm-green);
}

.property-description {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.6;
}

.property-card-actions {
    display: flex;
    gap: 12px;
}

.property-card-actions .btn {
    flex: 1;
    padding: 10px 15px;
    font-size: 0.85rem;
}

/* ========================================
   WHY CHOOSE US
   ======================================== */

.why-choose-us {
    background-color: var(--color-warm-off-white);
    position: relative;
    overflow: hidden;
}

.why-choose-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../images/testimonial-bg.png');
    background-size: cover;
    opacity: 0.05;
    pointer-events: none;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
}

.feature-item {
    padding: 30px;
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: var(--color-soft-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon svg {
    width: 32px;
    height: 32px;
    color: white;
}

.feature-item h3 {
    margin-bottom: 15px;
}

.feature-item p {
    color: #666;
    max-width: 300px;
    margin: 0 auto;
}

/* ========================================
   TESTIMONIALS
   ======================================== */

.testimonials {
    background-color: var(--color-calm-green);
    color: white;
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../images/testimonial-bg.png');
    background-size: cover;
    opacity: 0.1;
    pointer-events: none;
}

.testimonials .section-header h2,
.testimonials .section-header p {
    color: white;
}

.testimonials-slider {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.testimonial-item {
    text-align: center;
    padding: 20px;
}

.testimonial-quote {
    font-family: var(--font-primary);
    font-size: 1.25rem;
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.8;
}

.testimonial-author {
    font-weight: 600;
    color: var(--color-soft-gold);
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.testimonial-controls button {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.3);
    background: transparent;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.testimonial-controls button:hover {
    background: var(--color-soft-gold);
    border-color: var(--color-soft-gold);
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.testimonial-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.testimonial-dots span.active {
    background: var(--color-soft-gold);
}

/* ========================================
   CTA SECTION
   ======================================== */

.cta-section {
    background: linear-gradient(to right, var(--color-deep-teal), var(--color-calm-green));
    color: white;
    text-align: center;
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../images/testimonial-bg.png');
    background-size: cover;
    opacity: 0.05;
    pointer-events: none;
}

.cta-section h2 {
    color: white;
    margin-bottom: 15px;
}

.cta-section p {
    max-width: 600px;
    margin: 0 auto 30px;
    opacity: 0.9;
}

.cta-section .btn-primary {
    background: var(--color-soft-gold);
    color: var(--color-deep-charcoal);
}

.cta-section .btn-primary:hover {
    background: #b08d4a;
}

/* ========================================
   FOOTER
   ======================================== */

.footer {
    background-color: var(--color-warm-off-white);
    padding: 60px 0 30px;
    border-top: 1px solid rgba(0,0,0,0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand h3 {
    font-family: var(--font-primary);
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: var(--color-deep-charcoal);
}

.footer-brand p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 0.9rem;
    color: #555;
}

.footer-contact a {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-contact svg {
    width: 16px;
    height: 16px;
    color: var(--color-soft-gold);
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--color-deep-charcoal);
    color: var(--color-warm-off-white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.footer-social a:hover {
    background: var(--color-soft-gold);
}

.footer-social svg {
    width: 18px;
    height: 18px;
}

.footer h4 {
    font-family: var(--font-primary);
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--color-deep-charcoal);
}

.footer-links a {
    display: block;
    padding: 8px 0;
    color: #555;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--color-soft-gold);
    padding-left: 5px;
}

.footer-newsletter p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 15px;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.newsletter-form input {
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 0.9rem;
    background: white;
}

.newsletter-form .btn {
    width: 100%;
}

.footer-bottom {
    border-top: 1px solid rgba(0,0,0,0.1);
    padding-top: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    text-align: center;
}

.footer-copyright {
    font-size: 0.85rem;
    color: #666;
}

.footer-legal {
    display: flex;
    gap: 20px;
    font-size: 0.8rem;
}

.footer-legal a {
    color: #888;
}

.footer-legal a:hover {
    color: var(--color-soft-gold);
}

/* ========================================
   ABOUT PAGE
   ======================================== */

.about-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    align-items: center;
}

.about-text h2 {
    margin-bottom: 20px;
}

.about-text p {
    color: #555;
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-values {
    margin-top: 30px;
}

.about-values li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    color: #555;
}

.about-values li svg {
    width: 20px;
    height: 20px;
    color: var(--color-soft-gold);
    flex-shrink: 0;
    margin-top: 3px;
}

.about-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ========================================
   CONTACT PAGE
   ======================================== */

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
}

.contact-info h2 {
    margin-bottom: 20px;
}

.contact-info > p {
    color: #555;
    margin-bottom: 30px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    gap: 15px;
}

.contact-item-icon {
    width: 50px;
    height: 50px;
    background: var(--color-soft-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-item-icon svg {
    width: 22px;
    height: 22px;
    color: white;
}

.contact-item-text h4 {
    font-family: var(--font-fallback);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #888;
    margin-bottom: 4px;
}

.contact-item-text p,
.contact-item-text a {
    color: var(--color-deep-charcoal);
    font-size: 1rem;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.contact-form h3 {
    margin-bottom: 25px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--color-deep-charcoal);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 0.95rem;
    font-family: var(--font-fallback);
    transition: var(--transition-smooth);
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-soft-gold);
    box-shadow: 0 0 0 3px rgba(194, 159, 85, 0.1);
}

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

.form-group.required label::after {
    content: ' *';
    color: #e74c3c;
}

.form-success {
    display: none;
    padding: 15px;
    background: #d4edda;
    color: #155724;
    border-radius: 6px;
    margin-top: 15px;
    text-align: center;
}

/* ========================================
   PROPERTIES PAGE
   ======================================== */

.filters-section {
    background: white;
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 40px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.filters-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.filters-grid .form-group label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.filters-grid select {
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 0.9rem;
    background: white;
}

.amenities-filter {
    grid-column: span 2;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.amenity-checkbox {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    cursor: pointer;
}

.amenity-checkbox input {
    accent-color: var(--color-soft-gold);
}

.filters-actions {
    grid-column: span 2;
    display: flex;
    gap: 12px;
}

/* ========================================
   PROPERTY DETAIL PAGE
   ======================================== */

.property-gallery {
    margin-top: var(--header-height);
}

.gallery-main {
    height: 500px;
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 15px;
}

.gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-thumbs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.gallery-thumbs img {
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    opacity: 0.7;
    transition: var(--transition-smooth);
}

.gallery-thumbs img:hover,
.gallery-thumbs img.active {
    opacity: 1;
}

.property-header {
    padding: 40px 0;
}

.property-header h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.property-header-meta {
    display: flex;
    gap: 25px;
    font-size: 1rem;
    color: #666;
}

.property-header-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.property-header-meta svg {
    width: 18px;
    height: 18px;
    color: var(--color-soft-gold);
}

.property-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
}

.property-main h2 {
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.property-description {
    color: #555;
    line-height: 1.8;
    margin-bottom: 40px;
}

.amenities-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.amenity-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    background: var(--color-warm-off-white);
    border-radius: 8px;
    font-size: 0.9rem;
}

.amenity-item svg {
    width: 20px;
    height: 20px;
    color: var(--color-calm-green);
}

.nearby-attractions {
    margin-top: 50px;
}

.attraction-item {
    display: flex;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid #eee;
}

.attraction-item:last-child {
    border-bottom: none;
}

.attraction-icon {
    width: 50px;
    height: 50px;
    background: var(--color-soft-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.attraction-icon svg {
    width: 24px;
    height: 24px;
    color: white;
}

.attraction-content h4 {
    margin-bottom: 5px;
}

.attraction-content p {
    color: #666;
    font-size: 0.9rem;
}

.property-sidebar {
    position: sticky;
    top: 100px;
}

.booking-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.booking-card h3 {
    margin-bottom: 20px;
    text-align: center;
}

.booking-form .form-group {
    margin-bottom: 15px;
}

.booking-form label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.booking-pricing {
    margin: 20px 0;
    text-align: center;
    padding: 20px;
    background: var(--color-warm-off-white);
    border-radius: 8px;
}

.booking-pricing .price-amount {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-deep-charcoal);
    font-family: var(--font-primary);
}

.booking-pricing .price-label {
    font-size: 0.85rem;
    color: #666;
}

.booking-form .btn {
    width: 100%;
}

/* ========================================
   ANIMATIONS
   ======================================== */

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Scroll Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Parallax Effect */
.parallax {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* ========================================
   RESPONSIVE STYLES
   ======================================== */

@media (min-width: 768px) {
    .nav-desktop {
        display: block;
    }
    
    .header-contact {
        display: flex;
        flex-direction: column;
        gap: 5px;
    }
    
    .mobile-menu-toggle {
        display: none;
    }
    
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .hero-content h2 {
        font-size: 1.5rem;
    }
    
    .search-form form {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .search-form button {
        grid-column: span 1;
    }
    
    .properties-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1.5fr;
    }
    
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
    
    .contact-grid {
        grid-template-columns: 1fr 1.5fr;
    }
    
    .filters-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .amenities-filter {
        grid-column: span 4;
    }
    
    .filters-actions {
        grid-column: span 4;
    }
    
    .property-content {
        grid-template-columns: 2fr 1fr;
    }
    
    .about-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 1024px) {
    .properties-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .gallery-main {
        height: 600px;
    }
    
    .property-header h1 {
        font-size: 3rem;
    }
}

/* Mobile Specific */
@media (max-width: 767px) {
    .header {
        height: var(--header-height-mobile);
    }
    
    .hero {
        min-height: 60vh;
        margin-top: var(--header-height-mobile);
    }
    
    .search-form form {
        grid-template-columns: 1fr;
    }
    
    .search-form button {
        grid-column: span 1;
    }
    
    .property-card-actions {
        flex-direction: column;
    }
    
    .property-header-meta {
        flex-wrap: wrap;
    }
    
    .amenities-list {
        grid-template-columns: 1fr;
    }
    
    .gallery-thumbs {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .booking-card {
        position: static;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .fade-in {
        opacity: 1;
        transform: none;
    }
    
    .reveal {
        opacity: 1;
        transform: none;
    }
}
