/* =========================================================
   TRIPLE M WELDERS
   Main Website Stylesheet
   ========================================================= */


/* =========================
   ROOT VARIABLES
   ========================= */

:root {
    --primary: #087cf5;
    --primary-dark: #0055b8;
    --blue-light: #eaf4ff;

    --dark: #07111f;
    --dark-2: #0b1a2d;
    --dark-3: #10243c;

    --white: #ffffff;
    --text: #172235;
    --muted: #6d7787;
    --border: #e4eaf1;
    --light: #f6f9fc;

    --success: #20c477;

    --shadow-sm: 0 5px 20px rgba(7, 17, 31, 0.07);
    --shadow-md: 0 15px 40px rgba(7, 17, 31, 0.10);
    --shadow-lg: 0 25px 70px rgba(7, 17, 31, 0.18);

    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;

    --transition: 0.3s ease;
}


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

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

html {
    scroll-behavior: smooth;
}

body {
    font-family:
        "Segoe UI",
        Arial,
        Helvetica,
        sans-serif;

    color: var(--text);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}

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

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

button,
input,
textarea,
select {
    font: inherit;
}

button {
    cursor: pointer;
}


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

.container {
    width: min(1180px, 92%);
    margin: 0 auto;
}

.section {
    padding: 100px 0;
}

.eyebrow {
    display: inline-block;

    margin-bottom: 12px;

    color: var(--primary);

    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.section-title {
    display: flex;
    justify-content: space-between;
    align-items: end;

    gap: 30px;

    margin-bottom: 45px;
}

.section-title.centered {
    display: block;
    text-align: center;
}

.section-title h2,
.section-heading h2 {
    color: var(--dark);

    font-size: clamp(32px, 4vw, 50px);
    line-height: 1.15;
    font-weight: 800;
}

.section-title p {
    max-width: 600px;

    margin: 15px auto 0;

    color: var(--muted);
}


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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    min-height: 52px;
    padding: 0 24px;

    border-radius: 8px;

    font-size: 15px;
    font-weight: 700;

    transition:
        transform var(--transition),
        box-shadow var(--transition),
        background var(--transition);
}

.btn:hover {
    transform: translateY(-3px);
}

.btn-primary {
    color: var(--white);
    background: var(--primary);

    box-shadow: 0 10px 25px rgba(8, 124, 245, 0.25);
}

.btn-primary:hover {
    background: var(--primary-dark);
    box-shadow: 0 15px 35px rgba(8, 124, 245, 0.35);
}

.btn-outline {
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.35);

    background: rgba(255, 255, 255, 0.06);

    backdrop-filter: blur(8px);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--dark);
}

.btn-light {
    color: var(--dark);
    background: var(--white);
}

.btn-whatsapp {
    color: var(--white);
    background: var(--success);
}

.text-link {
    display: inline-flex;
    align-items: center;

    gap: 8px;

    margin-top: 20px;

    color: var(--primary);

    font-weight: 700;

    transition: gap var(--transition);
}

.text-link:hover {
    gap: 14px;
}


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

.header {
    position: relative;
    z-index: 1000;

    background: var(--white);

    border-bottom: 1px solid var(--border);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;

    min-height: 82px;
}


/* LOGO */

.logo {
    display: inline-flex;
    flex-direction: column;

    line-height: 1;
}

.logo span {
    color: var(--dark);

    font-size: 23px;
    font-weight: 900;
    letter-spacing: 1px;
}

.logo small {
    margin-top: 5px;

    color: var(--primary);

    font-size: 10px;
    font-weight: 800;
    letter-spacing: 4px;
}


/* NAVIGATION */

.navbar {
    display: flex;
    align-items: center;

    gap: 30px;
}

.navbar > a:not(.nav-whatsapp) {
    position: relative;

    color: #445066;

    font-size: 14px;
    font-weight: 600;

    transition: color var(--transition);
}

.navbar > a:not(.nav-whatsapp)::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -8px;

    width: 0;
    height: 2px;

    background: var(--primary);

    transition: width var(--transition);
}

.navbar > a:hover,
.navbar > a.active {
    color: var(--primary);
}

.navbar > a:hover::after,
.navbar > a.active::after {
    width: 100%;
}

.nav-whatsapp {
    display: flex;
    align-items: center;

    gap: 8px;

    padding: 11px 18px;

    border-radius: 7px;

    color: var(--white);
    background: var(--success);

    font-size: 14px;
    font-weight: 700;

    transition:
        transform var(--transition),
        box-shadow var(--transition);
}

