/* =========================================================
   RIDGEWAY INSURANCE
   CUSTOM CSS
========================================================= */


/* =========================================================
   VARIABLES
========================================================= */

:root {

    --forest: #12372a;
    --forest-dark: #09261c;
    --forest-light: #1c4a39;

    --gold: #c7a35a;
    --gold-light: #dfc47e;

    --cream: #f8f5ed;
    --cream-dark: #eee9dc;

    --white: #ffffff;

    --heading: #17352a;
    --text: #68736e;

    --border: #e5e1d7;

    --shadow:
        0 20px 55px rgba(18, 55, 42, 0.10);

    --transition:
        all 0.3s ease;

}


/* =========================================================
   GENERAL
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {

    font-family: "DM Sans", sans-serif;

    color: var(--text);

    background: var(--white);

    overflow-x: hidden;

}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
}

.section-padding {
    padding: 110px 0;
}


/* =========================================================
   TOP BAR
========================================================= */

.top-bar {

    background: var(--forest-dark);

    padding: 11px 0;

    text-align: center;

}

.top-phone {

    color: var(--white);

    font-size: 14px;

    display: inline-flex;

    align-items: center;

    gap: 9px;

    transition: var(--transition);

}

.top-phone:hover {
    color: var(--gold-light);
}

.top-phone strong {
    font-weight: 700;
}

.phone-icon {

    width: 25px;
    height: 25px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    color: var(--gold);

}


/* =========================================================
   NAVBAR
========================================================= */

.ridge-navbar {

    background: rgba(255, 255, 255, 0.97);

    border-bottom: 1px solid var(--border);

    padding: 17px 0;

}

.navbar-brand {

    display: flex;

    align-items: center;

    gap: 10px;

    color: var(--heading);

}

.logo-mark {

    width: 43px;
    height: 43px;

    border-radius: 8px;

    background: var(--forest);

    color: var(--gold);

    display: inline-flex;

    align-items: center;
    justify-content: center;

    font-size: 21px;

}

.brand-text {

    font-family: "Playfair Display", serif;

    font-size: 23px;

    font-weight: 700;

    line-height: 0.85;

}

.brand-text small {

    display: block;

    font-family: "DM Sans", sans-serif;

    font-size: 7px;

    letter-spacing: 3px;

    font-weight: 700;

    color: var(--gold);

    margin-top: 7px;

}

.navbar-nav {
    gap: 5px;
}

.nav-link {

    color: var(--heading) !important;

    font-size: 13px;

    font-weight: 600;

    padding: 11px 15px !important;

    transition: var(--transition);

}

.nav-link:hover,
.nav-link.active {

    color: var(--forest) !important;

}

.nav-link.active {
    position: relative;
}

.nav-link.active::after {

    content: "";

    position: absolute;

    width: 20px;
    height: 2px;

    background: var(--gold);

    bottom: 3px;

    left: 50%;

    transform: translateX(-50%);

}

.nav-btn {
    margin-left: 5px;
}


/* =========================================================
   BUTTONS
========================================================= */

.gold-btn {

    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 7px;

    background: var(--gold);

    color: var(--forest-dark);

    border: 2px solid var(--gold);

    border-radius: 4px;

    padding: 12px 23px;

    font-size: 13px;

    font-weight: 700;

    transition: var(--transition);

}

.gold-btn:hover {

    background: var(--gold-light);

    border-color: var(--gold-light);

    color: var(--forest-dark);

    transform: translateY(-2px);

    box-shadow:
        0 10px 25px rgba(199, 163, 90, 0.25);

}

.dark-btn {

    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 7px;

    background: var(--forest);

    color: var(--white);

    border: 2px solid var(--forest);

    border-radius: 4px;

    padding: 12px 23px;

    font-size: 13px;

    font-weight: 700;

    transition: var(--transition);

}

