﻿
body {
    font-family: 'Poppins', sans-serif !important;
    transform: none !important;
}

html, body {
    overflow-x: hidden;
    overflow-y: auto !important;
}

* {
    box-sizing: border-box;
}

img {
    max-width: 100%;
    height: auto;
}

.home-hero {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 100vh;
    padding: 40px 20px;
}

    .home-hero .container {
        width: 100%;
        max-width: 1200px;
    }

.hero-text {
    width: 100%;
    margin: 0 auto;
    text-align: center;
}

    .hero-text h1 {
        font-size: clamp(28px, 6vw, 56px);
        font-weight: 700;
        line-height: 1.2;
        margin-bottom: 20px;
    }

    .hero-text p {
        width: 100%;
        max-width: 100%;
        font-size: clamp(14px, 2.5vw, 20px);
        padding: 0 10px;
        line-height: 1.8;
        margin-bottom: 30px;
    }

.page-hero {
    position: relative;
    width: 100%;
    min-height: 420px;
    max-height: 620px;
    overflow: hidden;
    background-size: cover;
    background-position: center center;
}



    /* ================= PREMIUM DARK GRADIENT ================= */
    .page-hero::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient( 90deg, rgba(0,0,0,.65), rgba(0,0,0,.35), rgba(0,0,0,.15) );
        z-index: 1;
    }

    /* ================= CINEMATIC DEPTH OVERLAY ================= */

    .page-hero::after {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient( circle at 75% 40%, rgba(0,0,0,0.15), transparent 60% );
        z-index: 1;
    }

    /* ================= HERO TEXT PREMIUM ================= */

    .page-hero .hero-text {
        position: relative;
        z-index: 2;
        max-width: 900px;
        margin: 0 auto;
        padding-top: 40px;/*
        padding: 40px 0;*/
    }

    .page-hero h1 {
        font-size: clamp(38px, 4vw, 64px);
        font-weight: 800;
        /*margin-top: -100px;*/
        line-height: 1.15;
        letter-spacing: -0.5px;
        text-shadow: 0 8px 25px rgba(0,0,0,.35);
    }

    /* ================= PREMIUM DARK GRADIENT ================= */

    .page-hero::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient( 90deg, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.45) 35%, rgba(0,0,0,0.20) 60%, rgba(0,0,0,0.10) 100% );
        z-index: 1;
    }

    /* ================= CINEMATIC DEPTH OVERLAY ================= */

    .page-hero::after {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient( circle at 75% 40%, rgba(0,0,0,0.15), transparent 60% );
        z-index: 1;
    }

    /* ================= HERO TEXT PREMIUM ================= */

    .page-hero .hero-text {
        position: relative;
        z-index: 2;
        max-width: 720px;
        padding: 40px 0;
    }

    .page-hero h1 {
        font-size: clamp(38px, 4vw, 64px);
        font-weight: 800;
        margin-top: -100px;
        line-height: 1.15;
        letter-spacing: -0.5px;
        text-shadow: 0 8px 25px rgba(0,0,0,.35);
    }
/* ================= HERO SECTION ================= */
.page-hero {
    height: auto;
    padding: 100px 20px 60px;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    min-height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
}

    .page-hero h1 {
        font-size: clamp(32px, 5vw, 56px);
        line-height: 1.2;
    }

    .page-hero p {
        font-size: clamp(16px, 2vw, 20px);
        opacity: 0.95;
        max-width: 900px;
        width: 100%;
        line-height: 1.6;
        color: #e6e6e6;
        margin-top: 20px;
    }

.hero-text {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}

/* ================= BUTTON ================= */

.contact-btn {
    text-decoration: none;
    color: #fff;
    transform-origin: center;
}

    .contact-btn:hover {
        background: var(--brand-red);
        color: black;
    }

/* ================= FOUNDATION SECTION ================= */

.foundation-values-section {
    padding: 25px 0;
}

.foundation-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 40px auto;
}

    .foundation-header h2 {
        font-size: clamp(24px, 4vw, 20px);
    }

    .foundation-header p {
        font-size: clamp(15px, 2vw, 18px);
        max-width: 800px;
        padding: 0 10px;
        margin: 0 auto;
    }

/* ================= VALUES GRID ================= */