.nav-whatsapp:hover {
    transform: translateY(-2px);

    box-shadow: 0 8px 20px rgba(32, 196, 119, 0.25);
}


/* MOBILE MENU BUTTON */

.menu-toggle {
    display: none;

    width: 44px;
    height: 44px;

    border: 0;
    border-radius: 8px;

    color: var(--white);
    background: var(--dark);

    font-size: 18px;
}


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

.hero {
    position: relative;

    min-height: 720px;

    display: flex;
    align-items: center;

    background:
        linear-gradient(
            110deg,
            #061322 0%,
            #0b2747 55%,
            #075eaa 100%
        );

    overflow: hidden;
}

.hero::before {
    content: "";

    position: absolute;

    top: -200px;
    right: -150px;

    width: 600px;
    height: 600px;

    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
}

.hero::after {
    content: "";

    position: absolute;

    right: 5%;
    bottom: -300px;

    width: 650px;
    height: 650px;

    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 50%;
}

.hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(3, 13, 25, 0.8),
            rgba(3, 13, 25, 0.25)
        );
}

.hero-content {
    position: relative;
    z-index: 2;

    padding: 100px 0;

    color: var(--white);
}

.hero-tag {
    display: inline-flex;
    align-items: center;

    gap: 9px;

    margin-bottom: 20px;
    padding: 8px 14px;

    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50px;

    color: #b9dcff;
    background: rgba(255, 255, 255, 0.07);

    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.hero h1 {
    max-width: 800px;

    font-size: clamp(45px, 6vw, 78px);
    line-height: 1.02;
    font-weight: 900;
    letter-spacing: -2px;
}

.hero h1 span {
    color: #4ca9ff;
}

.hero p {
    max-width: 650px;

    margin-top: 25px;

    color: #d5e1ee;

    font-size: 18px;
}

.hero-buttons {
    display: flex;

    gap: 14px;

    margin-top: 35px;
}

.hero-stats {
    display: flex;

    gap: 45px;

    margin-top: 70px;
}

.hero-stats div {
    display: flex;
    flex-direction: column;
}

.hero-stats strong {
    font-size: 28px;
    line-height: 1;
}

.hero-stats span {
    margin-top: 7px;

    color: #a9b8c9;

    font-size: 12px;
}


/* =========================
   INTRO
   ========================= */

.intro {
    background: var(--white);
}

.intro-grid {
    display: grid;

    grid-template-columns: 0.9fr 1.1fr;

    gap: 100px;

    align-items: center;
}

.intro-text {
    color: var(--muted);

    font-size: 16px;
}

.intro-text p + p {
    margin-top: 18px;
}

.intro-text strong {
    color: var(--dark);
}


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

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

.service-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 20px;
}

.service-card {
    padding: 30px;

    border: 1px solid var(--border);
    border-radius: var(--radius-md);

    background: var(--white);

    box-shadow: var(--shadow-sm);

    transition:
        transform var(--transition),
        box-shadow var(--transition),
        border-color var(--transition);
}

.service-card:hover {
    transform: translateY(-8px);

    border-color: rgba(8, 124, 245, 0.25);

    box-shadow: var(--shadow-md);
}

.service-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 55px;
    height: 55px;

    margin-bottom: 22px;

    border-radius: 12px;

    color: var(--primary);
    background: var(--blue-light);

    font-size: 22px;
}

.service-card h3 {
    margin-bottom: 10px;

    color: var(--dark);

    font-size: 19px;
}

.service-card p {
    min-height: 82px;

    color: var(--muted);

    font-size: 14px;
}

.service-card a {
    display: inline-flex;
    align-items: center;

    gap: 8px;

    margin-top: 18px;

    color: var(--primary);

    font-size: 13px;
    font-weight: 700;

    transition: gap var(--transition);
}

.service-card a:hover {
    gap: 13px;
}


/* =========================
   GALLERY
   ========================= */

.gallery {
    background: var(--white);
}

.gallery .view-all {
    display: inline-flex;
    align-items: center;

    gap: 8px;

    color: var(--primary);

    font-size: 14px;
    font-weight: 700;

    white-space: nowrap;
}

.gallery-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 25px;
}

.gallery-card {
    overflow: hidden;

    border: 1px solid var(--border);
    border-radius: var(--radius-md);

    background: var(--white);

    box-shadow: var(--shadow-sm);

    transition:
        transform var(--transition),
        box-shadow var(--transition);
}

