:root {
    --primary: #071a33;
    --primary-light: #0d2b50;
    --gold: #c9a227;
    --gold-light: #e5c65a;
    --white: #ffffff;
    --light: #f7f8fa;
    --text: #202631;
    --muted: #697386;
    --border: #e6e9ee;
    --shadow: 0 12px 40px rgba(7, 26, 51, 0.10);
}


/* =========================================================
   RESET
========================================================= */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "DM Sans", Arial, sans-serif;
    color: var(--text);
    background: #ffffff;
    line-height: 1.6;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

button,
input,
textarea {
    font-family: inherit;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}


/* =========================================================
   TOP BAR
========================================================= */

.top-bar {
    background: var(--primary);
    color: rgba(255,255,255,0.85);
    font-size: 13px;
}

.top-bar-inner {
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 28px;
}

.top-bar i {
    color: var(--gold-light);
    margin-right: 6px;
}


/* =========================================================
   HEADER
========================================================= */

.main-header {
    background: #ffffff;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.nav {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}

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

.brand img {
    width: 55px;
    height: 55px;
    object-fit: contain;
}

.brand strong {
    display: block;
    color: var(--primary);
    font-family: "Playfair Display", serif;
    font-size: 22px;
    line-height: 1;
}

.brand span {
    display: block;
    color: var(--gold);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 4px;
    margin-top: 5px;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

.desktop-nav a {
    color: #263143;
    font-size: 14px;
    font-weight: 600;
    transition: 0.3s;
}

.desktop-nav a:hover {
    color: var(--gold);
}

.header-btn {
    background: var(--primary);
    color: #fff;
    padding: 12px 18px;
    border-radius: 7px;
    font-size: 13px;
    font-weight: 700;
    transition: 0.3s;
}

.header-btn i {
    color: #25d366;
    margin-right: 6px;
}

.header-btn:hover {
    background: var(--gold);
    transform: translateY(-2px);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: 0;
    font-size: 24px;
    color: var(--primary);
    cursor: pointer;
}

.mobile-menu {
    display: none;
}


/* =========================================================
   HERO
========================================================= */

.hero {
    background:
        linear-gradient(
            135deg,
            #f8fafc 0%,
            #ffffff 55%,
            #f4f0e4 100%
        );
    padding: 90px 0;
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 70px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gold);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}

.hero-badge i {
    font-size: 14px;
}

.hero h1 {
    color: var(--primary);
    font-family: "Playfair Display", serif;
    font-size: clamp(42px, 5vw, 68px);
    line-height: 1.08;
    margin-bottom: 22px;
}

.hero h1 span {
    display: block;
    color: var(--gold);
}

.hero-content > p {
    color: var(--muted);
    max-width: 620px;
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 14px 22px;
    border-radius: 7px;
    font-size: 14px;
    font-weight: 700;
    transition: 0.3s;
}

.btn-gold {
    background: var(--gold);
    color: #fff;
}

.btn-gold:hover {
    background: #a98518;
    transform: translateY(-2px);
}

.btn-whatsapp {
    background: #25d366;
    color: #fff;
}

.btn-whatsapp:hover {
    background: #1ebc5a;
    transform: translateY(-2px);
}

.btn-light {
    background: #fff;
    color: var(--primary);
    border: 1px solid rgba(255,255,255,0.4);
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 25px;
}

.hero-trust span {
    color: #566173;
    font-size: 12px;
}

.hero-trust i {
    color: var(--gold);
    margin-right: 5px;
}

.hero-image-box {
    position: relative;
}

.hero-image {
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(7,26,51,0.18);
}

.hero-image img {
    width: 100%;
    height: 510px;
    object-fit: cover;
}

.hero-floating-card {
    position: absolute;
    bottom: 25px;
    left: -30px;
    display: flex;
    align-items: center;
    gap: 13px;
    background: #fff;
    padding: 16px 20px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.floating-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(201,162,39,0.12);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-floating-card strong {
    display: block;
    color: var(--primary);
    font-size: 14px;
}

.hero-floating-card span {
    display: block;
    color: var(--muted);
    font-size: 12px;
}


/* =========================================================
   QUICK SERVICES
========================================================= */

.quick-services {
    background: var(--primary);
    color: #fff;
}

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

.quick-services-grid > div {
    min-height: 105px;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px;
    border-right: 1px solid rgba(255,255,255,0.10);
}

.quick-services-grid > div:last-child {
    border-right: 0;
}

.quick-services-grid i {
    color: var(--gold-light);
    font-size: 25px;
}

.quick-services-grid strong {
    display: block;
    font-size: 14px;
}

.quick-services-grid span {
    display: block;
    color: rgba(255,255,255,0.55);
    font-size: 11px;
    margin-top: 3px;
}


/* =========================================================
   COMMON SECTIONS
========================================================= */

.section-padding {
    padding: 95px 0;
}

.section-label {
    color: var(--gold);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.section-heading h2 {
    color: var(--primary);
    font-family: "Playfair Display", serif;
    font-size: clamp(34px, 4vw, 48px);
    line-height: 1.2;
}

.section-heading h2 span {
    color: var(--gold);
}

.section-heading p {
    color: var(--muted);
    max-width: 650px;
    margin-top: 15px;
}

.section-heading.center {
    text-align: center;
    display: flex;
    align-items: center;
    flex-direction: column;
    margin-bottom: 55px;
}


/* =========================================================
   ABOUT
========================================================= */

.about {
    background: #fff;
}

.about-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 75px;
    align-items: center;
}

.about-image-wrap {
    position: relative;
}

.about-image-wrap > img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.about-badge {
    position: absolute;
    right: -25px;
    bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    padding: 15px 20px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.about-badge > i {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201,162,39,0.12);
    color: var(--gold);
    border-radius: 50%;
}

.about-badge strong {
    display: block;
    color: var(--primary);
    font-size: 13px;
}

.about-badge span {
    display: block;
    color: var(--muted);
    font-size: 11px;
}

.about-content > p {
    color: var(--muted);
    margin-top: 18px;
    line-height: 1.9;
}

.about-points {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 25px 0;
}

.about-points div {
    color: #303b4d;
    font-size: 13px;
    font-weight: 600;
}

.about-points i {
    color: var(--gold);
    margin-right: 6px;
}

.text-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-size: 13px;
    font-weight: 800;
}

.text-btn:hover {
    color: var(--gold);
}


/* =========================================================
   SERVICES
========================================================= */

.services {
    background: var(--light);
}

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

.service-card {
    background: #fff;
    padding: 30px;
    border: 1px solid var(--border);
    border-radius: 12px;
    transition: 0.3s;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--gold);
    transition: 0.3s;
}

