﻿*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    /* Primary Colors - Organic Green */
    --primary: 101 42% 43%;
    --primary-foreground: 0 0% 100%;
    --primary-dark: 101 42% 35%;
    --primary-light: 101 35% 55%;
    /* Accent - Golden Yellow */
    --accent: 50 85% 69%;
    --accent-foreground: 101 42% 25%;
    --accent-hover: 50 85% 60%;
    /* Background Colors */
    --background: 40 33% 97%;
    --foreground: 101 20% 15%;
    /* Cream & Beige Tones */
    --cream: 40 40% 95%;
    --cream-dark: 35 30% 90%;
    --beige: 35 25% 88%;
    --beige-light: 40 30% 96%;
    /* Card & Surface */
    --card: 0 0% 100%;
    --card-foreground: 101 20% 15%;
    /* Secondary - Soft Sage */
    --secondary: 101 20% 94%;
    --secondary-foreground: 101 42% 35%;
    /* Muted */
    --muted: 40 20% 93%;
    --muted-foreground: 101 15% 40%;
    /* Border & Input */
    --border: 101 15% 85%;
    --input: 101 15% 85%;
    --ring: 101 42% 43%;
    /* Sidebar */
    --sidebar-background: 101 42% 25%;
    --sidebar-foreground: 0 0% 100%;
    --sidebar-primary: 50 85% 69%;
    --sidebar-primary-foreground: 101 42% 25%;
    --sidebar-accent: 101 42% 35%;
    --sidebar-border: 101 42% 35%;
    --radius: 0.75rem;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    background-color: hsl(var(--background));
    color: hsl(var(--foreground));
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    letter-spacing: -0.02em;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Button Styles */
.btn-dairy {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 9999px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary-dairy {
    background-color: hsl(var(--primary));
    color: hsl(var(--primary-foreground));
}

    .btn-primary-dairy:hover {
        transform: translateY(-2px);
        background-color: hsl(101 42% 38%);
        box-shadow: 0 10px 25px -5px hsl(var(--primary) / 0.4);
    }

.btn-accent-dairy {
    background-color: hsl(var(--accent));
    color: hsl(var(--accent-foreground));
}

    .btn-accent-dairy:hover {
        transform: translateY(-2px);
        background-color: hsl(50 85% 60%);
        box-shadow: 0 10px 25px -5px hsl(var(--accent) / 0.4);
    }

/* Card Styles */
.card-service {
    background-color: hsl(var(--card));
    border-radius: 1rem;
    border: 1px solid hsl(var(--border) / 0.3);
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px -2px hsl(101 20% 15% / 0.08);
}

    .card-service:hover {
        transform: translateY(-8px);
        box-shadow: 0 12px 40px -8px hsl(101 20% 15% / 0.15);
    }

/* Section Styles */
.section-padding {
    padding: 4rem 0;
}

@media (min-width: 768px) {
    .section-padding {
        padding: 5rem 0;
    }
}

@media (min-width: 1024px) {
    .section-padding {
        padding: 6rem 0;
    }
}

.section-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: hsl(var(--foreground));
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 2.25rem;
    }
}

@media (min-width: 1024px) {
    .section-title {
        font-size: 3rem;
    }
}

