:root {
    --primary: #FF8C00;
    --primary-gradient: linear-gradient(135deg, #FF8008 0%, #FFC837 100%);
    --secondary: #1A1A2E;
    --accent: #E94560;
    --text: #2D3436;
    --light: #F8F9FA;
    --white: #FFFFFF;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --border-radius: 12px;
    --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

body.no-scroll {
    overflow: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-narrow {
    max-width: 800px;
}

/* Typography */
h1,
h2,
h3,
h4 {
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

h1 {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
}

h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    text-align: center;
}

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

.text-gradient {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    gap: 10px;
    font-size: 1rem;
}

.btn-large {
    padding: 18px 36px;
    font-size: 1.1rem;
}

.btn-full {
    width: 100%;
}

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

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 140, 0, 0.4);
}

.btn-phone {
    background: var(--secondary);
    color: white;
}

.btn-whatsapp {
    background: #25D366;
    color: white;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-3px);
}

/* Header */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}

.main-header.scrolled {
    padding: 10px 0;
    background: rgba(26, 26, 46, 0.9);
    backdrop-filter: blur(15px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

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

.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
    text-decoration: none;
}

.desktop-nav a {
    color: var(--white);
    text-decoration: none;
    margin: 0 15px;
    font-weight: 500;
    transition: var(--transition);
    opacity: 0.8;
}

.desktop-nav a:hover {
    opacity: 1;
    color: var(--primary);
}

/* Nav Toggle (Hamburger) */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1100;
}

.nav-toggle span {
    width: 100%;
    height: 3px;
    background: var(--white);
    border-radius: 10px;
    transition: var(--transition);
}

.nav-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: url('hero.png') center/cover no-repeat;
    color: white;
    padding-top: 100px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(26, 26, 46, 0.95), rgba(26, 26, 46, 0.5));
}

.hero-container {
    position: relative;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: center;
}

/* Trust Badges */
.trust-badges-top {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.badge {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 6px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 35px;
    opacity: 0.9;
    max-width: 600px;
}

.hero-features {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.08);
    padding: 12px 24px;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Form Card */
.form-container {
    perspective: 1000px;
}

.form-card {
    background: var(--white);
    padding: 40px;
    border-radius: 24px;
    color: var(--text);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    transform-style: preserve-3d;
}

.form-card h3 {
    margin-bottom: 10px;
    color: var(--secondary);
}

.form-card p {
    margin-bottom: 25px;
    color: #666;
    font-size: 0.95rem;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.form-group input {
    width: 100%;
    padding: 16px;
    border: 2px solid #eee;
    border-radius: var(--border-radius);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 15px rgba(255, 140, 0, 0.1);
}

.form-note {
    text-align: center;
    font-size: 0.85rem;
    margin-top: 15px;
    color: #888;
}

/* Sections */
section {
    padding: 100px 0;
}

.section-header {
    margin-bottom: 60px;
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* District Grid */
.district-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.district-card {
    background: var(--light);
    padding: 35px;
    border-radius: 20px;
    text-decoration: none;
    color: var(--text);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

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

.district-card h4 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.district-card span {
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

/* FAQ */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    padding: 30px;
    background: var(--light);
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.faq-item h4 {
    margin-bottom: 15px;
    color: var(--secondary);
    font-size: 1.25rem;
}

/* Footer */
.main-footer {
    padding: 60px 0;
    background: var(--secondary);
    color: white;
}

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

.footer-links a {
    color: white;
    text-decoration: none;
    margin-left: 20px;
    opacity: 0.7;
    transition: var(--transition);
}

.footer-links a:hover {
    opacity: 1;
    color: var(--primary);
}

/* Sticky Mobile CTA & WhatsApp */
.mobile-sticky-cta {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    z-index: 2000;
    display: none;
    flex-direction: column;
    gap: 12px;
}

/* Subpages */
.hero-mini {
    background: var(--secondary);
    padding: 120px 0 80px;
    color: white;
    text-align: center;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.check-list {
    list-style: none;
    margin: 35px 0;
}

.check-list li {
    position: relative;
    padding-left: 40px;
    margin-bottom: 20px;
    font-weight: 500;
    font-size: 1.1rem;
}

.check-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 800;
}

/* Process & Trust Sections */
.process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.step-card {
    background: var(--white);
    padding: 40px;
    border-radius: 24px;
    text-align: center;
    box-shadow: var(--shadow);
    position: relative;
    border-top: 4px solid var(--primary);
    transition: var(--transition);
}

.step-card:hover {
    transform: translateY(-10px);
}

.step-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    opacity: 0.15;
    margin-bottom: -30px;
    display: block;
}

.step-card h3 {
    margin-top: 20px;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.trust-highlights {
    display: flex;
    justify-content: space-around;
    padding: 40px;
    background: var(--secondary);
    border-radius: 30px;
    color: white;
    gap: 30px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.trust-icon {
    font-style: normal;
    font-weight: 800;
    font-size: 1.5rem;
    background: var(--primary);
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
}

.trust-item h4 {
    margin-bottom: 4px;
    font-size: 1.1rem;
    color: var(--primary);
}

.trust-item p {
    font-size: 0.9rem;
    opacity: 0.8;
}

.image-placeholder {
    background: var(--light);
    border-radius: 30px;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.info-card {
    background: white;
    padding: 40px;
    border-radius: 24px;
    box-shadow: var(--shadow);
    text-align: center;
}

/* Animations */
.animate-ready {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* Responsive */
@media (max-width: 992px) {
    .process-steps {
        grid-template-columns: 1fr;
    }

    .trust-highlights {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-container,
    .grid-2 {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-features,
    .trust-badges-top,
    .check-list li {
        justify-content: center;
    }

    .hero {
        padding-bottom: 80px;
    }
}

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

    .desktop-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: var(--secondary);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: var(--transition);
        z-index: 1050;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    }

    .desktop-nav.active {
        right: 0;
    }

    .desktop-nav a {
        font-size: 1.5rem;
        margin: 20px 0;
        opacity: 1;
    }

    .hero {
        min-height: auto;
    }

    .mobile-sticky-cta {
        display: flex;
    }

    section {
        padding: 60px 0;
    }

    .form-card {
        padding: 30px 20px;
    }

    .footer-bottom {
        justify-content: center;
        text-align: center;
    }

    .footer-links a {
        margin: 0 10px;
    }
}