.service-card:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow);
}

.service-card:hover::before {
    width: 100%;
}

.service-icon {
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201,162,39,0.10);
    color: var(--gold);
    border-radius: 10px;
    font-size: 21px;
    margin-bottom: 20px;
}

.service-card h3 {
    color: var(--primary);
    font-size: 18px;
    margin-bottom: 10px;
}

.service-card p {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.8;
    margin-bottom: 18px;
}

.service-card a {
    color: var(--gold);
    font-size: 12px;
    font-weight: 800;
}

.service-card a i {
    margin-left: 5px;
}


/* =========================================================
   WHY US
========================================================= */

.why-us {
    background: #fff;
}

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

.why-card {
    padding: 30px;
    border: 1px solid var(--border);
    border-radius: 12px;
    position: relative;
    transition: 0.3s;
}

.why-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-5px);
}

.why-number {
    position: absolute;
    top: 20px;
    right: 20px;
    color: #e7e9ed;
    font-size: 28px;
    font-weight: 800;
}

.why-card > i {
    color: var(--gold);
    font-size: 25px;
    margin-bottom: 20px;
}

.why-card h3 {
    color: var(--primary);
    font-size: 17px;
    margin-bottom: 10px;
}

.why-card p {
    color: var(--muted);
    font-size: 13px;
}


