/* ========================================
   RESET & BASE STYLES
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colors - JYLTOW Premium Palette */
    --primary: #065F46; /* Deep Emerald Green */
    --primary-dark: #044E39;
    --primary-light: #10B981;
    --secondary: #004085; /* Deep Blue - keeping for contrast */
    --secondary-light: #3B82F6;
    --accent: #D4AF37; /* Premium Gold */
    --accent-light: #FCD34D;


    /* Neutrals */
    --black: #0F170A;
    --dark: #1A1F16;
    --gray-900: #1A1F16;
    --gray-800: #33392F;
    --gray-700: #4D5447;
    --gray-600: #666D60;
    /* AA Pass on white */
    --gray-500: #808778;
    --gray-400: #9AA191;
    --gray-300: #B4BBAA;
    --gray-200: #E8EFE0;
    --gray-100: #F4F6F2;
    --white: #FFFFFF;

    /* Typography */
    --font-family: 'Outfit', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    --spacing-3xl: 6rem;

    /* Border Radius */
    --radius-sm: 0.5rem;
    --radius-md: 1rem;
    --radius-lg: 1.5rem;
    --radius-xl: 2rem;

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);

    /* Transitions */
    --transition-fast: 150ms ease-in-out;
    --transition-base: 250ms ease-in-out;
    --transition-slow: 350ms ease-in-out;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-family);
    color: var(--gray-900);
    background-color: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

.top-ribbon {
    background: var(--primary-dark);
    color: var(--white);
    padding: 0.5rem 0;
    font-size: 0.85rem;
    font-weight: 500;
}

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

.ribbon-link {
    color: var(--white);
    text-decoration: underline;
    font-weight: 700;
}

.navbar {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--gray-200);
    transition: all var(--transition-base);
}

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

.nav-support {
    display: flex;
    align-items: center;
}

.support-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    font-weight: 700;
    text-decoration: none;
    font-size: 1.1rem;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
}

.support-btn:hover {
    background: var(--gray-100);
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--black);
}

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: float 3s ease-in-out infinite;
}

.logo-icon svg {
    color: var(--primary);
    transition: all var(--transition-base);
}

.logo:hover .logo-icon svg {
    color: var(--secondary);
    transform: rotate(15deg);
}

.logo-img {
    height: 50px;
    width: auto;
    transition: all var(--transition-base);
}

/* Logo in navbar */
.navbar .logo-img {
    /* Apply green filter to match brand primary color (#065F46) */
    filter: brightness(0) saturate(100%) invert(24%) sepia(88%) saturate(456%) hue-rotate(114deg) brightness(94%) contrast(96%);
}

/* Logo in footer */
.footer .logo-img {
    filter: none;
}

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

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-5px);
    }
}

.logo-text {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.location-badge {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary);
    background: var(--gray-100);
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
}

.nav-link {
    color: var(--gray-700);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color var(--transition-fast);
    position: relative;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width var(--transition-base);
}

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

.nav-link-cta {
    background: var(--primary);
    color: var(--white);
    padding: 0.625rem 1.5rem;
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

.nav-link-cta::after {
    display: none;
}

.nav-link-cta:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: var(--gray-700);
    border-radius: 2px;
    transition: all var(--transition-base);
}

.mobile-menu {
    position: fixed;
    top: 90px;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    padding: var(--spacing-lg);
    flex-direction: column;
    gap: var(--spacing-md);
    z-index: 998;
    transform: translateY(-130%);
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
}

.mobile-menu.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.mobile-link {
    color: var(--gray-700);
    text-decoration: none;
    font-weight: 500;
    padding: var(--spacing-sm);
    transition: color var(--transition-fast);
}

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

.mobile-link-cta {
    background: var(--primary);
    color: var(--white) !important;
    text-align: center;
    border-radius: var(--radius-lg);
    padding: 0.75rem !important;
    margin-top: 0.5rem;
    font-weight: 700;
}

