/* reseller.css */
:root {
    --primary: #1e3a5f;
    --primary-light: #2c5282;
    --primary-dark: #152a45;
    --accent: #3b82f6;
    --accent-light: #60a5fa;
    --highlight: #f59e0b;
    --highlight-subtle: #fbbf24;
    --bg-light: #f8fafc;
    --bg-cream: #f1f5f9;
    --text-dark: #0f172a;
    --text-body: #334155;
    --text-muted: #64748b;
    --white: #ffffff;
    --border: #e2e8f0;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1);
}

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

html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    scroll-behavior: smooth;
    color: var(--text-body);
    background-color: var(--white);
}

/* Header Styles - UNCHANGED */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #B8E0FF;
    padding: 20px 0;
    transition: all 0.3s ease;
}

.header.scrolled {
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    padding: 15px 0;
}

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

.navbar-brand img {
    height: 80px !important;
    width: auto !important;
    max-height: unset !important;
    object-fit: contain;
    transform: translateY(-8px);
}

.navbar-nav .nav-link {
    color: #000 !important;
    font-weight: 550;
    font-size: 12.5px;
    padding: 10px 16px !important;
    position: relative;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: #F5D547;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 60%;
}

.header-contact {
    display: flex;
    align-items: center;
    gap: 12px;
}

.free-call-btn {
    display: flex;
    align-items: center;
    background: #fff;
    padding: 8px 20px 8px 8px;
    border-radius: 50px;
    text-decoration: none;
    color: #000;
    font-weight: 600;
    font-size: 14px;
    gap: 10px;
    transition: all 0.3s ease;
}

.free-call-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.free-call-btn i {
    width: 36px;
    height: 36px;
    background: #25D366;
    color: green;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
}

.btn-theme-yellow {
    background: #F5D547;
    color: #000;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: none;
}

.btn-theme-yellow:hover {
    background: #000;
    color: #fff;
    transform: translateY(-2px);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(0,0,0, 1)' stroke-width='2' stroke-linecap='round' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E") !important;
}

/* Hero Section - REFINED */
.reseller-hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    padding: 140px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero-pattern {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(59, 130, 246, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.6) 0%, transparent 40%);
    pointer-events: none;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 24px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    animation: float 3s ease-in-out infinite;
}

.hero-badge i {
    color: var(--accent);
}

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

.hero-title {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.1;
    color: var(--text-dark);
    margin-bottom: 24px;
    letter-spacing: -2px;
}

.hero-title .highlight {
    color: var(--primary);
    position: relative;
    display: inline-block;
}

.hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 12px;
    background: linear-gradient(120deg, rgba(59, 130, 246, 0.3) 0%, rgba(59, 130, 246, 0.1) 100%);
    z-index: -1;
    border-radius: 4px;
}

.hero-subtitle {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-body);
    margin-bottom: 40px;
    max-width: 540px;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.stat-label {
    font-size: 14px;
    color: var(--text-muted);
    margin-top: 4px;
    font-weight: 500;
}

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

.btn-primary-hero {
    background: var(--primary);
    color: var(--white);
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    border: 2px solid var(--primary);
    box-shadow: var(--shadow-lg);
}

.btn-primary-hero:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
    color: var(--white);
}

.btn-secondary-hero {
    background: transparent;
    color: var(--primary);
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    border: 2px solid var(--border);
}

.btn-secondary-hero:hover {
    background: var(--bg-light);
    border-color: var(--primary);
    transform: translateY(-2px);
    color: var(--primary);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-image {
    width: 90%;
    height: 400px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    position: relative;
    z-index: 1;
    border: 4px solid var(--white);
}

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

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

.floating-card {
    position: absolute;
    background: var(--white);
    padding: 16px 24px;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 2;
    animation: floatCard 4s ease-in-out infinite;
    border: 1px solid var(--border);
}

.floating-card i {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 18px;
}

.floating-card span {
    font-weight: 700;
    color: var(--text-dark);
    font-size: 14px;
}

.card-1 {
    top: 20px;
    right: 0;
    animation-delay: 0s;
}

.card-2 {
    bottom: 100px;
    left: -20px;
    animation-delay: 1.3s;
}

.card-3 {
    bottom: 20px;
    right: 20px;
    animation-delay: 2.6s;
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(1deg); }
}

/* Common Section Styles */
.section-tag {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    color: var(--white);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 20px;
    box-shadow: var(--shadow);
}

.section-tag.blue {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
}

