/* ============================================================
   PYCON TECHNOLOGY PVT. LTD. — PREMIUM WEBSITE DESIGN
   Inspired by onnyx.in — Corporate, Clean, Professional
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700&display=swap');

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', sans-serif;
    background: #FFFFFF;
    color: #374151;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Paragraph styling */
p {
    font-size: 1.125rem; /* 18px */
    line-height: 1.7;
}

/* ============================================================
   CSS CUSTOM PROPERTIES (DESIGN TOKENS)
   ============================================================ */
:root {
    /* Brand Colors */
    --red: #D01E29;
    --red-hover: #B01520;
    --red-light: rgba(208, 30, 41, 0.08);
    --red-mid: rgba(208, 30, 41, 0.15);
    --navy: #0A1828;
    --navy-mid: #1A2940;
    --navy-light: #1F3048;

    /* Background Colors */
    --bg-white: #FFFFFF;
    --bg-light: #F8F9FB;
    --bg-subtle: #F3F4F6;
    --bg-dark: #0A1828;
    --bg-dark-2: #111D2E;

    /* Text Colors */
    --text-dark: #0A1828;
    --text-body: #4B5563;
    --text-light: #6B7280;
    --text-white: #FFFFFF;
    --text-white-muted: rgba(255, 255, 255, 0.75);

    /* Borders */
    --border: #E5E7EB;
    --border-dark: rgba(255, 255, 255, 0.1);

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08), 0 1px 2px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.10);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
    --shadow-card: 0 2px 12px rgba(0, 0, 0, 0.08);
    --shadow-card-hover: 0 8px 30px rgba(0, 0, 0, 0.14);
    --shadow-red: 0 8px 25px rgba(208, 30, 41, 0.30);

    /* Spacing */
    --section-py: 90px;
    --container-max: 1200px;
    --container-px: 40px;

    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;

    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.15s ease;

    /* Typography */
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;
}

/* ============================================================
   SCROLLBAR
   ============================================================ */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--red);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--red-hover);
}

/* ============================================================
   UTILITY CLASSES
   ============================================================ */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-px);
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--container-px);
}

.section {
    padding: var(--section-py) 0;
}

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

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

.section-dark {
    background: var(--bg-dark);
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--red-light);
    color: var(--red);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: var(--radius-full);
    margin-bottom: 16px;
    font-family: var(--font-heading);
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-title span {
    color: var(--red);
}

.section-title-white {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 800;
    color: var(--text-white);
    line-height: 1.2;
    margin-bottom: 16px;
}

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

.section-sub {
    font-size: 1rem;
    color: var(--text-body);
    max-width: 640px;
    line-height: 1.7;
}

.section-sub-white {
    font-size: 1rem;
    color: var(--text-white-muted);
    max-width: 640px;
    line-height: 1.7;
}

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

.text-center .section-sub {
    margin: 0 auto;
}

.text-center .section-sub-white {
    margin: 0 auto;
}

/* Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--red);
    color: white;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    font-family: var(--font-heading);
    transition: var(--transition);
    border: 2px solid var(--red);
    cursor: pointer;
    letter-spacing: 0.3px;
}

.btn-primary:hover {
    background: var(--red-hover);
    border-color: var(--red-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-red);
    color: white;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--navy);
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    font-family: var(--font-heading);
    transition: var(--transition);
    border: 2px solid var(--navy);
    cursor: pointer;
}

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

.btn-outline-white {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: white;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    font-family: var(--font-heading);
    transition: var(--transition);
    border: 2px solid rgba(255, 255, 255, 0.6);
    cursor: pointer;
}

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

/* ============================================================
   TOP BAR
   ============================================================ */
.top-bar {
    background: var(--navy);
    padding: 9px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

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

.top-bar-links {
    display: flex;
    gap: 24px;
}

.top-bar-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 500;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 6px;
}

.top-bar-links a:hover {
    color: white;
}

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

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

.top-bar-contact a {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: 0.78rem;
    font-weight: 500;
    transition: var(--transition-fast);
}

.top-bar-contact a:hover {
    color: white;
}

.top-bar-contact .tbc-icon {
    color: var(--red);
    font-size: 0.85rem;
}

.top-bar-helpline {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 5px 14px;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-decoration: none;
    text-transform: uppercase;
    transition: var(--transition-fast);
    font-family: var(--font-heading);
}

.top-bar-helpline:hover {
    background: var(--red);
    border-color: var(--red);
    color: white;
}

/* ============================================================
   HORIZONTAL NAVIGATION
   ============================================================ */
.horizontal-nav {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 74px;
    gap: 20px;
}

