/* ==========================================================================
   VIGILANT WEAR - PROFESSIONAL SECURITY UNIFORMS & APPAREL
   Design System & Master Stylesheet
   Color Palette: Deep Navy & Charcoal, Authority White, Safety Tactical Orange
   ========================================================================== */

:root {
    /* Brand Colors - High-Visibility Tactical Orange & Deep Navy Authority */
    --color-orange: #ff6b00;
    --color-orange-hover: #e55a00;
    --color-orange-dark: #c2410c;
    --color-orange-light: #fff7ed;
    --color-orange-tint: rgba(255, 107, 0, 0.08);
    --color-orange-glow: rgba(255, 107, 0, 0.28);

    --color-navy-black: #060a14;
    --color-navy-dark: #0b1329;
    --color-navy: #101c3d;
    --color-navy-card: #16244d;
    --color-navy-border: #1e3163;
    
    --color-slate-900: #0f172a;
    --color-slate-800: #1e293b;
    --color-slate-700: #334155;
    --color-slate-600: #475569;
    --color-slate-500: #64748b;
    --color-slate-400: #94a3b8;
    --color-slate-200: #e2e8f0;
    --color-slate-100: #f1f5f9;
    --color-slate-50: #f8fafc;
    --color-white: #ffffff;

    --color-whatsapp: #25d366;
    --color-whatsapp-dark: #128c7e;

    /* Typography */
    --font-heading: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.08), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 10px 25px -3px rgba(11, 19, 41, 0.12), 0 4px 6px -4px rgba(11, 19, 41, 0.08);
    --shadow-xl: 0 20px 30px -5px rgba(11, 19, 41, 0.18), 0 8px 10px -6px rgba(11, 19, 41, 0.08);
    --shadow-orange: 0 10px 25px -5px rgba(255, 107, 0, 0.35);
    --shadow-dark: 0 15px 35px -5px rgba(0, 0, 0, 0.45);

    /* Radii */
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-pill: 9999px;

    /* Transitions */
    --transition-fast: 0.18s ease;
    --transition-normal: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ==========================================================================
   CSS Reset & Base
   ========================================================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    color: var(--color-slate-700);
    background-color: var(--color-slate-50);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-fast);
}

ul, ol {
    list-style: none;
}

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

button {
    cursor: pointer;
    border: none;
    background: none;
}

/* Container */
.container {
    width: 100%;
    max-width: 1240px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
}

/* ==========================================================================
   Typography & Shared Section Headers
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--color-navy-dark);
    font-weight: 700;
    line-height: 1.25;
}

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

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-orange);
    background: var(--color-orange-light);
    padding: 6px 14px;
    border-radius: var(--radius-pill);
    border: 1px solid rgba(255, 107, 0, 0.2);
    margin-bottom: 14px;
}

.section-tag.dark-tag {
    background: rgba(255, 107, 0, 0.15);
    border-color: rgba(255, 107, 0, 0.35);
    color: var(--color-orange);
}

.section-title {
    font-size: 2.35rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--color-navy-dark);
    margin-bottom: 16px;
}

.section-title.text-white {
    color: var(--color-white);
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--color-slate-500);
    max-width: 640px;
    margin: 0 auto;
}

.section-subtitle.text-light {
    color: var(--color-slate-400);
}

/* ==========================================================================
   Buttons & Interactive Elements
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    padding: 13px 26px;
    border-radius: var(--radius-md);
    transition: all var(--transition-normal);
    text-align: center;
    text-decoration: none;
    white-space: nowrap;
}

.btn-primary {
    background: var(--color-orange);
    color: var(--color-white);
    box-shadow: var(--shadow-orange);
    border: 1px solid var(--color-orange);
}

.btn-primary:hover {
    background: var(--color-orange-hover);
    transform: translateY(-2px);
    box-shadow: 0 14px 28px -5px rgba(255, 107, 0, 0.45);
    color: var(--color-white);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.12);
    color: var(--color-white);
    border: 1px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(8px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.22);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    color: var(--color-white);
}

.btn-outline-navy {
    background: transparent;
    color: var(--color-navy-dark);
    border: 2px solid var(--color-navy-dark);
}

.btn-outline-navy:hover {
    background: var(--color-navy-dark);
    color: var(--color-white);
    transform: translateY(-2px);
}

.btn-whatsapp {
    background: var(--color-whatsapp);
    color: var(--color-white);
    box-shadow: 0 8px 20px -4px rgba(37, 211, 102, 0.35);
}

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

.btn-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.btn-block {
    width: 100%;
}

/* ==========================================================================
   Top Information Bar
   ========================================================================== */