.mobile-link-cta:hover {
    background: var(--primary-dark);
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--dark);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('images/hero-bg.png') center/cover no-repeat;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(15, 23, 10, 0.8) 0%, rgba(15, 23, 10, 0.4) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: var(--white);
    max-width: 900px;
    padding: var(--spacing-3xl) 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.625rem 1.5rem;
    border-radius: 2rem;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: var(--spacing-lg);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: #4ADE80;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: var(--spacing-md);
    letter-spacing: -0.02em;
}

.gradient-text {
    background: linear-gradient(135deg, #FCD34D 0%, #F59E0B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto var(--spacing-xl);
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-2xl);
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: var(--spacing-xl);
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--white);
    /* Pure white for max contrast on dark hero */
    opacity: 0.9;
}

.product-tiles {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-md);
    margin-top: var(--spacing-2xl);
    width: 100%;
}

.product-tile {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    text-align: center;
    text-decoration: none;
    transition: all var(--transition-base);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.product-tile:hover {
    background: var(--white);
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: var(--shadow-2xl);
}

.tile-icon {
    width: 64px;
    height: 64px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
}

.product-tile:hover .tile-icon {
    background: var(--primary);
    color: var(--white);
}

.tile-label {
    color: var(--white);
    font-weight: 700;
    font-size: 1rem;
    transition: color var(--transition-base);
}

.product-tile:hover .tile-label {
    color: var(--primary);
}

@media (max-width: 991px) {
    .product-tiles {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .product-tiles {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-sm);
    }

    .product-tile {
        padding: var(--spacing-md);
        gap: 0.5rem;
    }

    .tile-icon {
        width: 44px;
        height: 44px;
    }

    .tile-icon svg {
        width: 24px;
        height: 24px;
    }

    .tile-label {
        font-size: 0.8rem;
    }
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all var(--transition-base);
    cursor: pointer;
    border: 2px solid transparent;
    white-space: nowrap;
}

.btn-large {
    padding: 1.125rem 2.5rem;
    font-size: 1.1rem;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.4);
}

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

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-light {
    background: var(--white);
    color: var(--primary);
}

.btn-light:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

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

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

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

.btn-outline-primary:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(35, 65, 10, 0.2);
}

/* ========================================
   ANIMATIONS
   ======================================== */
.fade-in {
    animation: fadeIn 0.8s ease-out;
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Stagger animation delays */
.fade-in-up:nth-child(1) {
    animation-delay: 0.1s;
    animation-fill-mode: backwards;
}

.fade-in-up:nth-child(2) {
    animation-delay: 0.2s;
    animation-fill-mode: backwards;
}

.fade-in-up:nth-child(3) {
    animation-delay: 0.3s;
    animation-fill-mode: backwards;
}

.fade-in-up:nth-child(4) {
    animation-delay: 0.4s;
    animation-fill-mode: backwards;
}

/* ========================================
   SECTIONS
   ======================================== */
.services,
.how-it-works,
.coverage,
.join {
    padding: var(--spacing-3xl) 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-2xl);
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.1), rgba(0, 78, 137, 0.1));
    color: var(--primary);
    padding: 0.5rem 1.25rem;
    border-radius: 2rem;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: var(--spacing-md);
    border: 1px solid rgba(220, 38, 38, 0.2);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--black);
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--gray-700);
    max-width: 600px;
    margin: 0 auto;
}

/* ========================================
   SERVICES GRID
   ======================================== */
.services {
    background: var(--gray-100);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-card {
    position: relative;
    height: 500px;
    border-radius: 32px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.service-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.9) 0%,
            rgba(0, 0, 0, 0.4) 50%,
            transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2.5rem;
    transition: all 0.5s ease;
}

.service-card:hover .service-overlay {
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.95) 0%,
            rgba(0, 0, 0, 0.6) 60%,
            rgba(0, 0, 0, 0.2) 100%);
}

.service-content {
    color: white;
}

.service-title-new {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
}

.service-desc-new {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    max-width: 90%;
}

.service-badges {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.service-badge-pill {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px) saturate(180%);
    -webkit-backdrop-filter: blur(12px) saturate(180%);
    padding: 0.6rem 1.2rem;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    letter-spacing: 0.02em;
}