/* Logo */
.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    flex-shrink: 0;
}

.nav-logo-icon-wrap {
    width: 42px;
    height: 42px;
    background: var(--red);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.nav-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.nav-logo-text .brand-main {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 900;
    color: var(--navy);
    letter-spacing: -0.3px;
}

.nav-logo-text .brand-main span {
    color: var(--red);
}

.nav-logo-text .brand-sub {
    font-size: 0.65rem;
    font-weight: 500;
    color: var(--text-light);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Nav Menu */
.nav-menu {
    display: flex;
    gap: 2px;
    list-style: none;
    align-items: center;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    color: var(--text-dark);
    text-decoration: none;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    font-weight: 600;
    font-size: 0.85rem;
    font-family: var(--font-heading);
    white-space: nowrap;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 14px;
    right: 14px;
    height: 2px;
    background: var(--red);
    border-radius: 2px;
    transform: scaleX(0);
    transition: var(--transition);
}

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

.nav-link:hover::after {
    transform: scaleX(1);
}

.nav-icon {
    font-size: 0.9rem;
}

/* Dropdown */
.nav-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    min-width: 270px;
    background: white;
    border-radius: var(--radius-lg);
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    z-index: 100;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 20px;
    color: var(--text-body);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: var(--transition-fast);
}

.dropdown-link:hover {
    background: var(--bg-light);
    color: var(--red);
    padding-left: 24px;
}

.dropdown-arrow {
    font-size: 0.6rem;
    margin-left: 4px;
    transition: var(--transition);
    color: var(--text-light);
}

.nav-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
    color: var(--red);
}

/* Nav CTA */
.nav-cta {
    background: var(--red);
    color: white;
    padding: 10px 22px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.83rem;
    font-family: var(--font-heading);
    transition: var(--transition);
    white-space: nowrap;
    flex-shrink: 0;
    letter-spacing: 0.3px;
}

.nav-cta:hover {
    background: var(--red-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(208, 30, 41, 0.35);
    color: white;
}

/* Search Trigger Button */
.search-trigger-btn {
    width: 38px;
    height: 38px;
    background: var(--bg-subtle);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1rem;
    flex-shrink: 0;
}

.search-trigger-btn:hover {
    background: var(--red-light);
    border-color: var(--red);
}

/* Theme Toggle */
.theme-toggle-btn {
    display: none;
    /* Removed for clean corporate look */
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.mobile-menu-btn span {
    width: 22px;
    height: 2px;
    background: var(--navy);
    transition: var(--transition);
    border-radius: 2px;
    display: block;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--navy);
}

.hero-slide {
    position: absolute;
    inset: 0;
    z-index: 1;
    opacity: 0;
    transition: opacity 1s ease;
}

.hero-slide.active {
    opacity: 1;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(10, 24, 40, 0.88) 0%,
            rgba(10, 24, 40, 0.75) 50%,
            rgba(10, 24, 40, 0.82) 100%);
}

.hero-content {
    position: absolute;
    z-index: 10;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 900px;
    padding: 0 40px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    pointer-events: auto;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(208, 30, 41, 0.2);
    border: 1px solid rgba(208, 30, 41, 0.4);
    color: #ff7a82;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 8px 18px;
    border-radius: var(--radius-full);
    margin-bottom: 24px;
    font-family: var(--font-heading);
    animation: fadeInUp 0.6s ease both;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5.5vw, 4.5rem);
    font-weight: 900;
    color: white;
    line-height: 1.1;
    margin-bottom: 20px;
    animation: fadeInUp 0.6s ease 0.1s both;
    letter-spacing: -1px;
    max-width: 800px;
    text-align: center;
}

.hero-title em {
    font-style: normal;
    color: var(--red);
}

.hero-sub {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 620px;
    line-height: 1.7;
    margin-bottom: 40px;
    animation: fadeInUp 0.6s ease 0.2s both;
    text-align: center;
}

.hero-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    animation: fadeInUp 0.6s ease 0.3s both;
    justify-content: center;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--red);
    color: white;
    padding: 15px 32px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    font-family: var(--font-heading);
    transition: var(--transition);
    letter-spacing: 0.3px;
}

.btn-hero-primary:hover {
    background: var(--red-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(208, 30, 41, 0.4);
    color: white;
}

.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: white;
    padding: 15px 32px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    font-family: var(--font-heading);
    transition: var(--transition);
    border: 2px solid rgba(255, 255, 255, 0.5);
}

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

/* Hero Controls (Dots) */
.hero-controls {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
    pointer-events: auto;
}