.top-bar {
    background: var(--color-navy-black);
    color: var(--color-slate-400);
    font-size: 0.82rem;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-bar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.top-item {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.top-item a:hover {
    color: var(--color-orange);
}

.top-icon {
    width: 14px;
    height: 14px;
    color: var(--color-orange);
    flex-shrink: 0;
}

.top-divider {
    color: rgba(255, 255, 255, 0.15);
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 14px;
}

.top-badge {
    background: rgba(255, 107, 0, 0.15);
    color: var(--color-orange);
    padding: 3px 9px;
    border-radius: var(--radius-pill);
    font-weight: 600;
    font-size: 0.72rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.top-wa-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    color: var(--color-white);
    transition: color var(--transition-fast);
}

.top-wa-link:hover {
    color: var(--color-orange);
}

/* ==========================================================================
   Sticky Site Header & Navigation
   ========================================================================== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(11, 19, 41, 0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 107, 0, 0.15);
    transition: all var(--transition-normal);
}

.site-header.scrolled {
    background: rgba(6, 10, 20, 0.98);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
    border-bottom-color: rgba(255, 107, 0, 0.25);
}

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

.header-logo {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
}

.header-logo img {
    height: 48px;
    width: auto;
}

.desktop-nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    font-family: var(--font-heading);
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--color-slate-200);
    position: relative;
    padding: 6px 0;
    transition: color var(--transition-fast);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2.5px;
    background: var(--color-orange);
    border-radius: 2px;
    transition: width var(--transition-normal);
}

.nav-link:hover {
    color: var(--color-orange);
}

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

.nav-link.active {
    color: var(--color-white);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.btn-quote-header {
    background: linear-gradient(135deg, #ff6b00 0%, #ea580c 100%);
    color: var(--color-white);
    font-size: 0.88rem;
    padding: 10px 20px;
    border-radius: var(--radius-md);
    box-shadow: 0 4px 14px rgba(255, 107, 0, 0.35);
    font-weight: 600;
}

.btn-quote-header:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 0, 0.5);
    color: var(--color-white);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 32px;
    height: 26px;
    background: transparent;
    padding: 2px;
}

.hamburger-bar {
    width: 100%;
    height: 3px;
    background: var(--color-white);
    border-radius: 2px;
    transition: all var(--transition-normal);
}

/* Mobile Navigation Drawer */
.mobile-nav-drawer {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 2000;
}

.mobile-nav-drawer.open {
    display: block;
}

.mobile-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
}

.mobile-nav-content {
    position: relative;
    z-index: 2010;
    width: 320px;
    max-width: 85%;
    height: 100%;
    background: var(--color-navy-dark);
    padding: 26px 22px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-dark);
    border-right: 2px solid var(--color-orange);
}

.mobile-nav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-close-btn {
    font-size: 2.2rem;
    color: var(--color-slate-400);
    line-height: 1;
}

.mobile-close-btn:hover {
    color: var(--color-orange);
}

.mobile-nav-list {
    margin-bottom: 30px;
}

.mobile-nav-list li {
    margin-bottom: 12px;
}

.mobile-nav-list a {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--color-slate-200);
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
}

.mobile-nav-list a:hover,
.mobile-nav-list a.active {
    background: rgba(255, 107, 0, 0.12);
    color: var(--color-orange);
    padding-left: 18px;
}

.mobile-nav-footer {
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-contact-info {
    margin-top: 20px;
    font-size: 0.82rem;
    color: var(--color-slate-400);
}

.mobile-contact-info p {
    margin-bottom: 6px;
}

.mobile-socials {
    display: flex;
    gap: 10px;
    margin-top: 16px;
}

.mobile-socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--color-white);
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-weight: 700;
}

.mobile-socials a:hover {
    background: var(--color-orange);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
    position: relative;
    min-height: 88vh;
    display: flex;
    align-items: center;
    background: var(--color-navy-black);
    color: var(--color-white);
    padding: 90px 0 100px 0;
    overflow: hidden;
}

