/* =========================================================
   GLOBAL VIBE TECHNOLOGIES LLC
   MASTER STYLESHEET
   ========================================================= */

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

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Poppins", sans-serif;
    color: #172033;
    background: #ffffff;
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

ul {
    list-style: none;
}

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

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

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

:root {
    --primary: #0756c9;
    --primary-dark: #043b8d;
    --primary-light: #e8f0fe;
    --secondary: #0b1f3a;
    --light: #f5f8fc;
    --text: #172033;
    --muted: #667085;
    --white: #ffffff;
    --border: #e2e8f0;
    --shadow: 0 12px 35px rgba(15, 35, 65, 0.10);
    --shadow-hover: 0 20px 45px rgba(15, 35, 65, 0.16);
    --radius: 16px;
    --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 90px;
    background: #ffffff;
    z-index: 9999;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

.header .container {
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    width: 260px;
    height: 60px;
    object-fit: contain;
}

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

.nav-links a {
    color: var(--text);
    font-size: 15px;
    font-weight: 600;
    transition: 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary);
}

.quote-btn {
    background: var(--primary);
    color: #ffffff !important;
    padding: 12px 21px;
    border-radius: 8px;
}

.quote-btn:hover {
    background: var(--primary-dark);
}

.menu-toggle {
    display: none;
    font-size: 28px;
    color: var(--secondary);
    cursor: pointer;
}

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

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border: none;
    border-radius: 8px;
    background: var(--primary);
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s ease;
}

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

.hero {
    min-height: 100vh;
    padding-top: 90px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(5, 20, 45, 0.95) 0%, rgba(7, 35, 75, 0.88) 50%, rgba(5, 20, 45, 0.85) 100%), url("../images/hero-bg.jpg") center/cover no-repeat;
}

#heroCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

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

.hero-content {
    max-width: 750px;
    color: #ffffff;
}

.hero-content span {
    display: inline-block;
    margin-bottom: 20px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    background: rgba(7, 86, 201, 0.25);
    padding: 8px 18px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(4px);
}