.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.hero-dot.active {
    background: var(--red);
    border-color: var(--red);
    width: 28px;
    border-radius: 5px;
}

.hero-dot:hover {
    background: rgba(255, 255, 255, 0.6);
}

/* Hero scroll indicator */
.hero-scroll {
    position: absolute;
    bottom: 40px;
    right: 40px;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.7rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 600;
}

.hero-scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.5), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

/* ============================================================
   FEATURE STRIP
   ============================================================ */
.feature-strip {
    background: var(--navy);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 28px 0;
}

.feature-strip-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.feature-strip-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px 30px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

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

.fsi-icon {
    width: 44px;
    height: 44px;
    background: rgba(208, 30, 41, 0.15);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
    border: 1px solid rgba(208, 30, 41, 0.3);
}

.fsi-title {
    font-family: var(--font-heading);
    font-size: 0.88rem;
    font-weight: 700;
    color: white;
    margin-bottom: 3px;
}

.fsi-desc {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.4;
}

/* ============================================================
   STATS SECTION
   ============================================================ */
.stats-section {
    background: var(--navy);
    padding: 70px 0;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(208, 30, 41, 0.5), transparent);
}

.stats-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(208, 30, 41, 0.5), transparent);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.stat-item {
    padding: 30px 40px;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
    transition: var(--transition);
}

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

.stat-item:hover {
    background: rgba(255, 255, 255, 0.03);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 3.5vw, 3rem);
    font-weight: 900;
    color: var(--red);
    line-height: 1;
    margin-bottom: 8px;
    letter-spacing: -1px;
}

.stat-label {
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.4;
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-section {
    background: var(--bg-white);
    padding: var(--section-py) 0;
}

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

.about-img-wrap {
    position: relative;
}

.about-image-box {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image-box::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: calc(var(--radius-lg) + 4px);
    border: 2px solid var(--red);
    opacity: 0.3;
    pointer-events: none;
    z-index: 1;
}

.about-image {
    width: 100%;
    height: 460px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

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

.about-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: var(--red);
    color: white;
    padding: 12px 20px;
    border-radius: var(--radius-md);
    font-family: var(--font-heading);
    font-weight: 800;
    box-shadow: var(--shadow-red);
    z-index: 2;
}

.about-badge-num {
    font-size: 1.8rem;
    line-height: 1;
}

.about-badge-text {
    font-size: 0.72rem;
    opacity: 0.9;
    letter-spacing: 0.5px;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.about-text {
    font-size: 1rem;
    color: var(--text-body);
    line-height: 1.8;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 20px;
    background: var(--bg-light);
    border-radius: var(--radius-md);
    border-left: 3px solid var(--red);
    transition: var(--transition);
}

.about-feature:hover {
    background: var(--red-light);
    transform: translateX(4px);
}

.af-icon {
    width: 40px;
    height: 40px;
    background: var(--red-light);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
    border: 1px solid var(--red-mid);
}

.af-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.af-desc {
    font-size: 0.83rem;
    color: var(--text-body);
    line-height: 1.5;
}

.about-btn-row {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

/* ============================================================
   SOLUTIONS SECTION (TECHNOLOGY)
   ============================================================ */
.solutions-section {
    background: var(--bg-light);
    padding: var(--section-py) 0;
}

.solutions-header {
    text-align: center;
    margin-bottom: 60px;
}

.solutions-dashboard {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 0;
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    min-height: 500px;
}

/* Left Sidebar Tabs */
.solutions-tabs {
    background: var(--navy);
    display: flex;
    flex-direction: column;
    padding: 16px 0;
}

.solution-tab-btn {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 24px;
    cursor: pointer;
    transition: var(--transition);
    border-left: 3px solid transparent;
    background: none;
    border-top: none;
    border-right: none;
    border-bottom: none;
    text-align: left;
    width: 100%;
    color: rgba(255, 255, 255, 0.6);
    position: relative;
}

.solution-tab-btn:hover {
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.9);
    border-left-color: rgba(208, 30, 41, 0.5);
}

.solution-tab-btn.active {
    background: rgba(208, 30, 41, 0.15);
    border-left-color: var(--red);
    color: white;
}

.sol-icon {
    font-size: 1.3rem;
    flex-shrink: 0;
    width: 28px;
    text-align: center;
}

.sol-title {
    font-family: var(--font-heading);
    font-size: 0.82rem;
    font-weight: 600;
    line-height: 1.3;
}

/* Right Pane */
.solutions-panes {
    position: relative;
    overflow: hidden;
}

.solution-pane {
    display: none;
    height: 100%;
}

.solution-pane.active {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 100%;
}

.pane-content {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.pane-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--red-light);
    color: var(--red);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: var(--radius-full);
    margin-bottom: 16px;
    font-family: var(--font-heading);
    width: fit-content;
}

.pane-content h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 14px;
    line-height: 1.3;
}

