/* ============================================================
   RESET & BASE
   ============================================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: #ffffff;
    color: #0d0d0d;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    padding-bottom: 95px;
}

img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover !important;
    object-position: center;
}

/* ============================================================
   NAVIGATION & LAYOUT CONTAINERS
   ============================================================ */
header {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 100;
    padding: 24px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
}

.brand-logo {
    font-size: 22px;
    font-weight: 30;
    letter-spacing: -0.5px;
    text-decoration: none;
    color: #0d0d0d;
}

nav {
    display: flex;
    align-items: center;
    gap: 36px;
}

nav a {
    text-decoration: none;
    color: #0d0d0d;
    font-size: 14px;
    font-weight: 500;
}

.menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.menu-toggle span {
    width: 22px;
    height: 2px;
    background-color: #0d0d0d;
}

.page-container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero-card {
    background-color: #eaeae6;
    border-radius: 36px;
    padding: 50px 0 50px 50px;
    margin-bottom: 50px;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
    min-height: 400px;
}

.hero-card.blog-hero {
    min-height: 500px;
}

.hero-content {
    padding-right: 20px;
}

.hero-content h1 {
    font-size: clamp(32px, 4.5vw, 44px);
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -1px;
    margin-bottom: 12px;
}

.hero-subtitle {
    font-size: 16px;
    color: #333;
    margin-bottom: 16px;
    max-width: 480px;
}

.hero-steps {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.hero-step-item h4 {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.hero-step-item p {
    font-size: 13.5px;
    color: #222;
    padding-left: 30px;
}

.hero-image {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border-top-left-radius: 24px;
    border-bottom-left-radius: 24px;
    overflow: hidden;
    background: #d0d0c8;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #444;
    font-weight: 500;
    font-size: 14px;
}

.hero-card.blog-hero .hero-image {
    min-height: 500px;
}

/* ============================================================
   CONSTRUCTION HERO
   ============================================================ */
.construction-card {
    background-color: #eaeae6;
    border-radius: 36px;
    padding: 60px 0 60px 50px;
    margin-top: 20px;
    margin-bottom: 50px;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
    min-height: 520px;
}

.construction-content {
    padding-right: 20px;
}

.badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    background: #0d0d0d;
    color: #ffffff;
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 24px;
}

.construction-content h1 {
    font-size: clamp(30px, 4vw, 42px);
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -1px;
    margin-bottom: 16px;
}

.construction-subtitle {
    font-size: 15px;
    color: #333;
    margin-bottom: 30px;
    max-width: 520px;
}

.action-group {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
}

.construction-image {
    width: 100%;
    height: 100%;
    min-height: 520px;
    border-top-left-radius: 24px;
    border-bottom-left-radius: 24px;
    overflow: hidden;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary {
    display: inline-block;
    background-color: #0d0d0d;
    color: #ffffff;
    padding: 14px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 13.5px;
    font-weight: 500;
    transition: background 0.2s ease;
}

.btn-primary:hover {
    background-color: #333333;
}

.btn-secondary {
    display: inline-block;
    border: 1px solid #0d0d0d;
    color: #0d0d0d;
    padding: 14px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 13.5px;
    font-weight: 500;
}

/* ============================================================
   BLOG GRID – MAIN LISTING
   ============================================================ */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    margin: 40px 0 60px;
}

.blog-card {
    background: #f5f5f1;
    border-radius: 28px;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.07);
}

.blog-card .card-image {
    height: 200px;
    background: #d8d8d0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    font-weight: 300;
    color: #555;
    flex-shrink: 0;
}

.blog-card .card-body {
    padding: 24px 26px 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-card .card-tag {
    display: inline-block;
    background: #0d0d0d;
    color: white;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    padding: 3px 14px;
    border-radius: 20px;
    margin-bottom: 14px;
    align-self: flex-start;
}

.blog-card h3 {
    font-size: 19px;
    font-weight: 600;
    line-height: 1.25;
    letter-spacing: -0.3px;
    margin-bottom: 8px;
}

.blog-card .card-excerpt {
    font-size: 14px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 16px;
    flex: 1;
}

.blog-card .card-meta {
    font-size: 12px;
    color: #666;
    display: flex;
    gap: 18px;
    border-top: 1px solid #e0e0d8;
    padding-top: 14px;
    margin-top: 4px;
}

.blog-card .card-meta span {
    display: flex;
    align-items: center;
    gap: 4px;
}

/* ============================================================
   BLOG CONTENT (Article Page)
   ============================================================ */
.blog-content {
    max-width: 820px;
    margin: 0 auto 60px;
    padding: 0 16px;
}

.blog-content h2 {
    font-size: 28px;
    font-weight: 600;
    letter-spacing: -0.3px;
    margin: 2.4rem 0 0.8rem;
}

.blog-content h2:first-of-type {
    margin-top: 0.5rem;
}

.blog-content h3 {
    font-size: 20px;
    font-weight: 600;
    margin: 2rem 0 0.5rem;
}

.blog-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #1a1a1a;
    margin-bottom: 1.25rem;
}