.section-tag.center {
    display: inline-block;
}

.section-heading {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    color: var(--text-dark);
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.text-accent {
    color: var(--accent);
    position: relative;
}

.section-desc {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-body);
    margin-bottom: 32px;
}

/* Zig Zag Sections */
.zig-zag-row {
    margin-bottom: 0;
    padding: 100px 0;
}

.partner-section {
    background: var(--white);
    padding: 80px 0;
}

.content-block {
    padding-right: 40px;
}

.image-block {
    position: relative;
    padding: 40px;
}

.image-block img {
    width: 100%;
    border-radius: 24px;
    box-shadow: var(--shadow-xl);
    position: relative;
    z-index: 2;
    border: 4px solid var(--white);
}

.image-bg-shape {
    position: absolute;
    width: 80%;
    height: 90%;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    border-radius: 24px;
    top: 20px;
    right: 20px;
    z-index: 1;
    transform: rotate(3deg);
    transition: transform 0.3s ease;
    opacity: 0.9;
}

.image-block:hover .image-bg-shape {
    transform: rotate(5deg) scale(1.02);
}

.image-bg-shape.blue-shape {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    left: 20px;
    right: auto;
    transform: rotate(-3deg);
}

.image-bg-shape.accent-shape {
    background: linear-gradient(135deg, var(--highlight), var(--highlight-subtle));
}

.image-block:hover .image-bg-shape.blue-shape {
    transform: rotate(-5deg) scale(1.02);
}

/* Feature List */
.feature-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-item {
    display: flex;
    gap: 20px;
    padding: 24px;
    background: var(--bg-light);
    border-radius: 16px;
    transition: all 0.3s ease;
    border: 1px solid var(--border);
}

.feature-item:hover {
    border-color: var(--accent);
    transform: translateX(8px);
    box-shadow: var(--shadow-lg);
    background: var(--white);
}

.feature-icon-box {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--white);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon-box {
    transform: scale(1.1) rotate(5deg);
    background: var(--primary);
}

.feature-text h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--text-dark);
}

.feature-text p {
    font-size: 14px;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.6;
}

/* Experience Badge */
.experience-badge {
    position: absolute;
    bottom: 60px;
    left: 0;
    background: var(--primary);
    color: var(--white);
    padding: 24px 32px;
    border-radius: 20px;
    z-index: 3;
    box-shadow: var(--shadow-xl);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

.exp-number {
    display: block;
    font-size: 42px;
    font-weight: 800;
    line-height: 1;
    color: var(--highlight-subtle);
}

.exp-text {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
    opacity: 0.9;
}

/* Advantages Section */
.advantages-section {
    background: var(--bg-cream);
    padding: 80px 0;
}

.advantage-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.adv-card {
    background: var(--white);
    padding: 28px;
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.adv-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent);
    box-shadow: var(--shadow-xl);
}

.adv-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--bg-cream), var(--bg-light));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--accent);
    margin-bottom: 20px;
    transition: all 0.3s ease;
    border: 2px solid var(--border);
}

.adv-card:hover .adv-icon {
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    color: var(--white);
    transform: scale(1.1);
    border-color: transparent;
}

.adv-card h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.adv-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

.floating-stat {
    position: absolute;
    top: 60px;
    right: 0;
    background: var(--white);
    padding: 20px 28px;
    border-radius: 16px;
    box-shadow: var(--shadow-xl);
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 16px;
    border: 1px solid var(--border);
}

.floating-stat i {
    font-size: 32px;
    color: var(--highlight);
}

.stat-big {
    display: block;
    font-size: 24px;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1;
}

.stat-small {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 500;
}

/* Tiers Section */
.tiers-section {
    background: var(--white);
    padding: 80px 0;
}