.pane-content p {
    font-size: 0.9rem;
    color: var(--text-body);
    line-height: 1.7;
    margin-bottom: 20px;
}

.pane-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.pane-features li {
    font-size: 0.85rem;
    color: var(--text-body);
    line-height: 1.5;
    padding-left: 20px;
    position: relative;
}

.pane-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    background: var(--red);
    border-radius: 50%;
    flex-shrink: 0;
}

.pane-features li strong {
    color: var(--text-dark);
}

.pane-image {
    position: relative;
    overflow: hidden;
}

.pane-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    min-height: 350px;
    transition: transform 0.5s ease;
}

.pane-image:hover img {
    transform: scale(1.04);
}

/* ============================================================
   PROJECTS SECTION
   ============================================================ */
.project-section-alt {
    background: var(--bg-white);
    padding: var(--section-py) 0;
}

.projects-header {
    text-align: center;
    margin-bottom: 50px;
}

.projects-badge {
    margin-bottom: 12px;
}

.stats-row {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
}

.stat-card {
    background: var(--red);
    color: white;
    padding: 24px 36px;
    border-radius: var(--radius-lg);
    text-align: center;
    min-width: 160px;
    box-shadow: var(--shadow-red);
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(208, 30, 41, 0.35);
}

.stat-card .number {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 6px;
}

.stat-card .label {
    font-size: 0.78rem;
    font-weight: 600;
    opacity: 0.9;
    line-height: 1.3;
    letter-spacing: 0.3px;
}

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

.project-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 28px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--red);
    transform: scaleX(0);
    transition: var(--transition);
    transform-origin: left;
}

.project-card:hover {
    box-shadow: var(--shadow-card-hover);
    transform: translateY(-4px);
    border-color: transparent;
}

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

.project-icon {
    font-size: 2rem;
    margin-bottom: 14px;
}

.project-location {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--red);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 6px;
    font-family: var(--font-heading);
}

.project-title {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
    line-height: 1.3;
}

.project-desc {
    font-size: 0.83rem;
    color: var(--text-body);
    line-height: 1.6;
    margin-bottom: 14px;
}

.project-tag {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: var(--red-light);
    color: var(--red);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
}

/* ============================================================
   SERVICES SECTION
   ============================================================ */
.services-section {
    background: var(--navy);
    padding: var(--section-py) 0;
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--red) 30%, var(--red) 70%, transparent);
}

.services-section .section-title {
    color: white;
}

.services-section .section-title span {
    color: var(--red);
}

.services-header {
    text-align: center;
    margin-bottom: 56px;
}

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

.service-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(4px);
    position: relative;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--red);
    transform: scaleX(0);
    transition: var(--transition);
    transform-origin: left;
    z-index: 1;
}

.service-card:hover {
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
    transform: translateY(-8px);
    border-color: rgba(208, 30, 41, 0.4);
    background: rgba(255, 255, 255, 0.09);
}

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

.service-card-img-wrapper {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.service-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    filter: brightness(0.85) saturate(1.1);
}

.service-card:hover .service-card-img {
    transform: scale(1.08);
    filter: brightness(0.95) saturate(1.2);
}

.service-card-img-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to top, rgba(10, 24, 40, 0.85), transparent);
}

.service-card-body {
    padding: 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.sc-number {
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--red);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.sc-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 800;
    color: white;
    margin-bottom: 12px;
    line-height: 1.3;
    padding: 12px 28px 0;
}

.sc-desc {
    font-size: 0.87rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    flex: 1;
    padding: 0 28px;
}

.sc-desc ul {
    list-style: none;
    padding: 0;
    margin-top: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sc-desc ul li {
    padding-left: 16px;
    position: relative;
    font-size: 0.84rem;
    color: rgba(255, 255, 255, 0.65);
}

.sc-desc ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 7px;
    height: 7px;
    background: var(--red);
    border-radius: 50%;
}

.sc-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #ff7a82;
    font-weight: 700;
    font-size: 0.85rem;
    font-family: var(--font-heading);
    text-decoration: none;
    margin-top: 20px;
    padding: 0 28px 28px;
    transition: var(--transition);
}

.sc-link:hover {
    gap: 12px;
    color: white;
}

/* ============================================================
   PRODUCTS SECTION
   ============================================================ */
