:root {
    --accent: #EBC14D;
    --muted: #6b6b6b;
    --bg: #f4f4f4;
}

* {
    box-sizing: border-box
}

html,
body {
    height: 100%
}

body {
    margin: 0;
    font-family: 'Poppins', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial;
    color: #222;
    background: white;
}

::selection {
	background: var(--accent);
	color: #000; 
}

::-moz-selection {
	background: var(--accent);
	color: #000;
}

/* width */
::-webkit-scrollbar {
	width: 8px;
}

/* track */
::-webkit-scrollbar-track {
	background: var(--bg);
}

/* thumb */
::-webkit-scrollbar-thumb {
	background: var(--accent);
	border-radius: 10px;
}

/* hover */
::-webkit-scrollbar-thumb:hover {
	background: #d4a93f; 
}


.hero-section {
    position: relative;
    background-size: cover;
    background-position: center;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

/* Image background ke liye */
.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('https://images.pexels.com/photos/34946149/pexels-photo-34946149.jpeg');
    background-size: cover;
    background-position: center;
    filter: brightness(0.70) blur(1px);  
    z-index: 0;
}

.overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 121, 85, 0.15) 0%,    
        rgba(0, 0, 0, 0.3) 100%
    );
    z-index: 1
}

.hero-inner {
    position: relative;
    z-index: 2;
    max-width: 1300px;
    margin: 0 auto;
    width: 100%;
    padding: 4rem 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    align-items: center;
    justify-content: space-between
}

.hero-text {
    flex: 1;
    color: #fff
}

.hero-text .hero-h1 {
    font-size: 50px;
}

.hero-text h1 {
    font-size: 65px;
    line-height: 1;
    margin: 0 0 2rem;
    font-weight: 800;
    text-shadow: 0 6px 18px rgba(0, 0, 0, 0.4)
}

.hero-text p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);    
}

.form-card {
    width: 100%;
    max-width: 500px;
   box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
    position: relative;
     background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 250, 250, 0.98));
    border-radius: 14px;
    padding: 2rem 1.75rem 2rem;
    box-shadow: 0 18px 40px rgba(9, 30, 66, 0.12), 0 6px 12px rgba(9, 30, 66, 0.06);
    border: 1px solid rgba(15, 23, 42, 0.04);
    transition: transform 240ms ease, box-shadow 240ms ease;
}

.logo-circle {
    position: absolute;
    left: 50%;
    transform: translateX(-50%) translateY(-44%);
    top: 0;
    width: 72px;
    height: 72px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12)
}

.logo-circle img {
    width: 54px;
    height: 54px
}

.progress-row {
    margin-top: 36px;
    display: flex;
    align-items: center;
    gap: 1rem
}

/* Make progress label and bar more compact on small screens */
@media (max-width:480px) {
    .progress-row {
        margin-top: 18px;
        gap: 0.6rem;
        align-items: center;
    }
    .progress-row .step {
        font-size: 0.85rem;
    }
    .progress-row .progress {
        height: 10px;
    }
}

.step {
    flex: 0 0 auto;
    color: #6b6b6b;
    font-size: 0.92rem
}

.progress {
    flex: 1;
    height: 12px;
    border-radius: 20px;
    overflow: hidden;
     background: linear-gradient(180deg, #f1f1f1, #f9f9f9);
    border: 1px solid rgba(15, 23, 42, 0.03);
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--accent), #f2ca61);
      transition: width 420ms cubic-bezier(.22, .9, .39, 1);
}

.lead-form {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-top: 1rem
}


.form-step {
    transition: opacity 360ms ease, transform 360ms ease, max-height 360ms ease;
    opacity: 0;
    transform: translateY(6px);
    max-height: 0;
    overflow: hidden;
}

.form-step[aria-hidden="false"],
.form-step.active {
    opacity: 1;
    transform: translateY(0);
    max-height: 1200px;
}

.form-buttons {
    display: flex;
    gap: 0.6rem;
    justify-content: flex-end;
    margin-top: 0.6rem;
}

@media (max-width:480px) {
    .form-buttons {
        flex-direction: column;
        gap: 0.5rem;
        align-items: stretch;
    }
    .form-buttons button,
    .form-buttons input[type="submit"] {
        width: 100%;
    }
}

.lead-form .form-step[data-step="1"] {
    opacity: 1;
    transform: none;
    max-height: 1200px
}

.lead-form label {
    font-weight: 700;
    font-size: 0.9rem;
    color: #222;
    margin-bottom: 0.3rem;
    margin-top: 0.6rem;
}

/* Inputs, selects, and textareas inside forms */
.lead-form input,
.lead-form select,
.lead-form textarea {
    width: 100%;
    padding: 10px 12px;
    border-radius: 8px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    font-size: 0.95rem;
    margin-top: 0.25rem;
    background: #fff;
    outline: none;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
    box-shadow: 0 6px 18px rgba(235, 193, 77, 0.08);
    border-color: rgba(235, 193, 77, 0.9);
}