.btn-card-action {
    display: block;
    width: 100%;
    padding: 1.25rem;
    background: white;
    color: black;
    text-align: center;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-card-action:hover {
    transform: scale(1.03);
    background: var(--primary);
    color: white;
}

.service-card.featured {
    border: 2px solid var(--primary);
}

.featured-tag {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    background: var(--primary);
    color: var(--white);
    padding: 0.5rem 1.25rem;
    border-radius: 2rem;
    font-size: 0.75rem;
    font-weight: 800;
    z-index: 10;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}



/* ========================================
   FAQ SECTION
   ======================================== */
.faq {
    background: var(--white);
    padding: var(--spacing-3xl) 0;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--gray-200);
    padding: 1.5rem 0;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    text-align: left;
    gap: 1.5rem;
}

.faq-question:focus {
    outline: none;
}

.faq-question h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--black);
    margin: 0;
    transition: color 0.3s ease;
}

.faq-item:hover .faq-question h3 {
    color: var(--primary);
}

.faq-icon {
    width: 20px;
    height: 20px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-plus {
    position: relative;
    width: 14px;
    height: 2px;
    background: var(--primary);
    /* Use primary color instead of white */
    border-radius: 2px;
}

.faq-plus::before {
    content: '';
    position: absolute;
    width: 2px;
    height: 14px;
    background: var(--primary);
    left: 6px;
    top: -6px;
    border-radius: 2px;
    transition: opacity 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-item.active .faq-plus::before {
    opacity: 0;
    /* Turn + into - when active */
}


.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    opacity: 1;
    margin-top: 1rem;
}

.faq-answer p {
    color: var(--gray-700);
    /* Darker gray for better contrast on light background */
    line-height: 1.7;
    font-size: 1.05rem;
    margin: 0;
}

/* ========================================
   WORKSHOP SERVICES
   ======================================== */
.workshop-services {
    padding: var(--spacing-3xl) 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.workshop-services.dark-section {
    background: var(--primary);
    background-image: radial-gradient(circle at 70% 20%, rgba(255, 255, 255, 0.1), transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.05), transparent 50%);
}

.workshop-services.dark-section .section-badge {
    color: var(--white) !important;
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.workshop-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: var(--spacing-3xl);
    align-items: center;
    margin-top: var(--spacing-2xl);
}

.workshop-visual {
    position: relative;
    min-height: 500px;
}

.quote-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-xl);
    position: absolute;
    width: 320px;
    transition: all var(--transition-slow);
    border: 1px solid var(--gray-200);
    color: var(--black);
}

.quote-card .workshop-name {
    color: var(--black) !important;
}

.quote-card .workshop-rating {
    color: var(--gray-800) !important;
}

.quote-card .quote-time {
    color: var(--gray-800) !important;
}

.quote-card .include-item {
    color: var(--gray-800) !important;
}

.quote-card .quote-price {
    color: var(--secondary) !important;
}

.quote-card .bid-notification {
    color: var(--primary) !important;
}


.quote-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-2xl);
}

.quote-1 {
    top: 0;
    left: 0;
    z-index: 1;
    animation: floatCard 6s ease-in-out infinite;
}

.quote-2 {
    top: 120px;
    left: 100px;
    z-index: 3;
    animation: floatCard 6s ease-in-out infinite 2s;
}

.quote-3 {
    top: 240px;
    left: 0;
    z-index: 2;
    animation: floatCard 6s ease-in-out infinite 4s;
}

.featured-quote {
    border: 2.5px solid var(--secondary);
    box-shadow: 0 10px 40px rgba(0, 64, 133, 0.3);
}

.best-value-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--secondary);
    color: var(--white);
    padding: 0.375rem 1rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 15px rgba(0, 64, 133, 0.4);
}

.quote-header {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
}

.workshop-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
}

.workshop-avatar svg {
    color: var(--primary);
}

.workshop-name {
    font-weight: 700;
    color: var(--black);
    margin-bottom: 0.25rem;
}

.workshop-rating {
    font-size: 0.85rem;
    color: var(--gray-600);
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.workshop-rating svg {
    color: var(--accent);
}

.quote-details {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: var(--spacing-md);
    padding: var(--spacing-md) 0;
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
}

.quote-price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--secondary);
}