.blog-content .pull-quote {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.4;
    border-left: 4px solid #0d0d0d;
    padding-left: 24px;
    margin: 2rem 0;
    color: #111;
}

.blog-content .byline {
    font-size: 14px;
    color: #555;
    margin-bottom: 2rem;
    border-bottom: 1px solid #eaeae6;
    padding-bottom: 1rem;
}

.blog-content .block-highlight {
    background: #eaeae6;
    border-radius: 24px;
    padding: 28px 32px;
    margin: 2rem 0;
}

.blog-content .block-highlight p:last-child {
    margin-bottom: 0;
}

.blog-content ul {
    list-style: none;
    padding-left: 0;
    margin: 1.25rem 0;
}

.blog-content ul li {
    padding-left: 20px;
    position: relative;
    margin-bottom: 10px;
    font-size: 15px;
    line-height: 1.6;
}

.blog-content ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #0d0d0d;
    font-weight: 700;
}

.blog-content .inline-badge {
    display: inline-block;
    background: #0d0d0d;
    color: white;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 2px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    margin-right: 6px;
}

.blog-content hr {
    border: 0;
    border-top: 1px solid #ddd;
    margin: 2.5rem 0;
}

.blog-content .feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 1.5rem 0;
}

.blog-content .feature-grid .item {
    background: #f4f4f0;
    border-radius: 20px;
    padding: 20px 22px;
}

.blog-content .feature-grid .item h4 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 6px;
}

.blog-content .feature-grid .item p {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 0;
    color: #222;
}

/* ============================================================
   SERVICE & OFFERING SECTIONS
   ============================================================ */
.service-wrapper {
    position: relative;
    margin-bottom: 80px;
    display: flex;
    align-items: center;
}