.gallery-card:hover {
    transform: translateY(-7px);

    box-shadow: var(--shadow-lg);
}

.gallery-image {
    position: relative;

    height: 270px;

    overflow: hidden;

    background: #dce5ee;
}

.gallery-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.6s ease;
}

.gallery-card:hover .gallery-image img {
    transform: scale(1.07);
}

.category {
    position: absolute;

    top: 15px;
    left: 15px;

    padding: 6px 11px;

    border-radius: 5px;

    color: var(--white);
    background: var(--primary);

    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.7px;
    text-transform: uppercase;
}

.gallery-content {
    padding: 23px;
}

.gallery-content h3 {
    margin-bottom: 8px;

    color: var(--dark);

    font-size: 20px;
}

.gallery-content p {
    min-height: 70px;

    color: var(--muted);

    font-size: 13px;
    line-height: 1.6;
}

.gallery-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 15px;

    margin-top: 20px;
    padding-top: 17px;

    border-top: 1px solid var(--border);
}

.gallery-bottom strong {
    color: var(--dark);

    font-size: 16px;
}

.gallery-bottom a {
    display: inline-flex;
    align-items: center;

    gap: 6px;

    padding: 8px 12px;

    border-radius: 6px;

    color: var(--white);
    background: var(--success);

    font-size: 12px;
    font-weight: 700;

    transition:
        transform var(--transition),
        box-shadow var(--transition);
}

.gallery-bottom a:hover {
    transform: translateY(-2px);

    box-shadow: 0 7px 15px rgba(32, 196, 119, 0.2);
}


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

.why-us {
    color: var(--white);
    background: var(--dark);
}

.why-grid {
    display: grid;

    grid-template-columns: 0.8fr 1.2fr;

    gap: 100px;

    align-items: center;
}

.why-content .eyebrow {
    color: #4ca9ff;
}

.why-content h2 {
    color: var(--white);

    font-size: clamp(35px, 4vw, 55px);
    line-height: 1.1;
}

.why-content h2 span {
    color: #4ca9ff;
}

.why-content p {
    max-width: 500px;

    margin: 22px 0 30px;

    color: #aebdce;
}

.benefits {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 25px;
}

.benefit {
    display: flex;

    gap: 18px;

    padding: 25px;

    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: var(--radius-md);

    background: rgba(255, 255, 255, 0.04);

    transition:
        background var(--transition),
        transform var(--transition);
}

.benefit:hover {
    transform: translateY(-5px);

    background: rgba(255, 255, 255, 0.07);
}

.benefit > i {
    flex-shrink: 0;

    color: #4ca9ff;

    font-size: 23px;
}

.benefit h3 {
    margin-bottom: 5px;

    font-size: 16px;
}

.benefit p {
    color: #93a5b9;

    font-size: 13px;
    line-height: 1.6;
}


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

.cta {
    position: relative;

    padding: 100px 0;

    overflow: hidden;

    text-align: center;

    color: var(--white);

    background:
        linear-gradient(
            110deg,
            #0062c4,
            #087cf5
        );
}

.cta::before {
    content: "";

    position: absolute;

    top: -250px;
    left: -150px;

    width: 500px;
    height: 500px;

    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.cta .eyebrow {
    color: #c7e4ff;
}

.cta h2 {
    position: relative;

    font-size: clamp(35px, 5vw, 58px);
    line-height: 1.1;
}

.cta p {
    position: relative;

    max-width: 600px;

    margin: 20px auto 30px;

    color: #d9edff;
}

.cta-buttons {
    position: relative;

    display: flex;
    justify-content: center;

    gap: 13px;
}


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

.footer {
    color: #a9b7c7;
    background: #050d17;
}

.footer-grid {
    display: grid;

    grid-template-columns: 1.4fr 0.7fr 0.9fr 1fr;

    gap: 60px;

    padding: 75px 0;
}

.footer-brand .logo span {
    color: var(--white);
}

.footer-brand p {
    max-width: 320px;

    margin-top: 20px;

    font-size: 13px;
}

.footer-socials {
    display: flex;

    gap: 9px;

    margin-top: 22px;
}

.footer-socials a {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 38px;
    height: 38px;

    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 7px;

    color: #c6d1dc;

    transition:
        background var(--transition),
        color var(--transition),
        transform var(--transition);
}

.footer-socials a:hover {
    transform: translateY(-3px);

    color: var(--white);
    background: var(--primary);
}

.footer-column {
    display: flex;
    flex-direction: column;

    gap: 10px;
}

.footer-column h3 {
    margin-bottom: 10px;

    color: var(--white);

    font-size: 15px;
}

.footer-column a,
.footer-column p {
    color: #8d9cac;

    font-size: 13px;

    transition: color var(--transition);
}

.footer-column a:hover {
    color: #4ca9ff;
}

.footer-column p {
    display: flex;
    align-items: center;

    gap: 9px;
}

.footer-column p i {
    color: var(--primary);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;

    gap: 20px;

    padding: 20px 0;
}

.footer-bottom p {
    font-size: 11px;
}


/* =========================
   FLOATING SOCIAL BUTTONS
   ========================= */

.floating-social {
    position: fixed;

    right: 20px;
    bottom: 25px;

    z-index: 999;

    display: flex;
    flex-direction: column;

    gap: 10px;
}

.floating-social a {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 48px;
    height: 48px;

    border-radius: 50%;

    color: var(--white);

    font-size: 20px;

    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);

    transition:
        transform var(--transition),
        box-shadow var(--transition);
}

