/* =========================================
   CSS Variables
   ========================================= */
:root {
    --gold: #c9a227;
    --gold-hover: #b8901f;
    --navy: #1a2a4a;
    --teal-dark: #1e3a4a;
    --teal-footer: #1a2e3a;
    --white: #ffffff;
    --text-dark: #222222;
    --text-muted: #555555;
    --bg-light: #f7f8fa;
    --border-light: #e8e8e8;
    --green: #25D366;
    --accent-blue: #2a7de1;

    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.07);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.10);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.13);
    --radius: 10px;
    --transition: all 0.25s ease;
}

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

html {
    scroll-behavior: smooth;
}

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

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* =========================================
   NAVBAR
   ========================================= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--white);
    z-index: 1000;
    border-bottom: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    gap: 20px;
}

/* Logo */
.logo-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
}

.logo-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    overflow: hidden;
    /* Ensure image stays circular */
}

.logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.logo-icon span {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--gold);
}

.logo-icon.small {
    width: 40px;
    height: 40px;
}

.logo-icon.small span {
    font-size: 1.1rem;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-main {
    font-size: 1.1rem;
    font-weight: 800;
    color: #000000;
    letter-spacing: 1px;
}

.logo-sub {
    font-size: 0.65rem;
    font-weight: 600;
    color: #000000;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Nav Links */
.nav-links {
    display: flex;
    list-style: none;
    gap: 6px;
    align-items: center;
    flex: 1;
    justify-content: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-size: 0.87rem;
    font-weight: 500;
    padding: 6px 10px;
    border-radius: 4px;
    transition: var(--transition);
    white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--teal-dark);
    font-weight: 600;
}

/* CTA Button */
.btn-quote {
    background: var(--gold);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.875rem;
    text-decoration: none;
    white-space: nowrap;
    transition: var(--transition);
    flex-shrink: 0;
}

.btn-quote:hover {
    background: var(--gold-hover);
    box-shadow: 0 4px 14px rgba(201, 162, 39, 0.4);
}

.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.4rem;
    color: var(--navy);
}

/* =========================================
   HERO SECTION
   ========================================= */
.hero {
    margin-top: 72px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

/* The actual image — drives the section height */
.hero-bg-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Very light overlay for text readability (not dark) */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(26, 42, 74, 0.55) 0%, rgba(26, 42, 74, 0.15) 60%, transparent 100%);
    z-index: 1;
    pointer-events: none;
}

.hero-container {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    z-index: 2;
}

.hero-text {
    padding: 32px 36px;
    max-width: 650px;
}

.hero-text h1 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 18px;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.3);
}

.hero-sub {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.1rem;
    margin-bottom: 28px;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
}

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

.btn-get-quote {
    background: var(--gold);
    color: var(--white);
    padding: 12px 30px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: var(--transition);
}

.btn-get-quote:hover {
    background: var(--gold-hover);
    box-shadow: 0 4px 16px rgba(201, 162, 39, 0.4);
}

.btn-call {
    background: var(--navy);
    color: var(--white);
    padding: 12px 30px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: var(--transition);
}

.btn-call:hover {
    background: #0f1e35;
}

/* Hero image elements removed for full background layout */

.floating-call {
    position: absolute;
    right: 24px;
    bottom: 24px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--green);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: var(--shadow-md);
    text-decoration: none;
    transition: var(--transition);
}

.floating-call:hover {
    background: #1fab5a;
    transform: scale(1.1);
}

/* =========================================
   SERVICES SECTION
   ========================================= */
.services-section {
    padding: 60px 0;
    background: var(--white);
}

.sec-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 32px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.svc-card {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    padding: 20px 16px;
    display: flex;
    align-items: center;
    gap: 14px;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.svc-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(26, 42, 74, 0.15);
}

.svc-icon {
    width: 54px;
    height: 54px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
}

.svc-icon.motor {
    background: #eef6ff;
    color: var(--accent-blue);
}

.svc-icon.health {
    background: #fff0f3;
    color: #e0365b;
}

.svc-icon.sip {
    background: #f0fff6;
    color: #27ae60;
}

.svc-icon.lic {
    background: #fff8ee;
    color: #e67e22;
}

.svc-icon.fastag {
    background: #eef6ff;
    color: var(--accent-blue);
}

.svc-icon.other {
    background: #f5f0ff;
    color: #8e44ad;
}

.svc-icon.support {
    background: #eefaff;
    color: #0ea5e9;
}

.svc-icon.more {
    background: #fff8ee;
    color: var(--gold);
}

.svc-info h3 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.3;
    margin-bottom: 4px;
}

.svc-info p {
    font-size: 0.78rem;
    color: var(--text-muted);
    line-height: 1.4;
}

