:root {
    --primary: #1B4332;
    --primary-light: #2D6A4F;
    --accent: #BC6C25;
    --accent-light: #DDA15E;
    --cream: #FEFAE0;
    --white: #FFFFFF;
    --gray: #606C38;
    --dark: #081C15;
    --overlay: rgba(27, 67, 50, 0.85);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--cream);
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 5%;
    transition: all 0.4s ease;
    background: transparent;
}

nav.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 1rem 5%;
    box-shadow: 0 4px 30px rgba(0,0,0,0.1);
}

nav.scrolled .logo img {
    height: 60px;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: opacity 0.3s;
}

.logo img {
    height: 70px;
    width: auto;
    transition: all 0.3s;
    background: transparent;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    transition: color 0.3s;
    display: inline-block;
    white-space: nowrap;
}

nav.scrolled .logo img {
    height: 60px;
    filter: brightness(0) invert(0);
}

nav.scrolled .logo-text {
    color: var(--primary);
}

/* Logo appears white when nav is transparent (over green hero) */
nav:not(.scrolled) .logo img {
    filter: brightness(0) invert(1);
}

nav:not(.scrolled) .logo-text {
    color: white;
}

.logo:hover {
    opacity: 0.8;
}

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

.nav-links a {
    text-decoration: none;
    color: rgba(255,255,255,0.9);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    transition: color 0.3s;
}

nav.scrolled .nav-links a {
    color: var(--dark);
}

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

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

.cta-nav {
    background: var(--accent);
    color: white !important;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    transition: all 0.3s !important;
}

.cta-nav:hover {
    background: var(--primary);
    transform: translateY(-2px);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: white;
    z-index: 1001;
}

nav.scrolled .mobile-menu-btn {
    color: var(--primary);
}

/* Hero Section with Background Image */
#home.hero-section {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(rgba(27, 67, 50, 0.7), rgba(8, 28, 21, 0.8)), 
                url('../assets/landingpage.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    margin-top: 0;
}

.hero-content {
    text-align: center;
    max-width: 900px;
    padding: 0 2rem;
    color: white;
    animation: fadeInUp 1s ease;
}

.hero-logo-container {
    margin-bottom: 2.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-logo {
    height: 200px;
    width: auto;
    filter: brightness(0) invert(1);
    object-fit: contain;
    animation: fadeInUp 0.8s ease;
}

.hero-badge {
    display: inline-block;
    background: rgba(188, 108, 37, 0.9);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero-content h1 {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    margin-bottom: 0.75rem;
    color: white;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
    line-height: 1.3;
    font-weight: 700;
}

.hero-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: clamp(0.9rem, 1.5vw, 1.1rem);
    margin-bottom: 1rem;
    color: white;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
    line-height: 1.4;
    font-weight: 400;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.hero-subheadline {
    font-size: clamp(0.85rem, 1.2vw, 0.95rem);
    margin-bottom: 4rem;
    opacity: 0.95;
    font-weight: 400;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    margin-top: 1rem;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
}

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

.btn {
    padding: 0.75rem 1.75rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

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

.btn-primary:hover {
    background: transparent;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.btn-secondary {
    background: rgba(255,255,255,0.1);
    color: white;
    border: 2px solid rgba(255,255,255,0.3);
    backdrop-filter: blur(10px);
}

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

/* Section Styling */
section {
    padding: 6rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

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

.section-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--primary);
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--gray);
    font-size: 1.125rem;
}

/* About Section with Image */
#about {
    background: white;
    padding: 8rem 5%;
    position: relative;
    overflow: hidden;
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}

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

.about-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(27, 67, 50, 0.4), transparent);
    z-index: 1;
}

.about-badge {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    z-index: 2;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.about-badge h4 {
    color: var(--accent);
    font-size: 2rem;
    margin: 0;
}

.about-badge p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--gray);
}

.about-content h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.about-content p {
    margin-bottom: 1.5rem;
    color: #444;
    font-size: 1.05rem;
    line-height: 1.8;
}

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

.feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.feature-icon {
    width: 40px;
    height: 40px;
    background: rgba(188, 108, 37, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.feature h4 {
    margin-bottom: 0.25rem;
    color: var(--primary);
    font-size: 1.1rem;
}

.feature p {
    margin: 0;
    font-size: 0.9rem;
    color: #666;
}

/* Plants & Services */
#plants-services {
    background: var(--cream);
    padding: 8rem 5%;
}

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

.plant-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    position: relative;
}

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

.plant-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

.plant-info {
    padding: 1.5rem;
}

.plant-info h3 {
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.plant-info p {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.price {
    display: inline-block;
    background: var(--accent);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
}

.plant-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255,255,255,0.95);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary);
    backdrop-filter: blur(10px);
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    color: white;
}

.service-card h3 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.service-card p {
    color: #555;
    line-height: 1.7;
}

.service-list {
    list-style: none;
    margin-top: 1.5rem;
}

.service-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #666;
    font-size: 0.95rem;
}

.service-list li::before {
    content: '-';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
}

/* Gallery Section */
#gallery {
    background: var(--dark);
    padding: 8rem 5%;
    color: white;
}

#gallery .section-header h2 {
    color: white;
}

#gallery .section-header p {
    color: rgba(255,255,255,0.7);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 300px;
    gap: 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay h4 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.gallery-overlay p {
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
}

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

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

/* Contact Section */
#contact {
    background: white;
    padding: 8rem 5%;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
}

.contact-info h2 {
    color: var(--primary);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-info > p {
    color: #666;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.contact-icon-box {
    width: 50px;
    height: 50px;
    background: rgba(188, 108, 37, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--accent);
    flex-shrink: 0;
}

.contact-item h4 {
    color: var(--primary);
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
}

.contact-item p {
    color: #666;
    margin: 0;
}

.hours-card {
    background: var(--cream);
    padding: 2rem;
    border-radius: 15px;
    margin-top: 3rem;
    border-left: 4px solid var(--accent);
}

.hours-card h4 {
    color: var(--accent);
    margin-bottom: 1rem;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.hours-row:last-child {
    border-bottom: none;
}

.contact-form-container {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    border: 1px solid rgba(0,0,0,0.05);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s;
    background: #fafafa;
}

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

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

.submit-btn {
    width: 100%;
    padding: 1rem;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.submit-btn:hover {
    background: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(188, 108, 37, 0.3);
}

#formMessage {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 8px;
    display: none;
    text-align: center;
    font-weight: 500;
}

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

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: white;
}

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

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

.social-links a {
    padding: 0.5rem 1rem;
    background: rgba(255,255,255,0.1);
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s;
}

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

.footer-links h4 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.footer-links ul {
    list-style: none;
}

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

.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
    text-align: center;
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
}

.footer-bottom p {
    margin: 0.5rem 0;
}

.footer-bottom p:last-child {
    margin-top: 1rem;
    font-size: 0.85rem;
    opacity: 0.7;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

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

/* Page Hero Section */
.page-hero {
    min-height: 50vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(rgba(27, 67, 50, 0.8), rgba(8, 28, 21, 0.9)), 
                url('../assets/landingpage.jpg');
    background-size: cover;
    background-position: center;
    padding-top: 100px;
    margin-top: 80px;
}

.page-hero:first-of-type {
    margin-top: 0;
}

.page-hero-content {
    text-align: center;
    color: white;
    padding: 4rem 2rem;
}

.page-hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1rem;
    color: white;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.page-hero-content p {
    font-size: 1.25rem;
    opacity: 0.95;
    font-weight: 300;
}

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

/* Intro Section */
.intro-section {
    padding: 6rem 5%;
    background: white;
}

.intro-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.intro-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--primary);
    margin-bottom: 2rem;
}

.intro-content .lead {
    font-size: 1.25rem;
    color: var(--gray);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.intro-content p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 1rem;
}

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