.quote-time {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-700);
    font-size: 0.95rem;
}

.quote-time svg {
    color: var(--secondary);
}

.quote-includes {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.include-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-700);
    font-size: 0.9rem;
}

.include-item svg {
    color: var(--primary);
}

.workshop-features {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xl);
}

.workshop-feature {
    text-align: left;
}

.feature-icon-large {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.1), rgba(0, 78, 137, 0.1));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-md);
    transition: all var(--transition-base);
}

.feature-icon-large svg {
    color: var(--primary);
    transition: all var(--transition-base);
}

.workshop-feature:hover .feature-icon-large {
    transform: scale(1.1);
    box-shadow: var(--shadow-lg);
}

.workshop-feature:hover .feature-icon-large svg {
    color: var(--secondary);
}

.workshop-feature h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: var(--spacing-sm);
}

.workshop-feature p {
    color: var(--gray-800);
    /* Darker for better contrast */
    line-height: 1.6;
}

/* Dark Section Overrides & New Components */
.text-white {
    color: var(--white) !important;
}

.text-gray-600 {
    color: var(--gray-600) !important;
}

.text-gray-500 {
    color: var(--gray-500) !important;
}

.text-gray-300 {
    color: var(--gray-300) !important;
}

.feature-icon-large.glass-icon {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.feature-icon-large.glass-icon svg {
    color: var(--white);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.workshop-feature:hover .feature-icon-large.glass-icon svg {
    color: var(--white);
    /* Fix hover contrast */
}

.bid-notification {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--gray-100);
}

.sample-badge {
    font-size: 0.65rem;
    background: rgba(220, 38, 38, 0.1);
    color: var(--primary);
    padding: 2px 6px;
    border-radius: 4px;
    margin-left: auto;
    border: 1px solid rgba(220, 38, 38, 0.2);
}

.pulsing-dot {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.7);
    animation: dotPulse 1.5s infinite;
}

@keyframes dotPulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 6px rgba(220, 38, 38, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(220, 38, 38, 0);
    }
}

.quote-actions {
    margin-top: var(--spacing-sm);
}

.btn-sm {
    width: 100%;
    padding: 0.6rem;
    border: none;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.btn-accept {
    background: var(--gray-100);
    color: var(--gray-700);
}

.btn-accept:hover {
    background: var(--gray-200);
    color: var(--black);
}

.btn-accept-primary {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 10px rgba(220, 38, 38, 0.2);
}

.btn-accept-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 6px 15px rgba(220, 38, 38, 0.3);
}

/* ========================================
   HOW IT WORKS
   ======================================== */
.steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-2xl);
    flex-wrap: wrap;
}

.step {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
    font-size: 1.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-md);
    box-shadow: 0 8px 20px rgba(220, 38, 38, 0.3);
}

.step-content {
    margin-bottom: var(--spacing-md);
}

.step-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: var(--spacing-sm);
}

.step-description {
    color: var(--gray-600);
    line-height: 1.6;
}

.step-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.2;
    transition: all var(--transition-base);
}

.step:hover .step-visual {
    opacity: 0.4;
}

.step-visual svg {
    color: var(--primary);
}

.step-connector {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    position: relative;
    align-self: flex-start;
    margin-top: 30px;
}

.step-connector::after {
    content: '→';
    position: absolute;
    right: -10px;
    top: -10px;
    color: var(--primary);
    font-size: 1.5rem;
}

.cta-center {
    text-align: center;
}

/* ========================================
   COVERAGE AREA
   ======================================== */
.coverage {
    background: var(--gray-50);
    padding: var(--spacing-3xl) 0;
    overflow: hidden;
}

.coverage-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
}

.coverage-description {
    font-size: 1.15rem;
    color: var(--gray-600);
    margin: 1.5rem 0 2.5rem;
    line-height: 1.8;
}

.coverage-cities {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
}

.city-tag {
    background: var(--gray-100);
    padding: 0.6rem 1.2rem;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--gray-700);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid transparent;
}

.city-tag svg {
    color: var(--primary);
    width: 14px;
    height: 14px;
    opacity: 0.7;
}