.dark-btn:hover {

    background: var(--forest-light);

    border-color: var(--forest-light);

    color: var(--white);

    transform: translateY(-2px);

}


/* =========================================================
   HERO
========================================================= */

.hero-section {

    position: relative;

    min-height: 720px;

    display: flex;

    align-items: center;

    background: var(--cream);

    overflow: hidden;

    padding: 70px 0;

}

.hero-section::before {

    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    border-radius: 50%;

    background: rgba(199, 163, 90, 0.10);

    top: -250px;
    left: -200px;

}

.hero-section::after {

    content: "";

    position: absolute;

    width: 600px;
    height: 600px;

    border-radius: 50%;

    background: var(--forest);

    right: -330px;
    bottom: -330px;

    opacity: 0.07;

}

.hero-content {

    position: relative;

    z-index: 2;

}

.hero-tag {

    display: flex;

    align-items: center;

    gap: 10px;

    color: var(--gold);

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 2px;

    margin-bottom: 22px;

}

.hero-tag span {

    width: 30px;
    height: 2px;

    background: var(--gold);

}

.hero-section h1 {

    font-family: "Playfair Display", serif;

    color: var(--forest);

    font-size: clamp(48px, 6vw, 78px);

    line-height: 1.04;

    font-weight: 800;

    letter-spacing: -2px;

    max-width: 700px;

}

.hero-section h1 em {

    display: block;

    color: var(--gold);

    font-style: normal;

}

.hero-description {

    max-width: 590px;

    margin: 25px 0 30px;

    font-size: 15px;

    line-height: 1.9;

    color: var(--text);

}

.hero-actions {

    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 25px;

}

.hero-btn {

    padding: 14px 24px;

}

.hero-call {

    display: flex;

    align-items: center;

    gap: 11px;

    color: var(--forest);

}

.hero-call:hover {
    color: var(--forest-light);
}

.call-circle {

    width: 43px;
    height: 43px;

    border-radius: 50%;

    background: var(--white);

    color: var(--forest);

    display: flex;

    align-items: center;
    justify-content: center;

    box-shadow: 0 5px 20px rgba(18, 55, 42, 0.10);

}

.hero-call small {

    display: block;

    color: #8a918d;

    font-size: 9px;

    text-transform: uppercase;

    letter-spacing: 1px;

    margin-bottom: 2px;

}

.hero-call strong {

    display: block;

    font-size: 13px;

}

.hero-features {

    display: flex;

    flex-wrap: wrap;

    gap: 20px;

    margin-top: 37px;

}

.hero-features div {

    display: flex;

    align-items: center;

    gap: 6px;

    font-size: 10px;

    color: var(--forest);

    font-weight: 600;

}

.hero-features i {
    color: var(--gold);
    font-size: 15px;
}


/* =========================================================
   HERO CARD
========================================================= */

.hero-card-wrapper {

    position: relative;

    z-index: 3;

    padding: 30px;

}

.hero-card {

    background: var(--forest);

    border-radius: 3px;

    padding: 40px;

    color: var(--white);

    box-shadow:
        0 30px 60px rgba(9, 38, 28, 0.25);

}

.card-top {

    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-bottom: 23px;

}

.mini-label {

    color: var(--gold-light);

    font-size: 9px;

    letter-spacing: 1.5px;

    font-weight: 700;

}

.gold-shield {

    width: 44px;
    height: 44px;

    border-radius: 50%;

    background: rgba(199, 163, 90, 0.15);

    color: var(--gold);

    display: flex;

    align-items: center;
    justify-content: center;

    font-size: 20px;

}

.hero-card h3 {

    font-family: "Playfair Display", serif;

    font-size: 30px;

    line-height: 1.2;

    margin-bottom: 15px;

}

.hero-card h3 span {
    color: var(--gold-light);
}

.hero-card > p {

    color: #bdc9c3;

    font-size: 11px;

    line-height: 1.8;

    margin-bottom: 25px;

}

