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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
}

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

/* Header */
.header {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

.logo h1 {
    color: white;
    font-size: 1.8rem;
    font-weight: 700;
}

.logo .hub {
    color: #fbbf24;
}

.nav {
    display: flex;
    gap: 2rem;
}

.nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav a:hover {
    color: #fbbf24;
}

.cta-btn {
    background: linear-gradient(135deg, #dc2626, #f59e0b);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s;
}

.cta-btn:hover {
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    padding: 8rem 0 4rem;
    position: relative;
    overflow: hidden;
}

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

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-content {
    color: white;
    position: relative;
    z-index: 2;
}

.hero-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-cta {
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
    color: #1e3a8a;
    border: none;
    padding: 1rem 2rem;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(251, 191, 36, 0.3);
}

.rangoli-overlay {
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.rangoli-overlay::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 50px;
    width: 200px;
    height: 200px;
    border: 2px solid rgba(251, 191, 36, 0.2);
    border-radius: 50%;
    border-style: dashed;
}

/* Services Section */
.services {
    padding: 4rem 0;
    background: #f8fafc;
}

.services h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1e3a8a;
    margin-bottom: 3rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
    border-top: 3px solid #fbbf24;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card .icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-card img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 1rem;
}

.service-card h3 {
    color: #1e3a8a;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

/* Offers Section */
.offers {
    padding: 4rem 0;
    background: linear-gradient(135deg, #fef3c7 0%, #fbbf24 100%);
}

.offers h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1e3a8a;
    margin-bottom: 3rem;
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.offer-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    border: 2px solid #f59e0b;
    position: relative;
    overflow: hidden;
}

.offer-card::before {
    content: '🎉';
    position: absolute;
    top: -10px;
    right: -10px;
    font-size: 2rem;
    opacity: 0.3;
}

.offer-card h3 {
    color: #dc2626;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

/* Trust Section */
.trust {
    padding: 4rem 0;
    background: #e2e8f0;
    border-top: 3px solid #fbbf24;
    border-bottom: 3px solid #fbbf24;
}

.trust h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1e3a8a;
    margin-bottom: 3rem;
}

.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat h3 {
    font-size: 3rem;
    color: #dc2626;
    font-weight: 700;
}

.stat p {
    font-size: 1.2rem;
    color: #1e3a8a;
    font-weight: 500;
}

/* Case Studies */
.case-studies {
    padding: 4rem 0;
    background: white;
}

.case-studies h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1e3a8a;
    margin-bottom: 3rem;
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.story-card {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 15px;
    border-left: 5px solid #fbbf24;
}

.story-card h3 {
    color: #1e3a8a;
    margin-bottom: 1rem;
}

/* Final CTA */
.final-cta {
    padding: 4rem 0;
    background: linear-gradient(135deg, #dc2626 0%, #f59e0b 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 20% 80%, rgba(255,255,255,0.1) 0%, transparent 50%),
                      radial-gradient(circle at 80% 20%, rgba(255,255,255,0.1) 0%, transparent 50%);
}

.final-cta h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.final-cta-btn {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #1e3a8a;
    border: none;
    padding: 1.2rem 3rem;
    border-radius: 35px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    z-index: 2;
    box-shadow: 0 0 20px rgba(251, 191, 36, 0.5);
}

.final-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(251, 191, 36, 0.4);
}

/* Footer */
.footer {
    background: #1e3a8a;
    padding: 2rem 0;
    border-top: 3px solid #fbbf24;
}

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

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

.footer-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #fbbf24;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons span {
    font-size: 1.5rem;
    cursor: pointer;
    transition: transform 0.3s;
}

.social-icons span:hover {
    transform: scale(1.2);
    filter: sepia(1) hue-rotate(30deg);
}

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    padding: 6rem 0 3rem;
    text-align: center;
    color: white;
}

.page-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

/* Calculator Section */
.calculator-section, .credit-score-section, .contact-section {
    padding: 4rem 0;
    background: #f8fafc;
}

.calculator-grid, .score-grid, .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.calculator-form, .score-form, .contact-form {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #1e3a8a;
}

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none;
    border-color: #fbbf24;
}

.calculate-btn, .apply-btn, .action-btn {
    background: linear-gradient(135deg, #dc2626, #f59e0b);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s;
    width: 100%;
}

.calculate-btn:hover, .apply-btn:hover, .action-btn:hover {
    transform: translateY(-2px);
}

.calculator-image, .score-image {
    text-align: center;
}

.calculator-image img, .score-image img {
    width: 100%;
    max-width: 400px;
    border-radius: 15px;
}

.result-box {
    margin-top: 2rem;
    padding: 1.5rem;
    background: #f0f9ff;
    border-radius: 10px;
    border-left: 4px solid #fbbf24;
}

.result-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

/* Credit Score Styles */
.score-info {
    margin-top: 2rem;
}

.score-range {
    padding: 0.5rem;
    margin: 0.5rem 0;
    border-radius: 5px;
    font-weight: 500;
}

.score-range.excellent { background: #dcfce7; color: #166534; }
.score-range.good { background: #dbeafe; color: #1e40af; }
.score-range.fair { background: #fef3c7; color: #92400e; }
.score-range.poor { background: #fee2e2; color: #dc2626; }

.score-benefits {
    padding: 4rem 0;
    background: white;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.benefit-card {
    text-align: center;
    padding: 2rem;
    border-radius: 10px;
    background: #f8fafc;
    border-top: 3px solid #fbbf24;
}

/* Offers Page */
.offers-main {
    padding: 4rem 0;
    background: white;
}

.offers-grid-main {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.offer-card-main {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.offer-card-main:hover {
    transform: translateY(-5px);
}

.offer-card-main img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.offer-content {
    padding: 1.5rem;
}

.offer-highlight {
    background: linear-gradient(135deg, #dc2626, #f59e0b);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    display: inline-block;
    font-weight: 600;
    margin: 0.5rem 0;
}

.offer-content ul {
    margin: 1rem 0;
    padding-left: 1rem;
}

.limited-time {
    padding: 3rem 0;
    background: #fef3c7;
}

.countdown-offers {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.countdown-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    border: 2px solid #f59e0b;
}

/* Contact Page */
.contact-info {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.contact-item {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e2e8f0;
}

.contact-item h3 {
    color: #1e3a8a;
    margin-bottom: 0.5rem;
}

.contact-image {
    margin-top: 2rem;
    text-align: center;
}

.contact-image img {
    width: 100%;
    max-width: 300px;
    border-radius: 10px;
}

.quick-contact {
    padding: 4rem 0;
    background: #f8fafc;
}

.quick-actions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.action-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-top: 3px solid #fbbf24;
}

/* Legal Pages */
.legal-content {
    padding: 4rem 0;
    background: white;
}

.content-wrapper {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.content-wrapper h2 {
    color: #1e3a8a;
    margin-bottom: 2rem;
}

.content-wrapper h3 {
    color: #1e3a8a;
    margin: 2rem 0 1rem;
}

.content-wrapper ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.content-wrapper li {
    margin-bottom: 0.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .services-grid,
    .offers-grid,
    .stories-grid,
    .calculator-grid,
    .score-grid,
    .contact-grid,
    .offers-grid-main {
        grid-template-columns: 1fr;
    }
    
    .stats {
        grid-template-columns: 1fr;
    }
    
    .footer .container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}