.hero-content h1 {
    margin-bottom: 24px;
    font-size: clamp(40px, 5vw, 64px);
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.hero-content p {
    max-width: 620px;
    margin-bottom: 36px;
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border: 1px solid #ffffff;
    border-radius: 8px;
    color: #ffffff;
    font-weight: 600;
    transition: var(--transition);
}

.btn-outline:hover {
    background: #ffffff;
    color: var(--primary);
}

/* =========================
   PAGE BANNER
   ========================= */

.page-banner {
    margin-top: 90px;
    padding: 95px 0;
    text-align: center;
    color: #ffffff;
    background:
        linear-gradient(
            135deg,
            rgba(4, 59, 141, 0.95),
            rgba(7, 86, 201, 0.88)
        );
}

.page-banner.about-banner {
    background: linear-gradient(135deg, rgba(4, 59, 141, 0.88), rgba(7, 86, 201, 0.82)), url("../images/about-company.jpg") center/cover no-repeat;
}

.page-banner.services-banner {
    background: linear-gradient(135deg, rgba(4, 59, 141, 0.88), rgba(7, 86, 201, 0.82)), url("../images/services-banner.jpg") center/cover no-repeat;
}

.page-banner.coverage-banner {
    background: linear-gradient(135deg, rgba(4, 59, 141, 0.88), rgba(7, 86, 201, 0.82)), url("../images/coverage-banner.jpg") center/cover no-repeat;
}

.page-banner.contact-banner {
    background: linear-gradient(135deg, rgba(4, 59, 141, 0.88), rgba(7, 86, 201, 0.82)), url("../images/contact-banner.jpg") center/cover no-repeat;
}

.page-banner.quote-banner {
    background: linear-gradient(135deg, rgba(4, 59, 141, 0.88), rgba(7, 86, 201, 0.82)), url("../images/quote-banner.jpg") center/cover no-repeat;
}

.page-banner h1 {
    margin-bottom: 12px;
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.2;
}

.page-banner p {
    font-size: 18px;
    opacity: 0.92;
}

/* =========================
   GENERAL SECTIONS
   ========================= */

section {
    position: relative;
}

.about-home,
.services-home,
.why-choose,
.technology,
.industries {
    padding: 100px 0;
}

.about-home {
    background: #ffffff;
}

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

.section-heading {
    max-width: 760px;
    margin: 0 auto 55px;
    text-align: center;
}

.section-heading span,
.section-tag {
    display: inline-block;
    margin-bottom: 12px;
    color: var(--primary);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.section-heading h2 {
    margin-bottom: 15px;
    color: var(--secondary);
    font-size: clamp(30px, 4vw, 44px);
    line-height: 1.2;
}

.section-heading p {
    color: var(--muted);
    font-size: 16px;
}

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

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.about-content h2 {
    margin-bottom: 20px;
    color: var(--secondary);
    font-size: clamp(30px, 4vw, 44px);
    line-height: 1.2;
}

.about-content p {
    margin-bottom: 18px;
    color: var(--muted);
}

/* =========================
   FEATURE CARDS
   ========================= */

.feature-card {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    margin-top: 20px;
    padding: 20px;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 14px;
    box-shadow: 0 8px 25px rgba(15, 35, 65, 0.06);
}

.feature-card i {
    flex: 0 0 52px;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--primary);
    color: #ffffff;
    font-size: 19px;
}

.feature-card h4 {
    margin-bottom: 3px;
    color: var(--secondary);
}

.feature-card p {
    margin: 0;
    color: var(--muted);
}

/* =========================
   SERVICE GRID
   ========================= */

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

.service-card {
    overflow: hidden;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: 0 8px 25px rgba(15, 35, 65, 0.06);
    transition: 0.35s ease;
}

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

.service-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.service-content {
    padding: 28px;
}

.service-content i {
    margin-bottom: 15px;
    color: var(--primary);
    font-size: 30px;
}

.service-content h3 {
    margin-bottom: 10px;
    color: var(--secondary);
    font-size: 21px;
}

.service-content p {
    color: var(--muted);
    font-size: 14px;
}

/* =========================
   WHY GRID
   ========================= */

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

.why-card {
    padding: 35px 28px;
    text-align: center;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: 0 8px 25px rgba(15, 35, 65, 0.05);
    transition: 0.3s ease;
}

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

.why-card i {
    margin-bottom: 18px;
    color: var(--primary);
    font-size: 35px;
}

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

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

/* =========================
   TECHNOLOGY GRID
   ========================= */

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

.tech-grid div {
    padding: 20px;
    text-align: center;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 10px;
    color: var(--secondary);
    font-weight: 700;
    transition: 0.3s ease;
}

.tech-grid div:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-3px);
}

/* =========================
   INDUSTRY / PROCESS GRID
   ========================= */

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

.industry-card {
    padding: 30px 22px;
    text-align: center;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 15px;
}

.industry-card i {
    margin-bottom: 15px;
    color: var(--primary);
    font-size: 30px;
}

.industry-card h3 {
    margin-bottom: 8px;
    color: var(--secondary);
}

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

/* =========================
   COUNTERS
   ========================= */

.counter-section {
    padding: 75px 0;
    background: var(--secondary);
}

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

.counter-card {
    text-align: center;
    color: #ffffff;
}

.counter-card i {
    margin-bottom: 12px;
    font-size: 30px;
}

.counter-card h2 {
    margin-bottom: 3px;
    font-size: 40px;
    line-height: 1.2;
}

.counter-card p {
    font-size: 14px;
    opacity: 0.8;
}

/* =========================
   CONTACT / QUOTE FORM
   ========================= */