.hero-bg-media {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 25%;
    opacity: 0.36;
    transform: scale(1.03);
    transition: transform 10s ease;
}

.hero-section:hover .hero-bg-media img {
    transform: scale(1.08);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg, 
        rgba(6, 10, 20, 0.95) 0%, 
        rgba(11, 19, 41, 0.88) 55%, 
        rgba(255, 107, 0, 0.22) 100%
    );
    z-index: 2;
}

.hero-grid-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(255, 107, 0, 0.12) 1px, transparent 1px);
    background-size: 28px 28px;
    z-index: 3;
    opacity: 0.7;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 820px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 107, 0, 0.18);
    border: 1px solid rgba(255, 107, 0, 0.45);
    padding: 7px 18px;
    border-radius: var(--radius-pill);
    color: #ff8c00;
    font-size: 0.84rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 24px;
}

.hero-badge-dot {
    width: 8px;
    height: 8px;
    background: #ff6b00;
    border-radius: 50%;
    box-shadow: 0 0 10px #ff6b00;
    animation: pulseOrange 2s infinite;
}

@keyframes pulseOrange {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}

.hero-title {
    font-size: 3.6rem;
    font-weight: 900;
    line-height: 1.12;
    letter-spacing: -0.02em;
    color: var(--color-white);
    margin-bottom: 22px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
}

.hero-title .highlight-orange {
    color: var(--color-orange);
    position: relative;
    display: inline-block;
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.65;
    color: #cbd5e1;
    max-width: 680px;
    margin-bottom: 34px;
}

.hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
    margin-bottom: 38px;
}

.hero-trust-mini {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.88rem;
    color: var(--color-slate-400);
    font-weight: 500;
}

.hero-trust-mini .trust-dot {
    color: var(--color-orange);
}

/* ==========================================================================
   Trust Bar Section
   ========================================================================== */
.trust-bar-section {
    background: var(--color-white);
    position: relative;
    z-index: 20;
    margin-top: -40px;
    padding-bottom: 40px;
}

.trust-bar-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: var(--color-white);
    border-radius: var(--radius-lg);
    box-shadow: 0 15px 40px -10px rgba(11, 19, 41, 0.14);
    border: 1px solid var(--color-slate-200);
    overflow: hidden;
}

.trust-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 26px 22px;
    border-right: 1px solid var(--color-slate-200);
    transition: background var(--transition-fast);
}

.trust-item:last-child {
    border-right: none;
}

.trust-item:hover {
    background: var(--color-slate-50);
}

.trust-icon-box {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background: var(--color-orange-light);
    color: var(--color-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid rgba(255, 107, 0, 0.2);
}

.trust-icon-box svg {
    width: 24px;
    height: 24px;
}

.trust-text h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--color-navy-dark);
    margin-bottom: 4px;
}

.trust-text p {
    font-size: 0.86rem;
    color: var(--color-slate-500);
    line-height: 1.45;
}

/* ==========================================================================
   About Section
   ========================================================================== */
.about-section {
    padding: 85px 0;
    background: var(--color-slate-50);
}

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

.about-image-wrapper {
    position: relative;
}

.about-image-main {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 4px solid var(--color-white);
    max-height: 480px;
}

.about-image-main img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.about-image-main:hover img {
    transform: scale(1.03);
}

.about-badge-card {
    position: absolute;
    bottom: -25px;
    right: -20px;
    background: var(--color-navy-dark);
    color: var(--color-white);
    padding: 20px 24px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    border: 2px solid var(--color-orange);
    max-width: 230px;
}

.about-badge-card .badge-number {
    font-family: var(--font-heading);
    font-size: 1.7rem;
    font-weight: 800;
    color: var(--color-orange);
    line-height: 1;
    margin-bottom: 6px;
}

.about-badge-card .badge-label {
    font-size: 0.82rem;
    color: #cbd5e1;
    line-height: 1.4;
}

.about-content h2 {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--color-navy-dark);
    margin-bottom: 20px;
    line-height: 1.2;
}

.about-content .lead-text {
    font-size: 1.1rem;
    color: var(--color-slate-700);
    font-weight: 500;
    line-height: 1.7;
    margin-bottom: 16px;
}

.about-content p {
    color: var(--color-slate-600);
    margin-bottom: 24px;
    line-height: 1.68;
}

.about-feature-list {
    margin-bottom: 32px;
}