.city-tag:hover {
    background: var(--white);
    transform: translateY(-3px);
    border-color: var(--primary-light);
    color: var(--primary);
    box-shadow: 0 10px 20px rgba(220, 38, 38, 0.1);
}

.city-tag:hover svg {
    opacity: 1;
}

.coverage-note {
    font-size: 0.95rem;
    color: var(--gray-500);
    padding: 1rem 0;
    border-top: 1px solid var(--gray-200);
}

.coverage-map {
    position: relative;
    border-radius: 40px;
    background: #0f172a;
    height: 550px;
    overflow: hidden;
    box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.25);
}

.map-placeholder {
    width: 100%;
    height: 100%;
    position: relative;
    background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 30px 30px;
}

.map-placeholder::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, transparent 0%, #0f172a 80%);
}

.map-marker {
    position: absolute;
    z-index: 5;
}

.main-marker {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.marker-inner {
    width: 20px;
    height: 20px;
    background: var(--primary);
    border-radius: 50%;
    border: 4px solid rgba(220, 38, 38, 0.3);
    position: relative;
    z-index: 2;
}

.marker-ripple {
    position: absolute;
    inset: -40px;
    border: 1px solid rgba(220, 38, 38, 0.4);
    border-radius: 50%;
    animation: markerRipple 3s linear infinite;
}

.marker-ripple:nth-child(2) {
    animation-delay: 1.5s;
}

@keyframes markerRipple {
    0% {
        transform: scale(0.5);
        opacity: 0.8;
    }

    100% {
        transform: scale(2.5);
        opacity: 0;
    }
}

.secondary-marker .marker-inner {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 991px) {
    .coverage-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .coverage-map {
        height: 400px;
    }
}

.marker-icon-small svg {
    color: var(--white);
}

/* ========================================
   JOIN AS PROFESSIONAL
   ======================================== */
.join {
    background: var(--gray-100);
    padding: var(--spacing-3xl) 0;
    overflow: hidden;
}

.join-content {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 5rem;
    align-items: center;
}

.join-visual {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.join-visual::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(220, 38, 38, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.join-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 32px;
    padding: 2rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
    position: absolute;
    width: 320px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.join-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 40px 80px -15px rgba(0, 0, 0, 0.15);
    background: white;
}

.card-1 {
    top: 60px;
    left: 20px;
    z-index: 2;
    animation: floatCard 6s ease-in-out infinite;
}

.card-2 {
    bottom: 60px;
    right: 20px;
    z-index: 1;
    animation: floatCard 6s ease-in-out infinite 3s;
}

@keyframes floatCard {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-30px);
    }
}

.card-header {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.avatar {
    width: 60px;
    height: 60px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--primary), #ef4444);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(220, 38, 38, 0.2);
}

.avatar svg {
    color: var(--white);
    width: 28px;
    height: 28px;
}

.card-name {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 0.35rem;
}

.card-rating {
    font-size: 0.9rem;
    color: var(--gray-600);
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-weight: 500;
}

.card-rating svg {
    color: #fbbf24;
}

.card-stats {
    background: var(--gray-50);
    padding: 1.5rem;
    border-radius: 24px;
    text-align: center;
}

.stat-value {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.25rem;
    letter-spacing: -0.02em;
}

.stat-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-700);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.join-description {
    font-size: 1.15rem;
    color: var(--gray-700);
    margin: 1.5rem 0 2.5rem;
    line-height: 1.8;
}

.join-benefits {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.benefit {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.benefit-icon {
    width: 48px;
    height: 48px;
    background: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.benefit-content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 0.5rem;
}

.benefit-content p {
    font-size: 0.95rem;
    color: var(--gray-700);
    line-height: 1.5;
}

@media (max-width: 991px) {
    .join-content {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .join-visual {
        height: 500px;
    }

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

.benefit-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.1), rgba(0, 78, 137, 0.1));
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
}

.benefit-icon svg {
    color: var(--primary);
    transition: all var(--transition-base);
}

.benefit:hover .benefit-icon {
    transform: scale(1.1);
}

.benefit:hover .benefit-icon svg {
    color: var(--secondary);
}

.benefit-content h4 {
    font-weight: 700;
    color: var(--black);
    margin-bottom: 0.25rem;
}

.benefit-content p {
    color: var(--gray-700);
    font-size: 0.95rem;
}

/* ========================================
   CTA SECTION
   ======================================== */
.cta-section {
    background: var(--secondary);
    padding: var(--spacing-3xl) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: var(--spacing-sm);
}

.cta-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--spacing-xl);
}