/* =========================================================
   PROCESS
========================================================= */

.process {
    background: var(--light);
}

.process-grid {
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.process-item {
    text-align: center;
    width: 180px;
}

.process-circle {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--gold-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    font-weight: 800;
    border: 5px solid #fff;
    box-shadow: 0 0 0 1px var(--gold);
}

.process-item h3 {
    color: var(--primary);
    font-size: 15px;
    margin-top: 15px;
}

.process-item p {
    color: var(--muted);
    font-size: 11px;
    margin-top: 6px;
}

.process-line {
    width: 55px;
    height: 1px;
    background: var(--gold);
    margin-top: 32px;
}


/* =========================================================
   CTA
========================================================= */

.cta {
    background: var(--primary);
    padding: 65px 0;
    color: #fff;
}

.cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.cta h2 {
    font-family: "Playfair Display", serif;
    font-size: 36px;
    line-height: 1.25;
}

.cta h2 span {
    color: var(--gold-light);
}

.cta p {
    color: rgba(255,255,255,0.65);
    margin-top: 10px;
}

.cta-buttons {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}


/* =========================================================
   CLIENT REVIEWS
========================================================= */

.reviews {
    background: #ffffff;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.review-card {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 28px;
    position: relative;
    overflow: hidden;
    transition: 0.3s;
    box-shadow: 0 8px 30px rgba(7, 26, 51, 0.05);
}

.review-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gold);
}

.review-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
}

.review-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 18px;
}

.review-stars {
    display: flex;
    gap: 3px;
}

.review-stars i {
    color: var(--gold);
    font-size: 13px;
}

.review-state {
    color: var(--gold);
    background: rgba(201, 162, 39, 0.10);
    border: 1px solid rgba(201, 162, 39, 0.18);
    border-radius: 20px;
    padding: 5px 10px;
    font-size: 10px;
    font-weight: 800;
    white-space: nowrap;
}

.review-text {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.85;
    min-height: 145px;
    margin-bottom: 22px;
}

.review-client {
    display: flex;
    align-items: center;
    gap: 12px;
    border-top: 1px solid var(--border);
    padding-top: 17px;
}

.review-avatar {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: var(--gold-light);
    font-size: 14px;
}

.review-client strong {
    display: block;
    color: var(--primary);
    font-size: 13px;
}

.review-client span {
    display: block;
    color: var(--muted);
    font-size: 11px;
    margin-top: 2px;
}


/* =========================================================
   FAQ
========================================================= */

.faq {
    background: #fff;
}

.faq-wrapper {
    max-width: 850px;
    margin: auto;
}

.faq details {
    border-bottom: 1px solid var(--border);
    padding: 20px 0;
}

.faq summary {
    list-style: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--primary);
    font-size: 15px;
    font-weight: 700;
}

.faq summary::-webkit-details-marker {
    display: none;
}

.faq summary i {
    color: var(--gold);
}

.faq details p {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.8;
    padding: 15px 30px 0 0;
}


/* =========================================================
   CONTACT
========================================================= */

.contact {
    background: var(--light);
}

.contact-form-wrapper {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 30px;
    align-items: stretch;
}

.contact-form {
    background: #fff;
    padding: 38px;
    border-radius: 14px;
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    color: var(--primary);
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 7px;
}

.input-box {
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid var(--border);
    border-radius: 7px;
    padding: 0 14px;
    background: #fff;
    transition: 0.3s;
}

.input-box:focus-within {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201,162,39,0.08);
}

.input-box i {
    color: var(--gold);
    font-size: 14px;
}

.input-box input,
.input-box textarea {
    width: 100%;
    border: 0;
    outline: 0;
    padding: 13px 0;
    color: var(--text);
    background: transparent;
    font-size: 13px;
}