.value-hex {
    background: #808080;
    color: #fff;
    padding: 40px 25px;
    text-align: center;
    border-radius: 12px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 180px;
}

    .value-hex div {
        font-size: 16px;
        font-weight: 500;
        line-height: 1.6;
    }

    .value-hex:hover {
        transform: translateY(-8px);
        background: #D32F2F;
        color: #000;
    }

.values-footer {
    text-align: center;
    margin-top: 40px;
    font-size: 16px;
}
.foundation-content {
    padding: 0 15px;
    overflow: hidden;
    width: 100%; 
    box-sizing: border-box;
}

@media (max-width: 992px) {

    .page-hero {
        padding: 60px 0;
    }


    .value-hex {
        min-height: 160px;
    }
}

/* ================= MOBILE ================= */

@media (max-width: 768px) {

    .page-hero {
        text-align: center;
    }

    .page-hero p {
            margin-left: auto;
            margin-right: auto;
    }


    .value-hex {
        padding: 30px 20px;
        min-height: 150px;
    }

        .value-hex div {
            font-size: 15px;
        }

    .values-row {
        grid-template-columns: 1fr;
    }

    .value-box {
        padding: 25px 20px;
    }

        .value-box h5 {
            font-size: 16px;
        }

        .value-box p {
            font-size: 14px;
        }
}