.about-feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--color-slate-700);
    font-weight: 600;
    margin-bottom: 12px;
}

.about-feature-list svg {
    width: 20px;
    height: 20px;
    color: var(--color-orange);
    flex-shrink: 0;
}

/* ==========================================================================
   Featured Products Showcase
   ========================================================================== */
.featured-products-section {
    padding: 85px 0;
    background: var(--color-white);
}

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

.featured-card {
    background: var(--color-slate-50);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--color-slate-200);
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    transition: all var(--transition-normal);
    position: relative;
}

.featured-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--color-orange);
}

.featured-card.highlighted-product {
    border: 2px solid var(--color-orange);
    background: var(--color-white);
}

.featured-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--color-orange);
    color: var(--color-white);
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 5px 12px;
    border-radius: var(--radius-pill);
    z-index: 5;
    box-shadow: 0 4px 10px rgba(255, 107, 0, 0.3);
}

.featured-media {
    position: relative;
    height: 270px;
    overflow: hidden;
    background: var(--color-navy-black);
}

.featured-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.featured-card:hover .featured-media img {
    transform: scale(1.06);
}

.featured-body {
    padding: 26px 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.featured-body h3 {
    font-size: 1.32rem;
    font-weight: 700;
    color: var(--color-navy-dark);
    margin-bottom: 10px;
}

.featured-body p {
    font-size: 0.92rem;
    color: var(--color-slate-600);
    margin-bottom: 18px;
    line-height: 1.55;
    flex-grow: 1;
}

.customization-note {
    background: var(--color-orange-light);
    border-left: 3px solid var(--color-orange);
    padding: 10px 14px;
    font-size: 0.82rem;
    color: var(--color-orange-dark);
    font-weight: 500;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin-bottom: 22px;
}

/* ==========================================================================
   Full Products Catalog (8 Items)
   ========================================================================== */
.products-catalog-section {
    padding: 85px 0;
    background: var(--color-slate-50);
}

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

.product-card {
    background: var(--color-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--color-slate-200);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    transition: all var(--transition-normal);
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(255, 107, 0, 0.4);
}

.product-card-media {
    position: relative;
    height: 210px;
    overflow: hidden;
    background: var(--color-navy-black);
}

.product-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.product-card:hover .product-card-media img {
    transform: scale(1.05);
}

.product-card-body {
    padding: 20px 18px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-navy-dark);
    margin-bottom: 8px;
}

.product-desc {
    font-size: 0.86rem;
    color: var(--color-slate-600);
    line-height: 1.5;
    margin-bottom: 18px;
    flex-grow: 1;
}

.btn-request-price {
    background: var(--color-navy-dark);
    color: var(--color-white);
    font-size: 0.86rem;
    padding: 10px 16px;
    border-radius: var(--radius-sm);
    width: 100%;
    border: 1px solid var(--color-navy-dark);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 600;
    transition: all var(--transition-fast);
}

.btn-request-price:hover {
    background: var(--color-orange);
    border-color: var(--color-orange);
    color: var(--color-white);
    box-shadow: var(--shadow-orange);
}

.btn-request-price svg {
    width: 16px;
    height: 16px;
    color: var(--color-orange);
    transition: color var(--transition-fast);
}

.btn-request-price:hover svg {
    color: var(--color-white);
}

/* ==========================================================================
   Custom Uniform CTA Section
   ========================================================================== */
.custom-uniform-section {
    padding: 85px 0;
    background: linear-gradient(135deg, var(--color-navy-black) 0%, var(--color-navy-dark) 100%);
    color: var(--color-white);
    position: relative;
    overflow: hidden;
}

.custom-uniform-section::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 107, 0, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.custom-uniform-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 5;
}

.custom-uniform-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-white);
    margin-bottom: 18px;
}

.custom-uniform-content p {
    font-size: 1.1rem;
    color: var(--color-slate-300);
    margin-bottom: 28px;
    line-height: 1.65;
}

.custom-options-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-bottom: 36px;
}

.custom-option-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-white);
}

.custom-option-item svg {
    width: 18px;
    height: 18px;
    color: var(--color-orange);
    flex-shrink: 0;
}

.custom-uniform-card {
    background: var(--color-navy-card);
    border: 2px solid var(--color-orange);
    border-radius: var(--radius-lg);
    padding: 36px 30px;
    box-shadow: var(--shadow-dark);
    text-align: center;
}