.floating-social a:hover {
    transform: scale(1.1);

    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.float-whatsapp {
    background: #20c477;
}

.float-facebook {
    background: #1877f2;
}

.float-tiktok {
    background: #111111;
}


/* =========================
   ANIMATIONS
   ========================= */

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content {
    animation: fadeUp 0.8s ease both;
}


/* =========================
   TABLET
   ========================= */

@media (max-width: 1000px) {

    .section {
        padding: 80px 0;
    }

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

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

    .intro-grid,
    .why-grid {
        gap: 50px;
    }

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


/* =========================
   MOBILE NAVIGATION
   ========================= */

@media (max-width: 800px) {

    .navbar {
        position: absolute;

        top: 82px;
        left: 0;
        right: 0;

        display: none;
        flex-direction: column;
        align-items: stretch;

        gap: 0;

        padding: 15px 5%;

        background: var(--white);

        border-bottom: 1px solid var(--border);

        box-shadow: var(--shadow-md);
    }

    .navbar.show {
        display: flex;
    }

    .navbar > a:not(.nav-whatsapp) {
        padding: 13px 0;

        border-bottom: 1px solid var(--border);
    }

    .navbar > a:not(.nav-whatsapp)::after {
        display: none;
    }

    .nav-whatsapp {
        justify-content: center;

        margin-top: 14px;
    }

    .menu-toggle {
        display: block;
    }

    .hero {
        min-height: 650px;
    }

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

    .why-grid {
        gap: 50px;
    }
}


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

@media (max-width: 600px) {

    .section {
        padding: 65px 0;
    }

    .section-title {
        display: block;
    }

    .section-title .view-all {
        margin-top: 18px;
    }

    .hero-content {
        padding: 80px 0;
    }

    .hero h1 {
        font-size: 43px;
        letter-spacing: -1.5px;
    }

    .hero p {
        font-size: 15px;
    }

    .hero-buttons {
        flex-direction: column;

        align-items: stretch;
    }

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

    .hero-stats {
        gap: 25px;

        margin-top: 50px;
    }

    .hero-stats strong {
        font-size: 23px;
    }

    .service-grid,
    .gallery-grid,
    .benefits,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .gallery-image {
        height: 250px;
    }

    .benefits {
        gap: 15px;
    }

    .footer-grid {
        gap: 40px;
    }

    .footer-bottom .container {
        flex-direction: column;

        text-align: center;
    }

    .floating-social {
        right: 14px;
        bottom: 15px;
    }

    .floating-social a {
        width: 44px;
        height: 44px;

        font-size: 18px;
    }
}


/* =========================
   VERY SMALL DEVICES
   ========================= */

@media (max-width: 380px) {

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

    .hero-stats {
        gap: 15px;
    }

    .hero-stats strong {
        font-size: 20px;
    }

    .gallery-bottom {
        align-items: flex-start;
        flex-direction: column;
    }

    .gallery-bottom a {
        width: 100%;
        justify-content: center;
    }
}
/* =========================
   JAVASCRIPT EFFECTS
   ========================= */

.header {
    transition:
        box-shadow 0.3s ease,
        background 0.3s ease;
}

.header.scrolled {
    position: sticky;
    top: 0;

    box-shadow: 0 8px 30px rgba(7, 17, 31, 0.08);
}

.reveal {
    opacity: 0;
    transform: translateY(25px);

    transition:
        opacity 0.7s ease,
        transform 0.7s ease;
}

.reveal-visible {
    opacity: 1;
    transform: translateY(0);
}

.image-missing {
    display: flex;
    align-items: center;
    justify-content: center;

    background:
        linear-gradient(
            135deg,
            #07111f,
            #0b4f8a
        );
}

.image-missing::after {
    content: "TRIPLE M WELDERS";

    color: rgba(255, 255, 255, 0.7);

    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
}
/* =========================================================
   ABOUT PAGE
========================================================= */

.page-hero {
    position: relative;

    padding: 110px 0;

    color: var(--white);

    background:
        linear-gradient(
            110deg,
            #061322,
            #0a3864,
            #087cf5
        );

    overflow: hidden;
}

.page-hero::after {
    content: "";

    position: absolute;

    width: 450px;
    height: 450px;

    right: -180px;
    top: -180px;

    border: 1px solid rgba(255,255,255,.12);
    border-radius: 50%;
}

.page-hero-content {
    position: relative;
    z-index: 2;
}

.page-hero h1 {
    max-width: 750px;

    font-size: clamp(42px, 6vw, 70px);
    line-height: 1.05;
}

.page-hero h1 span {
    color: #4ca9ff;
}

.page-hero p {
    max-width: 600px;

    margin-top: 20px;

    color: #c8dbef;
}


/* ABOUT INTRO */

.about-intro-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 90px;

    align-items: center;
}

.about-visual {
    position: relative;
}

.about-image-main {
    min-height: 500px;

    overflow: hidden;

    border-radius: var(--radius-lg);

    background:
        linear-gradient(
            135deg,
            #07111f,
            #0a4d88
        );
}

.image-placeholder {
    min-height: 500px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    color: rgba(255,255,255,.8);

    text-align: center;
}

.image-placeholder i {
    margin-bottom: 15px;

    font-size: 70px;

    color: #4ca9ff;
}

.image-placeholder span {
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 3px;
}

.experience-card {
    position: absolute;

    right: -25px;
    bottom: 30px;

    display: flex;
    flex-direction: column;

    padding: 20px 25px;

    border-radius: 12px;

    color: var(--white);

    background: var(--primary);

    box-shadow: var(--shadow-lg);
}

.experience-card strong {
    font-size: 22px;
}

.experience-card span {
    font-size: 12px;
    color: #d8ecff;
}

.about-text h2 {
    margin-bottom: 22px;

    color: var(--dark);

    font-size: clamp(32px,4vw,48px);
    line-height: 1.1;
}

.about-text p {
    margin-bottom: 15px;

    color: var(--muted);
}

.about-text strong {
    color: var(--dark);
}

.about-highlights {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 12px;

    margin-top: 25px;
}

.about-highlights div {
    display: flex;
    align-items: center;

    gap: 10px;

    color: var(--text);

    font-size: 14px;
    font-weight: 600;
}

.about-highlights i {
    color: var(--primary);
}


/* MISSION */

.mission-section {
    background: var(--light);
}

.mission-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 25px;
}