.features-grid-large {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

.feature-icon-large {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.feature-card p {
    color: #666;
    line-height: 1.7;
}

/* Overview Section */
.overview-section {
    padding: 6rem 5%;
    background: white;
}

.overview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.overview-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}

.overview-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.overview-text h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.overview-text p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

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

/* Improve button visibility in the white homepage overview block */
.overview-section .cta-buttons {
    justify-content: flex-start;
}

.overview-section .btn-secondary {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.overview-section .btn-secondary:hover {
    background: var(--accent);
    color: var(--white);
    border-color: var(--accent);
}

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

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

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-section .btn-primary {
    background: var(--accent);
    border-color: var(--accent);
}

.cta-section .btn-primary:hover {
    background: var(--accent-light);
}

.cta-section .btn-secondary {
    background: rgba(255,255,255,0.2);
    border-color: rgba(255,255,255,0.3);
    color: white;
}

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

/* About Page Styles */
.about-page-section {
    padding: 6rem 5%;
    background: white;
}

.about-page-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-page-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}

.about-page-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
}

.image-badge {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    z-index: 2;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.image-badge h4 {
    color: var(--accent);
    font-size: 2rem;
    margin: 0;
}

.image-badge p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--gray);
}

.about-page-content h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.about-page-content p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* Mission Section */
.mission-section {
    padding: 6rem 5%;
    background: var(--cream);
}

.mission-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.mission-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--primary);
    margin-bottom: 2rem;
}

.mission-text {
    font-size: 1.15rem;
    color: #555;
    line-height: 1.9;
}

/* Values Section */
.values-section {
    padding: 6rem 5%;
    background: white;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.value-card {
    background: var(--cream);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.value-card:hover {
    border-color: var(--accent);
    transform: translateY(-5px);
}

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

.value-card h3 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.value-card p {
    color: #666;
    line-height: 1.7;
}

/* Vision Section */
.vision-section {
    padding: 6rem 5%;
    background: var(--cream);
}

.vision-content {
    max-width: 1000px;
    margin: 0 auto;
}

.vision-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--primary);
    margin-bottom: 2rem;
    text-align: center;
}

.vision-content > p {
    font-size: 1.15rem;
    color: #555;
    line-height: 1.9;
    margin-bottom: 3rem;
    text-align: center;
}

.vision-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.vision-feature {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
}

.vision-feature h4 {
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.vision-feature p {
    color: #666;
    font-size: 0.95rem;
    margin: 0;
}

/* Team Section */
.team-section {
    padding: 6rem 5%;
    background: white;
}

.team-description {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.team-description p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
}

/* Plants Page Styles */
.plants-section {
    padding: 6rem 5%;
    background: white;
}

.pricing-note {
    max-width: 900px;
    margin: 3rem auto 0;
    padding: 2rem;
    background: var(--cream);
    border-radius: 15px;
    border-left: 4px solid var(--accent);
}

.pricing-note p {
    color: #555;
    line-height: 1.8;
    margin: 0;
}

/* Promotions Section */
.promotions-section {
    padding: 6rem 5%;
    background: var(--cream);
}

.promotions-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.promotions-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.promotions-content p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 1rem;
}

/* Booking Section */
.booking-section {
    padding: 6rem 5%;
    background: white;
}

.booking-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.booking-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.booking-content p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 2rem;
}

/* Gallery Page Styles */
.gallery-intro {
    padding: 4rem 5%;
    background: white;
}

.gallery-intro-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.gallery-intro-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.gallery-intro-content p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.gallery-page-section {
    padding: 4rem 5%;
    background: var(--cream);
}

.projects-section {
    padding: 6rem 5%;
    background: white;
}

.promotional-section {
    padding: 6rem 5%;
    background: var(--cream);
}

.promotional-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.promotional-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.promotional-content p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.8;
}

/* Contact Page Styles */
.contact-page-section {
    padding: 6rem 5%;
    background: white;
}

.contact-intro {
    max-width: 900px;
    margin: 0 auto 4rem;
    text-align: center;
}

.contact-intro h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.contact-intro p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
}