.custom-uniform-card h3 {
    color: var(--color-white);
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.custom-uniform-card p {
    color: var(--color-slate-400);
    font-size: 0.95rem;
    margin-bottom: 26px;
}

/* ==========================================================================
   Why Choose Vigilant Wear (6 Feature Cards)
   ========================================================================== */
.why-us-section {
    padding: 85px 0;
    background: var(--color-white);
}

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

.why-card {
    background: var(--color-slate-50);
    border-radius: var(--radius-lg);
    padding: 32px 26px;
    border: 1px solid var(--color-slate-200);
    transition: all var(--transition-normal);
    position: relative;
}

.why-card:hover {
    transform: translateY(-6px);
    border-color: var(--color-orange);
    box-shadow: var(--shadow-lg);
    background: var(--color-white);
}

.why-icon-box {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    background: var(--color-orange-light);
    color: var(--color-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 107, 0, 0.2);
    transition: all var(--transition-fast);
}

.why-card:hover .why-icon-box {
    background: var(--color-orange);
    color: var(--color-white);
    box-shadow: 0 6px 16px rgba(255, 107, 0, 0.35);
}

.why-icon-box svg {
    width: 28px;
    height: 28px;
}

.why-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-navy-dark);
    margin-bottom: 12px;
}

.why-card p {
    font-size: 0.92rem;
    color: var(--color-slate-600);
    line-height: 1.6;
}

/* ==========================================================================
   Industries / Uniform Solutions For (12 Cards)
   ========================================================================== */
.industries-section {
    padding: 85px 0;
    background: var(--color-slate-50);
}

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

.industry-card {
    background: var(--color-white);
    border-radius: var(--radius-md);
    padding: 22px 18px;
    border: 1px solid var(--color-slate-200);
    display: flex;
    align-items: center;
    gap: 14px;
    transition: all var(--transition-fast);
}

.industry-card:hover {
    transform: translateY(-4px);
    border-color: var(--color-orange);
    box-shadow: var(--shadow-md);
}

.industry-icon {
    width: 42px;
    height: 42px;
    border-radius: var(--radius-sm);
    background: var(--color-orange-light);
    color: var(--color-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.industry-icon svg {
    width: 22px;
    height: 22px;
}

.industry-card h3 {
    font-size: 0.96rem;
    font-weight: 700;
    color: var(--color-navy-dark);
}

/* ==========================================================================
   Product Gallery (Grid / Masonry)
   ========================================================================== */
.gallery-section {
    padding: 85px 0;
    background: var(--color-white);
}

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

.gallery-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    height: 280px;
    background: var(--color-navy-dark);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(6, 10, 20, 0.9) 0%, transparent 65%);
    display: flex;
    align-items: flex-end;
    padding: 22px;
    opacity: 0.95;
    transition: opacity var(--transition-fast);
}

.gallery-caption {
    color: var(--color-white);
}

.gallery-caption h4 {
    color: var(--color-white);
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.gallery-caption p {
    font-size: 0.84rem;
    color: var(--color-slate-300);
}

/* ==========================================================================
   Quality Section: Built for Professional Duty (Split Layout)
   ========================================================================== */
.quality-section {
    padding: 85px 0;
    background: var(--color-navy-dark);
    color: var(--color-white);
}

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

.quality-media {
    position: relative;
}

.quality-media img {
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    border: 3px solid rgba(255, 107, 0, 0.35);
    width: 100%;
    max-height: 480px;
    object-fit: cover;
}

.quality-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-white);
    margin-bottom: 20px;
}

.quality-content p {
    font-size: 1.05rem;
    color: var(--color-slate-300);
    line-height: 1.68;
    margin-bottom: 28px;
}

.quality-points {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 34px;
}

.quality-point-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.quality-point-item svg {
    width: 20px;
    height: 20px;
    color: var(--color-orange);
    flex-shrink: 0;
    margin-top: 2px;
}

.quality-point-item div h4 {
    color: var(--color-white);
    font-size: 0.98rem;
    font-weight: 700;
    margin-bottom: 2px;
}

.quality-point-item div p {
    font-size: 0.82rem;
    color: var(--color-slate-400);
    margin-bottom: 0;
    line-height: 1.4;
}

/* ==========================================================================
   How to Order Section (4-Step Process)
   ========================================================================== */
