/* CSS Reset & Variables */
:root {
    /* Primary Colors (Natural green + Warm Gold) */
    --primary: #2E7D32;
    /* Rich Forest Green */
    --primary-light: #4CAF50;
    --primary-dark: #1B5E20;

    --accent: #E6B325;
    /* Warm Gold */
    --accent-hover: #C59A1D;

    /* Neutral & Backgrounds */
    --bg-main: #FFFFFF;
    --bg-light: #F9FAEB;
    /* Very light warm green/yellow tint */
    --text-dark: #1C2826;
    --text-muted: #556B65;
    --white: #FFFFFF;

    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;

    /* Others */
    --shadow-sm: 0 4px 6px -1px rgba(46, 125, 50, 0.05), 0 2px 4px -1px rgba(46, 125, 50, 0.03);
    --shadow-md: 0 10px 25px -5px rgba(46, 125, 50, 0.08), 0 8px 10px -6px rgba(46, 125, 50, 0.04);
    --shadow-lg: 0 20px 40px -10px rgba(46, 125, 50, 0.12);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-main);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--primary-dark);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.bg-light {
    background-color: var(--bg-light);
}

.section-padding {
    padding: 100px 0;
}

/* Typography Utilities */
.subtitle {
    display: inline-block;
    font-family: var(--font-body);
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.section-title-center {
    text-align: center;
    margin-bottom: 60px;
}

.section-title-center h2 {
    font-size: 2.5rem;
    margin-top: 8px;
}

.section-title-wrapper {
    margin-bottom: 30px;
}

.section-title-wrapper h2 {
    font-size: 2.5rem;
    margin-top: 8px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-body);
    font-weight: 600;
    padding: 12px 28px;
    border-radius: var(--radius-full);
    cursor: pointer;
    border: none;
    transition: var(--transition);
    font-size: 1rem;
}

.btn-large {
    padding: 16px 36px;
    font-size: 1.1rem;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 14px 0 rgba(46, 125, 50, 0.39);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(46, 125, 50, 0.5);
    color: var(--white);
}

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

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

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
    background-color: transparent;
}

.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 12px 0;
    box-shadow: var(--shadow-sm);
}

.navbar.scrolled .logo,
.navbar.scrolled .nav-links a {
    color: var(--primary-dark);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.custom-logo-icon {
    height: 45px; /* Sesuaikan ukuran ikon */
    width: auto;
    object-fit: contain;
}

/* Teks logo default (putih saat di hero section) */
.logo .logo-text {
    color: var(--white);
    transition: var(--transition);
}

/* Teks logo berubah hijau gelap saat navbar discroll (background putih) */
.navbar.scrolled .logo .logo-text {
    color: var(--primary-dark);
}

/* Agar logo di footer tetap putih/terang */
.footer-logo .logo-text {
    color: rgba(255, 255, 255, 0.95);
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    font-weight: 500;
    color: var(--white);
    font-size: 1rem;
    position: relative;
}

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

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

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle .bar {
    width: 25px;
    height: 3px;
    background-color: var(--white);
    transition: var(--transition);
    border-radius: 3px;
}

.navbar.scrolled .menu-toggle .bar {
    background-color: var(--primary-dark);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(28, 40, 38, 0.8) 0%, rgba(28, 40, 38, 0.4) 60%, rgba(28, 40, 38, 0.1) 100%);
}

.hero-content {
    max-width: 700px;
    color: var(--white);
    padding-top: 40px;
}

.hero h1 {
    color: var(--white);
    font-size: 4.5rem;
    margin-bottom: 24px;
}

.hero h1 span {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 3rem;
    display: block;
    margin-top: 8px;
    color: rgba(255, 255, 255, 0.9);
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.85);
    max-width: 600px;
}

.hero-actions {
    display: flex;
    gap: 16px;
}

.hero-actions .btn-outline {
    border-color: var(--white);
    color: var(--white);
}

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

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    object-position: top center;
    transition: var(--transition);
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background-color: var(--white);
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    text-align: center;
    border: 1px solid var(--bg-light);
    transform: translate(-40px, -40px);
}

