/* ==========================================================
   SECURABELL — MASTER STYLESHEET
   Professional Security Solutions Website
   Version 2.0
==========================================================*/

/* ==============================
   RESET & BASE
============================== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Poppins', sans-serif;
    background: #fff;
    color: #1d1d1d;
    overflow-x: hidden;
    line-height: 1.7;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button, input, textarea, select { font-family: inherit; }
button { cursor: pointer; }

/* ==============================
   CSS VARIABLES
============================== */
:root {
    --primary:       #0B5ED7;
    --primary-dark:  #0847a5;
    --primary-light: #EEF4FF;
    --secondary:     #071A34;
    --dark:          #08111F;
    --light:         #F6F8FC;
    --white:         #ffffff;
    --gray:          #666666;
    --gray-light:    #999999;
    --border:        #E5E7EB;
    --success:       #22c55e;
    --radius:        18px;
    --radius-lg:     24px;
    --transition:    .35s ease;
    --shadow:        0 12px 35px rgba(0,0,0,.08);
    --shadow-blue:   0 18px 45px rgba(11,94,215,.18);
}

/* ==============================
   LAYOUT
============================== */
.container {
    width: 90%;
    max-width: 1300px;
    margin: auto;
}

section { padding: 100px 0; }

.section-title {
    text-align: center;
    margin-bottom: 65px;
}

.section-title h2 {
    font-size: 44px;
    font-weight: 700;
    color: var(--secondary);
    position: relative;
    display: inline-block;
    padding-bottom: 18px;
}

.section-title h2::after {
    content: "";
    position: absolute;
    width: 70px;
    height: 4px;
    background: var(--primary);
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    border-radius: 50px;
}

.section-title p {
    margin-top: 20px;
    color: var(--gray);
    font-size: 18px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* ==============================
   PAGE LOADER
============================== */
.loader {
    position: fixed;
    inset: 0;
    background: var(--secondary);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    z-index: 99999;
    transition: opacity .5s ease, visibility .5s ease;
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader img {
    height: 70px;
    animation: loaderPulse 1.5s ease-in-out infinite;
}

@keyframes loaderPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: .7; transform: scale(.95); }
}

.loader-circle {
    width: 48px;
    height: 48px;
    border: 5px solid rgba(255,255,255,.15);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin .9s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ==============================
   SCROLL PROGRESS BAR
============================== */
.progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0%;
    background: linear-gradient(90deg, var(--primary), #66b2ff);
    z-index: 100000;
    transition: width .1s linear;
}

/* ==============================
   HEADER / NAVBAR
============================== */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9000;
    transition: background .4s ease, box-shadow .4s ease;
}

header.scrolled {
    background: rgba(7,23,46,.94);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 8px 30px rgba(0,0,0,.2);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    gap: 20px;
}

.logo img { height: 58px; }

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

.nav-links a {
    color: #fff;
    font-weight: 500;
    font-size: 15.5px;
    position: relative;
    transition: color .3s;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: #66B2FF;
    transition: width .3s;
}

.nav-links a:hover,
.nav-links a.active { color: #66B2FF; }

.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-cta {
    flex-shrink: 0;
    padding: 11px 24px !important;
    font-size: 14.5px !important;
}

/* Hamburger */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    border: none;
    background: transparent;
    cursor: pointer;
    gap: 6px;
    flex-shrink: 0;
}

.menu-toggle span {
    display: block;
    width: 26px;
    height: 2.5px;
    background: #fff;
    border-radius: 20px;
    transition: .35s;
}

.menu-toggle.active span:nth-child(1) { transform: translateY(8.5px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.menu-toggle.active span:nth-child(3) { transform: translateY(-8.5px) rotate(-45deg); }

/* ==============================
   BUTTONS
============================== */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    background: var(--primary);
    color: #fff;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    border: none;
    transition: var(--transition);
    box-shadow: 0 10px 25px rgba(11,94,215,.25);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,.12);
    transform: translateX(-110%) skewX(-20deg);
    transition: transform .5s ease;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 16px 35px rgba(11,94,215,.35);
    color: #fff;
}