.mission-card {
    padding: 40px;

    border: 1px solid var(--border);
    border-radius: var(--radius-lg);

    background: var(--white);

    box-shadow: var(--shadow-sm);
}

.mission-card.featured {
    color: var(--white);

    background: var(--dark);
}

.mission-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 58px;
    height: 58px;

    margin-bottom: 25px;

    border-radius: 12px;

    color: var(--primary);
    background: var(--blue-light);

    font-size: 22px;
}

.mission-card > span {
    color: var(--primary);

    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
}

.mission-card h3 {
    margin: 10px 0;

    font-size: 25px;
}

.mission-card p {
    color: var(--muted);
}

.mission-card.featured p {
    color: #a9b8c9;
}


/* BENEFITS */

.about-benefits-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 20px;
}

.about-benefit-card {
    position: relative;

    padding: 30px;

    border: 1px solid var(--border);
    border-radius: var(--radius-md);

    background: var(--white);

    box-shadow: var(--shadow-sm);

    transition:
        transform var(--transition),
        box-shadow var(--transition);
}

.about-benefit-card:hover {
    transform: translateY(-7px);

    box-shadow: var(--shadow-md);
}

.about-benefit-card .number {
    position: absolute;

    top: 20px;
    right: 20px;

    color: #dbe6f0;

    font-size: 13px;
    font-weight: 900;
}