.about-badge .number {
    display: block;
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

.about-badge .text {
    font-weight: 600;
    color: var(--text-muted);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-text p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.features-list li {
    display: flex;
    gap: 20px;
}

.icon-box {
    width: 60px;
    height: 60px;
    background-color: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
    flex-shrink: 0;
    transition: var(--transition);
}

.features-list li:hover .icon-box {
    background-color: var(--primary);
    color: var(--white);
}

.features-list h4 {
    font-family: var(--font-body);
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.features-list p {
    margin-bottom: 0;
    font-size: 1rem;
}

/* Products Section */
.product-filters {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    background: transparent;
    border: none;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-muted);
    cursor: pointer;
    padding: 8px 16px;
    position: relative;
    transition: var(--transition);
}

.filter-btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition);
}

.filter-btn.active,
.filter-btn:hover {
    color: var(--primary);
    font-weight: 600;
}

.filter-btn.active::after,
.filter-btn:hover::after {
    width: 80%;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.product-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

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

.product-img {
    position: relative;
    height: 300px;
    /* Diperbesar dari 250px agar gambar lebih leluasa */
    background-color: var(--white);
    overflow: hidden;
}

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

.product-img img.img-contain {
    object-fit: contain;
    padding: 10px;
}

.product-card:hover .product-img img {
    transform: scale(1.1);
}

.badge-new {
    position: absolute;
    top: 16px;
    left: 16px;
    background-color: var(--accent);
    color: var(--white);
    padding: 6px 12px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.product-info {
    padding: 16px 20px;
    /* Padding diperkecil agar list putih tidak terlalu besar */
    text-align: center;
}

.product-info h3 {
    font-family: var(--font-body);
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.product-info p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 24px;
}

.product-btn {
    width: 100%;
}

/* Gallery Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 250px;
    gap: 20px;
}

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

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(27, 94, 32, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-overlay i {
    color: var(--white);
    font-size: 2rem;
    transform: translateY(20px);
    transition: var(--transition);
}

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

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

.gallery-item:hover .gallery-overlay i {
    transform: translateY(0);
}

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

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

.item-3 {
    grid-column: span 1;
}

.item-4 {
    grid-column: span 1;
}

.item-5 {
    grid-column: span 2;
}

/* Testimonials */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    position: relative;
}

.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 20px;
    left: 20px;
    font-family: var(--font-heading);
    font-size: 6rem;
    color: var(--bg-light);
    line-height: 1;
    z-index: 0;
}

