@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
    --primary: #f97316;
    --primary-dark: #ea580c;
    --secondary: #0f172a;
    --navy: #1e293b;
    --navy-light: #334155;
    --light: #ffffff;
    --gray: #64748b;
    --gray-light: #f1f5f9;
    --accent: #fb923c;
    --success: #22c55e;
}

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

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: var(--light);
    color: var(--secondary);
    overflow-x: hidden;
    line-height: 1.7;
}

/* ── BUTTONS ── */
.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border: none;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    color: white !important;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
}
.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark), #c2410c);
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(249, 115, 22, 0.4);
    color: white !important;
}
.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}
.btn-outline:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}

/* ── SECTION TITLES ── */
.section-title { text-align: center; margin-bottom: 55px; }
.section-label {
    display: inline-block;
    background: rgba(249,115,22,0.1);
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: 50px;
    margin-bottom: 14px;
}
.section-title h2 {
    font-size: 2.6rem;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 14px;
    line-height: 1.2;
}
.section-title h2 span { color: var(--primary); }
.section-title p { color: var(--gray); font-size: 1.05rem; max-width: 600px; margin: 0 auto; }

/* ── HERO SLIDER ── */
.hero-slider { position: relative; overflow: hidden; }

.hero-slide {
    display: none;
    min-height: 780px;
    align-items: center;
    position: relative;
}
.hero-slide.active {
    display: flex;
    animation: fadeIn 0.6s ease;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(249,115,22,0.15);
    border: 1px solid rgba(249,115,22,0.3);
    color: #fed7aa;
    font-size: 0.82rem;
    font-weight: 600;
    padding: 7px 18px;
    border-radius: 50px;
    margin-bottom: 22px;
    letter-spacing: 0.5px;
}
.hero-badge i { color: var(--primary); }

.hero-slide h1 {
    font-size: 3.6rem;
    font-weight: 800;
    color: white;
    line-height: 1.15;
    margin-bottom: 22px;
    animation: slideUp 0.8s ease forwards;
}
.hero-slide h1 span { color: var(--primary); }
.hero-slide p {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.82);
    margin-bottom: 35px;
    max-width: 580px;
    animation: slideUp 0.8s ease 0.2s both;
}
.hero-btns { display: flex; gap: 15px; flex-wrap: wrap; animation: slideUp 0.8s ease 0.4s both; }

.hero-stats {
    display: flex;
    gap: 35px;
    margin-top: 50px;
    flex-wrap: wrap;
    animation: slideUp 0.8s ease 0.6s both;
}
.hero-stat { text-align: center; }
.hero-stat strong { display: block; font-size: 1.8rem; font-weight: 800; color: var(--primary); }
.hero-stat span { font-size: 0.82rem; color: rgba(255,255,255,0.7); font-weight: 500; }

@keyframes slideUp {
    from { opacity: 0; transform: translateY(25px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Slider Controls */
.slider-controls {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 8px;
}
.slider-dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    border: none; cursor: pointer;
    transition: all 0.3s;
}
.slider-dot.active { background: var(--primary); width: 28px; border-radius: 10px; }

.slider-arrow {
    position: absolute;
    top: 50%; transform: translateY(-50%);
    width: 48px; height: 48px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
    cursor: pointer;
    z-index: 10;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.3s;
}
.slider-arrow:hover { background: var(--primary); border-color: var(--primary); }
.slider-arrow.prev { left: 25px; }
.slider-arrow.next { right: 25px; }

/* ── TRUST BAR ── */
.trust-bar {
    background: var(--secondary);
    padding: 18px 0;
}
.trust-bar .trust-items {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.75);
    font-size: 0.88rem;
    font-weight: 500;
}
.trust-item i { color: var(--primary); font-size: 1rem; }

/* ── FEATURES ── */
.features { padding: 90px 0; background: white; }

.feature-card {
    padding: 35px 28px;
    border-radius: 20px;
    background: var(--gray-light);
    transition: all 0.35s;
    height: 100%;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}
.feature-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transition: transform 0.35s;
}
.feature-card:hover::before { transform: scaleX(1); }
.feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(249,115,22,0.2);
    background: white;
    box-shadow: 0 25px 50px rgba(249,115,22,0.1);
}
.feature-icon-wrap {
    width: 70px; height: 70px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 22px;
    font-size: 1.6rem;
    color: white;
}
.feature-card h4 { font-size: 1.15rem; font-weight: 700; margin-bottom: 10px; color: var(--secondary); }
.feature-card p { color: var(--gray); margin: 0; font-size: 0.93rem; }