.about-benefit-card > i {
    margin-bottom: 20px;

    color: var(--primary);

    font-size: 27px;
}

.about-benefit-card h3 {
    margin-bottom: 10px;

    color: var(--dark);

    font-size: 18px;
}

.about-benefit-card p {
    color: var(--muted);

    font-size: 13px;
}


/* PROCESS */

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

.process-grid {
    display: grid;

    grid-template-columns:
        1fr auto
        1fr auto
        1fr auto
        1fr;

    align-items: center;

    gap: 15px;
}

.process-step {
    text-align: center;
}

.process-number {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 48px;
    height: 48px;

    margin: 0 auto 18px;

    border-radius: 50%;

    color: var(--white);
    background: var(--primary);

    font-size: 13px;
    font-weight: 800;
}

.process-step > i {
    margin-bottom: 12px;

    color: var(--primary);

    font-size: 25px;
}

.process-step h3 {
    margin-bottom: 7px;

    color: var(--dark);

    font-size: 17px;
}

.process-step p {
    color: var(--muted);

    font-size: 12px;
}

.process-line {
    width: 40px;
    height: 1px;

    background: #cdd9e5;
}


/* ABOUT MOBILE */

@media (max-width: 1000px) {

    .about-intro-grid {
        gap: 50px;
    }

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

    .process-grid {
        grid-template-columns: repeat(2,1fr);
        gap: 40px;
    }

    .process-line {
        display: none;
    }
}


@media (max-width: 700px) {

    .page-hero {
        padding: 80px 0;
    }

    .about-intro-grid,
    .mission-grid {
        grid-template-columns: 1fr;
    }

    .about-image-main,
    .image-placeholder {
        min-height: 380px;
    }

    .experience-card {
        right: 15px;
        bottom: 15px;
    }

    .about-highlights,
    .about-benefits-grid,
    .process-grid {
        grid-template-columns: 1fr;
    }

    .mission-card {
        padding: 30px;
    }
}
/* =========================================================
   SERVICES PAGE
========================================================= */

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

.service-large-card {
    position: relative;

    padding: 35px;

    border: 1px solid var(--border);
    border-radius: var(--radius-lg);

    background: var(--white);

    box-shadow: var(--shadow-sm);

    transition:
        transform var(--transition),
        box-shadow var(--transition),
        border-color var(--transition);
}

.service-large-card:hover {
    transform: translateY(-8px);

    border-color: rgba(8,124,245,.3);

    box-shadow: var(--shadow-md);
}

.service-large-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 62px;
    height: 62px;

    margin-bottom: 25px;

    border-radius: 14px;

    color: var(--primary);
    background: var(--blue-light);

    font-size: 25px;
}

.service-number {
    position: absolute;

    top: 25px;
    right: 28px;

    color: #dce5ee;

    font-size: 14px;
    font-weight: 900;
}

.service-large-card h3 {
    margin-bottom: 10px;

    color: var(--dark);

    font-size: 23px;
}

.service-large-card > p {
    min-height: 78px;

    color: var(--muted);

    font-size: 14px;
}

.service-large-card ul {
    display: flex;
    flex-direction: column;

    gap: 7px;

    margin: 22px 0;

    padding: 18px 0;

    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);

    list-style: none;
}

.service-large-card li {
    display: flex;
    align-items: center;

    gap: 9px;

    color: #536174;

    font-size: 13px;
}

.service-large-card li i {
    color: var(--primary);

    font-size: 11px;
}

.service-price {
    color: var(--muted);

    font-size: 13px;
}

.service-price strong {
    color: var(--dark);

    font-size: 17px;
}

.service-quote {
    display: inline-flex;
    align-items: center;

    gap: 8px;

    margin-top: 18px;

    color: var(--primary);

    font-size: 13px;
    font-weight: 800;
}

.service-quote:hover {
    text-decoration: underline;
}


/* CUSTOM PROJECT */

.custom-project {
    padding: 90px 0;

    color: var(--white);

    background: var(--dark);
}

.custom-project-grid {
    display: grid;

    grid-template-columns: 1.2fr .8fr;

    gap: 80px;

    align-items: center;
}

.custom-project h2 {
    font-size: clamp(38px,5vw,60px);

    line-height: 1.05;
}

.custom-project p {
    max-width: 600px;

    margin: 20px 0 30px;

    color: #aebdce;
}

.custom-project-box {
    padding: 45px;

    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--radius-lg);

    text-align: center;

    background: rgba(255,255,255,.04);
}

