/* ==========================================================================
   syntheravionix.com — Indoor Plant & Botanical Styling
   Nakameguro, Tokyo, Japan
   Color Palette: Tropical Green, Terracotta, Botanical Cream
   ========================================================================== */

:root {
    /* Primary — Tropical Green Gradient */
    --primary: #2d6a4f;
    --primary-dark: #1b4332;
    --primary-light: #b7e4c7;
    --primary-lighter: #d8f3dc;
    --primary-gradient: linear-gradient(135deg, #2d6a4f 0%, #40916c 50%, #52b788 100%);

    /* Secondary — Terracotta */
    --secondary: #c1694f;
    --secondary-dark: #a0522d;
    --secondary-light: #e8c4b8;

    /* Accent — Botanical Cream */
    --accent: #f5f0e8;
    --accent-warm: #ede0d0;

    /* Neutrals */
    --text: #2c3e2d;
    --text-light: #5a6b5c;
    --text-muted: #8a9a8c;
    --bg: #fafaf7;
    --bg-alt: #f0ede6;
    --bg-white: #ffffff;
    --border: #d4cfc5;
    --border-light: #e8e4dc;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(45, 106, 79, 0.06);
    --shadow-md: 0 4px 20px rgba(45, 106, 79, 0.08);
    --shadow-lg: 0 8px 40px rgba(45, 106, 79, 0.12);
    --shadow-card: 0 2px 16px rgba(45, 106, 79, 0.07);

    /* Layout */
    --radius: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s ease;
}

/* ==========================================================================
   Base & Typography
   ========================================================================== */

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text);
    background-color: var(--bg);
    line-height: 1.7;
    font-size: 16px;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, .display-font {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 500;
    color: var(--primary-dark);
    line-height: 1.25;
}

h1 { font-size: 2.75rem; }
h2 { font-size: 2.15rem; }
h3 { font-size: 1.6rem; }
h4 { font-size: 1.25rem; }

p { margin-bottom: 1rem; }

a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition-fast);
}
a:hover {
    color: var(--primary-dark);
}

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

::selection {
    background-color: var(--primary-light);
    color: var(--primary-dark);
}

/* ==========================================================================
   Navigation
   ========================================================================== */

.navbar {
    padding: 1rem 0;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(250, 250, 247, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 0.6rem 0;
    box-shadow: var(--shadow-sm);
}

.brand-icon {
    color: var(--primary);
    transition: var(--transition);
}

.brand-text {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: 1.35rem;
    color: var(--primary-dark);
    letter-spacing: -0.02em;
}

.navbar .nav-link {
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--text);
    padding: 0.5rem 1rem;
    position: relative;
    transition: var(--transition-fast);
}

.navbar .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--primary);
    border-radius: 1px;
    transition: var(--transition);
}

.navbar .nav-link:hover::after,
.navbar .nav-link.active::after {
    width: 60%;
}

.navbar .nav-link:hover {
    color: var(--primary);
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn-botanical {
    background: var(--primary-gradient);
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 0.65rem 1.75rem;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.02em;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(45, 106, 79, 0.25);
}

.btn-botanical:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(45, 106, 79, 0.35);
}

.btn-botanical-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    border-radius: 50px;
    padding: 0.6rem 1.75rem;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}

.btn-botanical-outline:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-2px);
}

.btn-terracotta {
    background: var(--secondary);
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 0.65rem 1.75rem;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}

.btn-terracotta:hover {
    background: var(--secondary-dark);
    color: #fff;
    transform: translateY(-2px);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */

.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--primary-dark);
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

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

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(27, 67, 50, 0.82) 0%, rgba(45, 106, 79, 0.55) 50%, rgba(82, 183, 136, 0.3) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 680px;
}

.hero-section h1 {
    font-size: clamp(2.2rem, 5vw, 3.75rem);
    color: #fff;
    margin-bottom: 1.25rem;
    font-weight: 600;
    line-height: 1.15;
}

.hero-section h1 em {
    font-style: italic;
    color: var(--primary-light);
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 0.4rem 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
}

/* Leaf floating animation */
.leaf-float {
    animation: leafFloat 6s ease-in-out infinite;
}

@keyframes leafFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-8px) rotate(2deg); }
    50% { transform: translateY(-4px) rotate(-1deg); }
    75% { transform: translateY(-10px) rotate(1.5deg); }
}

.leaf-sway {
    animation: leafSway 4s ease-in-out infinite;
}

@keyframes leafSway {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(2deg); }
    75% { transform: rotate(-2deg); }
}

/* ==========================================================================
   Section Styling
   ========================================================================== */

.section-padding {
    padding: 5rem 0;
}

.section-padding-lg {
    padding: 6.5rem 0;
}

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