.products-section {
    background: var(--bg-white);
    padding: var(--section-py) 0;
}

.products-header {
    text-align: center;
    margin-bottom: 40px;
}

.products-description {
    max-width: 600px;
    margin: 12px auto 0;
    font-size: 0.95rem;
    color: var(--text-body);
    line-height: 1.7;
}

/* Product Search */
.product-gallery-search {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 12px 20px;
    margin-bottom: 30px;
    transition: var(--transition);
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.product-gallery-search:focus-within {
    border-color: var(--red);
    box-shadow: 0 0 0 3px var(--red-light);
}

.pg-search-icon {
    font-size: 1rem;
    color: var(--text-light);
}

.product-gallery-search input {
    flex: 1;
    border: none;
    background: transparent;
    color: var(--text-dark);
    font-size: 0.9rem;
    outline: none;
    font-family: var(--font-body);
}

.product-gallery-search input::placeholder {
    color: var(--text-light);
}

.pg-search-clear {
    background: none;
    border: none;
    color: var(--text-light);
    cursor: pointer;
    font-size: 0.9rem;
    padding: 2px;
    transition: var(--transition-fast);
}

.pg-search-clear:hover {
    color: var(--red);
}

/* Product Nav */
.product-nav-horizontal {
    margin-bottom: 30px;
}

.nav-scroll-container {
    overflow-x: auto;
    padding-bottom: 8px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.nav-scroll-container::-webkit-scrollbar {
    display: none;
}

.nav-items-wrapper {
    display: flex;
    gap: 10px;
    white-space: nowrap;
    padding: 4px 0;
}

.nav-product-item {
    background: var(--bg-light);
    border: 1px solid var(--border);
    color: var(--text-body);
    padding: 9px 18px;
    border-radius: var(--radius-full);
    font-size: 0.82rem;
    font-weight: 600;
    font-family: var(--font-heading);
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.nav-product-item:hover {
    background: var(--red-light);
    border-color: var(--red);
    color: var(--red);
}

.nav-product-item.active {
    background: var(--red);
    border-color: var(--red);
    color: white;
    box-shadow: var(--shadow-red);
}

.scroll-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-light);
    font-size: 0.75rem;
    margin-top: 8px;
    justify-content: center;
}

.scroll-arrow {
    cursor: pointer;
    transition: var(--transition-fast);
    padding: 4px;
}

.scroll-arrow:hover {
    color: var(--red);
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.product-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
}

.product-card:hover {
    box-shadow: var(--shadow-card-hover);
    transform: translateY(-4px);
    border-color: transparent;
}

.product-card.hide-card {
    display: none;
}

.product-image {
    height: 180px;
    overflow: hidden;
    background: var(--bg-light);
}

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

.product-card:hover .product-image img {
    transform: scale(1.06);
}

.product-content {
    padding: 18px;
}

.product-name {
    font-family: var(--font-heading);
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 6px;
    line-height: 1.3;
}

.product-desc {
    font-size: 0.8rem;
    color: var(--text-body);
    line-height: 1.5;
    margin-bottom: 10px;
}

.product-tech {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: var(--red-light);
    color: var(--red);
    font-size: 0.72rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    letter-spacing: 0.3px;
}

.no-results {
    display: none;
    text-align: center;
    padding: 60px 20px;
    color: var(--text-light);
    font-size: 0.9rem;
}

.no-results.show {
    display: block;
}

/* ============================================================
   PARTNERS SECTION
   ============================================================ */
.partners-section {
    padding: 60px 0;
    background: var(--bg-light);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.partners-label {
    text-align: center;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 36px;
    font-family: var(--font-heading);
}

.partners-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    align-items: center;
}

.partner-card {
    width: 180px;
    min-height: 130px;
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 20px 16px;
    text-decoration: none;
    color: var(--text-body);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    font-size: 0.78rem;
    font-weight: 600;
    text-align: center;
    line-height: 1.3;
}

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

.partner-logo {
    width: 80px;
    height: 70px;
    object-fit: contain;
}

/* ============================================================
   WHY CHOOSE US + CONTACT
   ============================================================ */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 650px;
}

.contact-left {
    background: var(--navy);
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.contact-left::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(208, 30, 41, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.contact-left::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.contact-left .why-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 2.5vw, 2.4rem);
    font-weight: 900;
    color: white;
    margin-bottom: 16px;
    line-height: 1.2;
}

.contact-left .why-title span {
    color: var(--red);
}

.contact-left .why-sub {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 36px;
}

.why-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 36px;
}

.why-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.why-item:last-child {
    border-bottom: none;
}