.textarea-box {
    align-items: flex-start;
}

.input-box textarea {
    min-height: 120px;
    resize: vertical;
}

.send-message-btn {
    width: 100%;
    border: 0;
    background: var(--gold);
    color: #fff;
    padding: 14px 20px;
    border-radius: 7px;
    cursor: pointer;
    font-weight: 800;
    transition: 0.3s;
}

.send-message-btn:hover {
    background: #a98518;
    transform: translateY(-2px);
}


/* =========================================================
   CONTACT INFORMATION
========================================================= */

.contact-information {
    background: var(--primary);
    color: #fff;
    padding: 40px 35px;
    border-radius: 14px;
    box-shadow: var(--shadow);
}

.contact-information h3 {
    font-family: "Playfair Display", serif;
    font-size: 28px;
    margin-bottom: 15px;
}

.contact-information > p {
    color: rgba(255,255,255,0.68);
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 23px;
}

.contact-info-icon {
    width: 45px;
    height: 45px;
    min-width: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(201,162,39,0.13);
    color: var(--gold-light);
    font-size: 17px;
}

.contact-info-item strong {
    display: block;
    color: #fff;
    font-size: 13px;
    margin-bottom: 3px;
}

.contact-info-item a,
.contact-info-item span {
    color: rgba(255,255,255,0.68);
    font-size: 13px;
    word-break: break-word;
}

.contact-info-item a:hover {
    color: var(--gold-light);
}


/* =========================================================
   CONTACT CARDS
========================================================= */

.contact-cards {
    background: #fff;
    padding: 70px 0;
}

.contact-card-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.contact-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 28px 22px;
    text-align: center;
    transition: 0.3s;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.contact-card .contact-icon {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 17px;
    background: rgba(201,162,39,0.11);
    color: var(--gold);
    font-size: 20px;
}

.contact-card .whatsapp-icon {
    color: #25d366;
    background: rgba(37,211,102,0.10);
}

.contact-card h3 {
    color: var(--primary);
    font-size: 17px;
    margin-bottom: 7px;
}

.contact-card p {
    color: var(--muted);
    font-size: 12px;
    margin-bottom: 10px;
}

.contact-card a {
    color: var(--gold);
    font-size: 12px;
    font-weight: 700;
    word-break: break-word;
}


/* =========================================================
   FOOTER
========================================================= */

.footer {
    background: #051426;
    color: #fff;
}

.footer-grid {
    padding: 65px 0;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.4fr;
    gap: 45px;
}

.footer-brand {
    margin-bottom: 15px;
}

.footer-brand strong {
    display: block;
    font-family: "Playfair Display", serif;
    font-size: 23px;
}

.footer-brand span {
    color: var(--gold-light);
    letter-spacing: 4px;
    font-size: 10px;
    font-weight: 800;
}

.footer-grid > div > p {
    color: rgba(255,255,255,0.55);
    font-size: 12px;
    line-height: 1.8;
}

.footer h4 {
    font-size: 14px;
    margin-bottom: 18px;
    color: #fff;
}

.footer-grid a {
    display: block;
    color: rgba(255,255,255,0.58);
    font-size: 12px;
    margin-bottom: 9px;
    transition: 0.3s;
}

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

.footer-grid p {
    margin-bottom: 9px;
}

.footer-grid p i {
    color: var(--gold-light);
    margin-right: 7px;
}

.footer-whatsapp {
    display: inline-flex !important;
    align-items: center;
    gap: 7px;
    background: #25d366;
    color: #fff !important;
    padding: 10px 14px;
    border-radius: 6px;
    margin-top: 8px;
}

.footer-whatsapp:hover {
    background: #1ebc5a !important;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 18px 0;
}

.footer-bottom p {
    text-align: center;
    color: rgba(255,255,255,0.45);
    font-size: 11px;
}


/* =========================================================
   RESPONSIVE - TABLET
========================================================= */