.service-card {
    background-color: #eaeae6;
    border-radius: 36px;
    padding: 50px 50px;
    width: 65%;
    min-height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-wrapper.right .service-card {
    margin-left: auto;
}

.service-title {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.service-desc {
    font-size: 13.5px;
    font-weight: 600;
    margin-bottom: 24px;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px 24px;
}

.service-grid ul {
    list-style: none;
}

.service-grid li {
    font-size: 13px;
    margin-bottom: 8px;
    position: relative;
    padding-left: 14px;
    line-height: 1.4;
}

.service-grid li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #000;
}

.service-img-float {
    position: absolute;
    width: 37%;
    height: 500px;
    min-height: 500px;
    border-radius: 20px;
    overflow: hidden;
    top: 50%;
    transform: translateY(-50%);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.service-wrapper.left .service-img-float {
    right: 0;
}

.service-wrapper.right .service-img-float {
    left: 0;
}

.caption-under {
    font-size: 12px;
    text-align: right;
    color: #444;
    margin-top: -60px;
    margin-bottom: 60px;
    padding-right: 20px;
}

/* ============================================================
   TAGLINES, STATEMENTS & TESTIMONIALS
   ============================================================ */
.tagline-break {
    text-align: center;
    font-style: italic;
    font-weight: 500;
    font-size: 18px;
    margin: 60px 0;
    padding: 0 10px;
}

.statement-break {
    text-align: center;
    margin: 50px 0 30px;
    padding: 0 10px;
}

.statement-break h3 {
    font-size: clamp(18px, 3vw, 22px);
    font-weight: 600;
    letter-spacing: -0.3px;
    margin-bottom: 6px;
}

.statement-break p {
    font-size: 16px;
    font-weight: 500;
    color: #111;
}

.testimonial-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: stretch;
    margin-top: 60px;
}

.testimonial-box {
    background: #eaeae6;
    border-radius: 36px;
    padding: 45px 35px;
    min-height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.testimonial-img-wrapper {
    width: 100%;
    height: 100%;
    min-height: 500px;
    border-radius: 36px;
    overflow: hidden;
}

.qr-placeholder {
    width: 70px;
    height: 70px;
    background: #fff;
    border: 1px solid #ddd;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
}

.stars {
    color: #f2b827;
    font-size: 18px;
    margin-bottom: 12px;
}

.testimonial-text {
    font-size: 13px;
    line-height: 1.6;
    color: #222;
    margin-bottom: 16px;
}

.testimonial-author {
    font-size: 12px;
    font-weight: 600;
}

.bottom-review {
    text-align: center;
    max-width: 750px;
    margin: 80px auto 20px;
    padding: 0 20px;
}

.bottom-review .stars {
    font-size: 22px;
    margin-bottom: 16px;
}

.bottom-review p {
    font-size: 16.5px;
    font-weight: 500;
    line-height: 1.5;
    margin-bottom: 16px;
}

.bottom-review .author {
    font-size: 14px;
    font-weight: 500;
    color: #444;
}

/* ============================================================
   FOOTER SECTION
   ============================================================ */
.footer-section {
    background: #eaeae6;
    border-radius: 36px;
    padding: 50px;
    margin-top: 40px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
}

.footer-brand h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 6px;
}

.footer-brand p {
    font-size: 12px;
    color: #555;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    font-size: 12px;
    margin-bottom: 8px;
}

.footer-links a {
    text-decoration: none;
    color: #333;
}


.form {
    max-width: 750px;
    margin: 0 auto 80px;
    background: #eaeae6;
    border-radius: 36px;
    padding: 50px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* FORM FIELD */

.form > div {
    display: flex;
    flex-direction: column;
}

/* LABEL */

.tx-abov-field {
    font-size: 12px;
    font-weight: 600;
    color: #222;
    margin-bottom: 8px;
    letter-spacing: 0.2px;
}

/* INPUT / SELECT / TEXTAREA */

.form input,
.form select,
.form textarea {
    width: 100%;
    border: 1px solid #d0d0ca;
    background: #ffffff;
    color: #0d0d0d;
    border-radius: 14px;
    padding: 13px 15px;
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 13.5px;
    line-height: 1.5;
    outline: none;
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

/* TEXTAREA */

.form textarea {
    min-height: 140px;
    resize: vertical;
}

/* SELECT */

.form select {
    cursor: pointer;
}

/* FOCUS */

.form input:focus,
.form select:focus,
.form textarea:focus {
    border-color: #0d0d0d;
    box-shadow: 0 0 0 3px rgba(13, 13, 13, 0.08);
}

/* SUBMIT BUTTON */

.form .btn-primary {
    border: none;
    cursor: pointer;
    align-self: flex-start;
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* ============================================================
   CONTACT INTRO TEXT
   ============================================================ */

.text-block {
    max-width: 750px;
    margin: 60px auto 35px;
}

.text-block .h4 {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: -0.2px;
    color: #0d0d0d;
}

.text-block .h4 + .h4 {
    font-size: 14px;
    font-weight: 400;
    color: #555;
    margin-top: 6px;
}

/* ============================================================
   FORM RESPONSIVE
   ============================================================ */

@media (max-width: 600px) {

    .form {
        margin: 0 0 50px;
        padding: 30px 25px;
        border-radius: 28px;
        gap: 20px;
    }

    .form .btn-primary {
        width: 100%;
        text-align: center;
    }

    .text-block {
        margin: 40px auto 25px;
        padding: 0 10px;
    }
}

/* ============================================================
   RESPONSIVE BREAKPOINTS
   ============================================================ */
@media (max-width: 992px) {
    .hero-card,
    .construction-card {
        grid-template-columns: 1fr;
        padding: 40px;
    }

    .hero-image,
    .construction-image {
        height: 400px;
        min-height: 400px;
        border-radius: 20px;
    }

    .hero-card.blog-hero .hero-image {
        min-height: 280px;
        height: 280px;
    }

    .service-wrapper {
        flex-direction: column;
        margin-bottom: 50px;
    }

    .service-card {
        width: 100%;
        min-height: auto;
        padding: 40px 30px;
    }

    .service-img-float {
        position: relative;
        width: 100%;
        height: 400px;
        min-height: 400px;
        transform: none;
        top: 0;
        margin-top: 20px;
    }

    .caption-under {
        margin-top: 10px;
        margin-bottom: 30px;
    }

    .service-wrapper.right .service-card {
        margin-left: 0;
    }

    .testimonial-card {
        grid-template-columns: 1fr;
    }

    .testimonial-img-wrapper {
        min-height: 400px;
    }

    .footer-section {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .blog-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 24px;
    }
}

@media (max-width: 600px) {
    header {
        padding: 18px 20px;
        flex-wrap: wrap;
        gap: 12px;
    }

    nav {
        gap: 18px;
    }

    .hero-card,
    .construction-card {
        padding: 28px;
    }

    .hero-card.blog-hero {
        padding: 28px;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .blog-content .feature-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================================
   UTILITY CLASSES
   ============================================================ */
.text-muted {
    color: #777;
}

.mt-1 {
    margin-top: 8px;
}