.cta-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: var(--dark);
    color: var(--gray-400);
    padding: var(--spacing-3xl) 0 var(--spacing-lg);
    border-top: 4px solid var(--primary);
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: var(--spacing-2xl);
    margin-bottom: var(--spacing-2xl);
}

.footer-brand {
    flex: 0 0 280px;
    max-width: 100%;
}

.footer-links {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-lg);
}

.footer-brand .logo {
    margin-bottom: var(--spacing-md);
}

.footer-tagline {
    color: var(--gray-400);
    line-height: 1.6;
}

.footer-title {
    color: var(--white);
    font-weight: 800;
    margin-bottom: var(--spacing-lg);
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-link {
    display: block;
    color: var(--gray-400);
    text-decoration: none;
    margin-bottom: var(--spacing-sm);
    transition: all var(--transition-fast);
}

.footer-link:hover {
    color: var(--white);
    transform: translateX(5px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--spacing-lg);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copyright {
    color: var(--gray-400);
    font-size: 0.9rem;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 1024px) {

    .coverage-content,
    .join-content {
        grid-template-columns: 1fr;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-xl);
    }

    .coverage-map,
    .join-visual {
        order: -1;
    }

    .join-visual {
        height: 400px;
    }

    .card-1 {
        left: 10%;
    }

    .card-2 {
        right: 10%;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero-cta {
        flex-direction: column;
        width: 100%;
    }

    .hero-cta .btn {
        width: 100%;
        max-width: 300px;
    }

    .hero-stats {
        gap: var(--spacing-md);
    }

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

    .steps {
        flex-direction: column;
    }

    .step-connector {
        display: none;
    }

    .footer-content {
        flex-direction: column;
        gap: var(--spacing-xl);
    }

    .footer-brand {
        flex: 0 0 auto;
        width: 100%;
        text-align: center;
        margin-bottom: var(--spacing-lg);
    }

    .footer-links {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--spacing-lg);
    }

    .map-placeholder {
        height: 350px;
    }

    .join-visual {
        height: auto;
        /* Allow auto height */
        padding: var(--spacing-lg) 0;
    }

    .join-card {
        width: 260px;
        /* Reduced width */
        position: relative !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        margin: 0 auto var(--spacing-md);
        /* Center */
        animation: none !important;
    }

    /* Workshop Services Mobile */
    .workshop-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }

    .workshop-visual {
        min-height: auto;
        position: relative;
        padding-bottom: var(--spacing-2xl);
    }

    .quote-card,
    .emergency-quote {
        position: relative !important;
        width: 100% !important;
        max-width: 300px !important;
        /* Reduced width */
        margin: -30px auto var(--spacing-md) !important;
        /* Centered */
        top: auto !important;
        left: auto !important;
        transform: none !important;
    }

    .quote-1,
    .quote-3 {
        transform: scale(0.9) !important;
        opacity: 0.9;
    }

    .quote-2 {
        transform: scale(1.02) !important;
        z-index: 10;
        box-shadow: var(--shadow-xl);
    }

    .quote-1,
    .quote-2,
    .quote-3 {
        animation: none !important;
        /* Stop floating on mobile for stability */
    }

    .workshop-features {
        gap: var(--spacing-lg);
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--spacing-md);
    }

    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .btn-large {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

/* ========================================
   BLOG HORIZONTAL SCROLL
   ======================================== */
.blog-scroll-container {
    overflow-x: auto;
    padding: 10px 0 30px;
    margin: 0 -1rem;
    /* Allow scroll to hit edges */
    padding: 0 1rem;
    scrollbar-width: thin;
    scrollbar-color: var(--primary) transparent;
    -ms-overflow-style: -ms-autohiding-scrollbar;
}

.blog-scroll-container::-webkit-scrollbar {
    height: 6px;
}

.blog-scroll-container::-webkit-scrollbar-track {
    background: transparent;
}

.blog-scroll-container::-webkit-scrollbar-thumb {
    background: var(--gray-300);
    border-radius: 10px;
}

.blog-row {
    display: flex;
    gap: 1.5rem;
    width: max-content;
    padding: 10px 0;
}

#blog .service-card {
    flex: 0 0 320px;
    /* Smaller width */
    height: 400px;
    /* Smaller height */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

#blog .service-title-new {
    font-size: 1.4rem;
    line-height: 1.2;
}