/* =========================================
   WHY CHOOSE US + PARTNERS
   ========================================= */
.why-section {
    background: var(--bg-light);
    padding: 60px 0;
    border-top: 1px solid var(--border-light);
}

.why-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.why-features {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.why-feat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
    flex: 1;
    min-width: 80px;
}

.feat-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid var(--border-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--gold);
    box-shadow: var(--shadow-sm);
}

.why-feat h4 {
    font-size: 0.87rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.4;
}

/* Partners */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 20px;
}

.partner-logo {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    padding: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.partner-logo:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

/* Partner logo images */
.partner-logo img {
    max-height: 70px;
    max-width: 100%;
    object-fit: contain;
    display: block;
}

/* =========================================
   STATS BANNER
   ========================================= */
.stats-banner {
    background: var(--navy);
    padding: 20px 0;
    border-bottom: 3px solid var(--gold);
}

.stats-inner {
    display: flex;
    align-items: center;
    gap: 0;
    flex-wrap: wrap;
    justify-content: space-between;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 20px;
    flex: 0 0 auto;
}

.stat-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(201, 162, 39, 0.15);
    border: 2px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--gold);
    flex-shrink: 0;
}

.stat-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.stat-highlight {
    font-size: 1rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: 0.3px;
}

.stat-sub {
    font-size: 0.75rem;
    color: #94a3b8;
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 44px;
    background: rgba(255, 255, 255, 0.12);
    flex-shrink: 0;
}

.stat-partners {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    flex: 1;
    min-width: 260px;
}

.partners-label {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.partners-strip {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.ps-logo {
    font-weight: 800;
    white-space: nowrap;
    line-height: 1.3;
    cursor: default;
    transition: transform 0.2s ease;
}

.ps-logo:hover {
    transform: scale(1.08);
}

/* =========================================
   ABOUT SECTION
   ========================================= */
.about-section {
    padding: 80px 0;
    background: var(--white);
}

.about-container {
    width: 100%;
}

.about-badge {
    display: inline-block;
    background: rgba(201, 162, 39, 0.12);
    color: var(--gold);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 6px 18px;
    border-radius: 20px;
    border: 1px solid rgba(201, 162, 39, 0.3);
    margin-bottom: 36px;
}

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

/* --- LEFT: Text --- */
.about-left {
    display: flex;
    flex-direction: column;
}

.about-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 6px;
    line-height: 1.2;
}

.about-role {
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 20px;
}

.about-desc {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 14px;
}

.about-desc strong {
    color: var(--navy);
    font-weight: 700;
}

/* Stats Row */
.about-stats-row {
    display: flex;
    gap: 0;
    margin: 24px 0 28px;
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    overflow: hidden;
}

.about-stat {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 18px 10px;
    border-right: 1px solid var(--border-light);
    background: var(--bg-light);
    text-align: center;
}

.about-stat:last-child {
    border-right: none;
}

.as-num {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--navy);
    line-height: 1;
}

.as-label {
    font-size: 0.72rem;
    color: var(--text-muted);
    font-weight: 600;
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Value Cards */
.about-values {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.value-card {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--bg-light);
    border: 1px solid var(--border-light);
    border-radius: 30px;
    padding: 8px 18px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--navy);
    transition: var(--transition);
}

.value-card:hover {
    background: var(--gold);
    color: var(--white);
    border-color: var(--gold);
}

.value-card i {
    font-size: 0.9rem;
    color: var(--gold);
    transition: var(--transition);
}

.value-card:hover i {
    color: var(--white);
}

/* --- RIGHT: Image --- */
.about-right {
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-img-wrap {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, #e8eef5 0%, #dce7ef 100%);
    min-height: 400px;
    display: flex;
    align-items: stretch;
}

.about-photo {
    width: 100%;
    height: 460px;
    object-fit: cover;
    object-position: center top;
    display: block;
    border-radius: 18px;
}

.about-exp-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: var(--gold);
    color: var(--white);
    border-radius: 12px;
    padding: 12px 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 4px 16px rgba(201, 162, 39, 0.45);
    z-index: 2;
}

.exp-num {
    font-size: 1.6rem;
    font-weight: 900;
    line-height: 1;
    color: var(--white);
}

.exp-txt {
    font-size: 0.68rem;
    font-weight: 700;
    line-height: 1.3;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.9);
}

/* =========================================
   CONTACT SECTION
   ========================================= */
.contact-section {
    background: var(--teal-dark);
    padding: 60px 0;
    color: var(--white);
}

.contact-heading {
    color: var(--white);
    font-size: 1.8rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
}

.contact-container {
    width: 100%;
}

.contact-inner {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: start;
}

.cd-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    margin-bottom: 24px;
}