.lead-form .req {
    color: var(--accent)
}

.btn-primary {
    margin-top: 0.6rem;
    border: none;
    font-weight: 800;
    color: #000;
    cursor: pointer;
    background: linear-gradient(90deg, var(--accent), #f2ca61);
    padding: 12px 18px;
    border-radius: 10px;
    box-shadow: 0 8px 22px rgba(235, 193, 77, 0.14);
    transition: transform 160ms ease, box-shadow 160ms ease, filter 160ms ease;
}

@media (max-width:980px) {
    .hero-text h1 {
        font-size: 44px
    }

    .hero-inner {
        padding: 3rem 1.25rem;
        gap: 1.5rem;
        align-items: flex-start;
    }

    .form-card {
        max-width: 380px;
        width: 100%;
    }
}

@media (max-width:720px) {
    .hero-inner {
        flex-direction: column;
        align-items: flex-start
    }

    .hero-text {
        width: 100%
    }

    .form-card {
        width: 100%;
        margin-top: 1.25rem;
        align-self: center;
    }

    .hero-section::after {
        display: none
    }

    .hero-text h1 {
        font-size: 32px
    }
}

@media (max-width:360px) {
    .form-card {
        padding: 1rem 1rem;
        border-radius: 10px;
    }
    .hero-text h1 {
        font-size: 26px;
    }
    .hero-text .hero-h1 {
    font-size: 26px;
    }
    .hero-text h3 {
        font-size: 15px;
    }

    .hero-text p {
        font-size: 14px;
    }
}

.how-it-works-section {
    position: relative;
    background: var(--bg);
    overflow: hidden;
}

.how-it-works-section::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 70px;
    background: var(--accent);
    clip-path: polygon(0 0, 0 0, 100% 50%, 0 100%, 0 100%);
}

.how-container {
    max-width: 1150px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 3rem;
    padding: 6rem 2rem;
}

.how-images {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center
}

.how-images .img-main {
    width: 100%;
    max-width: 660px;
    border-radius: 12px;
}


.how-features {
    flex: 1;
    padding: 0 1rem
}

.how-features h2 {
    font-size: 2.2rem;
    text-align: center;
    margin: 0 0 1.6rem;
    font-weight: 800
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem
}

.feature-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start
}

.chev {
    width: 40px;
    flex: 0 0 40px;
    display: flex;
    align-items: center
}

.feature-item h3 {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: 0.5px
}

.feature-item p {
    margin: 0;
    color: var(--muted);
    font-size: 0.95rem
}

.cta-wrap {
    display: flex;
    justify-content: center;
    margin-top: 1.8rem
}

.cta-btn {
    background: var(--accent);
    color: #000;
    padding: 0.9rem 1.2rem;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 6px 0 rgba(0, 0, 0, 0.06);
}

.cta-btn:hover {
    filter: brightness(1.02)
}

@media (max-width:900px) {
    .how-container {
        flex-direction: column;
        padding: 3.5rem 1.5rem;
        gap: 2rem
    }

    .how-images {
        order: 1
    }

    .how-features {
        order: 2
    }

    .how-features h2 {
        text-align: left;
        font-size: 1.8rem
    }

    .how-images .img-main {
        width: 72%;
        max-width: 420px;
    }

    .how-it-works-section::before {
        display: none;
    }
}

@media (max-width:480px) {
    .how-images .img-main {
        width: 95%;
        max-width: 360px;
    }

    .how-features h2 {
        font-size: 1.5rem
    }

    .how-container {
        padding: 2rem 1rem
    }
}


.process-section {
    padding: 6rem 2rem;
    background: #fff
}

.process-container {
    max-width: 1150px;
    margin: 0 auto;
    text-align: center
}

.process-section h2 {
    font-size: 2.4rem;
    font-weight: 800;
    margin: 0 0 2rem;
    color: #222
}

.process-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    align-items: start
}

.process-card {
    background: #f3f3f3;
    padding: 2.4rem 1.4rem 1.6rem;
    border-radius: 8px;
    position: relative;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
    min-height: 320px
}

.icon-wrap {
    width: 170px;
    height: 170px;
    margin: -8px auto 8px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center
}

.icon-circle img {
    width: 100%;
    display: block
}

.process-card h4 {
    margin: 12px 0 0;
    text-transform: uppercase;
    font-size: 1.05rem;
    font-weight: 800
}

.process-card p {
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-top: 0.8rem
}

.process-cta {
    margin-top: 2rem
}

.process-btn {
    display: inline-block;
    background: var(--accent);
    color: #000;
    padding: 0.9rem 1.3rem;
    border-radius: 8px;
    font-weight: 800;
    text-decoration: none
}