.btn-primary:hover::before { transform: translateX(110%) skewX(-20deg); }

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 32px;
    border: 2px solid rgba(255,255,255,.7);
    color: #fff;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition);
}

.btn-outline:hover {
    background: rgba(255,255,255,.15);
    border-color: #fff;
}

.btn-outline.dark {
    border-color: var(--primary);
    color: var(--primary);
}

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

/* ==============================
   SCROLL REVEAL
============================== */
[data-reveal] {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity .7s ease, transform .7s ease;
}

[data-reveal].revealed {
    opacity: 1;
    transform: translateY(0);
}

[data-reveal="left"] {
    transform: translateX(-40px);
}

[data-reveal="right"] {
    transform: translateX(40px);
}

[data-reveal="left"].revealed,
[data-reveal="right"].revealed {
    transform: translateX(0);
}

/* ==============================
   HERO — HOME
============================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: url("../images/hero.png") center center/cover no-repeat;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        100deg,
        rgba(4,18,40,.90) 0%,
        rgba(4,18,40,.55) 55%,
        rgba(4,18,40,.20) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 680px;
    color: #fff;
    padding-top: 80px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(11,94,215,.25);
    border: 1px solid rgba(102,178,255,.4);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: #a8d0ff;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.hero h1 {
    font-size: 68px;
    line-height: 1.08;
    font-weight: 800;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero h1 span { color: #66B2FF; }

.hero p {
    font-size: 19px;
    opacity: .88;
    margin-bottom: 40px;
    line-height: 1.75;
    max-width: 560px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 60px;
}

.hero-stats {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.hero-stat {
    text-align: left;
}

.hero-stat strong {
    display: block;
    font-size: 32px;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

.hero-stat span {
    font-size: 13px;
    color: rgba(255,255,255,.65);
    font-weight: 500;
}

/* ==============================
   STATS BAR
============================== */
.stats {
    background: linear-gradient(135deg, #07172E 0%, #0B5ED7 100%);
    color: #fff;
    padding: 70px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 30px;
    text-align: center;
}

.stat-card {
    padding: 20px;
    border-right: 1px solid rgba(255,255,255,.12);
}

.stat-card:last-child { border-right: none; }

.stat-card h2 {
    font-size: 56px;
    font-weight: 800;
    line-height: 1;
    color: #fff;
}

.stat-card p {
    margin-top: 10px;
    opacity: .75;
    font-size: 16px;
    font-weight: 500;
}

/* ==============================
   INNER PAGE HERO
============================== */
.page-hero {
    padding: 160px 0 90px;
    background: linear-gradient(135deg, #07172E 0%, #0B5ED7 100%);
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("../images/hero.png") center/cover no-repeat;
    opacity: .08;
}

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

.page-hero .breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(255,255,255,.6);
    margin-bottom: 20px;
}

.page-hero .breadcrumb a { color: rgba(255,255,255,.7); }
.page-hero .breadcrumb a:hover { color: #fff; }

.page-hero h1 {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 18px;
    letter-spacing: -.5px;
}

.page-hero p {
    font-size: 19px;
    opacity: .85;
    max-width: 700px;
    margin: auto;
    line-height: 1.75;
}

/* ==============================
   WHY CHOOSE
============================== */
.why { background: var(--light); }

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px,1fr));
    gap: 30px;
}

.why-card {
    background: #fff;
    padding: 38px 35px;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow);
    border-bottom: 4px solid transparent;
}

.why-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-blue);
    border-bottom-color: var(--primary);
}

.why-card .icon-wrap {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
    transition: var(--transition);
}

.why-card:hover .icon-wrap { background: var(--primary); }

.why-card .icon-wrap i {
    font-size: 30px;
    color: var(--primary);
    transition: var(--transition);
}

.why-card:hover .icon-wrap i { color: #fff; }

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

.why-card p { color: var(--gray); font-size: 15px; line-height: 1.75; }

/* ==============================
   PRODUCT CARDS
============================== */
.products { background: var(--light); }

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px,1fr));
    gap: 30px;
}

/* Products page full grid */
.products-page-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px,1fr));
    gap: 30px;
}

.card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    border: 1.5px solid transparent;
}