.section-header h2 {
    margin-bottom: 1rem;
    position: relative;
}

.section-header p {
    color: var(--text-light);
    font-size: 1.05rem;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.section-label .leaf-icon {
    font-size: 0.9rem;
}

.bg-cream { background-color: var(--accent); }
.bg-botanical { background-color: var(--primary-lighter); }
.bg-white { background-color: var(--bg-white); }
.bg-alt { background-color: var(--bg-alt); }

/* ==========================================================================
   Cards
   ========================================================================== */

.botanical-card {
    background: var(--bg-white);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid var(--border-light);
    height: 100%;
}

.botanical-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.botanical-card .card-img-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3 / 4;
}

.botanical-card .card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.botanical-card:hover .card-img-wrap img {
    transform: scale(1.05);
}

.botanical-card .card-body {
    padding: 1.25rem 1.5rem;
}

.botanical-card .card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 0.35rem;
    color: var(--primary-dark);
}

.botanical-card .card-subtitle {
    font-size: 0.82rem;
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 0.75rem;
}

.botanical-card .card-text {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* Care difficulty badges */
.care-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}

.care-badge-easy {
    background: #d8f3dc;
    color: #1b4332;
}

.care-badge-moderate {
    background: #fde68a;
    color: #78350f;
}

.care-badge-expert {
    background: #fed7aa;
    color: #9a3412;
}

.pet-safe-badge {
    background: #dbeafe;
    color: #1e40af;
}

/* Light requirement badges */
.light-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.2rem 0.6rem;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 500;
    background: var(--accent-warm);
    color: var(--text);
}

/* Price tag */
.price-tag {
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--primary-dark);
}

/* ==========================================================================
   Horizontal Card (wide layout)
   ========================================================================== */

.card-wide {
    display: flex;
    flex-direction: row;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

.card-wide:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.card-wide .card-wide-img {
    width: 40%;
    min-height: 250px;
    overflow: hidden;
}

.card-wide .card-wide-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.card-wide .card-wide-body {
    flex: 1;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* ==========================================================================
   Filter Tabs
   ========================================================================== */

.filter-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 2.5rem;
}

.filter-tab {
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    border: 1.5px solid var(--border);
    background: transparent;
    color: var(--text);
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.filter-tab:hover,
.filter-tab.active {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

/* ==========================================================================
   Gallery Grid
   ========================================================================== */

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

.gallery-item {
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    aspect-ratio: 4/3;
}

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

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(27, 67, 50, 0.5) 0%, transparent 50%);
    opacity: 0;
    transition: var(--transition);
}

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

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.25rem;
    color: #fff;
    z-index: 2;
    transform: translateY(10px);
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-caption {
    transform: translateY(0);
    opacity: 1;
}

/* ==========================================================================
   Testimonials
   ========================================================================== */

.testimonial-card {
    background: var(--bg-white);
    border-radius: var(--radius);
    padding: 2rem;
    border: 1px solid var(--border-light);
    transition: var(--transition);
    height: 100%;
}

.testimonial-card:hover {
    box-shadow: var(--shadow-md);
}

.testimonial-quote {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text);
    margin-bottom: 1.25rem;
    position: relative;
    padding-left: 1.5rem;
    border-left: 3px solid var(--primary-light);
}

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

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--primary-lighter);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-weight: 600;
    font-size: 1rem;
}

.testimonial-name {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--primary-dark);
}

.testimonial-role {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ==========================================================================
   Styling Services Section
   ========================================================================== */

.service-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid var(--border-light);
    height: 100%;
}

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

.service-card .service-img {
    aspect-ratio: 16/10;
    overflow: hidden;
}

.service-card .service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-card:hover .service-img img {
    transform: scale(1.06);
}

.service-card .service-body {
    padding: 1.75rem;
}

.service-card .service-body h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
}

.service-card .service-body p {
    font-size: 0.92rem;
    color: var(--text-light);
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.service-features li {
    padding: 0.35rem 0;
    font-size: 0.9rem;
    color: var(--text-light);
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.service-features li i {
    color: var(--primary);
    margin-top: 0.15rem;
    flex-shrink: 0;
}

/* ==========================================================================
   About Section
   ========================================================================== */

.stat-card {
    text-align: center;
    padding: 1.5rem;
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 0.35rem;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.value-card {
    padding: 2rem;
    border-radius: var(--radius);
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    text-align: center;
    transition: var(--transition);
    height: 100%;
}

.value-card:hover {
    border-color: var(--primary-light);
    box-shadow: var(--shadow-md);
}

.value-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--primary-lighter);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--primary);
    font-size: 1.4rem;
}

/* ==========================================================================
   Care Guides
   ========================================================================== */