.map-placeholder {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--cream);
    border-radius: 15px;
}

.map-placeholder h4 {
    color: var(--primary);
    margin-bottom: 1rem;
}

.map-placeholder p {
    color: #666;
    margin-bottom: 1.5rem;
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.social-section {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--cream);
    border-radius: 15px;
    text-align: center;
}

.social-section h4 {
    color: var(--primary);
    margin-bottom: 1rem;
}

.social-section p {
    color: #666;
    margin-bottom: 1.5rem;
}

/* Improve contrast for social links inside the Contact page social card */
.social-section .social-links {
    justify-content: center;
    gap: 0.85rem;
}

.social-section .social-links a {
    background: var(--primary);
    color: var(--white);
    border: 1px solid var(--primary-light);
    font-weight: 600;
    min-width: 110px;
    padding: 0.6rem 1rem;
}

.social-section .social-links a:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--white);
}

.commitment-section {
    padding: 6rem 5%;
    background: var(--cream);
}

.commitment-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.commitment-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.commitment-content p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
}

/* Services Hub Page Styles */
.services-overview-section {
    padding: 6rem 5%;
    background: white;
}

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

.service-hub-card {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-align: center;
}

.service-hub-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    border-color: var(--accent);
}

.service-hub-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.service-hub-card h3 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.service-hub-card p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.service-subtitle {
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.75rem !important;
    font-size: 0.95rem;
}

.service-hub-list {
    list-style: none;
    text-align: left;
    margin-bottom: 2rem;
}

.service-hub-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #666;
    font-size: 0.95rem;
}

.service-hub-list li::before {
    content: '-';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
}

.quick-links-section {
    padding: 6rem 5%;
    background: var(--cream);
}

.quick-links-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.quick-link-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    display: block;
}

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

