/* ===================================================
   LANDING PAGE - CAM BALKON GAZİANTEP
   Modern, Pro, Satış Odaklı Landing Page
   =================================================== */

:root {
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --primary-light: #3b82f6;
    --secondary: #0f172a;
    --accent: #f59e0b;
    --success: #10b981;
    --whatsapp: #25d366;
    --gradient-primary: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
    --gradient-hero: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
    --gradient-cta: linear-gradient(135deg, #1e3a8a 0%, #2563eb 50%, #7c3aed 100%);
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 14px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.15);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.2);
    --radius: 12px;
    --radius-lg: 20px;
}

/* ===== HERO SECTION ===== */
.landing-hero {
    background: #ffffff;
    position: relative;
    overflow: hidden;
    padding: 40px 0 36px;
    border-bottom: 1px solid #e5e7eb;
}

.hero-content {
    padding: 20px 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(37,99,235,0.08) 0%, rgba(124,58,237,0.08) 100%);
    color: var(--primary);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 16px;
    border: 1px solid rgba(37,99,235,0.15);
    animation: fadeInDown 0.6s ease;
}

.hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 14px;
    color: var(--secondary);
    animation: fadeInUp 0.6s ease 0.1s both;
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary) 0%, #7c3aed 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 0.95rem;
    font-weight: 400;
    line-height: 1.65;
    color: #64748b;
    margin-bottom: 18px;
    max-width: 480px;
    animation: fadeInUp 0.6s ease 0.2s both;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 22px;
    animation: fadeInUp 0.6s ease 0.3s both;
}

.hero-feature-item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #334155;
    font-size: 0.85rem;
    font-weight: 500;
}

.hero-feature-item i {
    color: var(--success);
    font-size: 1rem;
}

.hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    animation: fadeInUp 0.6s ease 0.4s both;
}

.btn-hero-call {
    background: transparent;
    color: var(--secondary);
    border: 2px solid #d1d5db;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.btn-hero-call:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(37,99,235,0.04);
    transform: translateY(-2px);
}

/* ===== HERO SLIDER ===== */
.hero-slider {
    position: relative;
    height: 240px;
    animation: fadeInUp 0.6s ease 0.3s both;
}

.hero-slider-track {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateY(14px) scale(0.97);
    transition: opacity 0.5s ease, transform 0.5s ease;
    pointer-events: none;
}

.hero-slide.active {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.slide-inner {
    background: transparent;
    border: none;
    box-shadow: none;
    border-radius: 0;
    padding: 16px 12px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    position: relative;
}

.slide-inner:hover {
    box-shadow: none;
}

.slide-icon {
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    color: white;
    font-size: 1.15rem;
    box-shadow: 0 4px 12px rgba(37,99,235,0.25);
}

.slide-inner h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 5px;
}

.slide-inner p {
    font-size: 0.78rem;
    color: #64748b;
    margin-bottom: 10px;
    line-height: 1.4;
}

.slide-tag {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary) 0%, #7c3aed 100%);
    color: white;
    padding: 3px 11px;
    border-radius: 50px;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.hero-slider-dots {
    display: flex;
    justify-content: center;
    gap: 7px;
    margin-top: 10px;
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #d1d5db;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: var(--primary);
    width: 22px;
    border-radius: 5px;
}

.slider-dot:hover {
    background: var(--primary-light);
}

/* ===== BUTTONS ===== */
.btn-landing-primary {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37,99,235,0.4);
}

.btn-landing-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37,99,235,0.5);
    color: white;
}

.btn-landing-outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255,255,255,0.4);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.btn-landing-outline:hover {
    background: rgba(255,255,255,0.15);
    border-color: white;
    color: white;
    transform: translateY(-2px);
}

.btn-landing-primary.w-100 {
    padding: 10px 20px;
}

.btn-campaign {
    background: linear-gradient(135deg, var(--accent) 0%, #f97316 100%);
    color: white;
    border: none;
    padding: 16px 36px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(245,158,11,0.4);
}

.btn-campaign:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(245,158,11,0.5);
    color: white;
}

.btn-whatsapp {
    background: var(--whatsapp);
    color: white;
    border: none;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37,211,102,0.4);
}