.tier-timeline {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.tier-item {
    display: flex;
    gap: 24px;
    padding: 24px;
    background: var(--bg-light);
    border-radius: 16px;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.tier-item:hover {
    background: var(--white);
    box-shadow: var(--shadow-lg);
    transform: translateX(8px);
    border-left-color: var(--accent);
}

.tier-badge {
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    height: fit-content;
    white-space: nowrap;
    box-shadow: var(--shadow-sm);
}

.tier-badge.registered {
    background: var(--bg-cream);
    color: var(--text-muted);
    border: 1px solid var(--border);
}

.tier-badge.silver {
    background: linear-gradient(135deg, #e2e8f0, #cbd5e0);
    color: #475569;
}

.tier-badge.gold {
    background: linear-gradient(135deg, #fcd34d, #f59e0b);
    color: #92400e;
}

.tier-badge.platinum {
    background: linear-gradient(135deg, #1e293b, #475569);
    color: var(--white);
}

.tier-content h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.tier-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.tier-content li {
    font-size: 14px;
    color: var(--text-muted);
    position: relative;
    padding-left: 20px;
}

.tier-content li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
}

/* Tier Visual */
.tier-visual {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
}

.tier-circle {
    position: absolute;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 14px;
    box-shadow: var(--shadow-xl);
    animation: orbit 20s linear infinite;
}

.platinum-tier {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #1e293b, #475569);
    color: var(--white);
    top: -60px;
    left: -60px;
    animation-delay: 0s;
}

.gold-tier {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #fcd34d, #f59e0b);
    color: #92400e;
    top: -50px;
    right: -50px;
    animation-delay: -5s;
}

.silver-tier {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #e2e8f0, #cbd5e0);
    color: #475569;
    bottom: -40px;
    right: -40px;
    animation-delay: -10s;
}

.reg-tier {
    width: 60px;
    height: 60px;
    background: var(--bg-cream);
    color: var(--text-muted);
    bottom: -30px;
    left: -30px;
    animation-delay: -15s;
    border: 2px solid var(--border);
}

@keyframes orbit {
    0% { transform: rotate(0deg) translateX(20px) rotate(0deg); }
    100% { transform: rotate(360deg) translateX(20px) rotate(-360deg); }
}

/* Onboarding Section */
.onboarding-section {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.onboarding-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.section-header {
    margin-bottom: 60px;
}

.section-header .section-desc {
    max-width: 600px;
}

.process-timeline {
    position: relative;
    padding: 40px 0;
}

.process-line {
    position: absolute;
    top: 120px;
    left: 12.5%;
    right: 12.5%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--primary));
    border-radius: 2px;
    z-index: 0;
    opacity: 0.3;
}

.process-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 24px;
    text-align: center;
    position: relative;
    z-index: 1;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid var(--border);
    height: 100%;
    box-shadow: var(--shadow);
}

.process-card:hover {
    transform: translateY(-12px);
    border-color: var(--accent);
    box-shadow: var(--shadow-xl);
}

.process-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 18px;
    color: var(--white);
    box-shadow: var(--shadow-lg);
}

.process-icon {
    width: 80px;
    height: 80px;
    background: var(--bg-light);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px auto;
    font-size: 32px;
    color: var(--accent);
    transition: all 0.3s ease;
    border: 2px solid var(--border);
}

.process-card:hover .process-icon {
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    color: var(--white);
    transform: scale(1.1);
    border-color: transparent;
}

.process-card h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.process-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

/* Registration Section */
.registration-section {
    background: var(--white);
    padding: 100px 0;
}

.form-info {
    padding-right: 40px;
    position: sticky;
    top: 120px;
}

.contact-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 40px 0;
}

.c-feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.c-feature i {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--bg-light), var(--bg-cream));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--accent);
    flex-shrink: 0;
    border: 1px solid var(--border);
}

.c-feature h5 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--text-dark);
}

.c-feature p {
    font-size: 14px;
    color: var(--text-muted);
    margin: 0;
}

.direct-contact {
    padding: 24px;
    background: var(--bg-light);
    border-radius: 16px;
    margin-top: 30px;
    border: 1px solid var(--border);
}

.direct-contact p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.phone-link {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
}

.phone-link:hover {
    color: var(--accent);
    gap: 16px;
}

.phone-link i {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--white);
}

/* Form Container */
.form-container {
    background: var(--white);
    padding: 48px;
    border-radius: 24px;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border);
}

.partner-form .form-group {
    margin-bottom: 24px;
}

.partner-form label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
    display: block;
}

.partner-form .form-control {
    border: 2px solid var(--border);
    border-radius: 12px;
    padding: 14px 18px;
    font-size: 15px;
    transition: all 0.3s ease;
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: var(--bg-light);
}

.partner-form .form-control:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
    outline: none;
    background: var(--white);
}

.checkbox-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    background: var(--bg-light);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    color: var(--text-body);
    margin: 0;
    border: 1px solid var(--border);
}

.checkbox-item:hover {
    background: var(--white);
    border-color: var(--accent);
}

.checkbox-item input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--accent);
    cursor: pointer;
}

.checkbox-item.main-check {
    background: transparent;
    padding: 0;
    border: none;
}

