/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

:root {
    --primary-color: #000000;
    --secondary-color: #1a1a1a;
    --accent-color: #10b981;
    --accent-teal: #5f9c9a;
    --accent-light: #34d399;
    --accent-dark: #059669;
    --gradient-primary: linear-gradient(135deg, #000000 0%, #2a2a2a 100%);
    --gradient-accent: linear-gradient(135deg, #10b981 0%, #059669 100%);
    --gradient-mixed: linear-gradient(135deg, #000000 0%, #10b981 100%);
    --gradient-teal-green: linear-gradient(135deg, #5f9c9a 0%, #10b981 100%);
    --gradient-multi: linear-gradient(135deg, #5f9c9a 0%, #10b981 50%, #059669 100%);
    --background-light: #f8f9fa;
    --background-white: #ffffff;
    --text-primary: #1a1a1a;
    --text-secondary: #6c757d;
    --border-color: #e9ecef;
    --success-color: #10b981;
    --hover-color: #2a2a2a;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.15);
    --shadow-xl: 0 16px 48px rgba(0,0,0,0.2);
    --shadow-green: 0 4px 20px rgba(16, 185, 129, 0.25);
    --shadow-teal: 0 4px 20px rgba(95, 156, 154, 0.25);
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
}


body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--background-white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 1px 0 rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all var(--transition-base);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    flex-wrap: wrap;
    gap: 1rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.logo h1 {
    font-size: 1.75rem;
    font-weight: 800;
    background: var(--gradient-mixed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
}

.tagline {
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-weight: 500;
    opacity: 0.8;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    transition: all var(--transition-base);
    position: relative;
    padding: 0.25rem 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-accent);
    transition: width var(--transition-base);
}

.nav-links a:not(.btn):hover {
    background: linear-gradient(135deg, #5f9c9a 0%, #10b981 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links a:not(.btn):hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--gradient-teal-green);
    color: white !important;
    padding: 0.625rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: 0.025em;
    transition: all var(--transition-base);
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 2px 8px rgba(95, 156, 154, 0.2);
}

.nav-cta::after {
    display: none;
}

.nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(95, 156, 154, 0.3);
    color: white !important;
    -webkit-text-fill-color: white !important;
    background: var(--gradient-multi);
}

/* Navigation buttons */
.nav-btn {
    padding: 0.5rem 1.25rem !important;
    font-size: 0.875rem !important;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: fit-content;
}

/* Ensure primary button gradient shows in nav */
.nav-links .btn-primary.nav-btn {
    background: var(--gradient-teal-green);
    color: white !important;
    box-shadow: 0 4px 20px rgba(95, 156, 154, 0.3);
}

.nav-links .btn-primary.nav-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(95, 156, 154, 0.4);
    background: var(--gradient-multi);
    color: white !important;
    -webkit-text-fill-color: white !important;
}

.nav-links .nav-btn::after {
    display: none;
}

.nav-links li:has(.nav-btn) {
    display: flex;
    align-items: center;
}

/* Improve navbar spacing */
.navbar {
    padding: 1.25rem 0;
}

.nav-links {
    align-items: center;
    gap: 2.5rem;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 3px 0;
    transition: 0.3s;
}


/* Hero Section */
.hero {
    padding: 3rem 0;
    background: linear-gradient(135deg, var(--background-light) 0%, var(--background-white) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0,0,0,0.05) 0%, transparent 70%);
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 2.75rem;
    font-weight: 800;
    background: linear-gradient(135deg, #000000 0%, #5f9c9a 40%, #10b981 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.75rem;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

/* Delivery Areas */
.delivery-areas {
    margin-bottom: 2rem;
}

.delivery-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
    font-weight: 600;
}

.areas-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

.area-badge {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--background-white);
    border: 2px solid var(--border-color);
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-primary);
    transition: all var(--transition-base);
    cursor: pointer;
}

.area-badge:hover {
    border-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.area-badge svg {
    color: var(--accent-color);
    flex-shrink: 0;
}

.area-tooltip {
    position: absolute;
    bottom: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: var(--background-white);
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-fast);
    pointer-events: none;
    z-index: 10;
}

.area-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid var(--primary-color);
}

.area-badge:hover .area-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(-4px);
}