/* ── ABOUT (homepage snippet) ── */
.about { padding: 90px 0; background: var(--gray-light); }
.about-card {
    background: white;
    border-radius: 28px;
    padding: 55px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.06);
}
.about h2 { font-size: 2.5rem; font-weight: 800; margin-bottom: 18px; }
.about h2 span { color: var(--primary); }
.about .sub-heading { color: var(--primary); font-weight: 600; font-size: 1rem; margin-bottom: 18px; }
.about p { color: var(--gray); line-height: 1.85; margin-bottom: 18px; }
.about-stats { display: flex; gap: 30px; margin: 30px 0; flex-wrap: wrap; }
.about-stat {
    text-align: center;
    background: var(--gray-light);
    border-radius: 16px;
    padding: 20px 25px;
    flex: 1;
    min-width: 100px;
}
.about-stat strong { display: block; font-size: 2rem; font-weight: 800; color: var(--primary); }
.about-stat span { font-size: 0.8rem; color: var(--gray); font-weight: 600; }

.about-img-wrap {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    height: 420px;
}
.about-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.about-img-badge {
    position: absolute;
    bottom: 25px; left: 25px;
    background: white;
    border-radius: 16px;
    padding: 16px 22px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    display: flex; align-items: center; gap: 12px;
}
.about-img-badge i { font-size: 1.8rem; color: var(--primary); }
.about-img-badge strong { display: block; font-size: 1.1rem; font-weight: 800; color: var(--secondary); }
.about-img-badge span { font-size: 0.78rem; color: var(--gray); }

/* ── HOW IT WORKS ── */
.how-it-works { padding: 90px 0; background: var(--secondary); }
.how-it-works .section-title h2 { color: white; }
.how-it-works .section-title p { color: rgba(255,255,255,0.65); }

.step-card {
    text-align: center;
    padding: 40px 25px;
    position: relative;
}
.step-number {
    width: 70px; height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    font-size: 1.6rem;
    font-weight: 800;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 22px;
    position: relative;
    z-index: 1;
}
.step-card h4 { font-size: 1.15rem; font-weight: 700; color: white; margin-bottom: 10px; }
.step-card p { color: rgba(255,255,255,0.65); font-size: 0.92rem; }
.step-connector {
    position: absolute;
    top: 55px; right: -50%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), transparent);
    z-index: 0;
}

/* ── SERVICES ── */
.services { padding: 90px 0; background: white; }

.service-card {
    background: white;
    border-radius: 22px;
    padding: 38px 28px;
    text-align: center;
    transition: all 0.35s;
    height: 100%;
    border: 2px solid #e2e8f0;
    position: relative;
    overflow: hidden;
}
.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 25px 50px rgba(249,115,22,0.12);
}
.service-icon-wrap {
    width: 80px; height: 80px;
    margin: 0 auto 25px;
    border-radius: 22px;
    background: linear-gradient(135deg, var(--secondary), var(--navy-light));
    display: flex; align-items: center; justify-content: center;
    font-size: 1.8rem;
    color: white;
    transition: all 0.35s;
}
.service-card:hover .service-icon-wrap {
    background: linear-gradient(135deg, var(--primary), var(--accent));
}
.service-card h4 { font-size: 1.2rem; font-weight: 700; margin-bottom: 12px; color: var(--secondary); }
.service-card p { color: var(--gray); margin: 0; font-size: 0.92rem; }

/* ── PRICING ── */
.pricing { padding: 90px 0; background: var(--gray-light); }

