/* Home Page - Modern Creative Design */

/* Hero Section - Bold & Dynamic */
.hero-section {
    color: white;
    text-align: center;
    padding: clamp(6rem, 12vw, 10rem) 20px clamp(4rem, 8vw, 7rem);
    position: relative;
    overflow: hidden;
    min-height: 80vh;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    object-fit: cover;
    z-index: 0;
    opacity: 1;
    transition: opacity 1.5s ease-in-out;
}

.hero-video.fade-out {
    opacity: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(26, 77, 46, 0.75) 0%, rgba(26, 77, 46, 0.65) 25%, rgba(45, 122, 79, 0.50) 60%, rgba(127, 176, 105, 0.40) 100%);
    z-index: 1;
    pointer-events: none;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(127, 176, 105, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(184, 212, 166, 0.15) 0%, transparent 50%);
    pointer-events: none;
    z-index: 2;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, transparent, var(--bg-light));
    pointer-events: none;
    z-index: 2;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 3;
    animation: fadeInUp 0.8s ease-out;
}

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

.hero-section h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    margin-bottom: clamp(1rem, 2vw, 1.5rem);
    font-weight: 700;
    text-shadow: 0 4px 20px rgba(0,0,0,0.4), 0 2px 8px rgba(0,0,0,0.3);
    letter-spacing: clamp(-1.5px, -0.15vw, -2px);
    line-height: 1.1;
}

.hero-section .hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    margin-bottom: clamp(2rem, 4vw, 2.5rem);
    line-height: 1.7;
    text-shadow: 0 2px 12px rgba(0,0,0,0.3), 0 1px 4px rgba(0,0,0,0.2);
    font-weight: 300;
    opacity: 0.98;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta-group {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: clamp(1.5rem, 3vw, 2rem);
    align-items: center;
}

.hero-cta-group .btn {
    font-size: clamp(0.95rem, 1.5vw, 1.05rem);
    padding: clamp(0.875rem, 1.5vw, 1rem) clamp(2rem, 4vw, 2.5rem);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2), 0 2px 8px rgba(0, 0, 0, 0.15);
}

.hero-cta-group .btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.4);
    color: white;
    backdrop-filter: blur(8px);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
}

.hero-cta-group .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.6);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.hero-link-tertiary {
    color: white;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 4px;
    font-size: clamp(0.9rem, 1.3vw, 1rem);
    opacity: 0.9;
    transition: var(--transition);
    font-weight: 400;
}

.hero-link-tertiary:hover {
    opacity: 1;
    text-decoration-thickness: 1.5px;
}

/* How It Works Section */
.how-it-works-section {
    padding: 6rem 20px;
    background: linear-gradient(135deg, var(--bg-cream) 0%, rgba(232, 245, 227, 0.2) 45%, rgba(232, 245, 227, 0.1) 55%, var(--bg-cream) 100%);
    position: relative;
    overflow: hidden;
    scroll-margin-top: 120px;
}

.how-it-works-section .section-header {
    position: relative;
    z-index: 1;
}

.how-it-works-section::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -5%;
    width: 400px;
    height: 400px;
    background: url("../assets/svg/tree-svg.svg") no-repeat;
    background-size: contain;
    opacity: 0.2;
    pointer-events: none;
    z-index: 0;
    animation: gentleDrift 60s ease-in-out infinite;
}

.how-it-works-section::after {
    content: '';
    position: absolute;
    bottom: -8%;
    left: -4%;
    width: 350px;
    height: 350px;
    background: url("../assets/svg/plant-grass.svg") no-repeat;
    background-size: contain;
    opacity: 0.3;
    pointer-events: none;
    z-index: 0;
    animation: gentleDrift 80s ease-in-out infinite reverse;
}

@keyframes gentleDrift {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    50% {
        transform: translate(15px, -10px) rotate(2deg);
    }
}

.how-it-works-section .container {
    position: relative;
}

.how-it-works-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto 2rem;
}

.how-it-works-step {
    text-align: center;
    padding: 2.5rem 2rem;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--secondary-green), var(--accent-green));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    box-shadow: var(--shadow-md);
    font-family: 'Playfair Display', serif;
}

.how-it-works-step h3 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-green);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.how-it-works-step p {
    color: var(--text-medium);
    line-height: 1.8;
    font-size: 1rem;
}

.how-it-works-note {
    text-align: center;
    color: var(--text-light);
    font-style: italic;
    font-size: 0.95rem;
    max-width: 600px;
    margin: 2rem auto 0;
}

/* Browse by Category Section */
.browse-category-section {
    padding: 6rem 20px;
    background: var(--bg-cream);
    position: relative;
}

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

.category-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    text-align: center;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent-green);
}

.category-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: block;
    transition: var(--transition);
}

.category-card:hover .category-icon {
    transform: scale(1.15);
}

.category-card h3 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-green);
    margin-bottom: 1rem;
    font-size: 1.75rem;
    font-weight: 600;
}

.category-card p {
    color: var(--text-medium);
    line-height: 1.7;
    font-size: 0.95rem;
    margin: 0;
}