.btn-whatsapp:hover {
    background: #20bd5a;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37,211,102,0.5);
    color: white;
}

/* ===== HERO FORM CARD ===== */
.hero-form-card {
    background: #f8fafc;
    border-radius: var(--radius-lg);
    padding: 0;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    box-shadow: var(--shadow-md);
    animation: fadeInRight 0.8s ease 0.3s both;
}

.form-card-header {
    background: var(--gradient-primary);
    padding: 14px 20px;
    color: white;
}

.form-card-header h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 2px;
}

.form-card-header p {
    font-size: 0.78rem;
    opacity: 0.8;
    margin: 0;
}

.hero-form-card form {
    padding: 18px 22px 12px;
}

.hero-form-card .form-control,
.hero-form-card .form-select {
    border: 1.5px solid #e5e7eb;
    border-radius: 8px;
    padding: 8px 12px;
    font-size: 0.85rem;
    transition: border-color 0.3s ease;
    background: white;
}

.hero-form-card .form-control:focus,
.hero-form-card .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(37,99,235,0.1);
}

.form-card-footer {
    padding: 8px 18px 14px;
    text-align: center;
    font-size: 0.72rem;
    color: #9ca3af;
}

.form-card-footer i {
    color: var(--success);
    margin-right: 4px;
}

/* ===== SOCIAL PROOF BAR ===== */
.social-proof-bar {
    background: transparent;
    padding: 0;
    margin: 0;
    overflow: visible;
}

/* Ürün slider dalganın üstünde */
.wave-text-row {
    padding: 10px 0 6px;
    background: transparent;
    overflow: hidden;
}

.product-slider-wrapper {
    width: 100%;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 3%, black 97%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 3%, black 97%, transparent);
}

.product-slider-track {
    display: flex;
    gap: 40px;
    width: max-content;
    animation: productSliderScroll 45s linear infinite;
}

.product-slider-track:hover {
    animation-play-state: paused;
}

.product-slider-item {
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    font-family: 'Poppins', sans-serif;
    font-size: 0.92rem;
    font-weight: 500;
    color: #1a2a4a;
    padding: 6px 18px;
    background: transparent;
    border: none;
    box-shadow: none;
    flex-shrink: 0;
}

.product-slider-item:hover {
    opacity: 0.7;
}

.product-slider-item i {
    font-size: 1.15rem;
    color: #0B3DDB;
}

@keyframes productSliderScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.wave-bar {
    position: relative;
    width: 100%;
    line-height: 0;
}

/* İnce dalga SVG - maks 30px */
.wave-svg {
    display: block;
    width: 100%;
    height: 30px;
}

.wave-path-1 {
    animation: waveFloat1 6s ease-in-out infinite;
}

.wave-path-2 {
    animation: waveFloat2 5s ease-in-out infinite;
}

.wave-path-3 {
    animation: waveFloat3 7s ease-in-out infinite;
}

.wave-path-4 {
    animation: waveFloat4 4.5s ease-in-out infinite;
}

@keyframes waveFloat1 {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-2px); }
}

@keyframes waveFloat2 {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(2px); }
}

@keyframes waveFloat3 {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-1.5px); }
}

@keyframes waveFloat4 {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(1.5px); }
}

.proof-item {
    padding: 0;
}

.proof-number {
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: #9CA3AF;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.proof-label {
    font-family: 'Poppins', sans-serif;
    font-size: 0.55rem;
    color: #9CA3AF;
    font-weight: 500;
    letter-spacing: 0.3px;
    opacity: 0.75;
    margin-top: 1px;
}

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

.bg-light-custom {
    background: #f8fafc;
}

.section-tag {
    display: inline-block;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
    position: relative;
    padding-left: 40px;
}

.section-tag::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 28px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.section-tag-center {
    padding-left: 0;
}

.section-tag-center::before {
    display: none;
}

.section-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 16px;
    line-height: 1.25;
}

.text-primary-custom {
    color: var(--primary);
}

.section-desc {
    font-size: 1.05rem;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 28px;
}

/* ===== IMAGE SHOWCASE ===== */
.image-showcase {
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    border-radius: var(--radius-lg);
    padding: 60px 40px;
    position: relative;
    overflow: hidden;
    min-height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-showcase-alt {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
}

.showcase-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--gradient-primary);
    color: white;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
}

