/* Rake & Clover Landscaping - Main Stylesheet */

/* CSS Variables */
:root {
    --color-primary: #2f5a3e;
    --color-primary-dark: #121212;
    --color-primary-light: #3b704d;
    --color-accent: #949277;
    --color-accent-hover: #7f7d64;
    --color-text: #111111;
    --color-text-light: #4a4a4a;
    --color-text-muted: #707070;
    --color-bg: #ffffff;
    --color-bg-alt: #f3f3ef;
    --color-bg-dark: #000000;
    --color-border: #d7d7d7;
    --color-white: #fff;
    --color-success: #28a745;
    
    --font-heading: 'Montserrat', 'Inter', sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 25px rgba(0,0,0,0.1);
    --shadow-xl: 0 20px 40px rgba(0,0,0,0.15);
    
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    
    --transition: all 0.3s ease;
    --max-width: 1200px;
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* SVG Icons */
.icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.icon-inline {
    width: 16px;
    height: 16px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 0.5rem;
}

/* Brand Logo */
.brand-logo {
    height: 40px;
    width: auto;
    display: block;
}

@media (max-width: 768px) {
    .brand-logo {
        height: 34px;
    }
}

/* Phone Icon */
.phone-icon {
    width: 18px;
    height: 18px;
}

/* Service Icons */
.service-icon {
    width: 48px;
    height: 48px;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

/* Feature Icons */
.feature-icon {
    width: 24px;
    height: 24px;
    color: var(--color-white);
    background-color: var(--color-accent);
    border-radius: 50%;
    padding: 4px;
    flex-shrink: 0;
}

/* Trust Icons */
.trust-icon {
    width: 20px;
    height: 20px;
    color: var(--color-white);
}

.trust-icon.star-icon {
    color: var(--color-accent);
}

/* Location Icons */
.location-icon {
    width: 20px;
    height: 20px;
    color: var(--color-primary);
    flex-shrink: 0;
}

/* AI Banner Icon */
.ai-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
}

/* Social Icons */
.social-links svg {
    width: 24px;
    height: 24px;
    transition: var(--transition);
}

.social-links a:hover svg {
    transform: translateY(-3px);
    color: var(--color-accent);
}

/* Star Rating */
.stars {
    display: flex;
    gap: 0.25rem;
}

.stars svg {
    width: 20px;
    height: 20px;
    color: var(--color-accent);
    fill: var(--color-accent);
}

/* Rounded Images */
.rounded-image {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.rounded-image:hover {
    transform: scale(1.02);
}

/* Gallery Images */
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.brand-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.25rem;
}

.brand-gallery img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

/* Container */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.01em;
    text-transform: none;
    margin-bottom: 1rem;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.btn-primary {
    background-color: var(--color-primary-dark);
    color: var(--color-white);
}

.btn-primary:hover {
    background-color: var(--color-primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}

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

.btn-accent {
    background-color: var(--color-primary);
    color: var(--color-white);
}

.btn-accent:hover {
    background-color: var(--color-primary-dark);
}

.btn-white {
    background-color: var(--color-white);
    color: var(--color-primary);
}

.btn-white:hover {
    background-color: var(--color-bg-alt);
}

.btn-outline-white {
    background-color: transparent;
    color: var(--color-white);
    border: 2px solid var(--color-white);
}

.btn-outline-white:hover {
    background-color: var(--color-white);
    color: var(--color-primary);
}

.btn-large {
    padding: 1.125rem 2.25rem;
    font-size: 1.125rem;
    flex-direction: column;
    gap: 0.25rem;
}

.btn-large small {
    font-size: 0.75rem;
    font-weight: 400;
    opacity: 0.9;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.header.scrolled {
    box-shadow: var(--shadow-md);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0;
    color: var(--color-primary);
}

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

.nav-menu a {
    font-weight: 500;
    color: var(--color-text);
    position: relative;
    padding: 0.5rem 0;
}

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

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

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--color-primary);
}

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

.phone-icon {
    font-size: 1.25rem;
}

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

.nav-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--color-primary);
    transition: var(--transition);
}

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

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(0deg, rgba(0,0,0,0.62) 0%, rgba(0,0,0,0.36) 45%, rgba(0,0,0,0.52) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--color-white);
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.8rem);
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
    text-shadow: 0 8px 24px rgba(0,0,0,0.45);
}

