:root {
    --cream: #FAF7F2;
    --sand: #E8DFD0;
    --terracotta: #C97B63;
    --forest: #3D5A4C;
    --charcoal: #2C2C2C;
    --gold: #D4AF37;
}

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

body {
    font-family: 'Montserrat', sans-serif;
    background: var(--cream);
    color: var(--charcoal);
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
}

/* Cursor effect */
.cursor-dot {
    width: 8px;
    height: 8px;
    background: var(--terracotta);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 10000;
    transition: transform 0.15s ease;
}

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 2rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: linear-gradient(180deg, rgba(250,247,242,0.98) 0%, rgba(250,247,242,0) 100%);
    backdrop-filter: blur(10px);
    animation: slideDown 0.8s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

nav {
    display: flex;
    gap: 3rem;
}

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

nav a.active {
    color: var(--terracotta);
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--terracotta);
    transition: width 0.3s ease;
}

nav a:hover {
    color: var(--terracotta);
}

nav a:hover::after,
nav a.active::after {
    width: 100%;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(201,123,99,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(61,90,76,0.1) 0%, transparent 50%);
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    33% { transform: translate(30px, -30px); }
    66% { transform: translate(-20px, 20px); }
}

.hero-content {
    text-align: center;
    z-index: 1;
    animation: fadeInUp 1s ease 0.3s both;
}

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

.hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 6rem;
    font-weight: 300;
    color: var(--forest);
    margin-bottom: 1rem;
    line-height: 1;
}

.hero p {
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 3px;
    color: var(--charcoal);
    margin-bottom: 3rem;
    text-transform: uppercase;
}

/* Buttons */
.cta-button,
.submit-button {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: var(--terracotta);
    color: white;
    text-decoration: none;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
    border: none;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
}

.cta-button::before,
.submit-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--forest);
    transition: left 0.4s ease;
}

.cta-button span,
.submit-button span {
    position: relative;
    z-index: 1;
}

.cta-button:hover::before,
.submit-button:hover::before {
    left: 0;
}

.cta-button:hover,
.submit-button:hover {
    transform: translateY(-2px);
}

.btn-secondary {
    display: inline-block;
    padding: 1rem 2rem;
    background: transparent;
    color: var(--forest);
    border: 2px solid var(--forest);
    text-decoration: none;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--forest);
    color: white;
}

/* Page Header */
.page-header {
    padding: 10rem 5% 4rem;
    text-align: center;
    background: linear-gradient(135deg, var(--sand) 0%, var(--cream) 100%);
}

.page-header h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4rem;
    font-weight: 300;
    color: var(--forest);
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    color: var(--charcoal);
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Section Styles */
.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    font-weight: 300;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--forest);
}

.section-subtitle {
    text-align: center;
    font-size: 1rem;
    font-weight: 300;
    letter-spacing: 2px;
    color: var(--charcoal);
    margin-bottom: 3rem;
    text-transform: uppercase;
}

/* About Home Section */
.about-home {
    padding: 8rem 5%;
}

.intro-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.intro-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.intro-text p {
    line-height: 1.8;
    font-size: 1rem;
    color: var(--charcoal);
}

.intro-image {
    background-size: cover;
    background-position: center;
    min-height: 500px;
    border-radius: 4px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.quick-facts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

.fact {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.fact-icon {
    font-size: 2.5rem;
}

.fact-text {
    display: flex;
    flex-direction: column;
}

.fact-text strong {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    color: var(--forest);
}

.fact-text span {
    font-size: 0.85rem;
    color: #888;
}

/* Property Grid */
.properties {
    padding: 8rem 5%;
    background: var(--cream);
}

.property-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.property-card {
    background: white;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    animation: fadeInUp 0.8s ease both;
}

.property-card:nth-child(1) { animation-delay: 0.1s; }
.property-card:nth-child(2) { animation-delay: 0.2s; }
.property-card:nth-child(3) { animation-delay: 0.3s; }
.property-card:nth-child(4) { animation-delay: 0.4s; }
.property-card:nth-child(5) { animation-delay: 0.5s; }
.property-card:nth-child(6) { animation-delay: 0.6s; }

.property-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.property-image {
    width: 100%;
    height: 300px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.property-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.3) 100%);
    opacity: 0;
    transition: opacity 0.3s;
}

.property-card:hover .property-image::after {
    opacity: 1;
}

.property-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gold);
    color: white;
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    z-index: 1;
}

.property-details {
    padding: 2rem;
}

.property-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
    color: var(--forest);
}