.card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-blue);
    border-color: var(--primary);
}

.card::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 4px;
    background: var(--primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .4s ease;
}

.card:hover::before { transform: scaleX(1); }

.card img {
    width: 100%;
    height: 240px;
    object-fit: contain;
    padding: 25px;
    transition: transform .4s ease;
    background: var(--light);
}

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

.card-content { padding: 28px; }

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

.card-content p {
    color: var(--gray);
    margin-bottom: 22px;
    font-size: 14.5px;
    line-height: 1.7;
}

.card .btn-primary { width: 100%; justify-content: center; }

.badge {
    position: absolute;
    top: 16px; right: 16px;
    background: var(--primary);
    color: #fff;
    padding: 5px 14px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .6px;
    text-transform: uppercase;
}

/* ==============================
   PRODUCTS PAGE TOOLBAR
============================== */
.products-toolbar {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.products-toolbar input {
    width: 100%;
    max-width: 500px;
    padding: 16px 24px;
    border: 2px solid var(--border);
    border-radius: 50px;
    outline: none;
    font-size: 16px;
    background: #fff;
    color: var(--secondary);
    transition: border-color .3s, box-shadow .3s;
}

.products-toolbar input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(11,94,215,.1);
}

.filter-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 50px;
}

.filter-buttons button {
    border: 2px solid var(--border);
    padding: 12px 26px;
    border-radius: 50px;
    background: #fff;
    font-weight: 600;
    font-size: 14.5px;
    color: var(--secondary);
    transition: var(--transition);
}

.filter-buttons button:hover,
.filter-buttons button.active {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(11,94,215,.25);
}

/* ==============================
   ABOUT / INTRO SECTION
============================== */
.about { background: #fff; }

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

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: 0 30px 70px rgba(0,0,0,.14);
}

.about-image .img-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--primary);
    color: #fff;
    padding: 22px 28px;
    border-radius: 18px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(11,94,215,.35);
}

.about-image .img-badge strong {
    display: block;
    font-size: 36px;
    font-weight: 800;
    line-height: 1;
}

.about-image .img-badge span { font-size: 13px; opacity: .85; }

.about-content h2 {
    font-size: 44px;
    color: var(--secondary);
    margin-bottom: 22px;
    line-height: 1.2;
    font-weight: 700;
}

.about-content h2 span { color: var(--primary); }

.about-content p {
    color: var(--gray);
    margin-bottom: 20px;
    font-size: 16.5px;
    line-height: 1.8;
}

.about-list { margin: 28px 0; }

.about-list li {
    margin-bottom: 14px;
    padding-left: 34px;
    position: relative;
    font-weight: 500;
    font-size: 15.5px;
    color: var(--secondary);
}

.about-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--primary-light);
    border: 2px solid var(--primary);
}

.about-list li::after {
    content: "✓";
    position: absolute;
    left: 4px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary);
    font-size: 11px;
    font-weight: 800;
}

/* ==============================
   APPLICATIONS
============================== */
.applications { background: #fff; }

.application-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
    gap: 24px;
}

.application-card {
    background: var(--light);
    border-radius: var(--radius);
    padding: 35px 28px;
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: default;
}

.application-card:hover {
    background: #fff;
    border-color: var(--primary);
    transform: translateY(-8px);
    box-shadow: var(--shadow-blue);
}

.application-card .icon-circle {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(11,94,215,.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: var(--transition);
}

.application-card:hover .icon-circle { background: var(--primary); }

.application-card .icon-circle i {
    font-size: 26px;
    color: var(--primary);
    transition: var(--transition);
}

.application-card:hover .icon-circle i { color: #fff; }

.application-card h4 {
    font-size: 19px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--secondary);
}

.application-card p { color: var(--gray); font-size: 14.5px; line-height: 1.7; }

/* ==============================
   FEATURES / TRUST
============================== */
.features { background: var(--light); }

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px,1fr));
    gap: 28px;
}

.feature-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 35px;
    transition: var(--transition);
    border-left: 4px solid transparent;
    box-shadow: var(--shadow);
}

.feature-card:hover {
    border-left-color: var(--primary);
    transform: translateY(-8px);
    box-shadow: var(--shadow-blue);
}