.guide-card {
    background: var(--bg-white);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border-light);
    transition: var(--transition);
    height: 100%;
}

.guide-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.guide-card .guide-img {
    aspect-ratio: 4/3;
    overflow: hidden;
}

.guide-card .guide-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.guide-card .guide-body {
    padding: 1.5rem;
}

.guide-card h4 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
}

.schedule-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}

.schedule-table th,
.schedule-table td {
    padding: 0.85rem 1rem;
    border-bottom: 1px solid var(--border-light);
    font-size: 0.9rem;
}

.schedule-table th {
    background: var(--primary-lighter);
    color: var(--primary-dark);
    font-weight: 600;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.schedule-table tr:last-child td {
    border-bottom: none;
}

.schedule-table tr:hover td {
    background: var(--accent);
}

/* Accordion for care guides */
.care-accordion .accordion-item {
    border: 1px solid var(--border-light);
    border-radius: var(--radius) !important;
    margin-bottom: 0.75rem;
    overflow: hidden;
}

.care-accordion .accordion-button {
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    color: var(--primary-dark);
    background: var(--bg-white);
    padding: 1rem 1.25rem;
    font-size: 1.05rem;
}

.care-accordion .accordion-button:not(.collapsed) {
    background: var(--primary-lighter);
    color: var(--primary-dark);
    box-shadow: none;
}

.care-accordion .accordion-button:focus {
    box-shadow: none;
    border-color: var(--primary-light);
}

.care-accordion .accordion-body {
    padding: 1.25rem;
    font-size: 0.92rem;
    line-height: 1.7;
    color: var(--text-light);
}

/* ==========================================================================
   Plant Matchmaker
   ========================================================================== */

.matchmaker-section {
    background: linear-gradient(135deg, var(--primary-lighter) 0%, var(--accent) 100%);
}

.matchmaker-step {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    margin-bottom: 2rem;
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

.matchmaker-step.active {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
}

.step-indicator {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
}

.step-dot {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 600;
    border: 2px solid var(--border);
    color: var(--text-muted);
    background: var(--bg-white);
    transition: var(--transition);
}

.step-dot.active {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.step-dot.completed {
    background: var(--primary-light);
    color: var(--primary-dark);
    border-color: var(--primary);
}

.step-connector {
    width: 50px;
    height: 2px;
    background: var(--border);
    align-self: center;
    transition: var(--transition);
}

.step-connector.active {
    background: var(--primary);
}

/* Light selector visuals */
.light-option {
    border: 2px solid var(--border);
    border-radius: var(--radius);
    padding: 1.25rem;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    background: var(--bg-white);
}

.light-option:hover {
    border-color: var(--primary-light);
}

.light-option.selected {
    border-color: var(--primary);
    background: var(--primary-lighter);
}

.light-option i {
    font-size: 2rem;
    display: block;
    margin-bottom: 0.5rem;
    color: var(--secondary);
}

.light-option span {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text);
}

/* Range slider styling */
.botanical-range {
    -webkit-appearance: none;
    width: 100%;
    height: 8px;
    border-radius: 4px;
    background: var(--border-light);
    outline: none;
    transition: var(--transition);
}

.botanical-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--primary);
    cursor: pointer;
    border: 3px solid var(--bg-white);
    box-shadow: 0 2px 8px rgba(45, 106, 79, 0.3);
    transition: var(--transition);
}

.botanical-range::-webkit-slider-thumb:hover {
    transform: scale(1.15);
}

.botanical-range::-moz-range-thumb {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--primary);
    cursor: pointer;
    border: 3px solid var(--bg-white);
    box-shadow: 0 2px 8px rgba(45, 106, 79, 0.3);
}

/* Plant result card */
.result-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

.result-card:hover {
    box-shadow: var(--shadow-md);
}

.compatibility-score {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    margin: 0 auto 0.5rem;
}

.score-high {
    background: #d8f3dc;
    color: #1b4332;
    border: 3px solid #52b788;
}

.score-medium {
    background: #fef3c7;
    color: #78350f;
    border: 3px solid #f59e0b;
}

/* ==========================================================================
   Contact
   ========================================================================== */

.contact-form {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
}

.form-control,
.form-select {
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    padding: 0.75rem 1rem;
    font-size: 0.92rem;
    transition: var(--transition-fast);
    background: var(--bg);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(45, 106, 79, 0.1);
    background: var(--bg-white);
}

.form-label {
    font-weight: 500;
    font-size: 0.88rem;
    color: var(--text);
    margin-bottom: 0.4rem;
}

.contact-info-card {
    background: var(--primary-dark);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    color: #fff;
    height: 100%;
}

.contact-info-card h3 {
    color: #fff;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.75rem;
}

.contact-info-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.1rem;
}