#blog .service-desc-new {
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
}

#blog .service-overlay {
    padding: 1.75rem;
}

#blog .service-badges {
    margin-bottom: 1.5rem;
    gap: 0.5rem;
}

#blog .service-badge-pill {
    padding: 0.4rem 0.8rem;
    font-size: 0.75rem;
}

@media (max-width: 768px) {
    #blog .service-card {
        flex: 0 0 280px;
        height: 380px;
    }
}

/* ========================================
   BLOG NAVIGATION & ARROWS
   ======================================== */
.blog-nav-hint {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 1.5rem;
}

.scroll-hint-badge {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    animation: drift 2s infinite ease-in-out;
}

@keyframes drift {

    0%,
    100% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(5px);
    }
}

.blog-nav-arrows {
    display: flex;
    gap: 0.75rem;
}

.nav-arrow {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid var(--gray-200);
    background: var(--white);
    color: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-sm);
}

.nav-arrow:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.nav-arrow:active {
    transform: translateY(0);
}

@media (max-width: 768px) {
    .blog-nav-arrows {
        display: none;
        /* Hide arrows on touch devices where scroll is natural */
    }
}

/* ========================================
   TRANSPARENCY VISUAL
   ======================================== */
.transparency-visual {
    display: flex;
    flex-direction: row;
    /* Horizontal on desktop */
    align-items: center;
    justify-content: center;
    gap: 2rem;
    position: relative;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, rgba(35, 65, 10, 0.03), rgba(0, 0, 0, 0.05));
    border-radius: 40px;
    border: 1px solid rgba(35, 65, 10, 0.1);
}

.visual-card {
    width: 240px;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease;
    z-index: 2;
}

.visual-card:hover {
    transform: translateY(-5px);
}

.visual-card-user {
    border-top: 4px solid #16a34a;
}

.visual-card-pro {
    border-top: 4px solid var(--primary);
}

.visual-header {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--gray-600);
    margin-bottom: 0.5rem;
}

.visual-price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 0.25rem;
}

.visual-label {
    font-size: 0.9rem;
    color: var(--gray-600);
}

.visual-connection {
    position: relative;
    width: 60px;
    height: 2px;
    background: rgba(35, 65, 10, 0.1);
}

.connection-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, #16a34a, var(--primary));
    opacity: 0.2;
}

.connection-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 44px;
    height: 44px;
    background: var(--white);
    border: 2px solid rgba(35, 65, 10, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    box-shadow: var(--shadow-lg);
    z-index: 3;
}

@media (max-width: 992px) {
    .transparency-visual {
        flex-direction: column;
        padding: 2rem;
    }

    .visual-connection {
        width: 2px;
        height: 60px;
    }

    .connection-line {
        background: linear-gradient(to bottom, #16a34a, var(--primary));
    }
}
/* ========================================
   TESTIMONIALS SECTION
   ======================================== */
.testimonials {
    background: var(--white);
    padding: 100px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: var(--gray-100);
    padding: 2.5rem;
    border-radius: 24px;
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-light);
}

.testimonial-text {
    font-size: 1.1rem;
    color: var(--gray-800);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-style: italic;
}

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

.author-info h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 0.2rem;
}

.author-info p {
    font-size: 0.9rem;
    color: var(--primary);
    font-weight: 600;
}

.verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.75rem;
    font-weight: 700;
    color: #059669;
    background: #ecfdf5;
    padding: 0.25rem 0.75rem;
    border-radius: 100px;
    margin-top: 0.5rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
}

.rating-stars {
    color: #fbbf24;
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}
