/* ============================================
   DIRAC GROUP - MODERN DESIGN SYSTEM
   Software-Powered Wholesale
   ============================================ */

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: #ffffff;
}

main {
    flex: 1;
}

/* === CONTAINER === */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* === HEADER - MODERN === */
.header-modern {
    background-color: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.95);
}

.header-content-modern {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.header-logo-modern {
    display: flex;
    align-items: center;
}

.logo-link-modern {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #1a1a1a;
}

.logo-icon-modern {
    width: 32px;
    height: 32px;
    margin-right: 12px;
}

.logo-text-modern {
    font-weight: 700;
    font-size: 20px;
    color: #1a1a1a;
}

.nav-desktop-modern {
    display: none;
    gap: 32px;
    margin-left: auto;
    align-items: center;
}

.nav-link-modern {
    color: #666;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-link-modern:hover {
    color: #1a1a1a;
}

.btn-whatsapp-header {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    font-size: 15px;
    background-color: #25D366;
    color: white;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-whatsapp-header:hover {
    background-color: #128C7E;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp-header svg {
    fill: white;
}

.btn-whatsapp-mobile {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 24px;
    background-color: #25D366;
    color: white;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-whatsapp-mobile:hover {
    background-color: #128C7E;
}

.btn-whatsapp-mobile svg {
    fill: white;
}

.btn-header-modern {
    padding: 10px 24px;
    font-size: 15px;
    background-color: #4a148c;
    color: white;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-header-modern:hover {
    background-color: #3d0f75;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(74, 20, 140, 0.2);
}

.menu-toggle-modern {
    background: none;
    border: none;
    color: #1a1a1a;
    cursor: pointer;
    padding: 8px;
}

.nav-mobile-modern {
    display: none;
    flex-direction: column;
    gap: 16px;
    padding: 24px;
    border-top: 1px solid #e5e7eb;
}

.nav-mobile-modern.active {
    display: flex;
}

.nav-mobile-link-modern {
    color: #1a1a1a;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
}

.btn-mobile-modern {
    padding: 12px 24px;
    font-size: 15px;
    background-color: #4a148c;
    color: white;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    text-decoration: none;
}

@media (min-width: 768px) {
    .nav-desktop-modern {
        display: flex;
    }

    .menu-toggle-modern {
        display: none;
    }
}

/* === HERO SECTION - MODERN === */
.hero-modern {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #1a0033 0%, #4a148c 50%, #6a1b9a 100%);
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 70% 30%, rgba(20, 184, 166, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.hero-container {
    position: relative;
    z-index: 2;
    padding: 80px 0;
}

.hero-container-split {
    position: relative;
    z-index: 2;
    padding: 80px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.hero-text-modern {
    max-width: 600px;
}

.hero-visual {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* Brand Carousel */
.hero-brand-carousel {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    justify-items: center;
    align-items: center;
    min-height: 200px;
    position: relative;
}

.hero-brand-item {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    animation: brandDropIn 9s ease-in-out infinite;
    position: relative;
}

.hero-brand-logo {
    max-width: 180px;  /* Constrain width */
    max-height: 120px;  /* Constrain height */
    width: auto;
    height: auto;
    object-fit: contain; /* Scale to fit without cropping */
}
.hero-brand-item:hover .hero-brand-logo {
    transform: scale(1.05);
}

.hero-brand-more {
    grid-column: 1 / -1;
    text-align: center;
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.05em;
    margin-top: 12px;
    opacity: 0;
    animation: popUpMore 9s ease-in-out infinite;
}

@keyframes brandDropIn {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }
    8% {
        opacity: 1;
        transform: translateY(0);
    }
    16% {
        opacity: 1;
        transform: translateY(0);
    }
    25% {
        opacity: 0;
        transform: translateY(10px);
    }
    100% {
        opacity: 0;
        transform: translateY(10px);
    }
}

@keyframes popUpMore {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    80% {
        opacity: 0;
        transform: scale(0.8);
    }
    85% {
        opacity: 1;
        transform: scale(1.1);
    }
    90% {
        opacity: 1;
        transform: scale(1);
    }
    100% {
        opacity: 0;
        transform: scale(0.8);
    }
}

.hero-headline {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.1;
    color: white;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hero-highlight {
    background: linear-gradient(135deg, #14b8a6 0%, #06b6d4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subhead {
    font-size: 20px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.btn-hero-primary {
    padding: 14px 32px;
    background: #14b8a6;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
}

.btn-hero-primary:hover {
    background: #0d9488;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(20, 184, 166, 0.3);
}

.btn-hero-secondary {
    padding: 14px 32px;
    background: transparent;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s;
}

.btn-hero-secondary:hover {
    border-color: white;
    background: rgba(255, 255, 255, 0.1);
}

.hero-trust-badge {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    align-items: center;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.trust-badge-text {
    font-weight: 500;
}

.trust-badge-divider {
    color: rgba(255, 255, 255, 0.4);
}

.hero-code-bg {
    position: absolute;
    right: 5%;
    bottom: 10%;
    font-family: 'Courier New', monospace;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.15);
    z-index: 1;
    user-select: none;
}

.code-line {
    margin-bottom: 8px;
    white-space: nowrap;
}

@media (max-width: 968px) {
    .hero-modern {
        min-height: 500px;
    }

    .hero-container-split {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .hero-text-modern {
        max-width: 100%;
    }

    .hero-headline {
        font-size: 36px;
    }

    .hero-subhead {
        font-size: 18px;
    }

    .hero-brand-carousel {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        min-height: 180px;
    }

    .hero-brand-logo {
        max-width: 150px;
        max-height: 75px;
    }

    .hero-code-bg {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-headline {
        font-size: 28px;
    }

    .hero-subhead {
        font-size: 16px;
    }
}

/* === SECTIONS === */
.section {
    padding: 80px 0;
}

.section-eyebrow {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #6a1b9a;
    margin-bottom: 16px;
}

.section-headline {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    color: #1a1a1a;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 18px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 48px;
}

.bg-white {
    background: #ffffff;
}

.bg-gray {
    background: #f8f9fa;
}

.bg-purple {
    background: #4a148c;
}

/* === PROBLEM SECTION === */
.problem-section {
    background: #ffffff;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-bottom: 48px;
}

.problem-card {
    padding: 32px;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    transition: all 0.3s;
}

.problem-card:hover {
    border-color: #4a148c;
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(74, 20, 140, 0.1);
}

.problem-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.problem-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.problem-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
}

.problem-callout {
    text-align: center;
    font-size: 24px;
    color: #1a1a1a;
    padding: 40px;
    background: #f8f9fa;
    border-radius: 12px;
    line-height: 1.6;
}

.problem-callout-link {
    color: #4a148c;
    text-decoration: none;
    transition: color 0.3s;
}

.problem-callout-link:hover {
    color: #14b8a6;
}

.problem-callout-link strong {
    font-weight: 600;
}

/* === PEAT SECTION === */
.peat-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

/* Intro bullet points */
.peat-intro {
    max-width: 900px;
    margin: 0 auto 64px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.peat-intro-item {
    padding: 24px 32px;
    background: white;
    border-left: 4px solid #4a148c;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.peat-intro-item h4 {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.peat-intro-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
}

/* PEAT Acronym Section */
.peat-acronym-section {
    margin-top: 64px;
}

.peat-acronym-title {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 48px;
}

.peat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 32px;
}

.peat-card-modern {
    padding: 40px 32px;
    background: white;
    border-radius: 12px;
    border: 2px solid #e5e7eb;
    text-align: center;
    transition: all 0.3s;
}

.peat-card-modern:hover {
    border-color: #4a148c;
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(74, 20, 140, 0.15);
}

.peat-letter {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #4a148c 0%, #6a1b9a 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.peat-card-modern h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.peat-card-modern p {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
}

/* === TAILORED SECTION === */
.tailored-section {
    background: #ffffff;
}

.persona-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.persona-card {
    padding: 40px;
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    transition: all 0.3s;
}

.persona-card:hover {
    border-color: #4a148c;
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(74, 20, 140, 0.15);
}

.persona-featured {
    border-color: #4a148c;
    background: linear-gradient(135deg, #f8f4fc 0%, #ffffff 100%);
}

.persona-header h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.persona-subtitle {
    font-size: 14px;
    color: #666;
    margin-bottom: 24px;
}

.persona-features {
    list-style: none;
}

.persona-features li {
    font-size: 16px;
    line-height: 2;
    color: #333;
}

/* === PRODUCT RANGE === */
.product-range-section {
    background: linear-gradient(135deg, #fafafa 0%, #ffffff 100%);
}

.product-range-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    margin-top: 48px;
}

.product-range-stats {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.range-stat-card {
    padding: 32px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s;
}

.range-stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.range-stat-number {
    font-size: 48px;
    font-weight: 700;
    background: linear-gradient(135deg, #4a148c 0%, #6a1b9a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
}

.range-stat-label {
    font-size: 18px;
    color: #666;
    font-weight: 500;
}

.product-range-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.warehouse-photo {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s;
}

.warehouse-photo:hover {
    transform: scale(1.05);
}

@media (max-width: 968px) {
    .product-range-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

/* === HOW IT WORKS === */
.how-it-works-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.process-timeline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.process-step {
    text-align: center;
    flex: 0 0 200px;
}

.process-number {
    width: 64px;
    height: 64px;
    background: #4a148c;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    margin: 0 auto 16px;
}

.process-step h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.process-detail {
    font-size: 14px;
    color: #666;
    margin-bottom: 4px;
}

.process-time {
    font-size: 13px;
    font-weight: 600;
    color: #14b8a6;
}

.process-connector {
    flex: 1;
    height: 2px;
    background: linear-gradient(to right, #4a148c 0%, #14b8a6 100%);
    max-width: 80px;
    min-width: 40px;
}

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

.btn-large-primary {
    padding: 16px 48px;
    background: #4a148c;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 18px;
    display: inline-block;
    transition: all 0.3s;
}

.btn-large-primary:hover {
    background: #3d0f75;
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(74, 20, 140, 0.3);
}

.btn-large-secondary {
    padding: 16px 48px;
    background: white;
    color: #4a148c;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 18px;
    display: inline-block;
    transition: all 0.3s;
    border: 2px solid #4a148c;
}

.btn-large-secondary:hover {
    background: #4a148c;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(74, 20, 140, 0.3);
}

@media (max-width: 768px) {
    .process-timeline {
        flex-direction: column;
        gap: 32px;
    }

    .process-connector {
        width: 2px;
        height: 40px;
        max-width: none;
        background: linear-gradient(to bottom, #4a148c 0%, #14b8a6 100%);
    }
}

/* === SECTORS === */
.sectors-section {
    background: #ffffff;
}

.sectors-grid-detailed {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.sector-card-detailed {
    padding: 32px 28px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    transition: all 0.3s;
    background: white;
}

.sector-card-detailed:hover {
    border-color: #4a148c;
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(74, 20, 140, 0.12);
}

.sector-card-detailed h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.sector-card-detailed p {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
}

.sector-other {
    border: 2px dashed #e5e7eb;
    background: #f8f9fa;
}

.sector-other:hover {
    border-color: #14b8a6;
    background: white;
}

.sector-link {
    color: #4a148c;
    font-weight: 600;
    text-decoration: underline;
    transition: color 0.2s;
}

.sector-link:hover {
    color: #14b8a6;
}

/* === BRANDS SLIDER === */
.brands-slider-container {
    overflow: hidden;
    margin-top: 32px;
}

.brands-slider {
    display: flex;
    gap: 24px;
    animation: slide 30s linear infinite;
}

.brand-card {
    flex: 0 0 200px;
    padding: 24px;
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    transition: all 0.3s;
}

.brand-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.brand-logo-container {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.brand-logo {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.brand-category {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #999;
    text-align: center;
    display: block;
}

.border-blue {
    border-color: #3b82f6;
}

.border-pink {
    border-color: #ec4899;
}

.border-yellow {
    border-color: #f59e0b;
}

@keyframes slide {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

/* === REVIEWS === */
.reviews-header {
    text-align: center;
    margin-bottom: 48px;
}

.rating-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 16px 0;
}

.stars {
    display: flex;
    gap: 4px;
}

.star {
    width: 20px;
    height: 20px;
}

.star-filled {
    color: #fbbf24;
}

.star-half {
    width: 20px;
    height: 20px;
}

.rating-text {
    font-weight: 600;
    color: #1a1a1a;
}

.reviews-count {
    font-size: 14px;
    color: #666;
}

.recent-reviews-title {
    font-size: 22px;
    font-weight: 700;
    color: #4a148c;
    margin-bottom: 32px;
}

.reviews-slider-container {
    position: relative;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-bottom: 32px;
}

.slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
}

.slider-btn {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}

.slider-btn:hover {
    border-color: #4a148c;
    background: #f8f9fa;
}

.slider-dots {
    display: flex;
    gap: 8px;
}

/* === FINAL CTA === */
.final-cta-section {
    background: linear-gradient(135deg, #1a0033 0%, #4a148c 100%);
    padding: 100px 0;
    text-align: center;
}

.final-cta-headline {
    font-size: 48px;
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.final-cta-subhead {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
}

.final-cta-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.btn-final-cta {
    padding: 18px 56px;
    background: #14b8a6;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 18px;
    display: inline-block;
    transition: all 0.3s;
}

.btn-final-cta:hover {
    background: #0d9488;
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(20, 184, 166, 0.4);
}

@media (max-width: 768px) {
    .final-cta-headline {
        font-size: 32px;
    }

    .final-cta-subhead {
        font-size: 18px;
    }
}

/* === FOOTER === */
.footer {
    background-color: #1a1a1a;
    color: #9ca3af;
    padding: 48px 0 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    color: white;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
}

.footer-logo {
    width: 48px;
    margin-bottom: 24px;
}

.footer-links-section {
    margin-top: 24px;
}

.footer-heading {
    color: white;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #14b8a6;
}

.footer-address {
    font-style: normal;
    font-size: 14px;
    line-height: 1.8;
}

.footer-address p {
    margin-bottom: 4px;
}

.contact-detail {
    color: #14b8a6;
    font-weight: 500;
}

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

.social-link {
    color: #9ca3af;
    transition: color 0.2s;
}

.social-link:hover {
    color: #14b8a6;
}

.btn-whatsapp-footer {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background-color: #25D366;
    color: white;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s;
    margin-top: 16px;
}

.btn-whatsapp-footer:hover {
    background-color: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp-footer svg {
    fill: white;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 24px;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: #6b7280;
}

/* === UTILITIES === */
.text-white {
    color: white;
}

.font-medium {
    font-weight: 500;
}

/* === ABOUT PAGE === */
.about-hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 80px 0 60px;
    text-align: center;
}

.about-headline {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    color: #1a1a1a;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.about-subhead {
    font-size: 16px;
    color: #666;
    font-weight: 500;
}

.about-link {
    color: #4a148c;
    text-decoration: none;
    transition: color 0.3s;
}

.about-link:hover {
    color: #14b8a6;
}

.about-link-inline {
    color: #4a148c;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.about-link-inline:hover {
    color: #14b8a6;
}

.about-link-icon {
    display: inline-flex;
    align-items: center;
    margin-left: 6px;
    vertical-align: middle;
    transition: all 0.3s;
}

.about-link-icon svg {
    stroke: #4a148c;
    transition: stroke 0.3s;
}

.about-link-icon:hover svg {
    stroke: #14b8a6;
}

.about-body-text {
    font-size: 20px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 24px;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-top: 48px;
}

.about-feature-item {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.feature-icon {
    font-size: 48px;
    flex-shrink: 0;
}

.feature-title {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.about-feature-item p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

.about-stats-section {
    background: linear-gradient(135deg, #1a0033 0%, #4a148c 100%);
    color: white;
}

.about-stats-section .section-headline {
    color: white;
}

.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 48px;
    margin-top: 48px;
}

.about-stat-card {
    text-align: center;
}

.stat-number {
    font-size: 56px;
    font-weight: 700;
    color: #14b8a6;
    margin-bottom: 12px;
    line-height: 1;
}

.stat-label {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
}

.about-mission-text {
    font-size: 28px;
    line-height: 1.6;
    color: #1a1a1a;
    font-weight: 500;
    margin-bottom: 48px;
}

.mission-cta-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.mission-cta-card {
    background: white;
    padding: 40px 32px;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
}

.mission-cta-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.mission-cta-title {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.mission-cta-desc {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 24px;
}

@media (max-width: 768px) {
    .mission-cta-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

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

/* === CONTACT PAGE === */
.contact-hero {
    background: linear-gradient(135deg, #1a0033 0%, #4a148c 100%);
    padding: 80px 0;
    text-align: center;
    color: white;
}

.contact-headline {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.contact-subhead {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
}

.contact-form-section {
    background: #ffffff;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
}

.contact-intro {
    font-size: 18px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 48px;
    text-align: center;
}

.form-grid {
    display: grid;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-label {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.form-input,
.form-select,
.form-textarea {
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.2s;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: #4a148c;
}

.form-textarea {
    min-height: 120px;
    resize: vertical;
}

.form-submit-btn {
    padding: 16px 48px;
    background: #4a148c;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s;
}

.form-submit-btn:hover {
    background: #3d0f75;
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(74, 20, 140, 0.3);
}

.contact-details-section {
    background: #f8f9fa;
}

.whatsapp-callout {
    max-width: 800px;
    margin: 0 auto 48px;
    padding: 40px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 16px;
    text-align: center;
    color: white;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.2);
}

.whatsapp-callout h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
    color: white;
}

.whatsapp-callout p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 24px;
    opacity: 0.95;
}

.btn-whatsapp-large {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background-color: white;
    color: #128C7E;
    border-radius: 8px;
    font-weight: 700;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.btn-whatsapp-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.btn-whatsapp-large svg {
    fill: #128C7E;
}

.contact-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 48px;
    max-width: 900px;
    margin: 0 auto;
}

.contact-detail-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.contact-detail-card p {
    font-size: 15px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 8px;
}

.contact-link {
    color: #4a148c;
    text-decoration: none;
    font-weight: 500;
}

.contact-link:hover {
    color: #14b8a6;
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
    .section-headline {
        font-size: 36px;
    }

    .about-headline {
        font-size: 36px;
    }

    .contact-headline {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 60px 0;
    }

    .section-headline {
        font-size: 28px;
    }

    .section-subtitle {
        font-size: 16px;
    }

    .about-headline {
        font-size: 32px;
    }

    .about-body-text {
        font-size: 18px;
    }

    .about-mission-text {
        font-size: 22px;
    }

    .contact-headline {
        font-size: 32px;
    }

    .stat-number {
        font-size: 42px;
    }
}

/* === HEADER SEARCH & SIMPLIFIED NAV === */
.header-search {
    flex: 1;
    max-width: 600px;
    margin: 0 2rem;
}

.search-form {
    display: flex;
    width: 100%;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    overflow: hidden;
    background: white;
    transition: all 0.2s;
}

.search-form:focus-within {
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.search-input {
    flex: 1;
    padding: 0.625rem 1rem;
    border: none;
    font-size: 15px;
    outline: none;
}

.search-btn {
    padding: 0.625rem 1rem;
    background: #2563eb;
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.search-btn:hover {
    background: #1d4ed8;
}

.search-btn svg {
    stroke: currentColor;
}

.search-form-mobile {
    display: flex;
    width: 100%;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    overflow: hidden;
    background: white;
}

.search-input-mobile {
    flex: 1;
    padding: 0.75rem 1rem;
    border: none;
    font-size: 15px;
    outline: none;
}

.search-btn-mobile {
    padding: 0.75rem 1rem;
    background: #2563eb;
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-btn-mobile svg {
    stroke: currentColor;
}

.header-extra {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.header-brand-select {
    padding: 0.625rem 0.875rem;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    background: white;
    cursor: pointer;
    transition: all 0.2s;
    min-width: 140px;
}

.header-brand-select:hover {
    border-color: #9ca3af;
}

.header-brand-select:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.header-clear-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 6px;
    background: #f3f4f6;
    color: #6b7280;
    transition: all 0.2s;
    text-decoration: none;
    flex-shrink: 0;
}

.header-clear-btn:hover {
    background: #e5e7eb;
    color: #374151;
}

.header-clear-btn svg {
    stroke: currentColor;
}

.nav-icon-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 8px;
    transition: all 0.2s;
    text-decoration: none;
    color: #1a1a1a;
}

.nav-icon-btn:hover {
    background: #f3f4f6;
}

.nav-icon-btn .basket-count {
    position: absolute;
    top: -4px;
    right: -4px;
}

.btn-header-account {
    display: inline-flex;
    align-items: center;
    padding: 0.625rem 1.25rem;
    background: #2563eb;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s;
    white-space: nowrap;
}

.btn-header-account:hover {
    background: #1d4ed8;
    transform: translateY(-1px);
}

.btn-header-account svg {
    flex-shrink: 0;
}

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

    .header-extra {
        display: none;
    }

    .header-content-modern {
        gap: 0.5rem;
    }
}