.feature-card i {
    font-size: 36px;
    color: var(--primary);
    margin-bottom: 18px;
    display: block;
    transition: transform .35s;
}

.feature-card:hover i { transform: scale(1.15) rotate(-5deg); }

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

.feature-card p { color: var(--gray); font-size: 14.5px; line-height: 1.75; }

/* ==============================
   CTA SECTION
============================== */
.cta {
    background: linear-gradient(135deg, #07172E 0%, #0B5ED7 100%);
    color: #fff;
    text-align: center;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: "";
    position: absolute;
    top: -80px; right: -80px;
    width: 400px; height: 400px;
    border-radius: 50%;
    background: rgba(255,255,255,.04);
}

.cta::after {
    content: "";
    position: absolute;
    bottom: -100px; left: -60px;
    width: 350px; height: 350px;
    border-radius: 50%;
    background: rgba(255,255,255,.04);
}

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

.cta h2 {
    font-size: 50px;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -.5px;
}

.cta p {
    max-width: 680px;
    margin: 0 auto 40px;
    font-size: 19px;
    opacity: .88;
    line-height: 1.75;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta .btn-primary {
    background: #fff;
    color: var(--primary);
    box-shadow: 0 12px 30px rgba(0,0,0,.2);
}

.cta .btn-primary:hover { background: #f0f4ff; }

/* ==============================
   CONTACT
============================== */
.contact { background: #fff; }

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

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

.contact-card {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: var(--light);
    padding: 24px;
    border-radius: var(--radius);
    transition: var(--transition);
    border: 1.5px solid transparent;
}

.contact-card:hover {
    border-color: var(--primary);
    transform: translateX(6px);
    background: #fff;
    box-shadow: var(--shadow-blue);
}

.contact-card .icon-box {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    background: rgba(11,94,215,.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
}

.contact-card:hover .icon-box { background: var(--primary); }

.contact-card .icon-box i {
    font-size: 22px;
    color: var(--primary);
    transition: var(--transition);
}

.contact-card:hover .icon-box i { color: #fff; }

.contact-card h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 6px;
}

.contact-card p, .contact-card a {
    color: var(--gray);
    font-size: 14.5px;
    display: block;
    line-height: 1.75;
}

.contact-card a:hover { color: var(--primary); }

/* Contact Form */
.contact-form {
    background: var(--light);
    padding: 45px 40px;
    border-radius: var(--radius-lg);
    border: 1.5px solid var(--border);
}

.contact-form h2 {
    font-size: 28px;
    margin-bottom: 6px;
    color: var(--secondary);
}

.contact-form .form-subtitle {
    color: var(--gray);
    font-size: 14.5px;
    margin-bottom: 30px;
}

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

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

.form-group label {
    display: block;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 7px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 14px 18px;
    border: 1.5px solid var(--border);
    border-radius: 12px;
    outline: none;
    font-size: 15px;
    background: #fff;
    color: var(--secondary);
    transition: border-color .3s, box-shadow .3s;
}

.contact-form select { appearance: none; cursor: pointer; }

.contact-form textarea {
    resize: none;
    min-height: 130px;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(11,94,215,.1);
}

.form-success {
    display: none;
    text-align: center;
    padding: 30px;
    color: var(--success);
    font-size: 16px;
    font-weight: 600;
}

.form-success i { font-size: 48px; display: block; margin-bottom: 12px; }

/* Map */
.map-wrap {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1.5px solid var(--border);
}

.map-wrap iframe { display: block; }

/* Installed Devices Locations Map */
.locations-map-wrap {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1.5px solid var(--border);
}

#locationsMap {
    width: 100%;
    height: 480px;
    background: var(--light);
}

.locations-search-box {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 500;
    background: #fff;
    border-radius: 50px;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    padding: 10px 18px;
    gap: 10px;
    width: min(320px, calc(100% - 32px));
}

.locations-search-box i { color: var(--primary); }

.locations-search-box input {
    border: none;
    outline: none;
    font-family: inherit;
    font-size: 14px;
    width: 100%;
    background: transparent;
}

.sb-pin {
    color: var(--primary);
    font-size: 28px;
    text-shadow: 0 2px 4px rgba(0,0,0,.25);
    display: flex;
    align-items: center;
    justify-content: center;
}

.leaflet-popup-content-wrapper { border-radius: 12px; }

/* FAQ */
.faq-list { max-width: 860px; margin: auto; }

.faq-item {
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 14px;
    overflow: hidden;
    transition: border-color .3s;
}

.faq-item.open { border-color: var(--primary); }

.faq-question {
    width: 100%;
    text-align: left;
    padding: 22px 28px;
    background: #fff;
    border: none;
    font-size: 16px;
    font-weight: 600;
    color: var(--secondary);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    cursor: pointer;
    transition: background .3s;
}

.faq-question:hover { background: var(--light); }

.faq-question i {
    font-size: 14px;
    color: var(--primary);
    transition: transform .35s;
    flex-shrink: 0;
}

.faq-item.open .faq-question i { transform: rotate(180deg); }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease, padding .4s ease;
    background: var(--light);
}

.faq-answer p {
    padding: 0 28px 22px;
    color: var(--gray);
    font-size: 15px;
    line-height: 1.8;
}

.faq-item.open .faq-answer { max-height: 300px; }

/* ==============================
   SOLUTIONS
============================== */
.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px,1fr));
    gap: 30px;
}