/* Why Pine View Section */
.why-pine-view-section {
    padding: 6rem 20px;
    background: white;
    position: relative;
}

.why-pine-view-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.why-pine-view-card {
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, var(--bg-cream) 0%, white 100%);
    border-radius: 20px;
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

.why-pine-view-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-green);
}

.why-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.why-pine-view-card h3 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-green);
    margin-bottom: 1rem;
    font-size: 1.75rem;
    font-weight: 600;
}

.why-pine-view-card p {
    color: var(--text-medium);
    line-height: 1.8;
    font-size: 1rem;
}

/* Why Pine View CTA Section */
.why-pine-view-cta {
    margin-top: 4rem;
    padding: 3rem 2rem;
    text-align: center;
    background: linear-gradient(135deg, var(--pale-green) 0%, rgba(184, 212, 166, 0.3) 100%);
    border-radius: 24px;
    border: 2px solid var(--light-green);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.why-pine-view-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(127, 176, 105, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.why-pine-view-cta::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(45, 122, 79, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.why-pine-view-blurb {
    font-size: 1.35rem;
    color: var(--primary-green);
    font-weight: 500;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    position: relative;
    z-index: 1;
    font-family: 'Playfair Display', serif;
}

.why-pine-view-cta .btn {
    position: relative;
    z-index: 1;
    font-size: 1.1rem;
    padding: 1rem 2.5rem;
    box-shadow: 0 4px 16px rgba(45, 122, 79, 0.3);
    background: linear-gradient(135deg, var(--secondary-green) 0%, var(--primary-green) 100%);
    transition: all 0.3s ease;
}

.why-pine-view-cta .btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 24px rgba(45, 122, 79, 0.4);
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-green) 100%);
}

/* Section Divider with Parallax Effect */
.section-divider {
    position: relative;
    height: 400px;
    overflow: hidden;
    margin: 0;
    padding: 0;
    background: linear-gradient(135deg, var(--pale-green) 0%, var(--bg-cream) 100%);
}

.section-divider-bg {
    position: absolute;
    top: -50%;
    left: 0;
    width: 100%;
    height: 200%;
    background-image: url('../assets/images/parallax-divider.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    will-change: transform;
    transform: translateZ(0);
}

.section-divider-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.1) 30%, rgba(255, 255, 255, 0.3) 60%, rgba(255, 255, 255, 0.4) 90%, rgba(255, 255, 255, 0.5) 100%);
    z-index: 1;
    pointer-events: none;
}

/* What's Happening Now Section */
.whats-happening-section {
    padding: 5rem 20px;
    background: linear-gradient(135deg, var(--pale-green) 0%, var(--bg-cream) 100%);
    position: relative;
}

.whats-happening-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.whats-happening-text {
    color: var(--text-medium);
    line-height: 1.8;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* Garden Tips Section */
.garden-tips-section {
    padding: 6rem 20px;
    background: white;
    position: relative;
}

.garden-tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.garden-tip-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
}

.garden-tip-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-green);
}

.tip-category {
    font-size: 0.8rem;
    color: var(--secondary-green);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.garden-tip-card h3 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-green);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.garden-tip-card p {
    color: var(--text-medium);
    line-height: 1.7;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.tip-coming-soon {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: var(--pale-green);
    color: var(--secondary-green);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* Reviews Section */
.reviews-section {
    padding: 6rem 20px;
    background: var(--bg-cream);
    position: relative;
}

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

.review-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-green);
}

.review-stars {
    color: #ffc107;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
}

.review-quote {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.review-author {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.review-author-name {
    font-weight: 700;
    color: var(--primary-green);
    font-size: 1rem;
}

.review-author-location {
    color: var(--text-light);
    font-size: 0.9rem;
}

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

.reviews-footer p {
    color: var(--text-medium);
    font-size: 0.95rem;
}

.reviews-footer a {
    color: var(--secondary-green);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.reviews-footer a:hover {
    color: var(--primary-green);
}

/* Visit Us Section */
.visit-us-section {
    padding: 6rem 20px;
    background: white;
    position: relative;
    scroll-margin-top: 120px;
}

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

.visit-us-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3rem;
}

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

.visit-info-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.visit-info-item h3 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-green);
    margin-bottom: 0.75rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.visit-info-item p {
    color: var(--text-medium);
    line-height: 1.8;
    font-size: 1rem;
}

.visit-info-item a {
    color: var(--secondary-green);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.visit-info-item a:hover {
    color: var(--primary-green);
}

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

/* Featured Plants Section - Modern Cards */
.featured-plants-section {
    padding: 6rem 20px;
    background: white;
    position: relative;
}

.plant-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.plant-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid var(--border-light);
    position: relative;
}

.plant-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(127, 176, 105, 0) 0%, rgba(127, 176, 105, 0.05) 100%);
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
}

.plant-card:hover::after {
    opacity: 1;
}

.plant-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-2xl);
    border-color: var(--accent-green);
}

.plant-card.featured {
    border: 2px solid var(--accent-green);
    box-shadow: var(--shadow-lg);
}

.plant-card.featured::before {
    content: '★ Featured';
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: var(--primary-green);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.85rem;
    z-index: 2;
    box-shadow: var(--shadow-md);
    animation: pulse 2s infinite;
}

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