.property-location {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.property-features {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.85rem;
    color: var(--charcoal);
    flex-wrap: wrap;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Features Section */
.features-section {
    padding: 8rem 5%;
    background: var(--sand);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-item {
    text-align: center;
    animation: fadeInUp 0.8s ease both;
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    background: var(--forest);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--cream);
    transition: transform 0.3s ease, background 0.3s ease;
}

.feature-item:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    background: var(--terracotta);
}

.feature-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--forest);
}

.feature-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--charcoal);
    font-weight: 300;
}

/* Amenities Page */
.amenities-section {
    padding: 6rem 5%;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin: 3rem 0;
}

.amenity-category h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--forest);
}

.amenity-category ul {
    list-style: none;
    padding: 0;
    line-height: 2;
    font-size: 0.95rem;
}

.property-details-section {
    margin-top: 6rem;
}

.details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 2rem;
}

.details-grid h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--forest);
}

.details-grid p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

/* House Rules */
.house-rules {
    margin-top: 6rem;
}

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

.rule {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: white;
    border-radius: 4px;
}

.rule-icon {
    font-size: 1.5rem;
    color: var(--forest);
}

.rule strong {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--forest);
}

/* Location Page */
.location-section {
    padding: 6rem 5%;
}

.location-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.lead-text {
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
    color: var(--charcoal);
}

.location-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin: 4rem 0;
}

.location-card {
    background: white;
    padding: 2rem;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

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

.location-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--forest);
}

.location-card p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.location-card ul {
    list-style: none;
    padding-left: 0;
}

.location-card li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.location-card li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--terracotta);
}

.attractions-section,
.day-trips {
    margin-top: 6rem;
}

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

.attraction-item {
    padding: 1.5rem;
    background: white;
    border-radius: 4px;
}

.attraction-item h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--forest);
}

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

.trip-card {
    background: var(--sand);
    padding: 2rem;
    border-radius: 4px;
}

.trip-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: var(--forest);
}

.distance {
    font-size: 0.9rem;
    color: var(--terracotta);
    font-weight: 500;
    margin-bottom: 1rem;
    display: block;
}

.map-section {
    margin-top: 6rem;
}

.map-placeholder {
    background: white;
    padding: 4rem;
    text-align: center;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-top: 2rem;
}

.map-placeholder p {
    margin-bottom: 1rem;
}

/* Booking Page */
.booking-page {
    padding: 6rem 5%;
}

.booking-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

.booking-info h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--forest);
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin-bottom: 3rem;
}

.benefits-list li {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

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

.benefits-list strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--forest);
}

.property-summary {
    background: var(--sand);
    padding: 2rem;
    border-radius: 4px;
    margin-bottom: 2rem;
}

.property-summary h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--forest);
}

.price-display {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 4px;
    margin-bottom: 1.5rem;
    border: 2px solid var(--terracotta);
}

.price-from {
    display: block;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #888;
    margin-bottom: 0.5rem;
}

.price-amount {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 600;
    color: var(--terracotta);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.price-period {
    display: block;
    font-size: 0.9rem;
    color: #888;
}

.summary-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

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

.summary-item strong {
    color: var(--forest);
}

.booking-note {
    background: white;
    padding: 2rem;
    border-radius: 4px;
    border-left: 4px solid var(--terracotta);
}

.booking-note h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--forest);
}

.booking-note p {
    margin-bottom: 0.5rem;
    line-height: 1.8;
}

.booking-form-container {
    background: white;
    padding: 3rem;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.booking-form-container h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--forest);
}

.booking-form-container > p {
    margin-bottom: 2rem;
    color: #888;
}

.booking-form {
    display: grid;
    gap: 1.5rem;
}

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

.form-group {
    display: flex;
    flex-direction: column;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    background: var(--cream);
    border: 1px solid var(--sand);
    color: var(--charcoal);
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s, background 0.3s;
    border-radius: 4px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--terracotta);
    background: white;
}

.form-group textarea {
    resize: vertical;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 0.25rem;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.checkbox-label span {
    font-size: 0.9rem;
    line-height: 1.6;
}

.submit-button {
    width: 100%;
    margin-top: 1rem;
}

.form-note {
    font-size: 0.85rem;
    color: #888;
    text-align: center;
    margin-top: 1rem;
}

.alternative-booking {
    margin-top: 2rem;
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--sand);
}

.alternative-booking p {
    margin-bottom: 1rem;
    color: #888;
}

/* CTA Section */
.cta-section {
    padding: 6rem 5%;
    background: var(--forest);
    text-align: center;
    color: white;
}

.cta-section h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    margin-bottom: 1rem;
    color: white;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    letter-spacing: 1px;
}

/* Home Reviews Section */
.home-reviews-section {
    padding: 8rem 5%;
    background: var(--cream);
}