.coverage-row {

    display: flex;

    align-items: center;

    gap: 12px;

    padding: 12px 0;

    border-top: 1px solid rgba(255,255,255,0.10);

}

.coverage-icon {

    width: 38px;
    height: 38px;

    background: rgba(199, 163, 90, 0.10);

    color: var(--gold);

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 4px;

}

.coverage-row strong {

    display: block;

    color: var(--white);

    font-size: 11px;

}

.coverage-row small {

    display: block;

    color: #94a59d;

    font-size: 9px;

    margin-top: 2px;

}

.card-link {

    display: inline-flex;

    align-items: center;

    gap: 7px;

    color: var(--gold-light);

    font-size: 11px;

    font-weight: 700;

    margin-top: 18px;

}

.card-link:hover {
    color: var(--white);
}

.hero-floating {

    position: absolute;

    bottom: 0;
    left: 0;

    background: var(--white);

    padding: 13px 17px;

    display: flex;

    align-items: center;

    gap: 10px;

    box-shadow: var(--shadow);

}

.floating-icon {

    width: 35px;
    height: 35px;

    border-radius: 50%;

    background: var(--cream);

    color: var(--gold);

    display: flex;

    align-items: center;
    justify-content: center;

}

.hero-floating strong {

    display: block;

    color: var(--forest);

    font-size: 11px;

}

.hero-floating small {

    display: block;

    color: #8b938f;

    font-size: 9px;

}


/* =========================================================
   STATS
========================================================= */

.stats-section {

    background: var(--white);

    position: relative;

    z-index: 5;

}

.stats-wrapper {

    box-shadow: var(--shadow);

    background: var(--white);

    margin-top: -38px;

    position: relative;

}

.stat-item {

    text-align: center;

    padding: 28px 15px;

    border-right: 1px solid var(--border);

}

.col-lg-3:last-child .stat-item {
    border-right: none;
}

.stat-item strong {

    display: block;

    color: var(--forest);

    font-family: "Playfair Display", serif;

    font-size: 30px;

    margin-bottom: 3px;

}

.stat-item span {

    font-size: 10px;

    color: #89928d;

}


/* =========================================================
   SECTION HEADINGS
========================================================= */

.section-heading {

    max-width: 700px;

    margin: 0 auto;

}

.section-heading.text-center {
    text-align: center;
}

.section-tag {

    color: var(--gold);

    font-size: 10px;

    letter-spacing: 2px;

    font-weight: 800;

    margin-bottom: 12px;

}

.section-heading h2,
.about-title {

    font-family: "Playfair Display", serif;

    color: var(--heading);

    font-size: clamp(34px, 4vw, 50px);

    line-height: 1.15;

    font-weight: 800;

    margin-bottom: 16px;

}

.section-heading h2 span,
.about-title span,
.contact-title span {
    color: var(--gold);
}

.section-heading p {

    font-size: 13px;

    line-height: 1.8;

}


/* =========================================================
   SERVICES
========================================================= */

.services-section {

    background: var(--white);

}

.service-card {

    height: 100%;

    padding: 35px 30px;

    border: 1px solid var(--border);

    position: relative;

    transition: var(--transition);

    background: var(--white);

}

.service-card:hover {

    transform: translateY(-7px);

    box-shadow: var(--shadow);

    border-color: rgba(199, 163, 90, 0.40);

}

.service-number {

    position: absolute;

    top: 25px;

    right: 25px;

    color: #e7e4da;

    font-family: "Playfair Display", serif;

    font-size: 27px;

    font-weight: 700;

}

.service-icon {

    width: 57px;
    height: 57px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: var(--cream);

    color: var(--forest);

    border-radius: 4px;

    font-size: 23px;

    margin-bottom: 25px;

    transition: var(--transition);

}

.service-card:hover .service-icon {

    background: var(--forest);

    color: var(--gold);

}