.price-card {
    background: white;
    border-radius: 24px;
    padding: 42px 35px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0,0,0,0.06);
    transition: all 0.35s;
    height: 100%;
    position: relative;
    overflow: hidden;
    border: 2px solid #e2e8f0;
}
.price-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
}
.price-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(249,115,22,0.15);
    border-color: var(--primary);
}
.price-card.popular {
    border: 2px solid var(--primary);
    transform: scale(1.04);
    background: var(--secondary);
}
.price-card.popular h4,
.price-card.popular .price-amount,
.price-card.popular .price-features li { color: white; }
.price-card.popular .price-features li i { color: var(--primary); }
.price-card.popular .price-amount span { color: rgba(255,255,255,0.6); }
.price-card.popular:hover { transform: scale(1.04) translateY(-10px); }

.price-badge {
    position: absolute;
    top: 18px; right: 18px;
    background: var(--primary);
    color: white;
    padding: 5px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}
.price-card h4 { font-size: 1.2rem; font-weight: 700; margin-bottom: 8px; color: var(--secondary); }
.price-amount { font-size: 3rem; font-weight: 800; color: var(--secondary); line-height: 1; margin: 15px 0 5px; }
.price-amount span { font-size: 1rem; font-weight: 400; color: var(--gray); }
.price-period { font-size: 0.82rem; color: var(--gray); margin-bottom: 22px; }

.price-features { list-style: none; padding: 0; margin: 22px 0; text-align: left; }
.price-features li {
    padding: 9px 0;
    color: #475569;
    display: flex; align-items: center;
    font-size: 0.92rem;
    border-bottom: 1px solid #f1f5f9;
}
.price-features li:last-child { border-bottom: none; }
.price-features li i { color: var(--primary); margin-right: 10px; font-size: 0.85rem; }

.price-card .btn-primary { width: 100%; justify-content: center; margin-top: 10px; }

/* ── COVERAGE ── */
.coverage { padding: 90px 0; background: white; }

.coverage-box {
    background: linear-gradient(135deg, var(--secondary), var(--navy-light));
    border-radius: 28px;
    padding: 55px 45px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.coverage-box::before {
    content: '';
    position: absolute;
    width: 400px; height: 400px;
    border-radius: 50%;
    background: rgba(249,115,22,0.08);
    top: -150px; right: -100px;
}
.coverage-icon {
    width: 90px; height: 90px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 2rem;
    color: white;
}
.coverage-box h3 { color: white; font-size: 2rem; font-weight: 800; margin-bottom: 15px; }
.coverage-box p { color: rgba(255,255,255,0.72); margin-bottom: 18px; font-size: 1rem; }

/* ── CTA ── */
.cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    position: relative;
    overflow: hidden;
}
.cta::before {
    content: '';
    position: absolute;
    width: 500px; height: 500px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    top: -200px; right: -100px;
}
.cta h2 { color: white; font-weight: 800; font-size: 2.4rem; margin-bottom: 12px; }
.cta p { color: rgba(255,255,255,0.88); margin-bottom: 0; font-size: 1.05rem; }
.cta .btn-white {
    background: white;
    color: var(--primary);
    border: none;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}
.cta .btn-white:hover {
    background: var(--secondary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.2);
}