.contact-form {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 35px;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 18px;
    box-shadow: var(--shadow);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 15px 17px;
    background: #ffffff;
    border: 1px solid #d7dee8;
    border-radius: 9px;
    outline: none;
    color: var(--text);
    font-size: 15px;
    transition: 0.25s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(7, 86, 201, 0.10);
}

.contact-form textarea {
    grid-column: 1 / -1;
    min-height: 180px;
    resize: vertical;
}

.contact-form input[type="file"] {
    grid-column: 1 / -1;
    padding: 12px;
    background: #f8fafc;
}

.contact-form button {
    grid-column: 1 / -1;
    justify-self: start;
}

/* =========================
   MAP
   ========================= */

.map-wrapper {
    overflow: hidden;
    border-radius: 18px;
    box-shadow: var(--shadow);
}

.map-wrapper iframe {
    width: 100%;
    min-height: 430px;
    display: block;
    border: 0;
}

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

.cta-section {
    padding: 90px 0;
    text-align: center;
    color: #ffffff;
    background:
        linear-gradient(
            135deg,
            var(--primary-dark),
            var(--primary)
        );
}

.cta-section h2 {
    margin-bottom: 15px;
    font-size: clamp(30px, 4vw, 44px);
}

.cta-section p {
    max-width: 700px;
    margin: 0 auto 28px;
    opacity: 0.92;
}

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

.footer {
    padding-top: 70px;
    background: #07172d;
    color: #ffffff;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 1fr;
    gap: 60px;
    padding-bottom: 55px;
}

.footer-logo {
    width: 290px;
    height: 64px;
    object-fit: contain;
    background: #ffffff;
    padding: 6px 14px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.footer p {
    color: rgba(255,255,255,0.68);
    font-size: 14px;
}

.footer h3 {
    margin-bottom: 18px;
    font-size: 18px;
}

.footer ul li {
    margin-bottom: 10px;
}

.footer ul a {
    color: rgba(255,255,255,0.68);
    font-size: 14px;
    transition: 0.25s ease;
}

.footer ul a:hover {
    color: #ffffff;
}

.copyright {
    padding: 20px;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.10);
    color: rgba(255,255,255,0.55);
    font-size: 13px;
}

/* =========================
   WHATSAPP
   ========================= */

.whatsapp {
    position: fixed;
    right: 25px;
    bottom: 25px;
    z-index: 9000;
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #25d366;
    color: #ffffff;
    font-size: 29px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.18);
}

/* =========================
   TOP BUTTON
   ========================= */

#topBtn {
    position: fixed;
    right: 25px;
    bottom: 95px;
    z-index: 8999;
    width: 45px;
    height: 45px;
    display: none;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 8px;
    background: var(--primary);
    color: #ffffff;
    cursor: pointer;
    font-size: 17px;
}

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

@media (max-width: 991px) {

    .nav-links {
        position: absolute;
        top: 85px;
        left: 0;
        width: 100%;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 15px 5%;
        background: #ffffff;
        box-shadow: 0 10px 20px rgba(0,0,0,0.08);
    }

    .nav-links.show {
        display: flex;
    }

    .nav-links li {
        border-bottom: 1px solid #edf0f4;
    }

    .nav-links a {
        display: block;
        padding: 13px 0;
    }

    .quote-btn {
        display: inline-block !important;
        width: fit-content;
        margin: 10px 0;
    }

    .menu-toggle {
        display: block;
    }

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

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

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

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

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

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

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

@media (max-width: 700px) {

    .header,
    .header .container {
        height: 75px;
    }

    .logo img {
        width: 160px;
    }

    .nav-links {
        top: 75px;
    }

    .hero {
        min-height: 620px;
        padding-top: 75px;
    }

    .page-banner {
        margin-top: 75px;
        padding: 70px 0;
    }

    .about-home,
    .services-home,
    .why-choose,
    .technology,
    .industries {
        padding: 70px 0;
    }

    .services-grid,
    .why-grid,
    .industry-grid,
    .tech-grid,
    .contact-form,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 22px;
    }

    .contact-form textarea,
    .contact-form input[type="file"],
    .contact-form button {
        grid-column: auto;
    }

    .contact-form button {
        width: 100%;
    }

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

    .counter-card h2 {
        font-size: 30px;
    }

    .whatsapp {
        right: 18px;
        bottom: 18px;
        width: 53px;
        height: 53px;
        font-size: 26px;
    }

    #topBtn {
        right: 18px;
        bottom: 82px;
    }
}
/* ==========================================================
   CONTACT + QUOTE PAGES
========================================================== */


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