.ratings {
    color: var(--accent);
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.quote {
    font-size: 1.05rem;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.customer-info {
    display: flex;
    align-items: center;
    gap: 16px;
    position: relative;
    z-index: 1;
}

.customer-info img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.customer-info h4 {
    font-family: var(--font-body);
    font-size: 1rem;
    margin-bottom: 4px;
}

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

/* Contact */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.contact-info {
    padding: 60px;
}

.contact-info p {
    color: var(--text-muted);
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-details li {
    display: flex;
    gap: 20px;
}

.c-icon {
    width: 50px;
    height: 50px;
    background-color: var(--bg-light);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.c-text h4 {
    font-family: var(--font-body);
    font-size: 1.1rem;
    margin-bottom: 6px;
}

.c-text p,
.c-text a {
    color: var(--text-muted);
}

.c-text a:hover {
    color: var(--primary);
}

.contact-map {
    height: 100%;
    min-height: 400px;
    padding: 20px;
}

/* Footer */
.footer {
    background-color: var(--primary-dark);
    color: rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    padding: 80px 24px;
}

.footer-logo {
    color: var(--white);
    margin-bottom: 20px;
}

.footer-brand p {
    margin-bottom: 30px;
    max-width: 300px;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

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

.footer-links h4 {
    color: var(--white);
    font-family: var(--font-body);
    font-size: 1.2rem;
    margin-bottom: 24px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer-bottom {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 24px 0;
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom .dev {
    font-size: 0.9rem;
}

/* Floating WA Button */
.floating-wa {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.4);
    z-index: 99;
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.floating-wa:hover {
    transform: scale(1.1);
    background-color: #1EBE5D;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Responsive Design */
@media (max-width: 991px) {

    .about-grid,
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 3.5rem;
    }

    .hero h1 span {
        font-size: 2.2rem;
    }

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

    .item-1,
    .item-2,
    .item-5 {
        grid-column: span 2;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom .container {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--white);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        transition: right 0.4s ease;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    }

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

    .nav-links a {
        color: var(--text-dark);
        font-size: 1.2rem;
    }

    .nav-cta {
        display: none;
        /* Hide button in mobile navbar */
    }

    .menu-toggle.active .bar:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
        background-color: var(--text-dark);
    }

    .menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active .bar:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
        background-color: var(--text-dark);
    }

    .hero-content {
        text-align: center;
        padding-top: 20px;
    }

    .hero-actions {
        justify-content: center;
        flex-direction: column;
        gap: 12px;
    }

    .hero h1 {
        font-size: 2.8rem;
    }

    .hero h1 span {
        font-size: 1.8rem;
    }

    .section-title-center h2,
    .section-title-wrapper h2 {
        font-size: 2rem;
    }

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

    .contact-info {
        padding: 40px 24px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2.2rem;
    }

    .hero h1 span {
        font-size: 1.5rem;
    }

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

    .item-1,
    .item-2,
    .item-3,
    .item-4,
    .item-5 {
        grid-column: span 1;
    }
}

/* Company Info Section */
.company-info {
    background: linear-gradient(135deg, #fdfcfb 0%, #e2d1c3 100%);
    position: relative;
}

.info-content-box {
    max-width: 1000px;
    margin: 0 auto;
    padding: 3.5rem;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(15px);
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: var(--shadow-md);
    line-height: 1.9;
    text-align: justify;
}

.info-content-box p {
    margin-bottom: 2rem;
    font-size: 1.15rem;
    color: var(--text-dark);
}

.info-content-box p strong {
    color: var(--primary);
    font-weight: 700;
}

.info-content-box p:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .info-content-box {
        padding: 2.5rem 1.5rem;
        text-align: left;
    }

    .info-content-box p {
        font-size: 1.05rem;
    }
}

/* Cara Pemesanan Section */
.ordering-steps {
    position: relative;
    background: linear-gradient(135deg, rgba(240, 249, 244, 0.4) 0%, rgba(255, 255, 255, 1) 50%, rgba(253, 242, 244, 0.2) 100%);
}

.order-title {
    position: relative;
    padding-bottom: 20px;
    display: inline-block;
    color: #313f38;
    font-size: 2.2rem;
    font-family: var(--font-heading);
}

.order-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #a0b8a6;
}

.steps-grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1000px;
    margin: 0 auto;
}

.step-card {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 30px;
    position: relative;
}

.step-card:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 15%;
    height: 70%;
    width: 1px;
    background-color: #f0f0f0;
}

.step-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 2px solid #a0b8a6;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    font-family: var(--font-heading);
    color: #8da894;
    margin-bottom: 25px;
    background-color: var(--white);
}

.step-content h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: #313f38;
    margin-bottom: 12px;
}

.step-content p {
    color: #6b7571;
    font-size: 0.95rem;
    line-height: 1.6;
}

.btn-dark-wa {
    background-color: #2c312e;
    color: var(--white);
    padding: 14px 32px;
    border-radius: var(--radius-full);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    text-decoration: none;
    cursor: pointer;
    border: none;
}

.btn-dark-wa:hover {
    background-color: #1a1d1b;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

@media (max-width: 768px) {
    .steps-grid {
        flex-direction: column;
        gap: 50px;
    }
    .step-card:not(:last-child)::after {
        display: none;
    }
}

/* Mekanisme Luar Kota */
.out-of-town-delivery {
    margin: 50px auto 0;
    background: rgba(160, 184, 166, 0.12);
    padding: 30px;
    border-radius: var(--radius-md);
    border: 1px dashed #a0b8a6;
    text-align: center;
    max-width: 900px;
}

.out-of-town-delivery h4 {
    font-family: var(--font-heading);
    color: var(--primary-dark);
    font-size: 1.3rem;
    margin-bottom: 24px;
}

.flow-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.flow-item {
    background: var(--white);
    padding: 12px 20px;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
    justify-content: center;
}

.flow-item i {
    color: var(--primary);
    font-size: 1.1rem;
}

.flow-arrow {
    color: #a0b8a6;
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .flow-container {
        flex-direction: column;
    }
    .flow-item {
        width: 100%;
    }
    .flow-arrow {
        transform: rotate(90deg);
        margin: 5px 0;
    }
}