.quick-link-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.quick-link-card h4 {
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.quick-link-card p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

/* Service Detail Pages */
.service-detail-section {
    padding: 6rem 5%;
    background: white;
}

.service-intro {
    max-width: 900px;
    margin: 0 auto 4rem;
    text-align: center;
}

.service-intro h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.service-intro .lead {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.9;
    margin-bottom: 1rem;
}

.service-intro p {
    font-size: 1.05rem;
    color: #666;
    line-height: 1.8;
}

.service-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.service-feature-card {
    background: var(--cream);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

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

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

.service-feature-card h3 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.service-feature-card p {
    color: #666;
    line-height: 1.7;
}

/* Process Steps */
.service-process-section {
    padding: 6rem 5%;
    background: var(--cream);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.process-step {
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.process-step h3 {
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.process-step p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Benefits Grid */
.service-benefits-section {
    padding: 6rem 5%;
    background: white;
}

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

.benefit-item {
    padding: 2rem;
    background: var(--cream);
    border-radius: 15px;
    border-left: 4px solid var(--accent);
}

.benefit-item h4 {
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.benefit-item p {
    color: #666;
    margin: 0;
    line-height: 1.7;
}

/* Maintenance Packages */
.maintenance-packages-section {
    padding: 6rem 5%;
    background: white;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.package-card {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.package-card.featured {
    border-color: var(--accent);
    transform: scale(1.05);
    box-shadow: 0 10px 40px rgba(188, 108, 37, 0.2);
}

.package-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
}

.package-card h3 {
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.package-card > p {
    color: #666;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.package-list {
    list-style: none;
    text-align: left;
    margin-bottom: 2rem;
}

.package-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #666;
    font-size: 0.95rem;
}

.package-list li::before {
    content: '-';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
}

/* Price Table */
.price-table-container {
    max-width: 900px;
    margin: 3rem auto;
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.price-table-container h3 {
    color: var(--primary);
    margin-bottom: 2rem;
    font-size: 1.8rem;
    text-align: center;
}

.price-table-wrapper {
    overflow-x: auto;
}

.price-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1.5rem;
}

.price-table thead {
    background: var(--primary);
    color: white;
}

.price-table th {
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    font-size: 1rem;
}

.price-table th:first-child {
    border-top-left-radius: 10px;
}

.price-table th:last-child {
    border-top-right-radius: 10px;
}

.price-table tbody tr {
    border-bottom: 1px solid #e0e0e0;
    transition: background 0.3s;
}

.price-table tbody tr:hover {
    background: var(--cream);
}

.price-table td {
    padding: 1rem;
    color: #555;
}

.price-table td:first-child {
    font-weight: 600;
    color: var(--primary);
}

.price-table td:last-child {
    font-weight: 600;
    color: var(--accent);
    font-size: 1.1rem;
}

.limited-badge {
    display: inline-block;
    background: rgba(188, 108, 37, 0.1);
    color: var(--accent);
    padding: 0.25rem 0.5rem;
    border-radius: 5px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-left: 0.5rem;
}

.price-note {
    text-align: center;
    color: #666;
    font-size: 0.9rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e0e0e0;
}

/* Additional Plants Grid */
.additional-plants-section {
    padding: 6rem 5%;
    background: var(--cream);
}

.additional-plants-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.plant-category {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.plant-category h3 {
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    border-bottom: 2px solid var(--accent);
    padding-bottom: 0.5rem;
}

.plant-list {
    list-style: none;
}

.plant-list li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #666;
    font-size: 1rem;
    border-bottom: 1px solid #f0f0f0;
}

.plant-list li:last-child {
    border-bottom: none;
}

.plant-list li::before {
    content: '';
    position: absolute;
    left: 0;
}

/* Ordering Steps */
.ordering-section {
    padding: 6rem 5%;
    background: white;
}

.ordering-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 2rem auto;
}

.ordering-step {
    text-align: center;
    padding: 2rem;
    background: var(--cream);
    border-radius: 15px;
}

.step-icon {
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.ordering-step h4 {
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.ordering-step p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.ordering-note {
    max-width: 800px;
    margin: 2rem auto 0;
    padding: 1.5rem;
    background: var(--cream);
    border-radius: 10px;
    border-left: 4px solid var(--accent);
}

.ordering-note p {
    color: #555;
    margin: 0;
    line-height: 1.7;
}

/* Promotion Examples */
.promotion-examples {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 2rem 0;
}

.promotion-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid var(--accent);
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.promotion-card h4 {
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.promotion-card p {
    color: #666;
    margin: 0;
    line-height: 1.7;
}

.promotion-note {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e0e0e0;
    text-align: center;
}

.promotion-note a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
}

.promotion-note a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 1024px) {
    .features-grid-large,
    .values-grid,
    .vision-features {
        grid-template-columns: 1fr;
    }

    .overview-grid,
    .about-page-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .overview-image img,
    .about-page-image img {
        height: 400px;
    }
    .about-container,
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-image {
        order: -1;
    }

    .about-image img {
        height: 400px;
    }

    .plants-showcase {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

@media (max-width: 768px) {
    html {
        scroll-padding-top: 72px;
    }

    body.menu-open {
        overflow: hidden;
    }

    nav {
        padding: 0.85rem 4%;
    }

    nav.scrolled {
        padding: 0.7rem 4%;
    }

    .logo-text {
        display: none !important;
    }

    .mobile-menu-btn {
        display: block;
        min-width: 44px;
        min-height: 44px;
        border-radius: 10px;
        background: rgba(255, 255, 255, 0.12);
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 86%;
        max-width: 400px;
        height: 100vh;
        background: white;
        flex-direction: column;
        padding: 5.5rem 1.25rem 1.5rem;
        transition: right 0.3s ease;
        box-shadow: -10px 0 40px rgba(0,0,0,0.1);
        align-items: flex-start;
        gap: 0.5rem;
    }

    nav.scrolled .nav-links a {
        color: var(--dark);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        color: var(--dark) !important;
        font-size: 1.05rem;
        width: 100%;
        padding: 0.7rem 0.25rem;
        border-bottom: 1px solid rgba(0,0,0,0.08);
    }

    .cta-nav {
        background: var(--accent) !important;
        color: white !important;
        margin-top: 1rem;
        text-align: center;
        border-bottom: none !important;
        padding: 0.85rem 1rem !important;
    }

    .hero-logo {
        height: 120px;
    }

    .hero-content {
        padding: 0 1rem;
    }

    .hero-content h1 {
        font-size: clamp(1.5rem, 6vw, 2rem);
    }

    .hero-subtitle {
        font-size: 0.88rem;
        line-height: 1.5;
        margin-bottom: 0.85rem;
    }

    .hero-subheadline {
        font-size: 0.95rem;
        margin-bottom: 2rem;
        line-height: 1.7;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        padding: 0;
        gap: 0.75rem;
    }

    .btn {
        width: 100%;
        justify-content: center;
        min-height: 48px;
        padding: 0.8rem 1.25rem;
        font-size: 0.95rem;
    }

    section {
        padding: 4rem 4%;
    }

    .section-header {
        margin-bottom: 2.5rem;
    }

    .plants-showcase {
        grid-template-columns: 1fr;
    }

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

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .gallery-item.large,
    .gallery-item.wide {
        grid-column: span 1;
    }

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

    .social-links {
        justify-content: center;
    }

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

    .logo img {
        height: 50px;
    }

    nav.scrolled .logo img {
        height: 45px;
    }

    .logo-text {
        display: none;
    }

    .features-grid-large,
    .values-grid,
    .vision-features {
        grid-template-columns: 1fr;
    }

    .overview-grid,
    .about-page-grid {
        grid-template-columns: 1fr;
    }

    .overview-image img,
    .about-page-image img {
        height: 300px;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons .btn {
        width: 100%;
    }

    .page-hero {
        min-height: 40vh;
        padding-top: 80px;
    }

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

    .page-hero-content p {
        font-size: 1rem;
    }

    .services-hub-grid,
    .service-features-grid,
    .process-steps,
    .packages-grid,
    .additional-plants-grid,
    .ordering-steps,
    .quick-links-grid {
        grid-template-columns: 1fr;
    }

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

    .promotion-examples {
        grid-template-columns: 1fr;
    }

    .package-card.featured {
        transform: scale(1);
    }

    .price-table-container {
        padding: 1.5rem;
    }

    .price-table-wrapper {
        overflow-x: scroll;
    }

    .service-hub-card,
    .service-feature-card,
    .package-card {
        padding: 1.35rem;
    }

    .contact-form-container {
        padding: 1.5rem;
    }

    input,
    select,
    textarea,
    .submit-btn {
        font-size: 16px;
    }

    input,
    select {
        min-height: 46px;
    }

    .social-links a {
        min-height: 42px;
    }
}

@media (max-width: 480px) {
    .hero-logo {
        height: 96px;
    }

    .hero-content h1 {
        font-size: 1.35rem;
        line-height: 1.35;
    }

    .hero-subtitle {
        font-size: 0.8rem;
    }

    .hero-subheadline {
        font-size: 0.9rem;
    }

    .page-hero {
        min-height: 34vh;
    }

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

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

    .hours-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.2rem;
    }
}

/* Gallery lightbox - fullscreen image when tapping/clicking */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.92);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}
.lightbox.open {
    opacity: 1;
    visibility: visible;
}
.lightbox-backdrop {
    position: absolute;
    inset: 0;
    cursor: pointer;
}
.lightbox-content {
    position: relative;
    z-index: 2;
    max-width: 100%;
    max-height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
}
.lightbox-close {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    z-index: 3;
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    color: #fff;
    font-size: 1.75rem;
    line-height: 1;
    cursor: pointer;
    padding: 0;
}
.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.4);
}
.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    color: #fff;
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    padding: 0;
}
.lightbox-prev { left: 0.5rem; }
.lightbox-next { right: 0.5rem; }
.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255, 255, 255, 0.4);
}
#gallery .gallery-item,
.projects-section .gallery-item {
    cursor: pointer;
}