.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stat {
    text-align: center;
    padding: 1rem;
    background: var(--background-white);
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
}

.stat:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.stat h3 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 0.25rem;
}

.stat p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    width: 100%;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.5;
    animation: morph 20s ease-in-out infinite;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: var(--gradient-teal-green);
    top: 0;
    right: 0;
    animation-delay: 0s;
}

.shape-2 {
    width: 250px;
    height: 250px;
    background: var(--gradient-multi);
    bottom: 0;
    left: 20%;
    animation-delay: 5s;
}

.shape-3 {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #059669 0%, #10b981 100%);
    top: 50%;
    right: 30%;
    animation-delay: 10s;
}

@keyframes morph {
    0%, 100% {
        transform: translate(0, 0) scale(1) rotate(0deg);
        border-radius: 50%;
    }
    25% {
        transform: translate(-20px, 10px) scale(1.1) rotate(90deg);
        border-radius: 40% 60% 60% 40%;
    }
    50% {
        transform: translate(10px, -20px) scale(0.9) rotate(180deg);
        border-radius: 60% 40% 40% 60%;
    }
    75% {
        transform: translate(20px, 10px) scale(1.05) rotate(270deg);
        border-radius: 40% 60% 60% 40%;
    }
}

.floating-elements {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.float-element {
    position: absolute;
    animation: float-up 15s ease-in-out infinite;
}

.element-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.element-2 {
    top: 60%;
    right: 15%;
    animation-delay: 5s;
}

.element-3 {
    bottom: 30%;
    left: 40%;
    animation-delay: 10s;
}

.icon-circle {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: var(--accent-color);
}

@keyframes float-up {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.8;
    }
    25% {
        transform: translateY(-20px) rotate(90deg);
        opacity: 1;
    }
    50% {
        transform: translateY(10px) rotate(180deg);
        opacity: 0.8;
    }
    75% {
        transform: translateY(-10px) rotate(270deg);
        opacity: 1;
    }
}

/* Speed Lines */
.speed-lines {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    opacity: 0.3;
}

.speed-line {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--accent-color) 50%, transparent 100%);
    animation: speed-dash 3s linear infinite;
}

.line-1 {
    top: 15%;
    width: 150px;
    animation-duration: 2s;
}

.line-2 {
    top: 35%;
    width: 200px;
    animation-duration: 2.5s;
    animation-delay: 0.5s;
}

.line-3 {
    top: 55%;
    width: 180px;
    animation-duration: 2.2s;
    animation-delay: 1s;
}

.line-4 {
    top: 75%;
    width: 120px;
    animation-duration: 1.8s;
    animation-delay: 1.5s;
}

.line-5 {
    top: 85%;
    width: 160px;
    animation-duration: 2.3s;
    animation-delay: 0.3s;
}

@keyframes speed-dash {
    0% {
        transform: translateX(-200px);
        opacity: 0;
    }
    10% {
        opacity: 0.3;
    }
    90% {
        opacity: 0.3;
    }
    100% {
        transform: translateX(calc(100% + 200px));
        opacity: 0;
    }
}

/* Package floating elements */
.element-4 {
    top: 10%;
    right: 20%;
    animation-delay: 2s;
    animation-duration: 18s;
}

.element-5 {
    bottom: 20%;
    left: 15%;
    animation-delay: 7s;
    animation-duration: 20s;
}

.element-6 {
    top: 40%;
    right: 10%;
    animation-delay: 12s;
    animation-duration: 16s;
}

.package-icon {
    animation-name: float-package;
}