.service-card h3 {

    color: var(--heading);

    font-family: "Playfair Display", serif;

    font-size: 21px;

    margin-bottom: 12px;

}

.service-card p {

    font-size: 11px;

    line-height: 1.9;

    margin-bottom: 22px;

}

.service-card a {

    color: var(--forest);

    font-size: 11px;

    font-weight: 800;

}

.service-card a i {

    margin-left: 5px;

    transition: var(--transition);

}

.service-card a:hover i {
    margin-left: 10px;
}

.featured-service {

    background: var(--forest);

    border-color: var(--forest);

}

.featured-service h3 {
    color: var(--white);
}

.featured-service p {
    color: #b8c6be;
}

.featured-service .service-number {
    color: rgba(255,255,255,0.08);
}

.featured-service .service-icon {

    background: rgba(199,163,90,0.12);

    color: var(--gold);

}

.featured-service a {
    color: var(--gold-light);
}


/* =========================================================
   ABOUT
========================================================= */

.about-section {

    background: var(--cream);

}

.about-visual {

    min-height: 490px;

    position: relative;

    display: flex;

    align-items: center;

    justify-content: center;

    overflow: hidden;

}

.about-circle {

    width: 420px;
    height: 420px;

    border-radius: 50%;

    background: var(--forest);

    position: absolute;

    left: 30px;

    z-index: 1;

}

.about-circle::before {

    content: "";

    position: absolute;

    width: 320px;
    height: 320px;

    border: 1px solid rgba(199,163,90,0.35);

    border-radius: 50%;

    top: 50px;
    left: 50px;

}

.about-main-card {

    width: 330px;

    background: var(--white);

    padding: 38px;

    position: relative;

    z-index: 2;

    box-shadow: var(--shadow);

    margin-left: 50px;

}

.about-icon {

    width: 55px;
    height: 55px;

    background: var(--cream);

    color: var(--forest);

    display: flex;

    align-items: center;
    justify-content: center;

    font-size: 25px;

    margin-bottom: 25px;

}

.about-main-card > span {

    color: var(--gold);

    font-size: 9px;

    letter-spacing: 1.5px;

    font-weight: 800;

}

.about-main-card h3 {

    color: var(--heading);

    font-family: "Playfair Display", serif;

    font-size: 27px;

    line-height: 1.2;

    margin: 10px 0 14px;

}

.about-main-card p {

    color: var(--text);

    font-size: 11px;

    line-height: 1.8;

    margin: 0;

}

.about-small-card {

    position: absolute;

    z-index: 3;

    bottom: 40px;

    right: 15px;

    background: var(--white);

    padding: 15px 20px;

    display: flex;

    align-items: center;

    gap: 10px;

    box-shadow: var(--shadow);

}

.about-small-card > i {

    color: var(--gold);

    font-size: 20px;

}

.about-small-card strong {

    display: block;

    color: var(--forest);

    font-size: 13px;

}

.about-small-card span {

    display: block;

    color: #909791;

    font-size: 9px;

}

.about-lead {

    color: var(--heading);

    font-size: 15px;

    line-height: 1.8;

    margin-bottom: 15px;

}

.about-text {

    font-size: 12px;

    line-height: 1.9;

}

.about-points {

    margin: 25px 0;

}

.about-points div {

    display: flex;

    align-items: center;

    gap: 10px;

    margin-bottom: 12px;

}

.about-points i {

    width: 22px;
    height: 22px;

    border-radius: 50%;

    background: var(--forest);

    color: var(--gold);

    display: flex;

    align-items: center;
    justify-content: center;

    font-size: 12px;

}

.about-points span {

    color: var(--heading);

    font-size: 11px;

    font-weight: 600;

}


/* =========================================================
   WHY
========================================================= */

.why-section {

    background: var(--forest);

    padding: 100px 0;

    color: var(--white);

}

.light-tag {
    color: var(--gold-light);
}