.text-accent {
    color: var(--color-accent);
}

.hero-subtitle {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    margin-bottom: 2.5rem;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.hero-ctas .btn-secondary {
    background-color: white;
    color: var(--color-primary-dark);
    border: 2px solid white;
}

.hero-ctas .btn-secondary:hover {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    font-size: 0.9375rem;
}

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

.hero-trust .trust-icon {
    width: 20px;
    height: 20px;
    display: inline-block;
    background: none;
    border-radius: 0;
    color: var(--color-accent);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--color-white);
    font-size: 0.875rem;
    opacity: 0.7;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.scroll-arrow {
    width: 24px;
    height: 24px;
    border-right: 2px solid var(--color-white);
    border-bottom: 2px solid var(--color-white);
    transform: rotate(45deg);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0) rotate(45deg); }
    40% { transform: translateY(10px) rotate(45deg); }
    60% { transform: translateY(5px) rotate(45deg); }
}

/* AI Banner */
.ai-banner {
    background: linear-gradient(90deg, var(--color-primary-light) 0%, var(--color-primary) 100%);
    padding: 1.5rem 0;
    color: var(--color-white);
}

/* Improve contrast for the AI banner CTA */
.ai-banner .btn-accent {
    background: rgba(255, 255, 255, 0.95);
    color: var(--color-primary-dark);
    border: 2px solid rgba(255, 255, 255, 0.9);
}

.ai-banner .btn-accent:hover {
    background: var(--color-white);
    color: var(--color-primary-dark);
}

.ai-banner-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

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

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

.ai-text strong {
    font-size: 1.125rem;
}

.ai-text span {
    font-size: 0.9375rem;
    opacity: 0.9;
}

/* Section Styles */
section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.section-label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--color-primary);
    margin-bottom: 0.75rem;
}

.section-title {
    margin-bottom: 1rem;
    color: var(--color-primary-dark);
    letter-spacing: 0.03em;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--color-text-light);
}

.section-cta {
    text-align: center;
    margin-top: 3rem;
}

/* Services Section */
.services-section {
    background-color: var(--color-bg-alt);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.service-card {
    background-color: var(--color-white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--color-primary-dark);
}

.service-card p {
    color: var(--color-text-light);
    margin-bottom: 1.25rem;
}

.link-arrow {
    font-weight: 600;
    color: var(--color-accent);
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.link-arrow:hover {
    gap: 0.5rem;
}

/* Why Us Section */
.why-us {
    background-color: var(--color-white);
}

.why-us-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.why-us-content p {
    font-size: 1.125rem;
    color: var(--color-text-light);
    margin-bottom: 2rem;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.feature-list li {
    display: flex;
    gap: 1rem;
}

.feature-icon {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-accent);
    color: var(--color-white);
    border-radius: 50%;
    font-size: 0.875rem;
    flex-shrink: 0;
}

.feature-list li div {
    display: flex;
    flex-direction: column;
}

.feature-list li strong {
    color: var(--color-primary-dark);
    margin-bottom: 0.25rem;
}

.feature-list li span {
    color: var(--color-text-light);
    font-size: 0.9375rem;
}

.why-us-image {
    position: relative;
}

.image-placeholder {
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    font-size: 1.125rem;
    border: 2px dashed var(--color-primary-light);
}

.image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-lg);
}

/* Gallery Preview */
.gallery-preview {
    background-color: var(--color-bg-alt);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 250px);
    gap: 1rem;
}