.checkbox-item.main-check a {
    color: var(--accent);
    text-decoration: underline;
    font-weight: 600;
}

.terms-check {
    margin-top: 30px;
}

.btn-submit {
    width: 100%;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    border: none;
    padding: 18px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    margin-top: 10px;
    box-shadow: var(--shadow-lg);
}

.btn-submit:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

/* FAQ Section */
.faq-section {
    background: var(--bg-cream);
    padding: 100px 0;
}

.accordion-item {
    background: var(--white);
    border: none;
    border-radius: 16px;
    margin-bottom: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
}

.accordion-button {
    padding: 24px;
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    background: var(--white);
    border: none;
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    background: var(--bg-light);
    color: var(--primary);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.accordion-button::after {
    background-size: 20px;
    transition: all 0.3s ease;
    filter: hue-rotate(200deg);
}

.accordion-body {
    padding: 24px;
    color: var(--text-body);
    line-height: 1.8;
    font-size: 15px;
}

/* Footer Styles - UNCHANGED */
.zen-mega-footer {
    width: 100%;
    position: relative;
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: linear-gradient(135deg, #E3F2FD 0%, #BBDEFB 50%, #E1F5FE 100%);
    overflow: hidden;
}

.zen-footer-wave {
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    height: 100px;
    z-index: 1;
}

.zen-footer-wave svg {
    width: 100%;
    height: 100%;
    display: block;
}

.zen-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}

.zen-footer-main {
    padding: 80px 0 40px;
    position: relative;
}

.zen-footer-cta {
    background: linear-gradient(135deg, rgba(255,255,255,0.9), rgba(255,255,255,0.6));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.5);
    border-radius: 16px;
    padding: 40px;
    margin-bottom: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.15);
    position: relative;
    overflow: hidden;
}

.zen-footer-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(74,144,226,0.2) 0%, transparent 70%);
    border-radius: 50%;
}

.zen-cta-title {
    font-size: 2rem;
    font-weight: 800;
    color: #1a365d;
    margin: 0 0 10px 0;
    line-height: 1.2;
}

.zen-cta-desc {
    color: #4a5568;
    font-size: 1.1rem;
    margin: 0;
    max-width: 500px;
}

.zen-cta-buttons {
    display: flex;
    gap: 16px;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.zen-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.zen-btn-primary {
    background: linear-gradient(135deg, #4A90E2, #00C9FF);
    color: white;
    box-shadow: 0 4px 15px rgba(74,144,226,0.4);
}

.zen-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74,144,226,0.6);
    color: white;
}

.zen-btn-secondary {
    background: rgba(255,255,255,0.8);
    color: #1a365d;
    border-color: rgba(74,144,226,0.3);
}

.zen-btn-secondary:hover {
    background: white;
    border-color: #4A90E2;
    transform: translateY(-2px);
    color: #1a365d;
}

.zen-footer-grid {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.zen-brand-col {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.zen-footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #1a365d;
}

.zen-logo-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #4A90E2, #00C9FF);
    border-radius: 14px;
    display: grid;
    place-items: center;
    color: white;
    box-shadow: 0 4px 15px rgba(74,144,226,0.3);
}

.zen-logo-icon svg {
    width: 28px;
    height: 28px;
}