.why-title {

    color: var(--white);

    font-family: "Playfair Display", serif;

    font-size: clamp(35px, 4vw, 50px);

    line-height: 1.15;

    margin-bottom: 17px;

}

.why-title span {
    color: var(--gold-light);
}

.why-description {

    color: #b9c6bf;

    font-size: 12px;

    line-height: 1.9;

    max-width: 450px;

    margin-bottom: 25px;

}

.why-card {

    height: 100%;

    padding: 28px;

    border: 1px solid rgba(255,255,255,0.10);

    background: rgba(255,255,255,0.04);

    transition: var(--transition);

}

.why-card:hover {

    background: rgba(255,255,255,0.08);

    transform: translateY(-5px);

}

.why-icon {

    width: 48px;
    height: 48px;

    background: rgba(199,163,90,0.10);

    color: var(--gold);

    display: flex;

    align-items: center;
    justify-content: center;

    margin-bottom: 20px;

}

.why-card h4 {

    font-family: "Playfair Display", serif;

    color: var(--white);

    font-size: 18px;

    margin-bottom: 8px;

}

.why-card p {

    color: #9eafa6;

    font-size: 10px;

    line-height: 1.8;

    margin: 0;

}


/* =========================================================
   TESTIMONIALS
========================================================= */

.testimonials-section {

    background: var(--white);

}

.testimonial-card {

    height: 100%;

    padding: 35px 30px;

    border: 1px solid var(--border);

    transition: var(--transition);

}

.testimonial-card:hover {

    box-shadow: var(--shadow);

    transform: translateY(-5px);

}

.highlighted-testimonial {

    background: var(--cream);

    border-color: var(--cream-dark);

}

.stars {

    color: var(--gold);

    letter-spacing: 3px;

    font-size: 13px;

    margin-bottom: 20px;

}

.testimonial-card > p {

    color: var(--heading);

    font-family: "Playfair Display", serif;

    font-size: 15px;

    line-height: 1.7;

    font-style: italic;

    margin-bottom: 25px;

}

.client {

    display: flex;

    align-items: center;

    gap: 10px;

    border-top: 1px solid var(--border);

    padding-top: 18px;

}

.client-avatar {

    width: 39px;
    height: 39px;

    border-radius: 50%;

    background: var(--forest);

    color: var(--gold-light);

    display: flex;

    align-items: center;
    justify-content: center;

    font-size: 10px;

    font-weight: 700;

}

.client strong {

    display: block;

    color: var(--heading);

    font-size: 11px;

}

.client span {

    display: block;

    color: #89918c;

    font-size: 9px;

    margin-top: 3px;

}


/* =========================================================
   QUOTE
========================================================= */

.quote-section {

    background: var(--white);

    padding: 0 0 100px;

}

.quote-banner {

    background: var(--forest);

    padding: 55px 60px;

    position: relative;

    overflow: hidden;

}

.quote-banner::after {

    content: "";

    position: absolute;

    width: 350px;
    height: 350px;

    border-radius: 50%;

    border: 70px solid rgba(199,163,90,0.06);

    right: -120px;

    top: -180px;

}

.quote-banner h2 {

    color: var(--white);

    font-family: "Playfair Display", serif;

    font-size: clamp(32px, 4vw, 46px);

    line-height: 1.15;

    margin-bottom: 12px;

}

.quote-banner h2 span {
    color: var(--gold-light);
}

.quote-banner p {

    color: #b8c6be;

    font-size: 12px;

    margin: 0;

}

.quote-actions {

    text-align: right;

    position: relative;

    z-index: 2;

}

.quote-btn {

    padding: 14px 22px;

}

.quote-link {

    display: block;

    color: var(--gold-light);

    font-size: 10px;

    font-weight: 700;

    margin-top: 15px;

}

.quote-link i {
    margin-left: 5px;
}


/* =========================================================
   CONTACT
========================================================= */