.home-reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 2rem;
    margin: 2rem auto 0;
    max-width: 1000px;
}

.home-reviews-section .review-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.home-reviews-section .review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.home-reviews-section .review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.home-reviews-section .reviewer-info {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.home-reviews-section .reviewer-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--terracotta);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 600;
    flex-shrink: 0;
}

.home-reviews-section .reviewer-name {
    font-weight: 600;
    color: var(--forest);
    font-size: 1.1rem;
}

.home-reviews-section .review-date {
    font-size: 0.85rem;
    color: #888;
}

.home-reviews-section .review-rating {
    color: #D4AF37;
    font-size: 1.2rem;
}

.home-reviews-section .review-text {
    line-height: 1.8;
    color: var(--charcoal);
}

/* Footer */
footer {
    padding: 4rem 5%;
    background: var(--charcoal);
    color: var(--sand);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    text-align: left;
    margin-bottom: 3rem;
}

.footer-section h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--cream);
}

.footer-section p,
.footer-section a {
    font-size: 0.9rem;
    line-height: 1.8;
    color: var(--sand);
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--terracotta);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(250,247,242,0.1);
    text-align: center;
    font-size: 0.85rem;
    color: #888;
}

/* Responsive */
@media (max-width: 1024px) {
    .intro-content,
    .details-grid,
    .booking-layout {
        grid-template-columns: 1fr;
    }
    
    .quick-facts {
        grid-template-columns: 1fr;
    }
    
    .home-reviews-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 3.5rem;
    }
    
    nav {
        display: none;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .property-grid {
        grid-template-columns: 1fr;
    }
    
    .home-reviews-grid {
        grid-template-columns: 1fr;
    }
}

/* Reviews Page Styles */
.reviews-page {
    padding: 6rem 5%;
}

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

.rating-summary {
    background: white;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin: 0 auto 4rem;
    max-width: 1000px;
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 3rem;
    align-items: center;
}

.overall-rating {
    text-align: center;
    padding: 2rem;
    background: var(--sand);
    border-radius: 8px;
}

.rating-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4.5rem;
    font-weight: 600;
    color: var(--forest);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.rating-stars {
    font-size: 1.8rem;
    color: #D4AF37;
    margin-bottom: 0.5rem;
}

.rating-count {
    font-size: 0.9rem;
    color: #888;
}

.rating-breakdown {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.rating-bar-item {
    display: grid;
    grid-template-columns: 130px 1fr 50px;
    gap: 1rem;
    align-items: center;
}

.rating-label {
    font-size: 0.95rem;
    color: var(--charcoal);
}

.rating-bar {
    height: 8px;
    background: var(--sand);
    border-radius: 4px;
    overflow: hidden;
}

.rating-fill {
    height: 100%;
    background: var(--terracotta);
    transition: width 0.3s ease;
}

.rating-value {
    text-align: right;
    font-weight: 500;
    color: var(--forest);
}

.reviews-section {
    margin-bottom: 6rem;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 2rem;
    margin: 2rem auto 0;
    max-width: 1000px;
}

.review-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.reviewer-info {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--terracotta);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 600;
    flex-shrink: 0;
}

.reviewer-name {
    font-weight: 600;
    color: var(--forest);
    font-size: 1.1rem;
}

.review-date {
    font-size: 0.85rem;
    color: #888;
}

.review-rating {
    color: #D4AF37;
    font-size: 1.2rem;
}

.review-text {
    line-height: 1.8;
    color: var(--charcoal);
}

/* Leave Review Section */
.leave-review-section {
    margin-top: 6rem;
}

.review-form-container {
    background: white;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    max-width: 900px;
    margin: 2rem auto 0;
}

.rating-input-section {
    margin: 2rem 0;
    padding: 2rem;
    background: var(--cream);
    border-radius: 8px;
}

.rating-input-section h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--forest);
}

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

.rating-input-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.rating-input-item label {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--charcoal);
}

.star-rating {
    display: flex;
    gap: 0.5rem;
    font-size: 2rem;
    cursor: pointer;
}

.star-rating .star {
    color: #ddd;
    transition: color 0.2s ease, transform 0.2s ease;
    cursor: pointer;
}

.star-rating .star:hover {
    transform: scale(1.2);
}

.star-rating.rated .star {
    cursor: default;
}

/* Responsive Reviews */
@media (max-width: 1024px) {
    .rating-summary {
        grid-template-columns: 1fr;
        max-width: 600px;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .rating-input-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .rating-bar-item {
        grid-template-columns: 100px 1fr 40px;
        gap: 0.5rem;
    }
    
    .rating-input-grid {
        grid-template-columns: 1fr;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
}