/* ── FOOTER ── */
.footer { background: var(--secondary); padding: 65px 0 25px; color: white; }
.footer-brand { font-size: 1.4rem; font-weight: 800; color: white; text-decoration: none; display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-brand i { color: var(--primary); }
.footer p.footer-desc { color: #94a3b8; font-size: 0.9rem; line-height: 1.75; margin-bottom: 22px; }
.footer h5 { font-weight: 700; margin-bottom: 22px; font-size: 1rem; color: white; }
.footer ul { list-style: none; padding: 0; }
.footer ul li { margin-bottom: 10px; }
.footer ul li a { color: #94a3b8; text-decoration: none; font-size: 0.9rem; transition: color 0.3s; display: flex; align-items: center; gap: 7px; }
.footer ul li a:hover { color: var(--primary); }
.footer-contact li { color: #94a3b8; font-size: 0.9rem; display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; }
.footer-contact li i { color: var(--primary); margin-top: 3px; flex-shrink: 0; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    margin-top: 40px;
    padding-top: 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}
.footer-bottom p { color: #64748b; margin: 0; font-size: 0.85rem; }
.footer-bottom a { color: #64748b; text-decoration: none; font-size: 0.85rem; }
.footer-bottom a:hover { color: var(--primary); }

/* ── ABOUT PAGE ── */
.page-hero {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--navy-light) 100%);
    padding: 140px 0 80px;
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute;
    width: 600px; height: 600px;
    border-radius: 50%;
    background: rgba(249,115,22,0.07);
    top: -200px; right: -150px;
}
.page-hero h1 { color: white; font-size: 3rem; font-weight: 800; margin-bottom: 15px; }
.page-hero p { color: rgba(255,255,255,0.75); font-size: 1.1rem; }
.breadcrumb-item a { color: var(--primary); text-decoration: none; }
.breadcrumb-item.active { color: rgba(255,255,255,0.6); }
.breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.4); }

.about-page-section { padding: 90px 0; }
.about-page-section.bg-light-gray { background: var(--gray-light); }

.value-card {
    background: white;
    border-radius: 20px;
    padding: 35px 28px;
    height: 100%;
    border: 2px solid #e2e8f0;
    transition: all 0.35s;
    text-align: center;
}
.value-card:hover {
    border-color: var(--primary);
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(249,115,22,0.1);
}
.value-icon {
    width: 65px; height: 65px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem;
    color: white;
    margin: 0 auto 18px;
}
.value-card h5 { font-weight: 700; margin-bottom: 10px; color: var(--secondary); }
.value-card p { color: var(--gray); font-size: 0.9rem; margin: 0; }

.team-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid #e2e8f0;
    transition: all 0.35s;
    text-align: center;
}
.team-card:hover {
    border-color: var(--primary);
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(249,115,22,0.1);
}
.team-img {
    height: 200px;
    background: linear-gradient(135deg, var(--secondary), var(--navy-light));
    display: flex; align-items: center; justify-content: center;
    font-size: 4rem;
    color: rgba(255,255,255,0.3);
}
.team-info { padding: 22px; }
.team-info h5 { font-weight: 700; margin-bottom: 4px; color: var(--secondary); }
.team-info span { font-size: 0.85rem; color: var(--primary); font-weight: 600; }
.team-info p { font-size: 0.88rem; color: var(--gray); margin-top: 10px; margin-bottom: 0; }

.milestone-item {
    display: flex;
    gap: 22px;
    margin-bottom: 35px;
    align-items: flex-start;
}
.milestone-year {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    font-weight: 800;
    font-size: 0.9rem;
    padding: 8px 16px;
    border-radius: 50px;
    white-space: nowrap;
    flex-shrink: 0;
    margin-top: 3px;
}
.milestone-item h5 { font-weight: 700; margin-bottom: 5px; color: var(--secondary); }
.milestone-item p { color: var(--gray); font-size: 0.9rem; margin: 0; }

/* ── RESPONSIVE ── */
@media (max-width: 991px) {
    .hero-slide h1 { font-size: 2.6rem; }
    .hero-slide { min-height: 600px; }
    .price-card.popular { transform: none; }
    .price-card.popular:hover { transform: translateY(-10px); }
    .about-card { padding: 35px; }
    .section-title h2 { font-size: 2.1rem; }
    .step-connector { display: none; }
}

@media (max-width: 767px) {
    .hero-slide h1 { font-size: 2rem; }
    .hero-slide { min-height: 520px; }
    .slider-arrow { display: none; }
    .hero-stats { gap: 20px; }
    .trust-bar .trust-items { gap: 18px; }
    .about-card { padding: 25px; }
    .coverage-box { padding: 35px 25px; }
    .cta h2 { font-size: 1.8rem; }
    .page-hero h1 { font-size: 2.1rem; }
    .page-hero { padding: 120px 0 60px; }
}