.contact-section,
.quote-section{
    padding:100px 0;
    background:#fff;
}


.contact-grid{
    display:grid;
    grid-template-columns:0.9fr 1.1fr;
    gap:60px;
    align-items:start;
}


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

.contact-info{
    display:flex;
    flex-direction:column;
    gap:20px;
}


.contact-card{
    display:flex;
    align-items:flex-start;
    gap:20px;
    padding:25px;
    background:#f8fafc;
    border:1px solid #e5e7eb;
    border-radius:14px;
    transition:all .3s ease;
}


.contact-card:hover{
    transform:translateY(-4px);
    box-shadow:0 12px 30px rgba(0,0,0,.08);
}


.contact-icon{
    min-width:52px;
    width:52px;
    height:52px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:var(--primary);
    color:#fff;
    border-radius:12px;
    font-size:20px;
}


.contact-card h3{
    margin:0 0 8px;
    font-size:18px;
    color:var(--dark);
}


.contact-card p{
    margin:0 0 8px;
    line-height:1.7;
    color:#64748b;
}


.contact-card a{
    color:var(--primary);
    font-weight:600;
    text-decoration:none;
}


.contact-card a:hover{
    text-decoration:underline;
}



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

.contact-form-wrapper,
.quote-form-wrapper{
    background:#f8fafc;
    padding:40px;
    border:1px solid #e5e7eb;
    border-radius:18px;
    box-shadow:0 10px 35px rgba(0,0,0,.06);
}


.contact-form-wrapper h3{
    margin:0 0 10px;
    font-size:26px;
    color:var(--dark);
}


.contact-form-wrapper > p{
    margin-bottom:30px;
    color:#64748b;
}



/* ==========================================================
   FORM ROW
========================================================== */

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



/* ==========================================================
   FORM GROUP
========================================================== */

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


.form-group label{
    display:block;
    margin-bottom:8px;
    font-weight:600;
    color:var(--dark);
    font-size:14px;
}


.form-group input,
.form-group select,
.form-group textarea{
    width:100%;
    padding:14px 16px;
    border:1px solid #d9dee7;
    border-radius:9px;
    background:#fff;
    color:#1e293b;
    font-family:inherit;
    font-size:15px;
    outline:none;
    transition:all .25s ease;
    box-sizing:border-box;
}


.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus{
    border-color:var(--primary);
    box-shadow:0 0 0 3px rgba(0,102,204,.10);
}


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


.form-group input::placeholder,
.form-group textarea::placeholder{
    color:#94a3b8;
}



/* ==========================================================
   FORM SECTION TITLES
========================================================== */

.form-section-title{
    display:flex;
    align-items:center;
    gap:12px;
    margin:35px 0 25px;
    padding-bottom:12px;
    border-bottom:1px solid #e2e8f0;
}


.form-section-title:first-child{
    margin-top:0;
}


.form-section-title i{
    color:var(--primary);
    font-size:18px;
}


.form-section-title h3{
    margin:0;
    font-size:20px;
    color:var(--dark);
}



/* ==========================================================
   QUOTE POINTS
========================================================== */

.quote-points{
    margin-top:30px;
    display:flex;
    flex-direction:column;
    gap:15px;
}


.quote-points div{
    display:flex;
    align-items:center;
    gap:12px;
    color:#475569;
    font-weight:500;
}