.contact-section {

    background: var(--cream);

}

.contact-title {

    color: var(--heading);

    font-family: "Playfair Display", serif;

    font-size: clamp(35px, 4vw, 50px);

    line-height: 1.15;

    margin-bottom: 15px;

}

.contact-description {

    font-size: 12px;

    line-height: 1.8;

    max-width: 430px;

}

.contact-details {

    margin-top: 30px;

}

.contact-detail {

    display: flex;

    align-items: flex-start;

    gap: 13px;

    margin-bottom: 22px;

}

.contact-detail-icon {

    width: 43px;
    height: 43px;

    background: var(--white);

    color: var(--forest);

    display: flex;

    align-items: center;
    justify-content: center;

}

.contact-detail span {

    display: block;

    color: var(--gold);

    font-size: 8px;

    letter-spacing: 1.5px;

    font-weight: 800;

    margin-bottom: 4px;

}

.contact-detail a {

    color: var(--heading);

    font-size: 12px;

    font-weight: 700;

}

.contact-detail p {

    color: var(--heading);

    font-size: 11px;

    line-height: 1.6;

    margin: 0;

}

.contact-form {

    background: var(--white);

    padding: 38px;

    box-shadow: var(--shadow);

}

.form-heading > span {

    color: var(--gold);

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1.5px;

}

.form-heading h3 {

    color: var(--heading);

    font-family: "Playfair Display", serif;

    font-size: 27px;

    margin: 7px 0 25px;

}

.contact-form label {

    display: block;

    color: var(--heading);

    font-size: 10px;

    font-weight: 700;

    margin-bottom: 7px;

}

.form-control,
.form-select {

    min-height: 47px;

    border: 1px solid var(--border);

    border-radius: 3px;

    font-family: inherit;

    font-size: 11px;

    padding: 10px 13px;

    box-shadow: none !important;

}

.form-control:focus,
.form-select:focus {

    border-color: var(--gold);

}

textarea.form-control {

    min-height: 120px;

    resize: vertical;

}

.form-message {

    text-align: center;

    margin-top: 15px;

    font-size: 11px;

    display: none;

}


/* =========================================================
   FOOTER
========================================================= */

.footer {

    background: var(--forest-dark);

    padding: 75px 0 25px;

    color: #9baaa2;

}

.footer-brand {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    color: var(--white);

    margin-bottom: 18px;

}

.footer-brand .brand-text {
    color: var(--white);
}

.footer-description {

    max-width: 370px;

    font-size: 11px;

    line-height: 1.9;

}

.footer-social {

    display: flex;

    gap: 7px;

    margin-top: 22px;

}

.footer-social a {

    width: 34px;
    height: 34px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: rgba(255,255,255,0.07);

    color: var(--white);

    transition: var(--transition);

}

.footer-social a:hover {

    background: var(--gold);

    color: var(--forest-dark);

}

.footer h5 {

    color: var(--white);

    font-size: 12px;

    font-weight: 700;

    margin-bottom: 20px;

}

.footer-links {

    list-style: none;

    padding: 0;

    margin: 0;

}

.footer-links li {
    margin-bottom: 11px;
}

.footer-links a {

    color: #9baaa2;

    font-size: 10px;

    transition: var(--transition);

}

.footer-links a:hover {

    color: var(--gold-light);

    padding-left: 4px;

}

.footer-contact {

    list-style: none;

    padding: 0;

    margin: 0;

}

.footer-contact li {

    display: flex;

    align-items: flex-start;

    gap: 8px;

    margin-bottom: 14px;

    font-size: 10px;

    line-height: 1.6;

}

.footer-contact i {

    color: var(--gold);

    margin-top: 3px;

}

.footer-contact a {
    color: #9baaa2;
}

.footer-contact a:hover {
    color: var(--gold-light);
}

.footer-line {

    height: 1px;

    background: rgba(255,255,255,0.09);

    margin: 45px 0 20px;

}