.solution-card {
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-bottom: 4px solid transparent;
}

.solution-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-blue);
    border-bottom-color: var(--primary);
}

.solution-card-header {
    background: linear-gradient(135deg, #07172E, #0B5ED7);
    padding: 38px 35px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.solution-card-header .icon {
    width: 60px; height: 60px;
    border-radius: 16px;
    background: rgba(255,255,255,.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.solution-card-header .icon i { font-size: 28px; color: #fff; }

.solution-card-header h3 { font-size: 22px; color: #fff; font-weight: 700; }
.solution-card-header p { color: rgba(255,255,255,.75); font-size: 14px; margin-top: 4px; }

.solution-card-body { padding: 32px 35px; }

.solution-card-body ul { list-style: none; }

.solution-card-body ul li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--gray);
    font-size: 15px;
}

.solution-card-body ul li:last-child { border-bottom: none; }

.solution-card-body ul li i { color: var(--primary); margin-top: 3px; flex-shrink: 0; }

/* ==============================
   PRODUCT DETAIL
============================== */
.product-detail { background: #fff; }

.product-detail-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.product-gallery {
    position: sticky;
    top: 110px;
}

.product-gallery-main {
    background: var(--light);
    border-radius: var(--radius-lg);
    padding: 40px;
    text-align: center;
    margin-bottom: 16px;
    border: 1.5px solid var(--border);
}

.product-gallery-main img {
    max-height: 320px;
    object-fit: contain;
    margin: auto;
    transition: transform .4s;
}

.product-gallery-main:hover img { transform: scale(1.05); }

.product-detail-info .product-title {
    font-size: 36px;
    font-weight: 800;
    color: var(--secondary);
    line-height: 1.2;
    margin-bottom: 14px;
}

.product-detail-info .product-subtitle {
    font-size: 17px;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 22px;
}

.product-detail-info .product-desc {
    color: var(--gray);
    font-size: 15.5px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.spec-table {
    width: 100%;
    border-collapse: collapse;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.spec-table tr:nth-child(odd) { background: var(--light); }
.spec-table tr:nth-child(even) { background: #fff; }

.spec-table td {
    padding: 16px 20px;
    border-bottom: 1px solid var(--border);
    font-size: 15px;
}

.spec-table td:first-child {
    font-weight: 600;
    color: var(--secondary);
    width: 40%;
}

.spec-table td:last-child { color: var(--gray); }

.spec-table tr:last-child td { border-bottom: none; }

/* ==============================
   DOWNLOADS
============================== */
.download-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px,1fr));
    gap: 28px;
}

.download-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow);
    border: 1.5px solid var(--border);
    transition: var(--transition);
}

.download-card:hover {
    border-color: var(--primary);
    transform: translateY(-8px);
    box-shadow: var(--shadow-blue);
}

.download-card .dl-icon {
    width: 80px; height: 80px;
    border-radius: 22px;
    background: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
    transition: var(--transition);
}

.download-card:hover .dl-icon { background: var(--primary); }

.download-card .dl-icon i {
    font-size: 36px;
    color: var(--primary);
    transition: var(--transition);
}

.download-card:hover .dl-icon i { color: #fff; }

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

.download-card p {
    color: var(--gray);
    font-size: 14.5px;
    margin-bottom: 24px;
    line-height: 1.7;
}

.btn-coming {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border: 2px solid var(--border);
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    color: var(--gray-light);
    cursor: not-allowed;
}

/* ==============================
   DEALERS
============================== */
.dealer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px,1fr));
    gap: 30px;
}

.dealer-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 35px;
    box-shadow: var(--shadow);
    border: 1.5px solid var(--border);
    transition: var(--transition);
}