.custom-project-box i {
    margin-bottom: 20px;

    color: #4ca9ff;

    font-size: 55px;
}

.custom-project-box h3 {
    margin-bottom: 10px;

    font-size: 24px;
}

.custom-project-box p {
    margin: 0 auto;

    font-size: 14px;
}


/* SERVICES RESPONSIVE */

@media (max-width: 1000px) {

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

    .custom-project-grid {
        gap: 50px;
    }
}


@media (max-width: 700px) {

    .services-large-grid,
    .custom-project-grid {
        grid-template-columns: 1fr;
    }

    .service-large-card {
        padding: 28px;
    }

    .custom-project {
        padding: 70px 0;
    }

    .custom-project-box {
        padding: 35px 25px;
    }
}
/* =========================================================
   CONTACT PAGE
========================================================= */

.contact-section {
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 80px;
    align-items: start;
}

.contact-info h2 {
    max-width: 450px;
    margin-bottom: 18px;

    color: var(--dark);

    font-size: clamp(35px, 4vw, 50px);
    line-height: 1.05;
}

.contact-intro {
    max-width: 500px;
    margin-bottom: 35px;
    color: var(--muted);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact-detail {
    display: flex;
    align-items: center;
    gap: 15px;

    text-decoration: none;
}

.contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    width: 52px;
    height: 52px;

    border-radius: 12px;

    color: var(--primary);
    background: var(--blue-light);
}

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

.contact-detail span {
    display: block;

    margin-bottom: 4px;

    color: #8491a0;

    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.contact-detail strong {
    color: var(--dark);
    font-size: 15px;
}

.business-hours {
    margin-top: 40px;
    padding-top: 30px;

    border-top: 1px solid var(--border);
}

.business-hours h3 {
    margin-bottom: 18px;
    color: var(--dark);
    font-size: 17px;
}

.business-hours h3 i {
    margin-right: 8px;
    color: var(--primary);
}

.business-hours div {
    display: flex;
    justify-content: space-between;

    gap: 20px;

    padding: 9px 0;

    color: var(--muted);

    font-size: 13px;
}

.business-hours strong {
    color: var(--dark);
}

.contact-socials {
    margin-top: 30px;
}

.contact-socials > span {
    color: #8491a0;

    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.contact-socials div {
    display: flex;
    gap: 10px;
    margin-top: 12px;
}

.contact-socials a {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 40px;
    height: 40px;

    border-radius: 50%;

    color: var(--primary);
    background: var(--blue-light);

    transition: .3s ease;
}

.contact-socials a:hover {
    color: #fff;
    background: var(--primary);
}


/* QUOTE FORM */

.quote-form-wrapper {
    padding: 42px;

    border: 1px solid var(--border);
    border-radius: var(--radius-lg);

    background: var(--white);

    box-shadow: var(--shadow-md);
}

.quote-form-header {
    margin-bottom: 30px;
}

.quote-form-header h2 {
    margin: 7px 0;

    color: var(--dark);

    font-size: 30px;
}

.quote-form-header p {
    color: var(--muted);
    font-size: 14px;
}

.quote-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    color: var(--dark);

    font-size: 12px;
    font-weight: 700;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;

    padding: 14px 15px;

    border: 1px solid #d9e1e9;
    border-radius: 9px;

    outline: none;

    color: var(--dark);
    background: #fbfcfe;

    font-family: inherit;
    font-size: 13px;

    transition: .25s ease;
}

.form-group textarea {
    resize: vertical;
    min-height: 130px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);

    background: #fff;

    box-shadow:
        0 0 0 3px rgba(8,124,245,.08);
}

.form-submit {
    width: 100%;
    border: 0;

    cursor: pointer;
}

.form-note {
    margin: 0;

    color: #8b98a7;

    text-align: center;

    font-size: 11px;
}

.form-note i {
    margin-right: 4px;
}


/* LOCATION */

.location-section {
    padding: 0 0 90px;

    background: var(--white);
}

.location-box {
    min-height: 330px;

    overflow: hidden;

    border-radius: var(--radius-lg);

    background:
        linear-gradient(
            135deg,
            #061322,
            #0b4f8a
        );
}

.location-placeholder {
    min-height: 330px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    padding: 30px;

    color: #fff;

    text-align: center;
}

.location-placeholder > i {
    margin-bottom: 15px;

    color: #4ca9ff;

    font-size: 45px;
}

.location-placeholder h3 {
    margin-bottom: 8px;
    font-size: 25px;
}