.why-num {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--red);
    line-height: 1;
    flex-shrink: 0;
    min-width: 36px;
    opacity: 0.8;
}

.why-text-title {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: white;
    margin-bottom: 4px;
}

.why-text-desc {
    font-size: 0.83rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
}

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

.contact-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--red);
    color: white;
    padding: 13px 26px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85rem;
    font-family: var(--font-heading);
    transition: var(--transition);
}

.contact-btn-primary:hover {
    background: var(--red-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-red);
    color: white;
}

.contact-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: white;
    padding: 13px 26px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85rem;
    font-family: var(--font-heading);
    transition: var(--transition);
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.contact-btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    color: white;
    transform: translateY(-2px);
}

/* Contact Form Right */
.contact-right {
    background: var(--bg-light);
    padding: 70px 55px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-right h2 {
    font-family: var(--font-heading);
    font-size: 1.9rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 8px;
    line-height: 1.2;
}

.contact-right .subtitle {
    font-size: 0.9rem;
    color: var(--text-body);
    margin-bottom: 28px;
    line-height: 1.5;
}

/* Form Styles */
.contact-form-group {
    margin-bottom: 18px;
}

.contact-form-group label {
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--text-body);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 7px;
    font-family: var(--font-heading);
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    background: white;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-md);
    color: var(--text-dark);
    font-size: 0.9rem;
    font-family: var(--font-body);
    transition: var(--transition);
    outline: none;
}

.form-control:focus {
    border-color: var(--red);
    box-shadow: 0 0 0 3px var(--red-light);
}

.form-control::placeholder {
    color: var(--text-light);
}

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

select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236B7280' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 16px;
    cursor: pointer;
}

.contact-right button[type="submit"] {
    width: 100%;
    padding: 14px 28px;
    background: var(--red);
    color: white;
    border: none;
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    font-weight: 700;
    font-family: var(--font-heading);
    cursor: pointer;
    transition: var(--transition);
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 6px;
}

.contact-right button[type="submit"]:hover {
    background: var(--red-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-red);
}

/* Messages */
.messages {
    padding: 12px 16px;
    border-radius: var(--radius-md);
    margin-bottom: 20px;
    font-size: 0.88rem;
    font-weight: 500;
}

.messages.success {
    background: #dcfce7;
    color: #166534;
    border: 1px solid #bbf7d0;
}

.messages.error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

.errorlist {
    color: var(--red);
    font-size: 0.78rem;
    margin-top: 6px;
}

/* ============================================================
   PREMIUM FOOTER
   ============================================================ */
.premium-footer {
    background: var(--navy);
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.premium-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--red) 30%, var(--red) 70%, transparent);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 40px 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
    gap: 50px;
    margin-bottom: 50px;
}

/* Footer Brand */
.footer-brand {
    max-width: 320px;
}

.footer-logo {
    margin-bottom: 18px;
}

.footer-logo-text {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 900;
    color: white;
    line-height: 1.2;
}

.footer-logo-text span {
    color: var(--red);
}

.footer-logo-text small {
    display: block;
    font-size: 0.65rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 4px;
    letter-spacing: 0.5px;
}

.footer-brand-desc {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.83rem;
    line-height: 1.7;
    margin-bottom: 24px;
}

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

.social-icon {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 1rem;
    transition: var(--transition);
}

.social-icon:hover {
    background: var(--red);
    border-color: var(--red);
    color: white;
    transform: translateY(-3px);
}

/* Footer Columns */
.footer-col-title {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.footer-col-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 28px;
    height: 2px;
    background: var(--red);
    border-radius: 2px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-link {
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    font-size: 0.83rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.footer-link:hover {
    color: white;
    transform: translateX(4px);
}

/* Footer Contact */
.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
}

.fci-icon {
    width: 32px;
    height: 32px;
    background: rgba(208, 30, 41, 0.15);
    border: 1px solid rgba(208, 30, 41, 0.3);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    flex-shrink: 0;
    margin-top: 2px;
    transition: var(--transition);
}

.footer-contact-item:hover .fci-icon {
    background: var(--red);
    border-color: var(--red);
}

.fci-text {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.82rem;
    line-height: 1.5;
}

.footer-hours {
    margin-top: 16px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-hours strong {
    color: var(--red);
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-copy {
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.78rem;
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.35);
    text-decoration: none;
    font-size: 0.78rem;
    transition: var(--transition-fast);
}

.footer-legal a:hover {
    color: var(--red);
}

/* ============================================================
   WHATSAPP FLOAT
   ============================================================ */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: white;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
    z-index: 999;
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
    color: white;
}

/* Pulse animation for whatsapp */
.whatsapp-float::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.3);
    animation: whatsappPulse 2.5s ease-in-out infinite;
}