.cd-item i {
    font-size: 1.1rem;
    color: var(--gold);
    margin-top: 4px;
    flex-shrink: 0;
}

.cd-item strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 2px;
    color: var(--white);
}

.cd-item p {
    font-size: 0.85rem;
    color: #b0c4d8;
    line-height: 1.5;
}

/* Contact Form */
.contact-form-wrap {
    background: var(--white);
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: var(--shadow-lg);
}

.contact-form-wrap form {
    width: 100%;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 14px;
}

.contact-form-wrap input,
.contact-form-wrap textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--border-light);
    border-radius: 6px;
    font-family: inherit;
    font-size: 0.9rem;
    color: var(--text-dark);
    background: #fafafa;
    transition: var(--transition);
}

.contact-form-wrap textarea {
    margin-bottom: 16px;
    resize: vertical;
}

.contact-form-wrap input:focus,
.contact-form-wrap textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.12);
}

.btn-send {
    width: 100%;
    padding: 13px;
    background: var(--gold);
    color: var(--white);
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
}

.btn-send:hover {
    background: var(--gold-hover);
    box-shadow: 0 4px 14px rgba(201, 162, 39, 0.4);
}

/* =========================================
   FOOTER
   ========================================= */
.footer {
    background: var(--navy);
    color: #a0b0c0;
    padding-top: 50px;
}

.footer .logo-main,
.footer .logo-sub {
    color: var(--white);
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1.2fr;
    gap: 36px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-social {
    margin-top: 8px;
}

.social-icons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.social-icons a,
.footer-social-small a {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: #dce6f0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    text-decoration: none;
    transition: var(--transition);
}

.social-icons a:hover,
.footer-social-small a:hover {
    background: var(--gold);
    color: var(--white);
}

.footer-social-small {
    display: flex;
    gap: 8px;
    margin-top: 14px;
}

.footer-col h4 {
    color: var(--white);
    font-size: 0.87rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.footer-col li {
    font-size: 0.82rem;
    color: #8da0b3;
    line-height: 1.5;
}

.footer-col a {
    color: #8da0b3;
    text-decoration: none;
    font-size: 0.82rem;
    transition: var(--transition);
}

.footer-col a:hover {
    color: var(--gold);
}

.footer-bottom {
    text-align: center;
    padding: 18px 24px;
    font-size: 0.8rem;
    color: #5a7080;
    background: rgba(0, 0, 0, 0.15);
}

/* =========================================
   FLOATING WHATSAPP
   ========================================= */
.whatsapp-float {
    position: fixed;
    right: 24px;
    bottom: 56px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--green);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.5);
    text-decoration: none;
    z-index: 999;
    transition: var(--transition);
}

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

.chat-label {
    position: fixed;
    right: 82px;
    bottom: 68px;
    background: var(--navy);
    color: white;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 20px;
    z-index: 999;
    white-space: nowrap;
    box-shadow: var(--shadow-sm);
}

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 1100px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
    }

    .footer-brand {
        grid-column: span 2;
    }

    .about-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-right {
        order: -1;
    }

    .about-photo {
        height: 320px;
    }

    .stats-inner {
        justify-content: flex-start;
    }
}

@media (max-width: 900px) {
    .nav-links {
        display: none;
    }

    .hamburger {
        display: block;
    }

    .hero {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-bg-img {
        height: 300px;
        object-fit: cover;
    }

    .hero-overlay {
        background: linear-gradient(180deg, rgba(26, 42, 74, 0.3) 0%, rgba(26, 42, 74, 0.7) 100%);
    }

    .hero-container {
        position: relative;
        inset: auto;
        padding: 40px 24px;
        background: var(--navy);
    }

    .hero-text {
        padding: 0;
        max-width: 100%;
        text-align: center;
        align-items: center;
        display: flex;
        flex-direction: column;
    }

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

    .hero-btns {
        justify-content: center;
    }

    .why-container {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .contact-inner {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .services-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-top {
        grid-template-columns: 1fr;
    }

    .footer-brand {
        grid-column: span 1;
    }

    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .hero-text h1 {
        font-size: 1.8rem;
    }

    .hero-bg-img {
        height: 250px;
    }

    .hero-container {
        padding: 30px 20px;
    }

    .btn-quote {
        display: none;
    }

    .chat-label {
        display: none;
    }

    .stat-item {
        padding: 8px 12px;
    }

    .stat-divider {
        display: none;
    }

    .partners-strip {
        gap: 10px;
    }

    .about-title {
        font-size: 1.5rem;
    }

    .about-photo {
        height: 260px;
    }

    .about-values {
        gap: 8px;
    }

    .value-card {
        padding: 7px 14px;
        font-size: 0.8rem;
    }
}