@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Playfair+Display:wght@700&display=swap');

* { margin:0; padding:0; box-sizing:border-box; }
body { 
    font-family: 'Inter', sans-serif; 
    line-height:1.6; 
    color:#333; 
}

/* Header */
header {
    background: white;
    padding: 1rem 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    flex-wrap: wrap;
    gap: 1rem;
}

.logo {
    display: flex;
    align-items: center;
}

.main-logo { height: 80px; width:auto; transition: all 0.4s; }
.main-logo:hover { transform: scale(1.08); }

.nav-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.nav-links a {
    text-decoration: none;
    color: #1e40af;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    padding-bottom: 0.3rem;
    border-bottom: 2px solid transparent;
}

.nav-links a:hover {
    color: #0066cc;
    border-bottom: 2px solid #00cc99;
}

.header-cta {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

.callback-btn {
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.4s;
    font-size: 0.9rem;
}

.callback-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.cta-btn {
    background: linear-gradient(135deg, #1e40af, #3b82f6);
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.4s;
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
}

.cta-btn:hover { 
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(30, 64, 175, 0.3);
}

/* Hero */
.hero {
    background: linear-gradient(rgba(30,64,175,0.9), rgba(30,64,175,0.85)), url('https://picsum.photos/id/1015/2000/1200') center/cover;
    color: white;
    min-height: 90vh;
    display: flex;
    align-items: center;
    text-align: center;
    padding: 0 5%;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 { 
    font-size: 3.2rem; 
    font-family: 'Playfair Display', serif;
    margin-bottom: 1rem;
}

.tagline { 
    font-size: 1.8rem; 
    margin: 20px 0;
    font-weight: 500;
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.big-btn {
    font-size: 1.1rem;
    padding: 14px 32px !important;
}

/* Sections */
.section {
    padding: 80px 5%;
    text-align: center;
}

.section h2 {
    font-size: 2.2rem;
    color: #1e40af;
    margin-bottom: 3rem;
    font-weight: 700;
}

.bg-light { background: #f8fafc; }

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.card {
    background: white;
    padding: 40px 25px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.4s;
    border-top: 4px solid #00cc99;
}

.card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(30,64,175,0.15);
}

.card i {
    font-size: 3rem;
    color: #1e40af;
    margin-bottom: 20px;
}

.card h3 {
    color: #1e40af;
    margin-bottom: 1rem;
    font-weight: 600;
}

.card p {
    color: #636e72;
    font-size: 0.95rem;
}

/* Steps */
.steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    margin-top: 40px;
}

.step {
    background: white;
    padding: 25px 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    min-width: 220px;
    border: 2px solid #1e40af;
    font-weight: 600;
    transition: all 0.3s ease;
}

.step:hover {
    background: #1e40af;
    color: white;
    transform: translateY(-5px);
}

.step span {
    display: inline-block;
    width: 50px;
    height: 50px;
    background: #00cc99;
    color: white;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 50px;
    margin-bottom: 1rem;
}

.step:hover span {
    background: #ff6b35;
}

/* Trust Bar */
.trust-bar {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    background: #f8fafc;
    padding: 2rem;
    text-align: center;
    gap: 2rem;
    border-bottom: 3px solid #00cc99;
}

.trust-bar div {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1e40af;
}

/* Final CTA */
.cta-final {
    background: linear-gradient(135deg, #1e40af, #3b82f6);
    color: white;
    padding: 100px 5%;
    text-align: center;
}

.cta-final h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

/* Footer */
footer {
    background: #0f172a;
    color: #cbd5e1;
    text-align: center;
    padding: 40px 5%;
}

.footer-content p {
    margin: 0.5rem 0;
}

.footer-content a {
    color: #60a5fa;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.footer-content a:hover {
    color: #93c5fd;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: white;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 10px 30px rgba(37,211,102,0.5);
    z-index: 2000;
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background: #20ba58;
    transform: scale(1.1);
}

/* Responsive */
@media (max-width: 1024px) {
    header {
        padding: 1rem 3%;
    }

    .hero h1 { 
        font-size: 2.5rem; 
    }

    .tagline {
        font-size: 1.4rem;
    }
}

@media (max-width: 768px) {
    header {
        flex-direction: column;
        gap: 1rem;
        padding: 0.8rem 3%;
    }

    .hero h1 { 
        font-size: 2.2rem; 
    }

    .tagline {
        font-size: 1.2rem;
    }

    .hero-content p {
        font-size: 0.95rem;
    }

    .nav-links {
        gap: 1rem;
        font-size: 0.85rem;
        justify-content: center;
    }

    .header-cta {
        gap: 0.8rem;
        justify-content: center;
    }

    .callback-btn,
    .cta-btn {
        padding: 8px 16px !important;
        font-size: 0.8rem;
    }

    .section {
        padding: 50px 3%;
    }

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

    .cards {
        gap: 20px;
    }

    .card {
        padding: 25px 15px;
    }

    .card i {
        font-size: 2.5rem;
    }

    .trust-bar {
        grid-template-columns: repeat(2, 1fr);
        padding: 1.5rem;
        gap: 1rem;
    }

    .trust-bar div {
        font-size: 0.9rem;
    }

    .steps {
        gap: 15px;
    }

    .step {
        min-width: 180px;
        padding: 20px 20px;
    }

    .cta-final {
        padding: 50px 3%;
    }

    .cta-final h2 {
        font-size: 1.5rem;
    }

    .whatsapp-float {
        width: 55px;
        height: 55px;
        font-size: 28px;
        bottom: 20px;
        right: 20px;
    }
}

@media (max-width: 480px) {
    header {
        gap: 0.8rem;
        padding: 0.6rem 2%;
    }

    .hero {
        padding: 0 2%;
        min-height: 70vh;
    }

    .hero h1 { 
        font-size: 1.6rem; 
    }

    .tagline {
        font-size: 1rem;
        margin: 15px 0;
    }

    .hero-content p {
        font-size: 0.85rem;
        margin-bottom: 1.5rem;
    }

    .nav-links {
        display: none;
    }

    .section {
        padding: 40px 2%;
    }

    .section h2 {
        font-size: 1.4rem;
    }

    .card {
        padding: 20px 15px;
    }

    .card i {
        font-size: 2rem;
    }

    .step {
        min-width: 140px;
        padding: 15px 15px;
        font-size: 0.85rem;
    }

    .callback-btn,
    .cta-btn {
        padding: 6px 12px !important;
        font-size: 0.7rem;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
}
/* Contact Info - Two Column Layout */
.contact-info {
    background: #f8fafc;
    padding: 60px 5%;
    border-top: 1px solid #e2e8f0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-left, .contact-right {
    text-align: left;
}

.contact-info h3 {
    color: #1e40af;
    margin-bottom: 20px;
}

.contact-info p {
    margin: 12px 0;
    font-size: 1.05rem;
}

.contact-info i {
    color: #1e40af;
    margin-right: 12px;
    width: 24px;
}

.contact-info a {
    color: #1e40af;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

/* Mobile */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}
/* Remedy Debt Process */
.process-steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.step-item {
    background: white;
    padding: 30px 20px;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    text-align: center;
    width: 220px;
    transition: all 0.3s;
}

.step-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(30,64,175,0.15);
}

.step-icon {
    font-size: 42px;
    color: #1e40af;
    margin-bottom: 15px;
}

.step-item h3 {
    margin: 12px 0;
    color: #1e40af;
}
/* Remedy Debt Process Cards */
.process-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.process-card {
    background: white;
    padding: 35px 25px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    text-align: center;
    transition: all 0.4s ease;
}

.process-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(30,64,175,0.15);
}

.process-icon {
    font-size: 48px;
    color: #1e40af;
    margin-bottom: 20px;
}

.process-card h3 {
    margin: 15px 0 12px;
    color: #1e40af;
    font-size: 1.25rem;
}