@keyframes float-package {
    0%, 100% {
        transform: translateY(0) translateX(0) rotate(0deg);
        opacity: 0.7;
    }
    20% {
        transform: translateY(-15px) translateX(10px) rotate(10deg);
        opacity: 0.9;
    }
    40% {
        transform: translateY(5px) translateX(-5px) rotate(-5deg);
        opacity: 0.8;
    }
    60% {
        transform: translateY(-10px) translateX(-10px) rotate(-10deg);
        opacity: 0.9;
    }
    80% {
        transform: translateY(10px) translateX(5px) rotate(5deg);
        opacity: 0.7;
    }
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    text-decoration: none;
    font-weight: 600;
    border-radius: 8px;
    transition: all var(--transition-base);
    cursor: pointer;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    font-size: 0.9rem;
    letter-spacing: 0.02em;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: var(--gradient-teal-green);
    color: white;
    box-shadow: 0 4px 20px rgba(95, 156, 154, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(95, 156, 154, 0.4);
    background: var(--gradient-multi);
}

.btn-secondary {
    background-color: var(--background-white);
    color: var(--accent-color);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-sm);
    font-weight: 600;
}

.btn-secondary:hover {
    background-color: var(--accent-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-green);
    border-color: var(--accent-color);
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1rem;
}

/* Section Styles */
.pharmacy-section {
    padding: 3rem 0;
    position: relative;
    background-color: var(--background-white);
}

.section-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.section-content.reverse {
    direction: rtl;
}

.section-content.reverse > * {
    direction: ltr;
}

.section-text h2 {
    font-size: 2.25rem;
    font-weight: 800;
    background: var(--gradient-mixed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.section-text h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    opacity: 0.9;
}

.section-text p {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.feature-list {
    list-style: none;
    margin-bottom: 2rem;
}

.feature-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    transition: all var(--transition-fast);
}

.feature-list li:hover {
    transform: translateX(5px);
}

.feature-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    width: 24px;
    height: 24px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Section Visuals */
.section-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 300px;
}

.visual-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Pharmacy Section Visual */
.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.6;
}

.orb-1 {
    width: 250px;
    height: 250px;
    background: var(--gradient-teal-green);
    top: -50px;
    left: -50px;
    animation: float-slow 15s ease-in-out infinite;
}

.orb-2 {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #5f9c9a 0%, #10b981 50%, #059669 100%);
    bottom: -30px;
    right: -30px;
    animation: float-slow 20s ease-in-out infinite reverse;
}

@keyframes float-slow {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(20px, -20px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

.icon-showcase {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.showcase-item {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    color: var(--accent-color);
    transition: all var(--transition-base);
}

.showcase-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(16, 185, 129, 0.2);
}

.showcase-center {
    padding: 2rem;
    transform: scale(1.2);
}

/* Driver Section Visual */
.driver-visual .visual-container {
    background: linear-gradient(135deg, var(--background-light) 0%, var(--background-white) 100%);
    border-radius: 24px;
    overflow: hidden;
}

.gradient-line {
    position: absolute;
    height: 2px;
    background: var(--gradient-accent);
    opacity: 0.3;
}

.line-1 {
    width: 100%;
    top: 20%;
    animation: slide-right 10s ease-in-out infinite;
}

.line-2 {
    width: 80%;
    top: 50%;
    animation: slide-left 15s ease-in-out infinite;
}

.line-3 {
    width: 60%;
    bottom: 30%;
    animation: slide-right 20s ease-in-out infinite;
}

@keyframes slide-right {
    0%, 100% {
        transform: translateX(-100%);
    }
    50% {
        transform: translateX(100%);
    }
}

@keyframes slide-left {
    0%, 100% {
        transform: translateX(100%);
    }
    50% {
        transform: translateX(-100%);
    }
}

.metrics-display {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.metric-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
}

.metric-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.metric-main {
    padding: 2rem;
    transform: scale(1.1);
    background: var(--gradient-accent);
    color: white;
}

.metric-icon {
    margin-bottom: 1rem;
    color: white;
}

.metric-value {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.25rem;
}

.metric-main .metric-value {
    color: white;
}

.metric-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.metric-main .metric-label {
    color: rgba(255, 255, 255, 0.9);
}

.metric-sub {
    font-size: 0.75rem;
    color: var(--text-secondary);
    opacity: 0.7;
    margin-top: 0.25rem;
}

.stars {
    color: #ffd700;
    font-size: 1rem;
    margin-top: 0.5rem;
}

/* CTA Section */
.cta-section {
    padding: 3rem 0;
    background: var(--gradient-multi);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.1) 50%, transparent 100%);
    animation: shine 3s ease-in-out infinite;
}