.how-to-order-section {
    padding: 85px 0;
    background: var(--color-slate-50);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 26px;
    margin-bottom: 45px;
}

.step-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    border: 1px solid var(--color-slate-200);
    box-shadow: var(--shadow-sm);
    position: relative;
    transition: all var(--transition-normal);
}

.step-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-orange);
}

.step-number {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--color-orange);
    line-height: 1;
    margin-bottom: 16px;
    display: inline-block;
}

.step-card h3 {
    font-size: 1.18rem;
    font-weight: 700;
    color: var(--color-navy-dark);
    margin-bottom: 10px;
}

.step-card p {
    font-size: 0.88rem;
    color: var(--color-slate-600);
    line-height: 1.55;
}

.how-to-order-cta {
    text-align: center;
}

/* ==========================================================================
   Testimonial / Uniform Solutions Callout
   ========================================================================== */
.solutions-callout-section {
    padding: 70px 0;
    background: linear-gradient(135deg, var(--color-navy-dark) 0%, #152243 100%);
    color: var(--color-white);
    border-top: 2px solid var(--color-orange);
    border-bottom: 2px solid var(--color-orange);
}

.solutions-callout-box {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.solutions-callout-box h2 {
    color: var(--color-white);
    font-size: 2.3rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.solutions-callout-box p {
    font-size: 1.15rem;
    color: var(--color-slate-300);
    line-height: 1.65;
    margin-bottom: 30px;
}

/* ==========================================================================
   FAQ Section (Accordion)
   ========================================================================== */
.faq-section {
    padding: 85px 0;
    background: var(--color-white);
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid var(--color-slate-200);
    border-radius: var(--radius-md);
    margin-bottom: 14px;
    overflow: hidden;
    background: var(--color-slate-50);
    transition: border-color var(--transition-fast);
}

.faq-item.active {
    border-color: var(--color-orange);
    background: var(--color-white);
}

.faq-question-btn {
    width: 100%;
    padding: 18px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    text-align: left;
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--color-navy-dark);
}

.faq-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--color-slate-200);
    color: var(--color-navy-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.2rem;
    line-height: 1;
    transition: all var(--transition-fast);
}

.faq-item.active .faq-icon {
    background: var(--color-orange);
    color: var(--color-white);
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    padding: 0 22px;
    color: var(--color-slate-600);
    font-size: 0.95rem;
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding-bottom: 20px;
}

/* ==========================================================================
   Contact Section & Interactive WhatsApp Lead Form
   ========================================================================== */
.contact-section {
    padding: 85px 0;
    background: var(--color-slate-50);
}

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

.contact-info-card {
    background: var(--color-navy-dark);
    color: var(--color-white);
    border-radius: var(--radius-xl);
    padding: 40px 34px;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--color-navy-border);
}

.contact-info-card h2 {
    color: var(--color-white);
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.contact-info-card .contact-lead-desc {
    color: var(--color-slate-300);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 34px;
}

.contact-details-list {
    margin-bottom: 34px;
}

.contact-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 22px;
}

.contact-detail-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    background: rgba(255, 107, 0, 0.15);
    color: var(--color-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid rgba(255, 107, 0, 0.3);
}

.contact-detail-icon svg {
    width: 22px;
    height: 22px;
}

.contact-detail-text span.detail-label {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-slate-400);
    margin-bottom: 3px;
}

.contact-detail-text strong,
.contact-detail-text a {
    color: var(--color-white);
    font-size: 1.05rem;
    font-weight: 600;
}

.contact-detail-text a:hover {
    color: var(--color-orange);
}

.contact-quick-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

/* Contact Form */
.contact-form-card {
    background: var(--color-white);
    border-radius: var(--radius-xl);
    padding: 40px 36px;
    border: 1px solid var(--color-slate-200);
    box-shadow: var(--shadow-lg);
}

.contact-form-card h3 {
    font-size: 1.7rem;
    font-weight: 800;
    color: var(--color-navy-dark);
    margin-bottom: 8px;
}

.contact-form-card p {
    font-size: 0.92rem;
    color: var(--color-slate-500);
    margin-bottom: 26px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-bottom: 20px;
}

.form-group.full-width {
    grid-column: span 2;
}