.dealer-card:hover {
    border-color: var(--primary);
    transform: translateY(-8px);
    box-shadow: var(--shadow-blue);
}

.dealer-card h3 {
    font-size: 20px;
    color: var(--secondary);
    margin-bottom: 6px;
    font-weight: 700;
}

.dealer-card .dealer-region {
    display: inline-block;
    background: var(--primary-light);
    color: var(--primary);
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 20px;
}

.dealer-card .dealer-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.dealer-card .dealer-info li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--gray);
    font-size: 14.5px;
}

.dealer-card .dealer-info li i {
    color: var(--primary);
    font-size: 15px;
    margin-top: 3px;
    flex-shrink: 0;
}

/* ==============================
   TESTIMONIALS
============================== */
.testimonials { background: var(--light); }

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px,1fr));
    gap: 28px;
}

.testimonial-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 35px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-top: 4px solid transparent;
}

.testimonial-card:hover {
    border-top-color: var(--primary);
    transform: translateY(-8px);
    box-shadow: var(--shadow-blue);
}

.testimonial-stars {
    color: #f59e0b;
    font-size: 15px;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.testimonial-card p {
    color: var(--gray);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.author-avatar {
    width: 48px; height: 48px;
    border-radius: 50%;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}

.author-info strong {
    display: block;
    font-size: 15px;
    color: var(--secondary);
}

.author-info span {
    font-size: 13px;
    color: var(--gray-light);
}

/* ==============================
   FOOTER
============================== */
footer {
    background: #07172E;
    color: #fff;
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr repeat(3,1fr);
    gap: 50px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer-logo img {
    height: 62px;
    margin-bottom: 20px;
}

.footer-logo p {
    color: #9baab8;
    font-size: 15px;
    line-height: 1.8;
    max-width: 300px;
}

.social-icons {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.social-icons a {
    width: 42px; height: 42px;
    border-radius: 50%;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #9baab8;
    transition: var(--transition);
}

.social-icons a:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
    transform: translateY(-4px);
}

.footer-col h3 {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 22px;
    letter-spacing: .5px;
}

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

.footer-col ul li a,
.footer-col ul li {
    color: #9baab8;
    font-size: 14.5px;
    transition: .3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-col ul li a:hover {
    color: #fff;
    padding-left: 6px;
}

.footer-col ul li i {
    color: var(--primary);
    font-size: 14px;
    flex-shrink: 0;
}

.footer-bottom {
    padding: 22px 0;
    text-align: center;
    color: #6b7f93;
    font-size: 14px;
}

/* ==============================
   FLOATING BUTTONS
============================== */
.whatsapp {
    position: fixed;
    bottom: 28px; left: 28px;
    width: 58px; height: 58px;
    border-radius: 50%;
    background: #25D366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 8px 25px rgba(37,211,102,.4);
    z-index: 990;
    transition: var(--transition);
}

.whatsapp:hover {
    transform: scale(1.12);
    box-shadow: 0 12px 35px rgba(37,211,102,.5);
    color: #fff;
}

.scroll-top {
    position: fixed;
    bottom: 28px; right: 28px;
    width: 48px; height: 48px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 8px 22px rgba(11,94,215,.35);
    z-index: 990;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.scroll-top.show { opacity: 1; visibility: visible; }
.scroll-top:hover { transform: translateY(-5px); }

/* ==============================
   UTILITIES
============================== */
.mt-1 { margin-top: 15px; }
.mt-2 { margin-top: 30px; }
.mt-3 { margin-top: 45px; }
.text-center { text-align: center; }

:focus-visible { outline: 3px solid var(--primary); outline-offset: 3px; }

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: #f0f0f0; }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 50px; }
::-webkit-scrollbar-thumb:hover { background: var(--primary-dark); }

::selection { background: var(--primary); color: #fff; }

/* ==============================
   RESPONSIVE — TABLET
============================== */
@media (max-width: 1100px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .about-wrapper { gap: 50px; }
    .product-detail-wrapper { gap: 50px; }
    .hero h1 { font-size: 56px; }
}

@media (max-width: 992px) {
    .hero h1 { font-size: 48px; }
    .about-wrapper { grid-template-columns: 1fr; }
    .product-detail-wrapper { grid-template-columns: 1fr; }
    .contact-wrapper { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: repeat(2,1fr); }
    .stat-card { border-right: none; border-bottom: 1px solid rgba(255,255,255,.12); }
    .stat-card:nth-child(2n) { border-bottom: none; }
    .stat-card:nth-last-child(-n+2) { border-bottom: none; }
    .product-gallery { position: static; }
    .about-image .img-badge { right: 0; bottom: -15px; }
}

/* ==============================
   RESPONSIVE — MOBILE NAV
============================== */
@media (max-width: 900px) {
    .menu-toggle { display: flex; }
    .nav-cta { display: none; }

    .nav-links {
        position: fixed;
        top: 0; right: -100%;
        width: min(320px, 85vw);
        height: 100vh;
        background: var(--secondary);
        flex-direction: column;
        align-items: flex-start;
        padding: 100px 35px 40px;
        gap: 8px;
        transition: right .4s cubic-bezier(.4,0,.2,1);
        box-shadow: -10px 0 30px rgba(0,0,0,.25);
        z-index: 8999;
        overflow-y: auto;
    }

    .nav-links.open { right: 0; }

    .nav-links a {
        font-size: 17px;
        padding: 12px 0;
        width: 100%;
        border-bottom: 1px solid rgba(255,255,255,.06);
    }

    .nav-overlay {
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,.55);
        z-index: 8998;
        opacity: 0;
        visibility: hidden;
        transition: .4s;
    }

    .nav-overlay.show { opacity: 1; visibility: visible; }
}

/* ==============================
   RESPONSIVE — MOBILE
============================== */
@media (max-width: 768px) {
    section { padding: 75px 0; }
    .section-title h2 { font-size: 32px; }
    .section-title p { font-size: 16px; }

    .hero h1 { font-size: 38px; }
    .hero p { font-size: 16px; }
    .hero-buttons { gap: 12px; }

    .page-hero h1 { font-size: 36px; }
    .page-hero p { font-size: 16px; }
    .page-hero { padding: 130px 0 70px; }

    .cta h2 { font-size: 34px; }
    .cta p { font-size: 16px; }

    .form-row { grid-template-columns: 1fr; }
    .contact-form { padding: 30px 22px; }

    .footer-grid { grid-template-columns: 1fr; }
    .footer-logo p { max-width: 100%; }

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

    .hero-stats { gap: 24px; }
    .hero-stat strong { font-size: 26px; }

    .stat-card h2 { font-size: 44px; }
}

@media (max-width: 480px) {
    .logo img { height: 46px; }
    .hero h1 { font-size: 32px; }
    .about-content h2 { font-size: 30px; }
    .product-detail-info .product-title { font-size: 28px; }
    .stat-card { padding: 15px; }
    .stat-card h2 { font-size: 38px; }
}

/* ==============================
   REDUCED MOTION
============================== */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: .01ms !important;
        transition-duration: .01ms !important;
    }
    [data-reveal] { opacity: 1; transform: none; }
}

/* ==============================
   PRINT
============================== */
@media print {
    header, footer, .whatsapp, .scroll-top, .loader, .progress-bar { display: none !important; }
    body { color: #000; background: #fff; }
}