.gallery-item {
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item .image-placeholder {
    width: 100%;
    height: 100%;
}

/* Testimonials */
.testimonials {
    background-color: var(--color-white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
}

.testimonial-card {
    background-color: var(--color-bg-alt);
    padding: 2rem;
    border-radius: var(--radius-lg);
}

.stars {
    color: var(--color-accent);
    font-size: 1.25rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.testimonial-text {
    font-size: 1.0625rem;
    font-style: italic;
    color: var(--color-text);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

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

.author-avatar {
    width: 48px;
    height: 48px;
    background-color: var(--color-primary);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-info strong {
    color: var(--color-primary-dark);
}

.author-info span {
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

.testimonials-footer {
    text-align: center;
    margin-top: 2rem;
}

/* Service Area */
.service-area {
    background-color: var(--color-bg-alt);
}

.service-area-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.service-area-content p {
    font-size: 1.125rem;
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
}

.location-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.location-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.0625rem;
}

.location-icon {
    font-size: 1.25rem;
}

.location-note {
    font-size: 0.9375rem !important;
    font-style: italic;
}

.service-area-map {
    position: relative;
}

.map-placeholder {
    aspect-ratio: 16/10;
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    font-size: 1.125rem;
    border: 2px dashed var(--color-primary-light);
}

.map-placeholder small {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    margin-top: 0.5rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: var(--color-white);
    text-align: center;
    padding: 5rem 0;
}

.cta-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.25rem;
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

/* Footer */
.footer {
    background-color: var(--color-bg-dark);
    color: var(--color-white);
    padding: 4rem 0 2rem;
}

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

.footer-brand .logo {
    color: var(--color-white);
    margin-bottom: 1rem;
}

.footer-brand p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    font-size: 1.5rem;
    transition: var(--transition);
}

.social-links a:hover {
    transform: translateY(-3px);
}

.footer-links h4,
.footer-contact h4 {
    font-size: 1.125rem;
    margin-bottom: 1.25rem;
    color: var(--color-white);
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--color-accent);
}

.footer-contact a {
    color: rgba(255,255,255,0.7);
    display: block;
    margin-bottom: 0.5rem;
    transition: var(--transition);
}

.footer-contact a:hover {
    color: var(--color-accent);
}

.service-area-text {
    margin-top: 1rem;
    color: rgba(255,255,255,0.7);
    font-size: 0.9375rem;
}

.service-area-text span {
    color: var(--color-accent);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.875rem;
    color: rgba(255,255,255,0.5);
}

.footer-bottom a {
    color: var(--color-accent);
}

/* Mobile Call Bar */
.mobile-call-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--color-accent);
    padding: 0.75rem;
    z-index: 1001;
}

.mobile-call-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--color-white);
    font-weight: 600;
    font-size: 1.125rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .why-us-grid,
    .service-area-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background-color: white;
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        z-index: 999;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-cta .phone-text {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    
    .nav-cta {
        padding: 0.625rem 1rem;
    }
    
    .hero-ctas {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-trust {
        flex-direction: column;
        gap: 1rem;
    }
    
    .ai-banner-content {
        flex-direction: column;
        text-align: center;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 200px);
    }
    
    .gallery-item.large {
        grid-column: span 2;
        grid-row: span 1;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .mobile-call-bar {
        display: block;
    }
    
    body {
        padding-bottom: 60px;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(4, 200px);
    }
    
    .gallery-item.large {
        grid-column: span 1;
    }
    
    .location-list {
        grid-template-columns: 1fr;
    }
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

/* Booking section */
.booking-section {
    padding: 5rem 0;
    background: var(--color-bg-alt);
}

.booking-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .booking-grid {
        grid-template-columns: 1.2fr 0.8fr;
        align-items: start;
    }
}

.booking-card {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow-md);
}

.booking-card:first-child {
    border: 2px solid rgba(47, 90, 62, 0.25);
}

.booking-card h3 {
    margin-bottom: 0.75rem;
}

.simple-form label {
    display: block;
    margin-bottom: 1rem;
    font-weight: 600;
    color: var(--color-text);
}

.simple-form input,
.simple-form select,
.simple-form textarea {
    width: 100%;
    margin-top: 0.4rem;
    padding: 0.85rem;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    font-family: inherit;
    font-size: 1rem;
    background: var(--color-white);
}

.simple-form input:focus,
.simple-form select:focus,
.simple-form textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(34, 139, 84, 0.15);
}

.muted {
    color: var(--color-text-muted);
    font-size: 0.9rem;
}


/* FAQ */
.faq-section {
  background: var(--color-bg-alt);
}

.faq-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.faq-item {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
}

.faq-item h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.faq-item p {
  margin: 0;
  color: var(--color-text-light);
}

/* Hero CTA sizing */
@media (min-width: 768px) {
  .hero-ctas {
    align-items: stretch;
  }
  .hero-ctas .btn {
    flex: 1;
    min-width: 220px;
  }
}