.form-group label {
    display: block;
    font-size: 0.86rem;
    font-weight: 600;
    color: var(--color-slate-700);
    margin-bottom: 6px;
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--color-slate-200);
    border-radius: var(--radius-md);
    background: var(--color-slate-50);
    color: var(--color-slate-800);
    font-size: 0.95rem;
    transition: all var(--transition-fast);
}

.form-control:focus {
    outline: none;
    border-color: var(--color-orange);
    background: var(--color-white);
    box-shadow: 0 0 0 3px var(--color-orange-glow);
}

textarea.form-control {
    resize: vertical;
    min-height: 110px;
}

/* Map Embed / Search Link */
.map-section {
    padding: 0 0 85px 0;
    background: var(--color-slate-50);
}

.map-wrapper {
    background: var(--color-white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--color-slate-200);
    box-shadow: var(--shadow-md);
    position: relative;
}

.map-iframe {
    width: 100%;
    height: 380px;
    border: none;
    display: block;
}

.map-card-floating {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: var(--color-navy-dark);
    color: var(--color-white);
    padding: 18px 22px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    border-left: 4px solid var(--color-orange);
    max-width: 340px;
}

.map-card-floating h4 {
    color: var(--color-white);
    font-size: 1rem;
    margin-bottom: 4px;
}

.map-card-floating p {
    font-size: 0.84rem;
    color: var(--color-slate-300);
    margin-bottom: 12px;
}

/* ==========================================================================
   Footer Section
   ========================================================================== */
.site-footer {
    background: var(--color-navy-black);
    color: var(--color-slate-400);
    border-top: 3px solid var(--color-orange);
}

.footer-top {
    padding: 70px 0 50px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.9fr 1.1fr 1.3fr;
    gap: 40px;
}

.footer-logo img {
    height: 48px;
    width: auto;
    margin-bottom: 18px;
}

.footer-tagline {
    color: var(--color-white);
    font-size: 0.96rem;
    margin-bottom: 12px;
    line-height: 1.4;
}

.footer-desc {
    font-size: 0.88rem;
    line-height: 1.6;
    margin-bottom: 22px;
    color: var(--color-slate-400);
}

.footer-socials {
    display: flex;
    gap: 10px;
}

.social-link {
    width: 38px;
    height: 38px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.08);
    color: var(--color-slate-200);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
}

.social-link svg {
    width: 18px;
    height: 18px;
}

.social-link:hover {
    background: var(--color-orange);
    color: var(--color-white);
    transform: translateY(-3px);
}

.footer-heading {
    color: var(--color-white);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 22px;
    position: relative;
    padding-bottom: 10px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 34px;
    height: 2.5px;
    background: var(--color-orange);
    border-radius: 2px;
}

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

.footer-links a {
    font-size: 0.9rem;
    color: var(--color-slate-400);
    transition: all var(--transition-fast);
    display: inline-block;
}

.footer-links a:hover {
    color: var(--color-orange);
    transform: translateX(4px);
}

.footer-contact-list {
    margin-bottom: 22px;
}

.footer-contact-list .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 0.88rem;
}

.footer-contact-list .contact-item svg {
    width: 18px;
    height: 18px;
    color: var(--color-orange);
    flex-shrink: 0;
    margin-top: 3px;
}

.footer-contact-list .label {
    display: block;
    font-size: 0.76rem;
    text-transform: uppercase;
    color: var(--color-slate-400);
    margin-bottom: 2px;
}

.footer-contact-list a {
    color: var(--color-white);
    font-weight: 600;
}

.footer-contact-list a:hover {
    color: var(--color-orange);
}

.footer-contact-list address {
    font-style: normal;
    color: var(--color-slate-300);
    line-height: 1.4;
}

.btn-wa-footer {
    background: var(--color-whatsapp);
    color: var(--color-white);
    font-size: 0.88rem;
    padding: 10px 18px;
    border-radius: var(--radius-sm);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    transition: all var(--transition-fast);
}

.btn-wa-footer svg {
    width: 18px;
    height: 18px;
}

.btn-wa-footer:hover {
    background: var(--color-whatsapp-dark);
    transform: translateY(-2px);
    color: var(--color-white);
}

.footer-bottom {
    padding: 22px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.84rem;
}

.footer-bottom-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
}

.footer-bottom-badges {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--color-slate-400);
}

.badge-dot {
    color: var(--color-orange);
}