/* ============================================================
   SEARCH MODAL
   ============================================================ */
.search-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 10000;
}

.search-modal.open {
    display: block;
}

.search-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(10, 24, 40, 0.7);
    backdrop-filter: blur(4px);
}

.search-modal-content {
    position: relative;
    background: white;
    border-radius: 0 0 var(--radius-xl) var(--radius-xl);
    max-height: 70vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-lg);
}

.search-modal-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px 24px;
    border-bottom: 1px solid var(--border);
}

.search-input-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.search-modal-icon {
    font-size: 1.2rem;
    color: var(--text-light);
}

.search-modal-header input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 1.1rem;
    color: var(--text-dark);
    font-family: var(--font-body);
    background: transparent;
}

.search-modal-header input::placeholder {
    color: var(--text-light);
}

.search-clear-btn,
.search-close-btn {
    background: var(--bg-subtle);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    color: var(--text-body);
    cursor: pointer;
    padding: 6px 10px;
    font-size: 0.85rem;
    transition: var(--transition-fast);
}

.search-clear-btn:hover,
.search-close-btn:hover {
    background: var(--red-light);
    border-color: var(--red);
    color: var(--red);
}

.search-modal-body {
    overflow-y: auto;
    padding: 20px 24px;
}

.search-suggestions h3 {
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.suggestion-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.suggestion-tag {
    background: var(--bg-light);
    border: 1px solid var(--border);
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 0.82rem;
    cursor: pointer;
    transition: var(--transition-fast);
    color: var(--text-body);
    font-weight: 500;
}

.suggestion-tag:hover {
    background: var(--red-light);
    border-color: var(--red);
    color: var(--red);
}

.category-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-top: 12px;
}

.category-card-item {
    background: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 16px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.category-card-item:hover {
    background: var(--red-light);
    border-color: var(--red);
    transform: translateY(-2px);
}

.cat-icon {
    font-size: 1.5rem;
}

.cat-lbl {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-body);
}

.search-modal-footer {
    padding: 12px 24px;
    border-top: 1px solid var(--border);
    background: var(--bg-light);
    font-size: 0.78rem;
    color: var(--text-light);
}

.search-modal-footer kbd {
    background: white;
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 2px 6px;
    font-size: 0.72rem;
}

.search-results {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.search-result-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 16px;
    background: var(--bg-light);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition-fast);
    border: 1px solid transparent;
}

.search-result-item:hover {
    border-color: var(--red);
    background: var(--red-light);
}

.sri-icon {
    font-size: 1.3rem;
}

.sri-title {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.sri-category {
    font-size: 0.75rem;
    color: var(--text-light);
}

/* ============================================================
   SUCCESS PAGE
   ============================================================ */
.success-page {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    background: var(--bg-light);
}

.success-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: 60px 50px;
    text-align: center;
    max-width: 520px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
}

.success-icon {
    width: 80px;
    height: 80px;
    background: #dcfce7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    margin: 0 auto 24px;
}

.success-card h2 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.success-card p {
    font-size: 0.95rem;
    color: var(--text-body);
    line-height: 1.7;
    margin-bottom: 30px;
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

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

@keyframes scrollPulse {

    0%,
    100% {
        opacity: 0.4;
    }

    50% {
        opacity: 1;
    }
}

@keyframes whatsappPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.7;
    }

    50% {
        transform: scale(1.3);
        opacity: 0;
    }
}

