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

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

body {
    font-family:"Segoe UI", sans-serif;
    font-weight: 300;
    background: #F8F6F1;
    color: #2D2D2D;
    line-height: 1.6;
}

/* =========================
   TEXT + LINKS
========================= */

a {
    text-decoration: none;
    color: #2D2D2D;
}

p {
    color: #2D2D2D;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* =========================
   LAYOUT SYSTEM
========================= */

.container {
    width: 90%;
    margin: auto;
}

.small-container {
    max-width: 1080px;
    margin: auto;
    padding-left: 25px;
    padding-right: 25px;
}

.row {
    display: flex;
    align-items: stretch; /* IMPORTANT CHANGE */
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
}

/* =========================
   COLUMNS (CONSISTENT GRID)
========================= */

.col-2 {
    flex: 1;
    min-width: 300px;
}

.col-3, 
.col-4 {
    display: flex;
}

.col-3 {
    flex: 1;
    min-width: 200px;
}

.col-4 {
    flex: 1;
    min-width: 220px;
    padding: 10px;
    background: white;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    transition: transform 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.col-4:hover {
    transform: translateY(-5px);
}

/* =========================
   GLOBAL SECTION SPACING
========================= */

.hero,
.trust-strip,
.services-preview,
.categories,
.about-section,
.offer,
.testimonial,
.final-cta {
    padding: 80px 0;
}

/* remove conflicting margins */
.categories,
.offer,
.testimonial {
    margin: 0;
}

/* =========================
   HEADINGS
========================= */

h1 {
    font-size: 48px;
    line-height: 1.2;
}

h4 {
    font-weight: 500;
    color: #555;
}

.title {
    text-align: center;
    margin: 0 auto 40px;
    color: #555;
    position: relative;
}

.title::after {
    content: '';
    background: #D6B77A;
    width: 80px;
    height: 5px;
    border-radius: 5px;
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.hero .col-2:first-child {
    padding-left: 40px;
}

/* =========================
   BUTTONS
========================= */

.btn {
    display: inline-block;
    background: #5E8B7E;
    color: #fff;
    padding: 10px 30px;
    margin-top: 20px;
    border-radius: 30px;
    transition: background 0.3s ease;
}

.btn:hover {
    background: #4F6F52;
}

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

.header {
    background: #4F6F52;
}

/* =========================
   TRUST STRIP
========================= */

.trust-strip {
    background: #eef3ef;
    text-align: center;
    font-weight: 500;
}

.trust-strip .row {
    justify-content: center !important;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.trust-strip .col-3 {
    flex: 0 0 auto !important;
    max-width: 260px;
    text-align: center;
    margin: 0;
    padding: 0 10px;
}

.services-preview,
.about-section,
.testimonial {
    background: #fff;
}

.offer {
    background: #EFE9DE;
}

/* =========================
   SERVICE CARDS
========================= */

.col-4 img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 6px;
}

/* =========================
   OFFER SECTION
========================= */

.offer-img {
    padding: 30px;
}

small {
    color: #555;
}

/* =========================
   TESTIMONIALS
========================= */

.testimonial .col-3 {
    text-align: center;
    padding: 30px 20px;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;

    height: 100%;
}

.testimonial .col-3:hover {
    transform: translateY(-8px);
}

.fa.fa-quote-left {
    font-size: 30px;
    color: #555;
    margin-bottom: 10px;
}

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

.final-cta {
    text-align: center;
}

.final-cta p {
    margin-bottom: 20px;
}

/* =========================
   IMAGES
========================= */

img {
    max-width: 100%;
    height: auto;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 768px) {
    h1 {
        font-size: 36px;
    }

    .row {
        gap: 25px;
    }

    .container {
        width: 100%;
    }

    .hero .col-2:first-child {
        padding-left: 10px;
        padding-right: 10px;
        text-align: center;
    }
}

@media (max-width: 600px) {
    .row {
        flex-direction: column;
        text-align: center;
    }

    .col-2,
    .col-3,
    .col-4 {
        min-width: 100%;
    }

    .btn {
        width: auto;
    }
}