@media (max-width:980px) {
    .process-cards {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem
    }

    .icon-wrap {
        width: 130px;
        height: 130px;
        margin: -66px auto 8px
    }

    .icon-circle {
        width: 110px;
        height: 110px
    }
}

@media (max-width:760px) {
    .process-cards {
        grid-template-columns: repeat(1, 1fr)
    }

    .process-card {
        min-height: unset
    }
}

@media (max-width:480px) {
    .process-cards {
        grid-template-columns: 1fr;
        gap: 1rem
    }

    .icon-wrap {
        width: 110px;
        height: 110px;
        margin: -58px auto 8px
    }

    .icon-circle {
        width: 92px;
        height: 92px
    }

    .process-section {
        padding: 3rem 1rem
    }

    .process-section h2 {
        font-size: 1.6rem
    }
}

/* Nationwide / Map section */
.nationwide-section {
    position: relative;
    background-image: url('assets/bg-image.jpg');
    background-size: cover;
    background-position: center;
    padding: 4.5rem 3rem;
    color: #fff;
    overflow: hidden;
}

.nationwide-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 0;
}

.nationwide-container {
    position: relative;
    z-index: 2;
    max-width: 1150px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 500px;
    align-items: center;

}

.nationwide-left h4 {
    margin: 0;
    font-size: 0.9rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 1px;
}

.nationwide-left h2 {
    margin: 0.25rem 0 1rem;
    font-size: 2.6rem;
    font-weight: 800;
    color: #fff;
}