@keyframes shine {
    0% { left: -100%; }
    100% { left: 100%; }
}

.cta-content h2 {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}

.cta-content p {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-section .btn-primary {
    background: white;
    color: var(--primary-color);
    font-size: 1rem;
    padding: 0.875rem 2.5rem;
    border-radius: 8px;
    font-weight: 600;
    letter-spacing: 0.025em;
    border: 2px solid transparent;
    transition: all var(--transition-base);
}

.cta-section .btn-primary:hover {
    background: white;
    color: var(--accent-teal);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
    border-color: var(--accent-teal);
}

.cta-section .btn-secondary {
    color: white;
    border-color: white;
}

.cta-section .btn-secondary:hover {
    background-color: white;
    color: var(--primary-color);
}

/* Contact Form Section */
.contact-section {
    padding: 4rem 0;
    background: var(--background-light);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: start;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-text h2 {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: var(--gradient-multi);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-text p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-benefits {
    list-style: none;
    padding: 0;
}

.contact-benefits li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-primary);
    font-weight: 500;
}

.contact-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0.75rem;
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.contact-form-wrapper {
    background: white;
    padding: 1.75rem;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.875rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.8125rem;
}

.form-group input {
    padding: 0.625rem 0.875rem;
    border: 1.5px solid #e5e7eb;
    border-radius: 6px;
    font-size: 0.875rem;
    transition: all var(--transition-base);
    background: #fafafa;
}

.form-group input:focus {
    outline: none;
    border-color: var(--accent-color);
    background: white;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.form-group input::placeholder {
    color: #9ca3af;
}

.form-checkbox {
    display: flex;
    align-items: start;
    gap: 0.5rem;
    margin: 0.25rem 0;
}

.form-checkbox input[type="checkbox"] {
    width: 16px;
    height: 16px;
    margin-top: 1px;
    cursor: pointer;
    accent-color: var(--accent-color);
}

.form-checkbox label {
    font-size: 0.8125rem;
    color: var(--text-secondary);
    cursor: pointer;
    line-height: 1.4;
}

.sms-disclaimer {
    font-size: 0.6875rem;
    color: var(--text-secondary);
    line-height: 1.3;
    margin: -0.125rem 0 0.5rem 1.5rem;
    opacity: 0.8;
}

.form-submit {
    margin-top: 0.75rem;
    width: 100%;
    padding: 0.75rem 1.5rem;
    font-size: 0.9375rem;
    position: relative;
    overflow: hidden;
}

.button-loader {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.spinner {
    animation: spin 1s linear infinite;
}

.form-disclaimer {
    font-size: 0.6875rem;
    color: var(--text-secondary);
    text-align: center;
    margin: 0.5rem 0 0 0;
}

.form-disclaimer a {
    color: var(--accent-color);
    text-decoration: underline;
}

.form-message {
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    font-weight: 500;
    display: none;
}

.form-message.success {
    background: #d1fae5;
    color: #065f46;
    display: block;
}

.form-message.error {
    background: #fee2e2;
    color: #991b1b;
    display: block;
}

/* Section Titles */
.section-title {
    font-size: 2rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 0.75rem;
    background: linear-gradient(135deg, #000000 0%, #5f9c9a 50%, #10b981 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 2rem;
}

/* Programs Section */
.programs-section {
    padding: 3rem 0;
    background-color: var(--background-light);
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.program-card {
    background: var(--background-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    text-align: center;
    position: relative;
    transition: all var(--transition-base);
}

.program-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.program-card.featured {
    border: 2px solid var(--accent-color);
    transform: scale(1.05);
}

.program-card.featured:hover {
    transform: scale(1.05) translateY(-4px);
    box-shadow: var(--shadow-green);
}

.badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-teal-green);
    color: white;
    padding: 0.25rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.program-icon {
    margin-bottom: 1.5rem;
}

.program-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.program-card p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.program-features {
    list-style: none;
    text-align: left;
}

.program-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-secondary);
}

.program-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
}

/* Benefits Section */
.benefits-section {
    padding: 3rem 0;
    background-color: var(--background-white);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.benefit-item {
    text-align: center;
    padding: 1.5rem;
    border-radius: 12px;
    transition: all var(--transition-base);
}

.benefit-item:hover {
    background-color: var(--background-light);
    transform: translateY(-2px);
}

.benefit-icon {
    margin-bottom: 1.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 50%;
}

.benefit-item h4 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.benefit-item p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials-section {
    padding: 3rem 0;
    background: linear-gradient(180deg, var(--background-light) 0%, var(--background-white) 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.testimonial-card {
    background: var(--background-white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    position: relative;
    transition: all var(--transition-base);
}

.testimonial-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.quote-mark {
    font-size: 4rem;
    color: var(--accent-color);
    opacity: 0.3;
    line-height: 1;
    margin-bottom: -1rem;
}

.testimonial-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    border-top: 1px solid var(--border-color);
    padding-top: 1rem;
}

.testimonial-author strong {
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

/* Process Section */
.process-section {
    padding: 3rem 0;
    background-color: var(--background-white);
}

.process-steps {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.process-step {
    text-align: center;
    padding: 1rem;
    flex: 0 0 auto;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-accent);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: var(--shadow-green);
}

.process-step h4 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.process-step p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    max-width: 150px;
    margin: 0 auto;
}

.process-arrow {
    font-size: 2rem;
    color: var(--accent-color);
    flex: 0 0 auto;
}

/* Stats Section */
.stats-section {
    padding: 2.5rem 0;
    background: var(--gradient-mixed);
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-item h3 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.stat-item p {
    font-size: 1.125rem;
    opacity: 0.9;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #0a0a0a 100%);
    color: white;
    padding: 3rem 0 1rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-accent);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all var(--transition-base);
    position: relative;
}

.footer-section a:hover {
    color: var(--accent-light);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.social-links a {
    width: 32px;
    height: 32px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-base);
    border: 1px solid transparent;
}

.social-links a:hover {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color var(--transition-base);
}

.footer-bottom a:hover {
    color: var(--accent-light);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .programs-grid,
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-steps {
        gap: 0.5rem;
    }
    
    .process-arrow {
        display: none;
    }
    
    .process-step {
        padding: 1rem;
    }
}

@media (max-width: 768px) {
    .icon-showcase {
        flex-direction: column;
        gap: 1rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-form-wrapper {
        padding: 1.25rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .showcase-center {
        transform: scale(1);
    }
    
    .metrics-display {
        flex-direction: column;
        gap: 1rem;
    }
    
    .metric-main {
        transform: scale(1);
    }
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-links {
        display: none;
    }
    
    .navbar {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 0.5rem;
    }
    
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-visual {
        margin-top: 2rem;
        height: 250px;
    }
    
    .areas-grid {
        gap: 0.5rem;
    }
    
    .area-badge {
        font-size: 0.75rem;
        padding: 0.375rem 0.75rem;
    }
    
    .area-badge svg {
        width: 14px;
        height: 14px;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .section-content,
    .section-content.reverse {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .programs-grid,
    .benefits-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-steps {
        flex-direction: column;
    }
    
    .program-card.featured {
        transform: none;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-cta {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        text-align: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}