.zen-logo-main {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1;
    background: linear-gradient(135deg, #1a365d, #4A90E2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.zen-logo-sub {
    display: block;
    font-size: 0.75rem;
    color: #4a5568;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.zen-brand-desc {
    color: #4a5568;
    line-height: 1.7;
    font-size: 0.95rem;
    margin: 0;
}

.zen-contact-cards {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.zen-contact-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: rgba(255,255,255,0.6);
    border: 1px solid rgba(255,255,255,0.5);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.zen-contact-card:hover {
    background: white;
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.zen-contact-card.zen-whatsapp:hover {
    border-color: #25D366;
    background: rgba(37,211,102,0.05);
}

.zen-cc-icon {
    font-size: 1.4rem;
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    background: rgba(255,255,255,0.8);
    border-radius: 10px;
}

.zen-cc-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.zen-cc-label {
    font-size: 0.75rem;
    color: #4a5568;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.zen-cc-value {
    font-size: 0.95rem;
    color: #1a365d;
    font-weight: 700;
}

.zen-social-row {
    display: flex;
    gap: 12px;
    margin-top: 8px;
}

.zen-social-link {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    background: rgba(255,255,255,0.6);
    border: 1px solid rgba(255,255,255,0.5);
    border-radius: 12px;
    color: #4a5568;
    transition: all 0.3s ease;
}

.zen-social-link svg {
    width: 20px;
    height: 20px;
}

.zen-social-link:hover {
    background: #4A90E2;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(74,144,226,0.4);
    border-color: transparent;
}

.zen-links-col {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.zen-link-group {
    padding: 20px;
    background: rgba(255,255,255,0.4);
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.5);
    transition: all 0.3s ease;
}

.zen-link-group:hover {
    background: rgba(255,255,255,0.7);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.15);
}

.zen-group-title {
    font-size: 1.1rem;
    font-weight: 800;
    color: #1a365d;
    margin: 0 0 16px 0;
    padding-bottom: 12px;
    border-bottom: 2px solid rgba(74,144,226,0.2);
    position: relative;
}

.zen-group-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #4A90E2, #00C9FF);
    border-radius: 2px;
}

.zen-subgroups {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.zen-subgroup h4 {
    font-size: 0.8rem;
    color: #4A90E2;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 0 8px 0;
    font-weight: 700;
}

.zen-subgroup ul,
.zen-simple-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.zen-subgroup a,
.zen-simple-list a {
    color: #4a5568;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.2s ease;
    display: inline-block;
    padding: 2px 0;
}

.zen-subgroup a:hover,
.zen-simple-list a:hover {
    color: #4A90E2;
    transform: translateX(4px);
}

.zen-address-bar {
    background: rgba(255,255,255,0.5);
    border: 1px solid rgba(255,255,255,0.5);
    border-radius: 12px;
    padding: 20px 24px;
    margin-top: 20px;
}

.zen-address-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #4a5568;
    font-size: 0.9rem;
    line-height: 1.6;
}

.zen-address-item svg {
    flex-shrink: 0;
    color: #4A90E2;
    margin-top: 2px;
}

.zen-footer-bottom {
    background: rgba(255,255,255,0.8);
    border-top: 1px solid rgba(255,255,255,0.5);
    padding: 24px 0;
    backdrop-filter: blur(10px);
}

.zen-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 0.85rem;
    color: #4a5568;
}

.zen-bottom-links {
    display: flex;
    align-items: center;
    gap: 12px;
}

.zen-bottom-links a {
    color: #4a5568;
    text-decoration: none;
    transition: color 0.2s;
}

.zen-bottom-links a:hover {
    color: #4A90E2;
}

.zen-dot {
    opacity: 0.5;
}

.zen-credits a {
    color: #4A90E2;
    text-decoration: none;
    font-weight: 600;
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-lg);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary);
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 52px;
    }
    
    .zen-footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .zen-brand-col {
        max-width: 600px;
    }
    
    .zen-links-col {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-line {
        display: none;
    }
}

@media (max-width: 991px) {
    .hero-title {
        font-size: 42px;
    }
    
    .hero-visual {
        margin-top: 60px;
        height: 400px;
    }
    
    .main-image {
        height: 300px;
    }
    
    .content-block {
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .section-heading {
        font-size: 36px;
    }
    
    .zig-zag-row {
        padding: 60px 0;
    }
    
    .advantage-cards {
        grid-template-columns: 1fr;
    }
    
    .checkbox-group {
        grid-template-columns: 1fr;
    }
    
    .form-info {
        position: relative;
        top: 0;
        margin-bottom: 40px;
    }
    
    .form-container {
        padding: 32px;
    }
}

@media (max-width: 768px) {
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .btn-primary-hero,
    .btn-secondary-hero {
        width: 100%;
        justify-content: center;
    }
    
    .floating-card {
        display: none;
    }
    
    .tier-content ul {
        grid-template-columns: 1fr;
    }
    
    .zen-footer-cta {
        flex-direction: column;
        text-align: center;
        padding: 30px 24px;
    }
    
    .zen-cta-title {
        font-size: 1.5rem;
    }
    
    .zen-links-col {
        grid-template-columns: 1fr;
    }
    
    .zen-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .zen-address-item {
        flex-direction: column;
        text-align: center;
    }
    
    .header-contact {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 36px;
    }
    
    .section-heading {
        font-size: 28px;
    }
    
    .zen-cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .zen-btn {
        width: 100%;
        justify-content: center;
    }
    
    .form-container {
        padding: 24px;
    }
    
    .process-card {
        margin-bottom: 30px;
    }
}

/* Animation Classes */
[data-aos] {
    pointer-events: none;
}
[data-aos].aos-animate {
    pointer-events: auto;
}