.contact-info-item h6 {
    color: rgba(255, 255, 255, 0.7);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.2rem;
}

.contact-info-item p {
    color: #fff;
    margin-bottom: 0;
    font-size: 0.92rem;
}

.contact-info-item a {
    color: var(--primary-light);
}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
    background: var(--primary-dark);
    color: rgba(255, 255, 255, 0.8);
}

.footer-top {
    padding: 4rem 0 3rem;
}

.footer-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #fff;
}

.footer-desc {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
}

.footer-heading {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 1.25rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.88rem;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--primary-light);
    padding-left: 4px;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.6rem;
    display: flex;
    align-items: flex-start;
}

.footer-contact a {
    color: var(--primary-light);
}

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

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-2px);
}

.footer-bottom {
    padding: 1.25rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-attribution {
    color: rgba(255, 255, 255, 0.4);
    transition: var(--transition-fast);
}

.footer-attribution:hover {
    color: var(--primary-light);
}

/* ==========================================================================
   Cookie Consent
   ========================================================================== */

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-dark);
    color: rgba(255, 255, 255, 0.88);
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
}

.cookie-link {
    color: var(--primary-light);
    text-decoration: underline;
}

.cookie-link:hover {
    color: #fff;
}

/* ==========================================================================
   Back to Top
   ========================================================================== */

.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 99;
    box-shadow: var(--shadow-md);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

/* ==========================================================================
   Scroll Animations
   ========================================================================== */

.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.fade-in {
    opacity: 0;
    transition: opacity 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
}

/* Stagger children */
.stagger-children .fade-up:nth-child(1) { transition-delay: 0s; }
.stagger-children .fade-up:nth-child(2) { transition-delay: 0.1s; }
.stagger-children .fade-up:nth-child(3) { transition-delay: 0.2s; }
.stagger-children .fade-up:nth-child(4) { transition-delay: 0.3s; }
.stagger-children .fade-up:nth-child(5) { transition-delay: 0.4s; }
.stagger-children .fade-up:nth-child(6) { transition-delay: 0.5s; }

/* Growth transition for Plant Matchmaker */
.grow-in {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.grow-in.visible {
    opacity: 1;
    transform: scale(1);
}

/* ==========================================================================
   Success Alert
   ========================================================================== */

.alert-botanical {
    background: var(--primary-lighter);
    border: 1px solid var(--primary-light);
    color: var(--primary-dark);
    border-radius: var(--radius);
    padding: 1.25rem 1.5rem;
}

/* ==========================================================================
   Page Header (inner pages)
   ========================================================================== */

.page-header {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    padding: 8rem 0 3.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(82, 183, 136, 0.08);
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(183, 228, 199, 0.06);
}

.page-header h1 {
    color: #fff;
    font-size: clamp(2rem, 4vw, 2.75rem);
    position: relative;
    z-index: 1;
}

.page-header p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.05rem;
    position: relative;
    z-index: 1;
    max-width: 560px;
    margin: 0.75rem auto 0;
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 991.98px) {
    .navbar-collapse {
        background: var(--bg-white);
        margin-top: 0.75rem;
        padding: 1rem;
        border-radius: var(--radius);
        box-shadow: var(--shadow-lg);
    }

    .navbar .nav-link {
        padding: 0.65rem 0.75rem;
    }

    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.75rem; }

    .section-padding { padding: 3.5rem 0; }
    .section-padding-lg { padding: 4.5rem 0; }
}

@media (max-width: 767.98px) {
    h1 { font-size: 1.85rem; }
    h2 { font-size: 1.55rem; }
    h3 { font-size: 1.3rem; }

    .hero-section {
        min-height: 60vh;
        padding: 6rem 0 3rem;
    }

    .section-padding { padding: 3rem 0; }

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

    .card-wide {
        flex-direction: column;
    }

    .card-wide .card-wide-img {
        width: 100%;
        min-height: 200px;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .matchmaker-step {
        padding: 1.5rem;
    }

    .footer-top {
        padding: 3rem 0 2rem;
    }
}

@media (max-width: 575.98px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .step-connector {
        width: 25px;
    }

    .step-dot {
        width: 34px;
        height: 34px;
        font-size: 0.78rem;
    }
}

/* ==========================================================================
   Utility
   ========================================================================== */

.text-primary-custom { color: var(--primary) !important; }
.text-secondary-custom { color: var(--secondary) !important; }
.text-muted-custom { color: var(--text-muted) !important; }
.border-primary-custom { border-color: var(--primary) !important; }
.rounded-botanical { border-radius: var(--radius) !important; }

/* Leaf decoration */
.leaf-decoration {
    position: absolute;
    opacity: 0.06;
    pointer-events: none;
    z-index: 0;
}