@media (max-width: 480px) {

    .page-hero {
        padding: 50px 20px;
    }

    .foundation-values-section {
        padding: 0px 20px;
    }

    .value-hex {
        padding: 25px 15px;
    }

    .hero-text h1 {
        font-size: 26px;
    }

    .hero-text p {
        font-size: 14px;
    }

    .premium-btn {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .page-hero {
        height: 100svh;
        min-height: 420px;
    }
    .hero-text h1 {
        font-size: clamp(22px, 7vw, 32px);
    }

    .hero-text p {
        font-size: 14px;
        padding: 0 5px;
    }
}

@media (max-width:768px) {
    .page-hero {
        padding-top: 20vh;
        height: 70vh !important;
        min-height: 420px;
        animation: none;
    }

    .foundation-content {
        padding-top: 2vh;
    }
}

/* HERO CAROUSEL */

.hero-carousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.carousel-inner,
.carousel-item {
    width: 100%;
    height: 100%;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(60%);
}
.hero-carousel,
.carousel-inner,
.carousel-item {
    height: 100%;
}

.hero-overlay {
    position: relative;
    z-index: 2;
}

.page-hero {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.premium-btn {
    display: inline-block;
    background: #D32F2F;
    color: #fff;
    padding: 16px 28px;
    border-radius: 40px;
    text-decoration: none;
    margin-top: 0px;
    font-size: clamp(14px, 2vw, 16px);
    font-weight: 600;
    transition: .3s;
}

    .premium-btn:hover {
        background: #D32F2F;
        color: #fff;
        transform: translateY(-3px);
        box-shadow: 0 12px 30px rgba(211,47,47,.35);
    }

.values-centered {
    padding: 40px 0 0 0;
    background: #fff;
}

/* ── Section header labels ── */
.section-tag {
    color: #d32f2f;
    font-size: 18px;
    letter-spacing: 3px;
    font-weight: 700;
    text-transform: uppercase;
    display: block;
    margin-bottom: 6px;
}

.section-title {
    font-size: 34px;
    font-weight: 800;
    margin: 0 0 50px;
    line-height: 1.2;
    color: #111;
}

/* ── CENTER CARD ── */
.center-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.center-card {
    background: #111;
    color: #fff;
    padding: 24px 40px 20px;
    width: 390px;
    border-left: 4px solid #d32f2f;
    text-align: center;
    position: relative;
}

    .center-card .cf-label {
        font-size: 10px;
        letter-spacing: 2.5px;
        color: #888;
        display: block;
        margin-bottom: 10px;
        text-transform: uppercase;
    }

    .center-card h4 {
        font-size: 30px !important;
        font-weight: 800;
        margin: 0 0 14px;
        line-height: 1.25;
        color: #fff;
    }

    .center-card .branches-label {
        font-size: 11px;
        letter-spacing: 2px;
        color: #aaa;
        text-transform: uppercase;
    }

        .center-card .branches-label::before {
            content: "| ";
            color: #d32f2f;
            font-weight: 700;
        }

/* ── VERTICAL DASHED RED LINE ── */
.center-line {
    width: 0;
    height: 55px;
    border-left: 2px dashed #d32f2f;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

    /* Dot at BOTTOM of vertical line */
    .center-line::after {
        content: "";
        position: absolute;
        bottom: -8px;
        left: 50%;
        transform: translateX(-50%);
        width: 14px;
        height: 14px;
        border: 2px solid #d32f2f;
        background: #fff;
        border-radius: 50%;
        z-index: 4;
    }

.values-wrapper {
    position: relative;
    border: 1.5px dashed #ccc;
    margin-top: 0;
    padding-top: 30px;
    width: 100%; 
    overflow: hidden; 
    box-sizing: border-box;
}


.values-row {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    background: #fff;
    position: relative;
    z-index: 1;
    border-bottom: 1px solid #e8e8e8;
    width: 100%; 
    box-sizing: border-box; 
}

.value-box {
    position: relative;
    padding: 30px 28px 24px;
    border-right: 1px solid #e8e8e8;
    text-align: center;
    transition: background 0.25s, transform 0.25s;
}

    .value-box:last-child {
        border-right: none;
    }

   
    .value-box .dot {
        position: absolute;
        top: -30px;
        left: 50%;
        transform: translateX(-50%);
        width: 14px;
        height: 14px;
        background: #fff;
        border: 2px solid #aaa;
        border-radius: 50%;
        z-index: 5;
        transition: border-color 0.25s, background 0.25s;
    }

    .value-box .vb-label {
        font-size: 18px;
        color: #999;
        letter-spacing: 1.5px;
        text-transform: uppercase;
        margin-bottom: 18px;
        display: block;
    }

.vb-icon {
    width: 70px;
    height: 70px;
    border: 1.5px solid #ccc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
    background: #fff;
    transition: border-color 0.25s, background 0.25s;
}

    .vb-icon i {
        font-size: 22px;
        color: #555;
        transition: color 0.25s;
    }

.value-box h5 {
    font-size: 18px;
    font-weight: 800;
    color: #111;
    margin-bottom: 20px;
    line-height: 1.65;
}

/* ── DESCRIPTION ── */
.value-box p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    margin: 0 0 18px;
}

/* ── DECORATIVE DASH LINE ── */
.value-box .vb-dash {
    width: 30px;
    height: 2px;
    background: #ccc;
    margin: 0 auto;
}

/* ── HOVER ── */
.value-box:hover {
    background: #fafafa;
    transform: translateY(-4px);
}

    .value-box:hover .dot {
        background: #d32f2f;
        border-color: #d32f2f;
    }

    .value-box:hover .vb-icon {
        border-color: #d32f2f;
        background: #fff5f5;
    }

        .value-box:hover .vb-icon i {
            color: #d32f2f;
        }


/* ── RESPONSIVE ── */
@media (max-width: 992px) {
    .values-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .center-card {
        width: 100%;
        max-width: 390px;
    }
    .values-wrapper {
        border: 1px solid #ddd;
    }
}

@media (max-width: 576px) {
    .values-row {
        grid-template-columns: 1fr;
    }

    .center-line {
        display: none;
    }
    .value-box {
        border-right: none;
        border-bottom: 1px solid #e8e8e8;
    }

        .value-box:last-child {
            border-bottom: none;
        }

    .value-box .dot {
        display: none;
    }
    .center-card {
        width: 90%;
    }

    .values-wrapper {
        margin: 0 10px;
    }
}
.whatsapp-float {
    position: fixed !important;
    bottom: 25px;
    right: 25px;
    z-index: 999999 !important; /* bump higher */
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: #fff !important; /* force white icon color */
    border-radius: 50%;
    font-size: 30px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    text-decoration: none;
}
    .whatsapp-float:hover {
        background-color: #1ebe5d;
        transform: scale(1.1);
    }

.wa-tooltip {
    position: absolute;
    right: 70px;
    background: #000;
    color: #fff;
    padding: 6px 12px;
    font-size: 13px;
    border-radius: 6px;
    opacity: 0;
    white-space: nowrap;
    transition: all 0.3s ease;
    pointer-events: none;
}

.whatsapp-float:hover .wa-tooltip {
    opacity: 1;
    right: 80px;
}

.whatsapp-float::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.5);
    animation: pulse 1.5s infinite;
    z-index: -1;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }

    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

@media (max-width: 768px) {
    .wa-tooltip {
        display: none;
    }

    section {
        padding-left: 15px;
        padding-right: 15px;
    }

    .page-hero {
        padding-top: 120px;
        padding-bottom: 60px;
        min-height: auto;
    }

    .hero-text {
        padding-top: 20px;
    }
}