.section-subtitle {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: hsl(var(--primary));
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.bg-cream {
    background-color: hsl(var(--cream));
}

.bg-gradient-cream {
    background: linear-gradient(180deg, hsl(40 40% 95%) 0%, hsl(35 25% 88%) 100%);
}

/* Animations */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideLeft {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideRight {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

@keyframes bounceGentle {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

.animate-fade-up {
    animation: fadeUp 0.6s ease-out forwards;
}

.animate-fade-down {
    animation: fadeDown 0.6s ease-out forwards;
}

.animate-slide-left {
    animation: slideLeft 0.6s ease-out forwards;
}

.animate-slide-right {
    animation: slideRight 0.6s ease-out forwards;
}

.animate-scale-in {
    animation: scaleIn 0.5s ease-out forwards;
}

.animate-float {
    animation: float 3s ease-in-out infinite;
}

.animate-bounce-gentle {
    animation: bounceGentle 2s ease-in-out infinite;
}

.opacity-0 {
    opacity: 0;
}

/* ============================================
           HEADER STYLES
        ============================================ */
.top-bar {
    background-color: hsl(var(--primary));
    color: hsl(var(--primary-foreground));
    padding: 0.5rem 0;
}

    .top-bar a {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        transition: color 0.3s;
    }

        .top-bar a:hover {
            color: hsl(var(--accent));
        }

.header {
    position: sticky;
    top: 0;
    z-index: 50;
    background-color: hsl(var(--card) / 0.95);
    backdrop-filter: blur(8px);
    padding: 1rem 0;
    transition: all 0.3s;
}

    .header.scrolled {
        box-shadow: 0 4px 20px -2px hsl(101 20% 15% / 0.1);
        padding: 0.5rem 0;
    }

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon {
    background-color: hsl(var(--primary));
    border-radius: 0.5rem;
    padding: 0.75rem;
    color: hsl(var(--primary-foreground));
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 700;
}

.logo-text h1 {
    font-size: 1.25rem;
    line-height: 1.2;
}

.logo-text p {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: hsl(var(--muted-foreground));
}

.nav-desktop {
    display: none;
    align-items: center;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .nav-desktop {
        display: flex;
    }
}

.nav-desktop a {
    font-weight: 500;
    color: hsl(var(--foreground));
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

    .nav-desktop a:hover {
        color: hsl(var(--primary));
    }

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

    .header-actions button {
        background: none;
        border: none;
        cursor: pointer;
        padding: 0.5rem;
        border-radius: 9999px;
        transition: background-color 0.3s;
        color: hsl(var(--foreground));
    }

        .header-actions button:hover {
            background-color: hsl(var(--secondary));
        }

.cart-btn {
    position: relative;
}

.cart-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background-color: hsl(var(--accent));
    color: hsl(var(--accent-foreground));
    font-size: 0.75rem;
    font-weight: 700;
    width: 1.25rem;
    height: 1.25rem;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu-btn {
    display: block;
}

@media (min-width: 1024px) {
    .mobile-menu-btn {
        display: none;
    }
}

/* Mobile Sidebar */
.mobile-overlay {
    position: fixed;
    inset: 0;
    background-color: hsl(var(--foreground) / 0.5);
    z-index: 50;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

    .mobile-overlay.active {
        opacity: 1;
        visibility: visible;
    }

.mobile-sidebar {
    position: fixed;
    top: 0;
    right: 0;
    height: 100%;
    width: 320px;
    max-width: 100%;
    background-color: hsl(var(--card));
    z-index: 51;
    transform: translateX(100%);
    transition: transform 0.3s;
    overflow-y: auto;
}

    .mobile-sidebar.active {
        transform: translateX(0);
    }

.mobile-sidebar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    border-bottom: 1px solid hsl(var(--border));
}

.mobile-search {
    position: relative;
    padding: 1rem 1.5rem;
}

    .mobile-search input {
        width: 100%;
        background-color: hsl(var(--secondary));
        border: 1px solid hsl(var(--border));
        border-radius: 9999px;
        padding: 0.75rem 1rem 0.75rem 3rem;
        color: hsl(var(--foreground));
        outline: none;
    }

        .mobile-search input:focus {
            border-color: hsl(var(--primary));
        }

    .mobile-search i {
        position: absolute;
        left: 2.5rem;
        top: 50%;
        transform: translateY(-50%);
        color: hsl(var(--muted-foreground));
    }

.mobile-nav {
    padding: 1rem 1.5rem;
}

    .mobile-nav a {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0.75rem;
        border-radius: 0.5rem;
        font-weight: 500;
        color: hsl(var(--foreground));
        transition: background-color 0.3s;
    }

        .mobile-nav a:hover {
            background-color: hsl(var(--secondary));
        }

.mobile-contact {
    border-top: 1px solid hsl(var(--border));
    padding: 1.5rem;
}

    .mobile-contact h3 {
        font-size: 1.125rem;
        margin-bottom: 1rem;
    }

    .mobile-contact a,
    .mobile-contact .contact-item {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        color: hsl(var(--muted-foreground));
        padding: 0.5rem 0;
        transition: color 0.3s;
    }

        .mobile-contact a:hover {
            color: hsl(var(--primary));
        }

/* ============================================
           HERO SLIDER STYLES
        ============================================ */
.hero-section {
    position: relative;
    height: 85vh;
    min-height: 600px;
    max-height: 900px;
}

.hero-slide {
    position: relative;
    height: 100%;
    width: 100%;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, hsl(101 42% 15% / 0.85) 0%, hsl(101 42% 15% / 0.6) 50%, transparent 100%);
}

.hero-content {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
    width: 100%;
}

@media (min-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.hero-text {
    color: hsl(var(--primary-foreground));
    max-width: 42rem;
}

.hero-subtitle {
    color: hsl(var(--accent));
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 1rem;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3.75rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 4.5rem;
    }
}

.hero-title-highlight {
    color: hsl(var(--accent));
}

.hero-description {
    font-size: 1.125rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    max-width: 32rem;
}

@media (min-width: 768px) {
    .hero-description {
        font-size: 1.25rem;
    }
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.hero-image {
    display: none;
    justify-content: center;
    align-items: center;
}

@media (min-width: 1024px) {
    .hero-image {
        display: flex;
    }
}

.hero-image img {
    height: 350px;
    object-fit: contain;
    filter: drop-shadow(0 25px 50px rgba(0,0,0,0.25));
}

@media (min-width: 1280px) {
    .hero-image img {
        height: 420px;
    }
}

/* Swiper Custom Styles */
.swiper-button-next,
.swiper-button-prev {
    color: hsl(0 0% 100%) !important;
    background-color: hsl(101 42% 43% / 0.8) !important;
    width: 48px !important;
    height: 48px !important;
    border-radius: 50% !important;
    backdrop-filter: blur(4px);
    transition: all 0.3s ease;
}

    .swiper-button-next:hover,
    .swiper-button-prev:hover {
        background-color: hsl(101 42% 43%) !important;
    }

    .swiper-button-next::after,
    .swiper-button-prev::after {
        font-size: 18px !important;
        font-weight: bold !important;
    }

.swiper-pagination-bullet {
    width: 12px !important;
    height: 12px !important;
    background-color: hsl(0 0% 100% / 0.5) !important;
    opacity: 1 !important;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    background-color: hsl(50 85% 69%) !important;
    width: 32px !important;
    border-radius: 6px !important;
}

@media (max-width: 768px) {
    .swiper-button-next,
    .swiper-button-prev {
        display: none !important;
    }
}

/* ============================================
           SERVICES SECTION STYLES
        ============================================ */
.services-section {
    background-color: hsl(var(--cream));
}

.services-header {
    text-align: center;
    max-width: 42rem;
    margin: 0 auto 3rem;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.service-card {
    padding: 2rem;
    text-align: center;
}

.service-icon {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 5rem;
    height: 5rem;
    margin-bottom: 1.5rem;
}

.service-icon-bg {
    position: absolute;
    inset: 0;
    background-color: hsl(var(--primary) / 0.1);
    border-radius: 9999px;
    transition: background-color 0.3s;
}

.card-service:hover .service-icon-bg {
    background-color: hsl(var(--primary) / 0.2);
}

.service-icon i {
    position: relative;
    z-index: 1;
    width: 2.5rem;
    height: 2.5rem;
    color: hsl(var(--primary));
}

.service-card h3 {
    font-size: 1.25rem;
    color: hsl(var(--foreground));
    margin-bottom: 0.75rem;
}

.service-card p {
    color: hsl(var(--muted-foreground));
    margin-bottom: 1rem;
    line-height: 1.7;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: hsl(var(--primary));
    font-weight: 600;
    transition: color 0.3s;
}

    .service-link:hover {
        color: hsl(var(--primary-dark));
    }

    .service-link span {
        transition: transform 0.3s;
    }

    .service-link:hover span {
        transform: translateX(4px);
    }

/* ============================================
           ABOUT SECTION STYLES
        ============================================ */
.about-section {
    background-color: hsl(var(--background));
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.about-images {
    position: relative;
}

.about-main-image {
    position: relative;
    z-index: 1;
}

    .about-main-image img {
        width: 100%;
        max-width: 28rem;
        border-radius: 1rem;
        box-shadow: 0 8px 30px -4px hsl(101 20% 15% / 0.12);
    }

.about-overlap-image {
    position: absolute;
    bottom: -2rem;
    right: -1rem;
    z-index: 2;
}

@media (min-width: 768px) {
    .about-overlap-image {
        right: 2rem;
    }
}

.about-overlap-image img {
    width: 12rem;
    border-radius: 1rem;
    box-shadow: 0 12px 40px -8px hsl(101 20% 15% / 0.2);
    border: 4px solid hsl(var(--card));
    transform: rotate(3deg);
    transition: transform 0.3s;
}

@media (min-width: 768px) {
    .about-overlap-image img {
        width: 16rem;
    }
}

.about-overlap-image img:hover {
    transform: rotate(0);
}

.about-decor-1 {
    position: absolute;
    top: -1rem;
    left: -1rem;
    width: 6rem;
    height: 6rem;
    background-color: hsl(var(--accent) / 0.2);
    border-radius: 9999px;
    filter: blur(40px);
}

.about-decor-2 {
    position: absolute;
    bottom: -1rem;
    right: -1rem;
    width: 8rem;
    height: 8rem;
    background-color: hsl(var(--primary) / 0.1);
    border-radius: 9999px;
    filter: blur(40px);
}

.about-content h2 {
    margin-bottom: 1.5rem;
}

.about-content p {
    color: hsl(var(--muted-foreground));
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.feature-list {
    list-style: none;
    margin-bottom: 2rem;
}

    .feature-list li {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        margin-bottom: 0.75rem;
    }

.feature-check {
    flex-shrink: 0;
    width: 1.5rem;
    height: 1.5rem;
    background-color: hsl(var(--primary));
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .feature-check i {
        width: 1rem;
        height: 1rem;
        color: hsl(var(--primary-foreground));
    }

.feature-list li span {
    color: hsl(var(--foreground));
    font-weight: 500;
}

.author-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background-color: hsl(var(--secondary));
    border-radius: 0.75rem;
}

    .author-card img {
        width: 4rem;
        height: 4rem;
        border-radius: 9999px;
        object-fit: cover;
        border: 2px solid hsl(var(--primary));
    }

    .author-card h4 {
        font-size: 1rem;
    }

    .author-card p {
        font-size: 0.875rem;
        color: hsl(var(--muted-foreground));
        margin-bottom: 0;
    }

/* ============================================
           PRODUCT SECTION STYLES
        ============================================ */
.product-section {
    background: linear-gradient(180deg, hsl(40 40% 95%) 0%, hsl(35 25% 88%) 100%);
    overflow: hidden;
}

.product-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .product-grid {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

.product-left h2 {
    margin-bottom: 1.5rem;
}

.product-left p {
    color: hsl(var(--muted-foreground));
    line-height: 1.7;
    margin-bottom: 2rem;
}

.product-center {
    position: relative;
    display: flex;
    justify-content: center;
}

.product-bg-shape {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-bg-blur {
    width: 16rem;
    height: 16rem;
    background-color: hsl(var(--primary) / 0.1);
    border-radius: 9999px;
    filter: blur(40px);
}

@media (min-width: 768px) {
    .product-bg-blur {
        width: 20rem;
        height: 20rem;
    }
}

.product-bg-circle {
    position: absolute;
    width: 12rem;
    height: 12rem;
    background-color: hsl(var(--accent) / 0.2);
    border-radius: 9999px;
}

@media (min-width: 768px) {
    .product-bg-circle {
        width: 16rem;
        height: 16rem;
    }
}

.product-center img {
    position: relative;
    z-index: 1;
    height: 20rem;
    object-fit: contain;
    filter: drop-shadow(0 25px 50px rgba(0,0,0,0.2));
}

@media (min-width: 768px) {
    .product-center img {
        height: 24rem;
    }
}

@media (min-width: 1024px) {
    .product-center img {
        height: 28rem;
    }
}

.product-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.product-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.product-feature-icon {
    flex-shrink: 0;
    width: 3rem;
    height: 3rem;
    background-color: hsl(var(--primary) / 0.1);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .product-feature-icon i {
        width: 1.5rem;
        height: 1.5rem;
        color: hsl(var(--primary));
    }

.product-feature h4 {
    font-size: 1rem;
    color: hsl(var(--foreground));
    margin-bottom: 0.25rem;
}

.product-feature p {
    font-size: 0.875rem;
    color: hsl(var(--muted-foreground));
}

/* ============================================
           PROCESS SECTION STYLES
        ============================================ */
.process-section {
    background-color: hsl(var(--secondary));
}

.process-header {
    text-align: center;
    max-width: 42rem;
    margin: 0 auto 4rem;
}

.process-timeline-desktop {
    display: none;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
}

@media (min-width: 1024px) {
    .process-timeline-desktop {
        display: grid;
    }
}

.process-step {
    position: relative;
    text-align: center;
}

.process-image-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.process-image {
    width: 7rem;
    height: 7rem;
    border-radius: 9999px;
    overflow: hidden;
    border: 4px solid hsl(var(--primary));
    box-shadow: 0 4px 20px -2px hsl(101 20% 15% / 0.1);
    margin: 0 auto;
}

    .process-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.process-number {
    position: absolute;
    bottom: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    background-color: hsl(var(--accent));
    color: hsl(var(--accent-foreground));
    font-weight: 700;
    font-size: 0.875rem;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
}

.process-connector {
    position: absolute;
    top: 3.5rem;
    left: 100%;
    width: 100%;
    height: 2px;
    border-top: 2px dashed hsl(var(--primary) / 0.3);
}

.process-step h4 {
    font-size: 1rem;
    color: hsl(var(--foreground));
    margin-bottom: 0.5rem;
}

.process-step p {
    font-size: 0.875rem;
    color: hsl(var(--muted-foreground));
}

/* Mobile Timeline */
.process-timeline-mobile {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .process-timeline-mobile {
        display: none;
    }
}

.process-step-mobile {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

    .process-step-mobile .process-image {
        width: 5rem;
        height: 5rem;
        flex-shrink: 0;
    }

    .process-step-mobile .process-number {
        font-size: 0.75rem;
        padding: 0.125rem 0.5rem;
    }

    .process-step-mobile .process-content {
        padding-top: 0.5rem;
    }

/* ============================================
           BLOG SECTION STYLES
        ============================================ */
.blog-section {
    background-color: hsl(var(--background));
}

.blog-header {
    text-align: center;
    max-width: 42rem;
    margin: 0 auto 3rem;
}

.blog-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .blog-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.blog-card {
    overflow: hidden;
}

.blog-image {
    position: relative;
    height: 14rem;
    overflow: hidden;
}

    .blog-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s;
    }

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-date {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background-color: hsl(var(--primary));
    color: hsl(var(--primary-foreground));
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    text-align: center;
}

    .blog-date .day {
        display: block;
        font-size: 1.25rem;
        font-weight: 700;
        line-height: 1;
    }

    .blog-date .month {
        font-size: 0.75rem;
        text-transform: uppercase;
        letter-spacing: 0.1em;
    }

.blog-content {
    padding: 1.5rem;
}

.blog-category {
    display: inline-block;
    font-size: 0.875rem;
    color: hsl(var(--primary));
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.blog-content h3 {
    font-size: 1.25rem;
    color: hsl(var(--foreground));
    margin-bottom: 0.75rem;
    transition: color 0.3s;
}

.blog-card:hover .blog-content h3 {
    color: hsl(var(--primary));
}

.blog-content p {
    font-size: 0.875rem;
    color: hsl(var(--muted-foreground));
    line-height: 1.7;
    margin-bottom: 1rem;
}

.blog-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: hsl(var(--primary));
    font-weight: 600;
    transition: color 0.3s;
}

    .blog-link:hover {
        color: hsl(var(--primary-dark));
    }

    .blog-link span {
        transition: transform 0.3s;
    }

    .blog-link:hover span {
        transform: translateX(4px);
    }

/* ============================================
           NEWSLETTER SECTION STYLES
        ============================================ */
.newsletter-section {
    padding: 4rem 0 5rem;
    background-color: hsl(var(--cream));
}

.newsletter-card {
    background-color: hsl(var(--card));
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 4px 20px -2px hsl(101 20% 15% / 0.08);
}

@media (min-width: 768px) {
    .newsletter-card {
        padding: 3rem;
    }
}

@media (min-width: 1024px) {
    .newsletter-card {
        padding: 4rem;
    }
}

.newsletter-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .newsletter-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.newsletter-content h2 {
    font-size: 1.875rem;
    color: hsl(var(--foreground));
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .newsletter-content h2 {
        font-size: 2.25rem;
    }
}

.newsletter-content p {
    color: hsl(var(--muted-foreground));
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.newsletter-inputs {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .newsletter-inputs {
        grid-template-columns: 1fr 1fr;
    }
}

.newsletter-form input {
    width: 100%;
    padding: 1rem 1.5rem;
    background-color: hsl(var(--background));
    border: 2px dashed hsl(var(--border));
    border-radius: 9999px;
    color: hsl(var(--foreground));
    outline: none;
    transition: border-color 0.3s;
}

    .newsletter-form input::placeholder {
        color: hsl(var(--muted-foreground));
    }

    .newsletter-form input:focus {
        border-color: hsl(var(--primary));
    }

.newsletter-form button {
    width: 100%;
}

@media (min-width: 640px) {
    .newsletter-form button {
        width: auto;
    }
}

/* ============================================
           FOOTER STYLES
        ============================================ */
.footer {
    background-color: hsl(var(--sidebar-background));
    color: hsl(var(--sidebar-foreground));
}

.footer-main {
    padding: 4rem 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer-brand .logo {
    margin-bottom: 1.5rem;
}

.footer-brand .logo-icon {
    background-color: hsl(var(--sidebar-primary));
    color: hsl(var(--sidebar-primary-foreground));
}

.footer-brand > p {
    color: hsl(var(--sidebar-foreground) / 0.8);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.social-links {
    display: flex;
    gap: 0.75rem;
}

    .social-links a {
        width: 2.5rem;
        height: 2.5rem;
        background-color: hsl(var(--sidebar-accent));
        border-radius: 9999px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s;
    }

        .social-links a:hover {
            background-color: hsl(var(--sidebar-primary));
            color: hsl(var(--sidebar-primary-foreground));
        }

    .social-links i {
        width: 1.25rem;
        height: 1.25rem;
    }

.footer-column h4 {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}

.footer-column ul {
    list-style: none;
}

    .footer-column ul li {
        margin-bottom: 0.75rem;
    }

        .footer-column ul li a {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: hsl(var(--sidebar-foreground) / 0.8);
            transition: color 0.3s;
        }

            .footer-column ul li a:hover {
                color: hsl(var(--sidebar-primary));
            }

            .footer-column ul li a .dot {
                width: 6px;
                height: 6px;
                background-color: hsl(var(--sidebar-primary));
                border-radius: 9999px;
            }

.business-hours li {
    display: flex;
    justify-content: space-between;
    color: hsl(var(--sidebar-foreground) / 0.8);
    margin-bottom: 0.75rem;
}

.emergency-box {
    background-color: hsl(var(--sidebar-accent));
    border-radius: 0.75rem;
    padding: 1rem;
    margin-top: 1.5rem;
}

    .emergency-box h5 {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        font-weight: 700;
        margin-bottom: 0.5rem;
    }

        .emergency-box h5 i {
            color: hsl(var(--sidebar-primary));
        }

    .emergency-box a {
        color: hsl(var(--sidebar-primary));
        font-weight: 700;
        font-size: 1.125rem;
    }

        .emergency-box a:hover {
            text-decoration: underline;
        }

.footer-bottom {
    border-top: 1px solid hsl(var(--sidebar-border));
    padding: 1.5rem 0;
}

.footer-bottom-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

@media (min-width: 768px) {
    .footer-bottom-inner {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-bottom p {
    font-size: 0.875rem;
    color: hsl(var(--sidebar-foreground) / 0.7);
    text-align: center;
}

@media (min-width: 768px) {
    .footer-bottom p {
        text-align: left;
    }
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

    .footer-links a {
        font-size: 0.875rem;
        color: hsl(var(--sidebar-foreground) / 0.7);
        transition: color 0.3s;
    }

        .footer-links a:hover {
            color: hsl(var(--sidebar-foreground));
        }

/* Utility Classes */
.hidden {
    display: none !important;
}

@media (min-width: 768px) {
    .md\\:block {
        display: block !important;
    }

    .md\\:hidden {
        display: none !important;
    }
}

@media (min-width: 1024px) {
    .lg\\:hidden {
        display: none !important;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}