.plant-image-wrapper {
    position: relative;
    width: 100%;
    padding-top: 75%;
    overflow: hidden;
    background: linear-gradient(135deg, var(--pale-green), var(--bg-light));
}

.plant-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.plant-card:hover .plant-image {
    transform: scale(1.1);
}

.plant-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: var(--primary-green);
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.85rem;
    z-index: 1;
    box-shadow: var(--shadow-md);
}

.plant-card-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    background: white;
}

.plant-category {
    font-size: 0.8rem;
    color: var(--secondary-green);
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
    letter-spacing: 1.5px;
}

.plant-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-green);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.plant-description {
    color: var(--text-medium);
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.6;
}

.plant-details {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.25rem;
    font-size: 0.9rem;
    color: var(--text-light);
    flex-wrap: wrap;
}

.plant-detail {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.8rem;
    background: var(--pale-green);
    border-radius: 20px;
    font-size: 0.85rem;
}

.plant-price {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.availability {
    display: inline-block;
    padding: 0.4rem 1rem;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    align-self: flex-start;
    letter-spacing: 0.5px;
}

.availability.in-stock {
    background: linear-gradient(135deg, #d4edda, #c3e6cb);
    color: #155724;
}

.availability.limited {
    background: linear-gradient(135deg, #fff3cd, #ffeaa7);
    color: #856404;
}

.availability.sold-out {
    background: linear-gradient(135deg, #f8d7da, #f5c6cb);
    color: #721c24;
}

.add-to-cart-btn {
    width: 100%;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, var(--secondary-green) 0%, var(--accent-green) 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    margin-top: auto;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.add-to-cart-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.add-to-cart-btn:hover::before {
    width: 300px;
    height: 300px;
}

.add-to-cart-btn:hover:not(.disabled) {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.add-to-cart-btn.disabled,
.add-to-cart-btn:disabled {
    background: #e5e7eb;
    color: #9ca3af;
    cursor: not-allowed;
    opacity: 0.6;
    box-shadow: none;
}




/* Newsletter Section - Modern Design */
.newsletter-section {
    padding: 6rem 20px;
    background: linear-gradient(135deg, rgba(45, 122, 79, 0.75) 0%, rgba(26, 77, 46, 0.85) 50%, rgba(26, 61, 38, 0.9) 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-bottom: 0;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.newsletter-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(184, 212, 166, 0.2) 0%, transparent 70%);
    border-radius: 50%;
}

.newsletter-section h2 {
    font-family: 'Playfair Display', serif;
    color: white;
    margin-bottom: 1rem;
    font-size: 3rem;
    position: relative;
    z-index: 1;
}

.newsletter-section p {
    margin-bottom: 2.5rem;
    font-size: 1.2rem;
    opacity: 0.95;
    position: relative;
    z-index: 1;
}

.newsletter-form-inline {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.newsletter-form-inline input {
    flex: 1;
    min-width: 200px;
    padding: 1rem 1.5rem;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 12px;
    background: rgba(255,255,255,0.1);
    color: white;
    font-size: 1rem;
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.newsletter-form-inline input::placeholder {
    color: rgba(255,255,255,0.7);
}

.newsletter-form-inline input:focus {
    outline: none;
    border-color: white;
    background: rgba(255,255,255,0.2);
    box-shadow: 0 0 0 4px rgba(255,255,255,0.1);
}

.newsletter-form-inline button {
    padding: 1rem 2.5rem;
    background: white;
    color: var(--primary-green);
    border: none;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
}

.newsletter-form-inline button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: var(--shadow-2xl);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section {
        padding: clamp(4rem, 10vw, 6rem) 20px clamp(3rem, 6vw, 4.5rem);
        min-height: 50vh;
    }
    
    .hero-video {
        /* Ensure video covers properly on mobile */
        width: 100%;
        height: 100%;
    }
    
    .hero-cta-group {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-cta-group .btn,
    .hero-cta-group .btn-secondary {
        width: 100%;
        max-width: 280px;
    }
    
    .newsletter-form-inline {
        flex-direction: column;
    }
    
    .newsletter-form-inline input,
    .newsletter-form-inline button {
        width: 100%;
    }
    
    .section-header h2 {
        font-size: 2.25rem;
    }
    
    .how-it-works-grid,
    .category-grid,
    .why-pine-view-grid,
    .garden-tips-grid,
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .visit-us-info {
        grid-template-columns: 1fr;
    }
    
    .visit-us-cta {
        flex-direction: column;
    }
    
    .visit-us-cta .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .why-pine-view-cta {
        margin-top: 3rem;
        padding: 2.5rem 1.5rem;
        border-radius: 20px;
    }
    
    .why-pine-view-blurb {
        font-size: 1.2rem;
        margin-bottom: 1.25rem;
    }
    
    .why-pine-view-cta .btn {
        font-size: 1rem;
        padding: 0.875rem 2rem;
        width: 100%;
        max-width: 280px;
    }
    
    .section-divider {
        height: 200px;
    }
    
    .section-divider-bg {
        top: -30%;
        height: 160%;
    }
}