.location-placeholder p {
    margin-bottom: 22px;
    color: #bdcde0;
}


/* CONTACT MOBILE */

@media (max-width: 900px) {

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

}


@media (max-width: 600px) {

    .quote-form-wrapper {
        padding: 28px 20px;
    }

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

    .business-hours div {
        flex-direction: column;
        gap: 3px;
    }

}
/* =========================================================
   FLOATING SOCIAL BUTTONS
========================================================= */

.floating-social {
    position: fixed;

    right: 20px;
    bottom: 25px;

    z-index: 9999;

    display: flex;
    flex-direction: column;

    gap: 10px;
}

.floating-social a {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 48px;
    height: 48px;

    border-radius: 50%;

    color: #fff;

    text-decoration: none;

    box-shadow:
        0 8px 25px rgba(0,0,0,.18);

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}

.floating-social a:hover {
    transform: translateY(-4px) scale(1.05);

    box-shadow:
        0 12px 30px rgba(0,0,0,.25);
}

.float-whatsapp {
    background: #25D366;
}

.float-facebook {
    background: #1877F2;
}

.float-tiktok {
    background: #111;
}

@media (max-width: 600px) {

    .floating-social {
        right: 14px;
        bottom: 18px;
    }

    .floating-social a {
        width: 44px;
        height: 44px;
    }

}
/* =========================================================
   CEO SECTION
========================================================= */

.ceo-section {
    background: #f5f8fc;
}

.ceo-grid {
    display: grid;

    grid-template-columns: .85fr 1.15fr;

    gap: 90px;

    align-items: center;
}


/* CEO PHOTO */

.ceo-photo-wrapper {
    position: relative;

    max-width: 480px;
}

.ceo-photo {
    position: relative;

    height: 540px;

    overflow: hidden;

    border-radius: 18px;

    background: #dce7f2;

    box-shadow:
        0 25px 60px rgba(5,35,65,.15);
}

.ceo-photo::after {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(3,18,32,.35),
            transparent 45%
        );

    pointer-events: none;
}

.ceo-photo img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
}


/* CEO BADGE */

.ceo-badge {
    position: absolute;

    right: -25px;
    bottom: 30px;

    display: flex;
    align-items: center;

    gap: 12px;

    padding: 17px 22px;

    border-radius: 10px;

    color: #fff;

    background: #087cf5;

    box-shadow:
        0 15px 35px rgba(8,124,245,.3);
}

.ceo-badge i {
    font-size: 20px;
}

.ceo-badge span {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.2px;
}


/* CEO CONTENT */

.ceo-content h2 {
    margin: 10px 0 20px;

    color: #061322;

    font-size: clamp(36px,5vw,58px);

    line-height: 1.02;
}

.ceo-content h2 span {
    color: #087cf5;
}

.ceo-intro {
    margin-bottom: 15px;

    color: #526477;

    font-size: 17px;
    font-weight: 600;
    line-height: 1.7;
}

.ceo-content > p:not(.ceo-intro) {
    max-width: 620px;

    margin-bottom: 25px;

    color: #718092;

    line-height: 1.7;
}


/* CEO QUOTE */

.ceo-content blockquote {
    position: relative;

    margin: 25px 0;

    padding: 22px 25px 22px 55px;

    border-left: 3px solid #087cf5;

    color: #35475a;

    background: #fff;

    font-size: 15px;
    font-style: italic;
    line-height: 1.7;
}

.ceo-content blockquote i {
    position: absolute;

    left: 20px;
    top: 24px;

    color: #087cf5;

    font-size: 20px;
}


/* CEO NAME */

.ceo-name {
    display: flex;
    flex-direction: column;

    margin-bottom: 25px;
}

.ceo-name strong {
    color: #061322;

    font-size: 17px;
}

.ceo-name span {
    margin-top: 3px;

    color: #8491a0;

    font-size: 12px;
}


/* RESPONSIVE */

@media (max-width: 900px) {

    .ceo-grid {
        grid-template-columns: 1fr;

        gap: 50px;
    }

    .ceo-photo-wrapper {
        width: 100%;
        max-width: 500px;

        margin: 0 auto;
    }

}


@media (max-width: 600px) {

    .ceo-photo {
        height: 430px;
    }

    .ceo-badge {
        right: 15px;
        bottom: 15px;
    }

    .ceo-content h2 {
        font-size: 38px;
    }

    .ceo-content blockquote {
        padding-left: 45px;
    }

}