.map-wrap {
    padding: 1rem;
    border-radius: 8px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.map-wrap img {
    width: 100%;
    max-width: 520px;
    height: auto;
    display: block;
}

.nationwide-right {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-card {
    background: #fff;
    color: #222;
    border-radius: 8px;
    padding: 1.4rem 1.4rem 1.6rem 1.4rem;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    transform: translateX(30px);
}

.info-card:first-child {
    margin-top: 0;
}

.info-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(180deg, #fff 0%, #fff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.12);
    flex: 0 0 64px;
}

.info-body h3 {
    margin: 0 0 0.4rem 0;
    font-size: 1rem;
    line-height: 1.15;
    font-weight: bold;
    color: #000;
}

.info-body p {
    margin: 0;
    color: var(--muted);
    font-size: 0.95rem;
}

@media (max-width:1000px) {
    .nationwide-container {
        grid-template-columns: 1fr 360px;
        gap: 1.5rem;
    }

    .info-card {
        transform: translateX(18px);
    }
}

@media (max-width:760px) {
    .nationwide-container {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0;
    }

    .nationwide-left,
    .nationwide-right {
        width: 100%;
    }

    .map-wrap img {
        max-width: 100%;
    }

    .info-card {
        transform: none;
    }

    .nationwide-section {
        padding: 2.5rem 1rem;
    }
}

/* Comparison table section */
.compare-section {
    padding: 3.5rem 1rem 5rem;
    background: #fff;
}

.compare-container {
    max-width: 1150px;
    margin: 0 auto;
    text-align: center;
}

.compare-title {
    font-size: 2rem;
    font-weight: 800;
    margin: 0 0 1.5rem;
}

.compare-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px;
}

.compare-table {
    display: grid;
    grid-auto-flow: column;
    grid-template-columns: minmax(180px, 1fr) 360px minmax(180px, 1fr);
    align-items: stretch;
    gap: 0;
    border: 1px solid #eee;
    border-radius: 6px;
    min-width: 960px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.compare-col {
    display: flex;
    flex-direction: column;
}

.compare-row {
    padding: 18px 22px;
    border-bottom: 1px solid #f4efe9;
    font-weight: 600;
    color: var(--muted);
    text-align: center;
    background: #fff;
}

.compare-col-left .compare-row,
.compare-col-right .compare-row {
    background: #fff;
}

.compare-col-left .compare-row:nth-child(odd),
.compare-col-right .compare-row:nth-child(odd) {
    background: #fbf2e6;
}

.compare-col-center {
    background: transparent;
}

.compare-col-center .compare-row {
    background: linear-gradient(180deg, var(--accent), #f2ca61);
    color: #000;
    font-weight: 800;
}

.compare-col-center .compare-row:first-child {
    background: #e6b83b;
}

.compare-cta {
    margin-top: 1.6rem;
    display: flex;
    justify-content: center;
}

/* Make CTA button match existing styles */
.compare-cta .cta-btn {
    display: inline-block;
    padding: 0.9rem 1.25rem;
    border-radius: 8px;
    font-weight: 800;
    text-decoration: none;
    background: var(--accent);
    color: #000;
    box-shadow: 0 6px 0 rgba(0, 0, 0, 0.06);
}

@media (max-width:1000px) {
    .compare-table {
        grid-template-columns: minmax(140px, 1fr) 320px minmax(140px, 1fr);
        min-width: 860px;
    }
}

@media (max-width:720px) {
    .compare-title {
        font-size: 1.5rem;
    }

    .compare-table {
        grid-template-columns: minmax(120px, 1fr) 300px minmax(120px, 1fr);
        min-width: 780px;
    }
}

@media (max-width:420px) {

    .compare-table {
        grid-template-columns: minmax(110px, 1fr) 260px minmax(110px, 1fr);
        min-width: 640px;
    }

    .compare-row {
        padding: 14px 12px;
        font-size: 0.95rem;
    }
}

/* Testimonials section (matches screenshot) */
.testimonials-section {
    position: relative;
    background: #f3f3f3;
    padding: 5rem 1rem;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 70px;
    background: var(--accent);
    clip-path: polygon(0 0, 0 0, 100% 50%, 0 100%, 0 100%);
}

.testimonials-container {
    max-width: 1150px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.testimonials-title {
    font-size: 2.6rem;
    font-weight: 800;
    margin: 0 0 6rem;
    color: #111;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    align-items: stretch;
}

.testimonial-card {
    background: #fff;
    border-radius: 8px;
    padding: 3rem 1.4rem 1.6rem;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
    position: relative;
    text-align: center;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.avatar {
    position: absolute;
    top: -48px;
    left: 50%;
    transform: translateX(-50%);
    width: 96px;
    height: 96px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    overflow: hidden;
}

.avatar img {
    width: 96px;
    height: 96px;
    object-fit: cover;
    display: block;
}

.stars {
    margin-top: 56px;
    display: flex;
    gap: 6px;
    justify-content: center;
}

.quote {
    font-style: italic;
    color: var(--muted);
    margin: 1rem 0 1.4rem;
    line-height: 1.6;
    padding: 0 1rem;
    flex: 1;
    max-width: 88%;
}

.client-name {
    font-weight: 800;
    font-size: 1.05rem;
    margin-top: 0.6rem;
    color: #111;
}

.client-location {
    color: var(--muted);
    margin-bottom: 0.6rem;
}

.testimonials-cta {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
}

@media (max-width:1000px) {
    .testimonials-grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .testimonials-section::before {
        display: none;
    }
}

@media (max-width:720px) {
    .testimonials-section {
        padding: 3rem 1rem;
    }

    .testimonials-title {
        font-size: 1.8rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 5rem;
    }

    .testimonial-card {
        min-height: unset;
        padding-top: 56px;
    }

    .avatar {
        top: -40px;
        width: 100px;
        height: 100px;
    }

    .avatar img {
        width: 100px;
        height: 100px;
    }

    .stars {
        margin-top: 44px;
    }

    .quote {
        padding: 0 0.5rem;
    }
}

@media (max-width:720px) {

    .how-images::before,
    .how-images::after {
        display: none;
    }
}


.form-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 60px rgba(9, 30, 66, 0.14), 0 10px 20px rgba(9, 30, 66, 0.06);
}

.logo-circle {
    width: 82px;
    height: 82px;
    transform: translateX(-50%) translateY(-56%);
    box-shadow: 0 12px 30px rgba(9, 30, 66, 0.09);
}

.logo-circle img {
    width: 62px;
    height: 62px
}


.lead-form input,
.lead-form textarea,
.lead-form select {
width: 100%;
    padding: 12px 12px;
    border-radius: 10px;
    border: 1px solid rgba(15, 23, 42, 0.06);
    background: linear-gradient(180deg, #ffffff, #fbfbfb);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
    transition: box-shadow 160ms ease, transform 160ms ease, border-color 160ms ease;
}

.lead-form input:focus,
.lead-form textarea:focus,
.lead-form select:focus {
    outline: none;
    border-color: rgba(235, 193, 77, 0.9);
    box-shadow: 0 6px 18px rgba(235, 193, 77, 0.08), 0 0 0 4px rgba(235, 193, 77, 0.06);
    transform: translateY(-1px);
}


.btn-primary:hover {
    transform: translateY(-2px);
    filter: brightness(1.03);
    box-shadow: 0 12px 26px rgba(235, 193, 77, 0.16);
}

.btn-secondary {
    border-radius: 10px;
    padding: 12px 14px;
    border: 1px solid rgba(15, 23, 42, 0.06);
    color: var(--muted);
        background: transparent;
    border: 1px solid #ddd;
    cursor: pointer;
    transition: 0.4s ease;
}

.btn-secondary:hover {
    background: rgba(15, 23, 42, 0.02);
    transform: translateY(-1px);
    transition: 0.4s ease;
}

.form-buttons {
    justify-content: flex-end;
    gap: 0.6rem
}