@media (max-width: 1050px) {

    .desktop-nav {
        gap: 16px;
    }

    .hero-container {
        gap: 40px;
    }

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

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

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

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

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


/* =========================================================
   RESPONSIVE - MOBILE
========================================================= */

@media (max-width: 768px) {

    .top-bar-inner {
        justify-content: center;
        flex-wrap: wrap;
        gap: 8px 18px;
        padding: 9px 0;
    }

    .top-bar-inner span {
        font-size: 11px;
    }

    .nav {
        min-height: 70px;
    }

    .brand img {
        width: 48px;
        height: 48px;
    }

    .brand strong {
        font-size: 19px;
    }

    .brand span {
        font-size: 9px;
    }

    .desktop-nav,
    .header-btn {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .mobile-menu {
        display: none;
        background: #fff;
        border-top: 1px solid var(--border);
        padding: 10px 5%;
    }

    .mobile-menu.active {
        display: block;
    }

    .mobile-menu a {
        display: block;
        padding: 12px 0;
        color: var(--primary);
        font-size: 14px;
        font-weight: 600;
        border-bottom: 1px solid var(--border);
    }

    .mobile-menu a:last-child {
        border-bottom: 0;
    }


    /* HERO */

    .hero {
        padding: 60px 0;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .hero h1 {
        font-size: 42px;
    }

    .hero-image img {
        height: 360px;
    }

    .hero-floating-card {
        left: 15px;
        bottom: 15px;
    }


    /* QUICK SERVICES */

    .quick-services-grid {
        grid-template-columns: 1fr 1fr;
    }

    .quick-services-grid > div {
        border-bottom: 1px solid rgba(255,255,255,0.10);
    }


    /* COMMON */

    .section-padding {
        padding: 70px 0;
    }


    /* ABOUT */

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

    .about-image-wrap > img {
        height: 400px;
    }

    .about-badge {
        right: 15px;
    }


    /* SERVICES */

    .services-grid {
        grid-template-columns: 1fr;
    }


    /* WHY */

    .why-grid {
        grid-template-columns: 1fr;
    }


    /* PROCESS */

    .process-grid {
        flex-direction: column;
        align-items: center;
        gap: 0;
    }

    .process-item {
        width: 100%;
        max-width: 280px;
    }

    .process-line {
        width: 1px;
        height: 35px;
        margin: 0;
    }


    /* REVIEWS */

    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .review-card {
        padding: 24px;
    }

    .review-text {
        min-height: auto;
    }


    /* CTA */

    .cta-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .cta h2 {
        font-size: 30px;
    }


    /* CONTACT */

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

    .contact-form {
        padding: 25px;
    }


    /* CONTACT CARDS */

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


    /* FOOTER */

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .container {
        width: 92%;
    }

    .hero h1 {
        font-size: 36px;
    }

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

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

    .hero-buttons .btn {
        width: 100%;
    }

    .hero-trust {
        flex-direction: column;
        gap: 8px;
    }

    .hero-image img {
        height: 300px;
    }

    .quick-services-grid {
        grid-template-columns: 1fr;
    }

    .quick-services-grid > div {
        border-right: 0;
    }

    .about-points {
        grid-template-columns: 1fr;
    }

    .section-heading h2 {
        font-size: 32px;
    }

    /* REVIEWS */

    .review-card {
        padding: 20px;
    }

    .review-top {
        align-items: flex-start;
    }

    .review-state {
        font-size: 9px;
        padding: 4px 8px;
    }

    .review-stars i {
        font-size: 12px;
    }

    .review-text {
        font-size: 12px;
        line-height: 1.8;
    }

    .cta-buttons {
        width: 100%;
        flex-direction: column;
    }

    .cta-buttons .btn {
        width: 100%;
    }

    .contact-information {
        padding: 30px 22px;
    }

    .contact-info-item {
        gap: 10px;
    }

    .contact-info-item a,
    .contact-info-item span {
        font-size: 12px;
    }

}