.quote-points i{
    display:flex;
    align-items:center;
    justify-content:center;
    width:24px;
    height:24px;
    border-radius:50%;
    background:var(--primary);
    color:#fff;
    font-size:11px;
}



/* ==========================================================
   QUOTE FORM
========================================================== */

.quote-form-wrapper{
    max-width:1000px;
    margin:0 auto;
}


.quote-form-wrapper form{
    width:100%;
}


.quote-submit{
    margin-top:10px;
    padding-top:25px;
    border-top:1px solid #e2e8f0;
}


.quote-submit .btn-primary{
    border:none;
    cursor:pointer;
}


.quote-submit p{
    margin-top:15px;
    color:#64748b;
    font-size:13px;
    line-height:1.6;
}



/* ==========================================================
   FORM MESSAGE
========================================================== */

.form-message{
    display:none;
    margin-top:20px;
    padding:14px 18px;
    border-radius:8px;
    font-size:14px;
    line-height:1.5;
}


.form-message.success{
    display:block;
    background:#ecfdf5;
    border:1px solid #a7f3d0;
    color:#047857;
}


.form-message.error{
    display:block;
    background:#fef2f2;
    border:1px solid #fecaca;
    color:#b91c1c;
}



/* ==========================================================
   MAP
========================================================== */

.map-section{
    padding:100px 0;
    background:#f8fafc;
}


.map-wrapper{
    width:100%;
    overflow:hidden;
    border-radius:18px;
    box-shadow:0 10px 35px rgba(0,0,0,.08);
}


.map-wrapper iframe{
    display:block;
    width:100%;
}



/* ==========================================================
   CONTACT / QUOTE BUTTON
========================================================== */

.contact-form-wrapper .btn-primary,
.quote-form-wrapper .btn-primary{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    min-width:180px;
    border:none;
    cursor:pointer;
}



/* ==========================================================
   RESPONSIVE — TABLET
========================================================== */

@media (max-width:991px){

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


    .contact-info{
        order:2;
    }


    .contact-form-wrapper{
        order:1;
    }


    .quote-form-wrapper{
        padding:30px;
    }

}



/* ==========================================================
   RESPONSIVE — MOBILE
========================================================== */

@media (max-width:767px){

    .contact-section,
    .quote-section,
    .map-section{
        padding:70px 0;
    }


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


    .contact-form-wrapper,
    .quote-form-wrapper{
        padding:22px;
        border-radius:14px;
    }


    .contact-card{
        padding:20px;
    }


    .contact-icon{
        min-width:45px;
        width:45px;
        height:45px;
        font-size:17px;
    }


    .contact-card h3{
        font-size:16px;
    }


    .form-section-title h3{
        font-size:18px;
    }


    .quote-submit .btn-primary{
        width:100%;
    }


    .map-wrapper iframe{
        height:350px;
    }

}
/* ==========================================================
   JAVASCRIPT UI FIXES
========================================================== */


/* ==========================================================
   HEADER WHEN SCROLLING
========================================================== */

.header.scrolled{
    box-shadow:0 4px 20px rgba(0,0,0,.12);
}



/* ==========================================================
   BACK TO TOP BUTTON
========================================================== */

#topBtn{

    position:fixed;

    right:25px;
    bottom:25px;

    width:48px;
    height:48px;

    border:none;
    border-radius:50%;

    background:var(--primary);
    color:#fff;

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

    font-size:18px;

    cursor:pointer;

    opacity:0;
    visibility:hidden;

    transform:translateY(15px);

    transition:all .3s ease;

    z-index:9998;

}


#topBtn.show{

    opacity:1;
    visibility:visible;

    transform:translateY(0);

}


#topBtn:hover{

    transform:translateY(-3px);

}



/* ==========================================================
   MOBILE MENU
========================================================== */