.showcase-badge-alt {
    background: linear-gradient(135deg, var(--accent) 0%, #f97316 100%);
}

.showcase-placeholder {
    text-align: center;
    opacity: 0.5;
}

/* ===== FEATURE LIST ===== */
.feature-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-item {
    display: flex;
    gap: 16px;
    padding: 16px;
    border-radius: var(--radius);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateX(-20px);
}

.feature-item.animate-in {
    opacity: 1;
    transform: translateX(0);
}

.feature-item:hover {
    background: #f8fafc;
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.feature-item strong {
    display: block;
    font-size: 1.05rem;
    color: var(--secondary);
    margin-bottom: 4px;
}

.feature-item p {
    margin: 0;
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.5;
}

/* ===== SERVICE CARDS ===== */
.service-cards {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.service-card {
    display: flex;
    gap: 16px;
    align-items: center;
    padding: 16px 20px;
    background: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 1px solid #f1f5f9;
    opacity: 0;
    transform: translateX(20px);
}

.service-card.animate-in {
    opacity: 1;
    transform: translateX(0);
}

.service-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-light);
}

.service-card-icon {
    width: 44px;
    height: 44px;
    background: #eff6ff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.service-card strong {
    display: block;
    font-size: 0.95rem;
    color: var(--secondary);
    margin-bottom: 2px;
}

.service-card p {
    margin: 0;
    font-size: 0.82rem;
    color: #94a3b8;
}

/* ===== STEP CARDS ===== */
.step-card {
    text-align: center;
    padding: 32px 24px;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid #f1f5f9;
    position: relative;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.step-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.step-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.step-number {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    width: 32px;
    height: 32px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
}

.step-icon {
    width: 64px;
    height: 64px;
    background: #eff6ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 8px auto 16px;
    color: var(--primary);
    font-size: 1.4rem;
}

.step-card h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 8px;
}

.step-card p {
    font-size: 0.88rem;
    color: #64748b;
    margin: 0;
    line-height: 1.5;
}

/* ===== CAMPAIGN BANNER ===== */
.campaign-banner {
    background: var(--gradient-cta);
    padding: 50px 0;
    position: relative;
    overflow: hidden;
}

.campaign-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
    border-radius: 50%;
}

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

.campaign-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(245,158,11,0.2);
    color: var(--accent);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 600;
    margin-bottom: 12px;
    border: 1px solid rgba(245,158,11,0.3);
}

.campaign-banner h2 {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
}

.campaign-banner h2 span {
    color: var(--accent);
}

.campaign-banner p {
    color: rgba(255,255,255,0.8);
    font-size: 1.05rem;
    margin: 0;
}

/* ===== TESTIMONIALS ===== */
.testimonial-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow-sm);
    border: 1px solid #f1f5f9;
    height: 100%;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.testimonial-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

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

.testimonial-stars {
    margin-bottom: 16px;
    color: var(--accent);
    font-size: 0.95rem;
    display: flex;
    gap: 2px;
}