.footer-bottom {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

}

.footer-bottom p {

    margin: 0;

    font-size: 9px;

}

.footer-bottom a {

    color: #9baaa2;

    font-size: 9px;

    margin-left: 20px;

}

.footer-bottom a:hover {
    color: var(--gold-light);
}


/* =========================================================
   BACK TO TOP
========================================================= */

.back-to-top {

    position: fixed;

    right: 25px;

    bottom: 25px;

    width: 43px;
    height: 43px;

    border: none;

    background: var(--gold);

    color: var(--forest-dark);

    display: flex;

    align-items: center;
    justify-content: center;

    opacity: 0;

    visibility: hidden;

    transform: translateY(15px);

    transition: var(--transition);

    z-index: 999;

}

.back-to-top.show {

    opacity: 1;

    visibility: visible;

    transform: translateY(0);

}

.back-to-top:hover {

    background: var(--forest);

    color: var(--gold);

}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991px) {

    .section-padding {
        padding: 80px 0;
    }

    .ridge-navbar {
        padding: 13px 0;
    }

    .navbar-collapse {
        padding-top: 15px;
    }

    .nav-link {
        padding: 10px 5px !important;
    }

    .nav-link.active::after {
        display: none;
    }

    .nav-btn {
        margin-left: 0;
        margin-top: 8px;
    }

    .hero-section {

        min-height: auto;

        padding: 75px 0 100px;

    }

    .hero-card-wrapper {

        margin-top: 50px;

        max-width: 520px;

        margin-left: auto;
        margin-right: auto;

    }

    .about-visual {
        margin-bottom: 30px;
    }

    .quote-actions {
        text-align: left;
        margin-top: 25px;
    }

}


@media (max-width: 767px) {

    .section-padding {
        padding: 70px 0;
    }

    .top-phone {
        font-size: 12px;
    }

    .hero-section {

        padding: 60px 0 80px;

    }

    .hero-section h1 {

        font-size: 48px;

        letter-spacing: -1px;

    }

    .hero-description {

        font-size: 13px;

    }

    .hero-actions {

        align-items: flex-start;

        flex-direction: column;

        gap: 18px;

    }

    .hero-features {

        flex-direction: column;

        gap: 10px;

    }

    .hero-card-wrapper {

        padding: 15px;

    }

    .hero-card {

        padding: 28px 23px;

    }

    .hero-floating {

        left: 5px;

    }

    .stats-wrapper {

        margin-top: -20px;

    }

    .stat-item {

        padding: 22px 10px;

        border-bottom: 1px solid var(--border);

    }

    .stat-item strong {

        font-size: 25px;

    }

    .stat-item span {

        font-size: 9px;

    }

    .about-visual {

        min-height: 400px;

    }

    .about-circle {

        width: 330px;
        height: 330px;

        left: 10px;

    }

    .about-circle::before {

        width: 250px;
        height: 250px;

        top: 40px;
        left: 40px;

    }

    .about-main-card {

        width: 280px;

        padding: 28px;

        margin-left: 20px;

    }

    .about-small-card {

        right: 0;

        bottom: 15px;

    }

    .why-section {

        padding: 75px 0;

    }

    .quote-section {

        padding-bottom: 70px;

    }

    .quote-banner {

        padding: 40px 25px;

    }

    .contact-form {

        padding: 25px 20px;

    }

    .footer {

        padding-top: 60px;

    }

    .footer-bottom {

        align-items: flex-start;

        flex-direction: column;

    }

    .footer-bottom a {

        margin-left: 0;

        margin-right: 15px;

    }

}


@media (max-width: 400px) {

    .navbar-brand .brand-text {
        font-size: 20px;
    }

    .hero-section h1 {

        font-size: 41px;

    }

    .hero-card {

        padding: 25px 18px;

    }

    .about-main-card {

        width: 255px;

        padding: 23px;

    }

}