@media (max-width:991px){

    .nav-links.show{

        display:flex;

        position:absolute;

        top:85px;
        left:0;

        width:100%;

        padding:20px 0;

        background:#fff;

        flex-direction:column;

        align-items:center;

        gap:0;

        box-shadow:0 10px 20px rgba(0,0,0,.08);

        z-index:9998;

    }


    .nav-links.show li{

        width:100%;
        text-align:center;

    }


    .nav-links.show li a{

        display:block;

        width:100%;

        padding:14px 20px;

    }


    .nav-links.show .quote-btn{

        display:inline-block;

        width:auto;

        margin:8px auto;

    }


    .menu-toggle{

        position:relative;
        z-index:10000;

    }

}



/* ==========================================================
   WHATSAPP BUTTON
========================================================== */

.whatsapp{

    position:fixed;

    right:25px;
    bottom:85px;

    width:52px;
    height:52px;

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

    border-radius:50%;

    background:#25D366;
    color:#fff;

    font-size:27px;

    text-decoration:none;

    box-shadow:0 5px 20px rgba(0,0,0,.18);

    z-index:9997;

    transition:all .3s ease;

}


.whatsapp:hover{

    transform:translateY(-4px);

}



/* ==========================================================
   MOBILE BUTTON POSITIONS
========================================================== */

@media (max-width:767px){

    #topBtn{

        right:18px;
        bottom:18px;

        width:44px;
        height:44px;

    }


    .whatsapp{

        right:18px;
        bottom:72px;

        width:48px;
        height:48px;

        font-size:24px;

    }

}

/* ==========================================================
   COOKIE CONSENT BANNER
========================================================== */

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 99999;
    background: rgba(11, 31, 58, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: #ffffff;
    padding: 24px 0;
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.25);
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-banner .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.cookie-banner h4 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 6px;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cookie-banner h4 i {
    color: #ffd700;
}

.cookie-banner p {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
    margin: 0;
}

.cookie-banner .cookie-text {
    flex: 1;
    min-width: 280px;
}

.cookie-banner .cookie-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.cookie-banner .cookie-actions button {
    padding: 10px 22px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    font-family: inherit;
    transition: var(--transition);
}

.cookie-accept {
    background: var(--primary);
    color: #ffffff;
}

.cookie-accept:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.cookie-reject {
    background: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
}

.cookie-reject:hover {
    background: rgba(255, 255, 255, 0.1);
}

.cookie-settings-btn {
    background: transparent;
    color: rgba(255, 255, 255, 0.75);
    text-decoration: underline;
    border: none !important;
    padding: 10px 12px !important;
}

.cookie-settings-btn:hover {
    color: #ffffff;
}

@media (max-width: 767px) {
    .cookie-banner {
        padding: 20px 0;
    }
    .cookie-banner .container {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
        gap: 20px;
    }
    .cookie-banner .cookie-actions {
        justify-content: center;
        width: 100%;
    }
    .cookie-banner .cookie-actions button {
        flex: 1;
        min-width: 120px;
        text-align: center;
    }
}

/* ==========================================================
   SCROLL REVEAL ANIMATIONS
========================================================== */

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* ==========================================================
   REDUCED MOTION PREFERENCE
========================================================== */

@media (prefers-reduced-motion: reduce) {
    .reveal {
        opacity: 1;
        transform: none;
        transition: none !important;
    }
    #heroCanvas {
        display: none !important;
    }
    .service-card:hover,
    .why-card:hover,
    .industry-card:hover,
    .tech-grid div:hover {
        transform: none !important;
        box-shadow: var(--shadow) !important;
    }
}

/* ==========================================================
   SERVICE CARD HOVER EFFECT UPGRADES
========================================================== */

.service-card {
    transition: var(--transition);
}

.service-content i {
    transition: var(--transition);
}

.service-card:hover .service-content i {
    transform: scale(1.1) rotate(5deg);
    color: var(--primary-dark);
}

.why-card {
    transition: var(--transition);
}

.why-card i {
    transition: var(--transition);
}

.why-card:hover i {
    transform: scale(1.1);
}