.testimonial-card > p {
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.65;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

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

.testimonial-author strong {
    display: block;
    color: var(--secondary);
    font-size: 0.9rem;
}

.testimonial-author span {
    color: #94a3b8;
    font-size: 0.8rem;
}

/* ===== PRICE HIGHLIGHTS ===== */
.price-highlights {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.price-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    background: white;
    border-radius: var(--radius);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.price-item:hover {
    border-color: var(--primary-light);
    box-shadow: var(--shadow-sm);
}

.price-icon {
    width: 40px;
    height: 40px;
    background: #fef3c7;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 1rem;
    flex-shrink: 0;
}

.price-item strong {
    display: block;
    font-size: 0.95rem;
    color: var(--secondary);
}

.price-range {
    font-size: 0.82rem;
    color: var(--primary);
    font-weight: 500;
}

/* ===== DISTRICT CARDS ===== */
.district-card {
    background: white;
    padding: 16px 20px;
    border-radius: var(--radius);
    text-align: center;
    font-weight: 600;
    color: var(--secondary);
    font-size: 0.95rem;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    opacity: 0;
    transform: scale(0.9);
}

.district-card.animate-in {
    opacity: 1;
    transform: scale(1);
}

.district-card:hover {
    border-color: var(--primary);
    color: var(--primary);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.district-card i {
    color: var(--primary);
    margin-right: 4px;
}

/* ===== FAQ ===== */
.faq-item {
    border: 1px solid #e2e8f0 !important;
    border-radius: var(--radius) !important;
    margin-bottom: 12px;
    overflow: hidden;
}

.faq-item .accordion-button {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    color: var(--secondary);
    padding: 18px 24px;
    background: white;
}

.faq-item .accordion-button:not(.collapsed) {
    background: #f8fafc;
    color: var(--primary);
    box-shadow: none;
}

.faq-item .accordion-button:focus {
    box-shadow: none;
}

.faq-item .accordion-body {
    padding: 0 24px 18px;
    color: #64748b;
    line-height: 1.7;
    font-size: 0.95rem;
}

/* ===== CTA FORM SECTION ===== */
.cta-form-section {
    background: var(--gradient-cta);
    position: relative;
    overflow: hidden;
}

.cta-form-section::before {
    content: '';
    position: absolute;
    top: -40%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
    border-radius: 50%;
}

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

.cta-form .form-control,
.cta-form .form-select {
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: var(--radius);
    padding: 14px 18px;
    font-size: 0.95rem;
    background: rgba(255,255,255,0.95);
    transition: all 0.3s ease;
}

.cta-form .form-control:focus,
.cta-form .form-select:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(245,158,11,0.2);
    background: white;
}

.cta-contact-options {
    text-align: center;
    margin-top: 28px;
    padding-top: 28px;
    border-top: 1px solid rgba(255,255,255,0.15);
}

/* ===== FLOATING CTA (Mobile) ===== */
.floating-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
}

.floating-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

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

.floating-btn-call:hover {
    background: var(--primary-dark);
    color: white;
}

.floating-btn-wp {
    background: var(--whatsapp);
    color: white;
}

.floating-btn-wp:hover {
    background: #20bd5a;
    color: white;
}

/* ===== FOOTER ===== */
.landing-footer {
    background: #0f172a;
    padding: 50px 0 0;
}

.footer-logo {
    height: 36px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.footer-contact i {
    color: var(--primary-light);
    margin-right: 8px;
    width: 16px;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Animation delays for staggered cards */
.step-card:nth-child(1) { transition-delay: 0.1s; }
.step-card:nth-child(2) { transition-delay: 0.2s; }
.step-card:nth-child(3) { transition-delay: 0.3s; }
.step-card:nth-child(4) { transition-delay: 0.4s; }

.feature-item:nth-child(1) { transition-delay: 0.1s; }
.feature-item:nth-child(2) { transition-delay: 0.2s; }
.feature-item:nth-child(3) { transition-delay: 0.3s; }

.service-card:nth-child(1) { transition-delay: 0.1s; }
.service-card:nth-child(2) { transition-delay: 0.2s; }
.service-card:nth-child(3) { transition-delay: 0.3s; }
.service-card:nth-child(4) { transition-delay: 0.4s; }

.testimonial-card:nth-child(1) { transition-delay: 0.1s; }
.testimonial-card:nth-child(2) { transition-delay: 0.2s; }
.testimonial-card:nth-child(3) { transition-delay: 0.3s; }

.district-card { transition: all 0.3s ease; }

/* ===== RESPONSIVE ===== */
@media (max-width: 991.98px) {
    .hero-title {
        font-size: 1.8rem;
    }

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

    .landing-section {
        padding: 60px 0;
    }

    .campaign-banner h2 {
        font-size: 1.6rem;
    }

    .landing-hero {
        padding: 28px 0;
    }

    body {
        padding-bottom: 56px;
    }
}

@media (max-width: 575.98px) {
    .hero-title {
        font-size: 1.5rem;
    }

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

    .hero-cta-group {
        flex-direction: column;
    }

    .hero-cta-group .btn {
        width: 100%;
        text-align: center;
    }

    .campaign-banner h2 {
        font-size: 1.35rem;
    }

    .step-card {
        padding: 24px 16px;
    }

    .landing-section {
        padding: 48px 0;
    }
}