/* ==========================================================================
   Floating WhatsApp Button
   ========================================================================== */
.floating-whatsapp {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 999;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25d366;
    color: var(--color-white);
    padding: 12px 20px;
    border-radius: var(--radius-pill);
    box-shadow: 0 10px 25px -4px rgba(37, 211, 102, 0.5);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    transition: all var(--transition-normal);
}

.floating-whatsapp:hover {
    background: #20ba5a;
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 14px 30px -4px rgba(37, 211, 102, 0.65);
    color: var(--color-white);
}

.wa-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.wa-pulse {
    position: absolute;
    inset: 0;
    border-radius: var(--radius-pill);
    background: #25d366;
    opacity: 0.6;
    z-index: -1;
    animation: pulseRing 2.2s infinite;
}

@keyframes pulseRing {
    0% { transform: scale(1); opacity: 0.6; }
    70% { transform: scale(1.22); opacity: 0; }
    100% { transform: scale(1.3); opacity: 0; }
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 28px;
    left: 28px;
    z-index: 990;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--color-navy-dark);
    color: var(--color-white);
    border: 1px solid var(--color-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all var(--transition-normal);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--color-orange);
    transform: translateY(-3px);
}

.back-to-top svg {
    width: 20px;
    height: 20px;
}

/* ==========================================================================
   Internal Page Header Banner (Hero for About, Products, Contact, etc.)
   ========================================================================== */
.page-banner {
    position: relative;
    background: var(--color-navy-black);
    color: var(--color-white);
    padding: 70px 0 65px 0;
    border-bottom: 3px solid var(--color-orange);
    overflow: hidden;
}

.page-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 50%, rgba(255, 107, 0, 0.16), transparent 60%);
    pointer-events: none;
}

.page-banner-content {
    position: relative;
    z-index: 5;
    text-align: center;
    max-width: 820px;
    margin: 0 auto;
}

.page-banner-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--color-white);
    margin-bottom: 14px;
}

.page-banner-subtitle {
    font-size: 1.15rem;
    color: var(--color-slate-300);
    max-width: 650px;
    margin: 0 auto 20px auto;
}

.breadcrumb-nav {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    color: var(--color-slate-400);
}

.breadcrumb-nav a {
    color: var(--color-slate-300);
}

.breadcrumb-nav a:hover {
    color: var(--color-orange);
}

.breadcrumb-separator {
    color: var(--color-orange);
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */
@media (max-width: 1024px) {
    .trust-bar-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .trust-item:nth-child(2) {
        border-right: none;
    }
    .trust-item:nth-child(1),
    .trust-item:nth-child(2) {
        border-bottom: 1px solid var(--color-slate-200);
    }
    .featured-grid,
    .why-us-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .catalog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .industries-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .about-grid,
    .quality-grid,
    .contact-grid,
    .custom-uniform-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .top-bar-left span.top-divider,
    .top-bar-left .top-item:first-child {
        display: none;
    }
    .desktop-nav {
        display: none;
    }
    .mobile-menu-toggle {
        display: flex;
    }
    .hero-title {
        font-size: 2.35rem;
    }
    .hero-subtitle {
        font-size: 1.05rem;
    }
    .hero-cta-group {
        flex-direction: column;
        align-items: stretch;
    }
    .hero-cta-group .btn {
        width: 100%;
    }
    .trust-bar-grid {
        grid-template-columns: 1fr;
    }
    .trust-item {
        border-right: none !important;
        border-bottom: 1px solid var(--color-slate-200);
    }
    .trust-item:last-child {
        border-bottom: none;
    }
    .featured-grid,
    .why-us-grid,
    .catalog-grid,
    .industries-grid,
    .gallery-grid,
    .steps-grid {
        grid-template-columns: 1fr;
    }
    .custom-options-grid,
    .form-grid,
    .quality-points {
        grid-template-columns: 1fr;
    }
    .form-group.full-width {
        grid-column: span 1;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .footer-bottom-container {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    .floating-whatsapp .wa-text {
        display: none;
    }
    .floating-whatsapp {
        padding: 14px;
        bottom: 20px;
        right: 20px;
    }
    .about-badge-card {
        position: relative;
        right: auto;
        bottom: auto;
        margin-top: 15px;
        max-width: 100%;
    }
    .page-banner-title {
        font-size: 2.1rem;
    }
}