/* Scroll animations */
.anim {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.anim-d1 {
    transition-delay: 0.1s;
}

.anim-d2 {
    transition-delay: 0.2s;
}

.anim-d3 {
    transition-delay: 0.3s;
}

.anim-d4 {
    transition-delay: 0.4s;
}

/* ============================================================
   RESPONSIVE — 1200px
   ============================================================ */
@media (max-width: 1200px) {
    :root {
        --container-px: 30px;
        --section-py: 70px;
    }

    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

    .footer-brand {
        max-width: 100%;
    }
}

/* ============================================================
   RESPONSIVE — 1024px
   ============================================================ */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-img-wrap {
        max-width: 560px;
        margin: 0 auto;
    }

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

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

    .stat-item {
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

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

    .feature-strip-item:nth-child(2) {
        border-right: none;
    }

    .feature-strip-item:nth-child(3) {
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .feature-strip-item:nth-child(4) {
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        border-right: none;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }

    .contact-left {
        padding: 60px 40px;
    }

    .contact-right {
        padding: 60px 40px;
    }

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

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

/* ============================================================
   RESPONSIVE — 900px (Mobile Menu)
   ============================================================ */
@media (max-width: 900px) {
    .mobile-menu-btn {
        display: flex;
    }

    .search-trigger-btn {
        display: none;
    }

    .nav-menu {
        position: fixed;
        top: 74px;
        right: -100%;
        width: 300px;
        height: calc(100vh - 74px);
        background: white;
        flex-direction: column;
        padding: 30px 20px;
        gap: 4px;
        transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        overflow-y: auto;
        box-shadow: -5px 0 25px rgba(0, 0, 0, 0.12);
        border-left: 1px solid var(--border);
        z-index: 999;
        align-items: stretch;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-link {
        padding: 12px 16px;
        font-size: 0.9rem;
        border-radius: var(--radius-sm);
    }

    .nav-link::after {
        display: none;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: 1px solid var(--border);
        display: none;
        margin-top: 8px;
        margin-left: 16px;
        border-radius: var(--radius-md);
    }

    .nav-dropdown.active .dropdown-menu {
        display: block;
    }

    .nav-cta {
        display: none;
    }

    .top-bar-links {
        display: none;
    }

    .top-bar-contact a span:not(.tbc-icon) {
        display: none;
    }
}

/* ============================================================
   RESPONSIVE — 768px
   ============================================================ */
@media (max-width: 768px) {
    :root {
        --container-px: 20px;
        --section-py: 56px;
    }

    .top-bar {
        padding: 8px 0;
    }

    .top-bar-inner {
        justify-content: center;
    }

    .top-bar-helpline {
        display: none;
    }

    .nav-container {
        height: 64px;
    }

    .nav-logo-text .brand-sub {
        display: none;
    }

    .hero-content {
        padding: 0 20px;
        max-width: 100%;
    }

    .hero-title {
        font-size: clamp(1.9rem, 7vw, 2.8rem);
    }

    .feature-strip-inner {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .feature-strip-item {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .feature-strip-item:last-child {
        border-bottom: none;
    }

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

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

    .solutions-tabs {
        flex-direction: row;
        overflow-x: auto;
        padding: 0;
    }

    .solution-tab-btn {
        flex-direction: column;
        align-items: center;
        gap: 6px;
        padding: 14px 16px;
        border-left: none;
        border-bottom: 3px solid transparent;
        white-space: nowrap;
        min-width: 110px;
    }

    .solution-tab-btn.active {
        border-left: none;
        border-bottom-color: var(--red);
    }

    .solution-pane.active {
        grid-template-columns: 1fr;
    }

    .pane-image {
        display: none;
    }

    .pane-content {
        padding: 28px 24px;
    }

    .stats-row {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

    .stat-card {
        width: 200px;
    }

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

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

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

    .contact-left {
        padding: 48px 24px;
    }

    .contact-right {
        padding: 48px 24px;
    }

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

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-legal {
        justify-content: center;
        gap: 14px;
    }

    .hero-scroll {
        display: none;
    }

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

/* ============================================================
   RESPONSIVE — 480px
   ============================================================ */
@media (max-width: 480px) {
    .hero-btns {
        flex-direction: column;
        align-items: center;
    }

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

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

    .stat-item {
        border-right: none;
    }

    .top-bar-contact {
        display: none;
    }

    .partners-row {
        gap: 12px;
    }

    .partner-card {
        width: 140px;
        min-height: 110px;
    }

/* ==== Services Section Title Styling ==== */
.services-section .section-title {
    font-size: 2rem;
    color: var(--navy);
    text-align: center;
    margin-bottom: 1.5rem;
    position: relative;
}

.services-section .section-title::after {
    content: '';
    width: 60px;
    height: 4px;
    background: var(--red);
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: var(--radius-sm);
}


/* ==== Services Section Interactive Styles ==== */
.services-section .services-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    margin-top: 2rem;
}

.service-card {
    background: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 24px;
}
    background: var(--bg-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 24px;
}

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

.service-card-img-wrapper {
    width: 80px;
    height: 80px;
    margin-bottom: 1rem;
}

.service-card-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.sc-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0.5rem 0;
    color: var(--text-dark);
}

.sc-desc p {
    font-size: 0.95rem;
    color: var(--text-body);
    margin-bottom: 1rem;
}

.sc-link {
    display: inline-block;
    margin-top: auto;
    color: var(--red);
    font-weight: 600;
    transition: var(--transition);
    text-decoration: none;
}

.sc-link:hover {
    color: var(--red-hover);
    transform: translateX(5px);
}

}