/* ============================================
   PS INFRA FIELD TESTING & QUALITY CONTROL LLP
   Design System & Styles
   ============================================ */

/* CSS Variables */
:root {
    --navy: #0a1628;
    --navy-mid: #0f1d32;
    --navy-light: #152238;
    --navy-lighter: #1a2d4a;
    --orange: #e8640c;
    --orange-hover: #d45700;
    --orange-light: #ff8533;
    --orange-glow: rgba(232, 100, 12, 0.25);
    --orange-subtle: rgba(232, 100, 12, 0.08);
    --white: #ffffff;
    --off-white: #f7f8fa;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1e293b;
    --text-primary: #1a2332;
    --text-secondary: #475569;
    --text-muted: #64748b;
    --text-on-dark: #e2e8f0;
    --text-on-dark-muted: #94a3b8;
    --nav-height: 95px;
    --top-bar-height: 40px;
    --transition-fast: all 0.2s ease;
    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.07), 0 2px 4px -1px rgba(0,0,0,0.04);
    --shadow-lg: 0 10px 25px -3px rgba(0,0,0,0.08), 0 4px 10px -2px rgba(0,0,0,0.04);
    --shadow-xl: 0 20px 40px -5px rgba(0,0,0,0.1), 0 8px 16px -4px rgba(0,0,0,0.04);
    --shadow-orange: 0 10px 30px -5px rgba(232, 100, 12, 0.3);
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--nav-height) + var(--top-bar-height) + 20px);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--white);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--text-primary);
    line-height: 1.25;
    font-weight: 700;
}

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

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

/* Layout Utilities */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 100px 0;
    position: relative;
}

.section-dark {
    background: linear-gradient(175deg, var(--navy) 0%, var(--navy-mid) 100%);
}

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

.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* Section Labels */
.section-label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 1rem;
    position: relative;
    padding-left: 40px;
}

.section-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 2px;
    background: var(--orange);
}

.section-label-light {
    color: var(--orange-light);
}

.section-label-light::before {
    background: var(--orange-light);
}

.text-center .section-label {
    padding-left: 0;
}

.text-center .section-label::before {
    display: none;
}

.section-title {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0;
    letter-spacing: -0.02em;
}

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

.section-text {
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 640px;
    line-height: 1.8;
}

.section-text-light { color: var(--text-on-dark-muted); }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0.75rem 1.75rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
    font-family: inherit;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.btn svg { width: 18px; height: 18px; }

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

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

.btn-outline-light {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.35);
}

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

.btn-outline-dark {
    background: transparent;
    color: var(--navy);
    border-color: var(--gray-300);
}

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

.btn-lg {
    padding: 1rem 2.25rem;
    font-size: 1rem;
}

.btn-sm {
    padding: 0.5rem 1.25rem;
    font-size: 0.85rem;
}

.btn-nav-cta {
    background: var(--orange);
    color: var(--white) !important;
    border-color: var(--orange);
    padding: 0.55rem 1.5rem;
    border-radius: var(--radius-sm);
}

.btn-nav-cta:hover {
    background: var(--orange-hover);
    border-color: var(--orange-hover);
    transform: translateY(-1px);
    box-shadow: var(--shadow-orange);
}

/* Dot accent */
.dot { color: var(--orange); }

/* Text Gradient */
.text-gradient {
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============================================
   TOP BAR
   ============================================ */
.top-bar {
    background: linear-gradient(90deg, var(--navy-mid) 0%, var(--navy) 100%);
    height: var(--top-bar-height);
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    z-index: 1001;
    position: relative;
    box-shadow: 0 1px 3px rgba(0,0,0,0.15);
}

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

.top-bar-left, .top-bar-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.top-bar-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    color: var(--text-on-dark-muted);
    font-weight: 500;
}

.top-bar-item a, a.top-bar-item {
    color: var(--text-on-dark-muted);
}

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

.top-icon {
    width: 14px;
    height: 14px;
    color: var(--orange-light);
    opacity: 1;
}

.top-bar-divider {
    width: 1px;
    height: 16px;
    background: rgba(255,255,255,0.1);
}

/* ============================================
   NAVIGATION
   ============================================ */
.glass-nav {
    position: sticky;
    top: 0;
    width: 100%;
    height: var(--nav-height);
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    z-index: 1000;
    transition: var(--transition);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
}

.glass-nav.scrolled {
    box-shadow: var(--shadow-md);
    height: 75px;
}

.glass-nav.scrolled .brand-logo {
    max-height: 55px;
}

.glass-nav.scrolled .brand-name-primary {
    font-size: 1.15rem;
}

.nav-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 1.5rem;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.brand-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
}

.brand-name-primary {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--navy);
    letter-spacing: 0.5px;
    font-family: 'Inter', sans-serif;
    line-height: 1.2;
    white-space: nowrap;
    transition: var(--transition);
}

.brand-logo {
    max-height: 75px;
    width: auto;
    object-fit: contain;
    mix-blend-mode: multiply;
    transition: var(--transition);
}

.brand-logo-mobile {
    max-height: 55px;
    width: auto;
    object-fit: contain;
    mix-blend-mode: multiply;
}

.nav-links {
    display: flex;
    gap: 0.25rem;
    list-style: none;
    align-items: center;
}

.nav-links > li > a {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.5rem 0.9rem;
    transition: var(--transition-fast);
    position: relative;
    display: inline-block;
}

.nav-links > li > a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 2px;
    left: 50%;
    background-color: var(--orange);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-50%);
}

.nav-links > li > a:not(.btn-nav-cta):hover::after {
    width: calc(100% - 1.8rem);
}

.nav-links > li > a:not(.btn-nav-cta):hover {
    color: var(--orange);
}

.chevron-icon {
    width: 14px;
    height: 14px;
    transition: var(--transition-fast);
}

/* Mega Menu */
.has-mega-menu {
    position: relative;
}

.mega-trigger {
    display: flex !important;
    align-items: center;
    gap: 4px;
}

.mega-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    width: 980px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.12), 0 0 0 1px rgba(0,0,0,0.04);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: var(--transition);
    padding: 2rem;
    z-index: 100;
}

.has-mega-menu:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    transform: translateX(-50%) translateY(0);
}

.has-mega-menu:hover .chevron-icon {
    transform: rotate(180deg);
}

.mega-menu-inner {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.2rem;
}

.mega-col h4 {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

.mega-icon {
    width: 16px;
    height: 16px;
    color: var(--orange);
}

.mega-col ul {
    list-style: none;
}

.mega-col ul li {
    font-size: 0.82rem;
    color: var(--text-secondary);
    padding: 5px 0;
    transition: var(--transition-fast);
    cursor: default;
    border-radius: 4px;
    padding-left: 8px;
}

.mega-col ul li:hover {
    color: var(--orange);
    background: var(--orange-subtle);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1010;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2.5px;
    background: var(--navy);
    border-radius: 2px;
    transition: var(--transition-fast);
}

.hamburger.active span:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 22, 40, 0.6);
    backdrop-filter: blur(4px);
    z-index: 1050;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -350px;
    width: 320px;
    max-width: 85vw;
    height: 100vh;
    background: var(--white);
    z-index: 1100;
    padding: 1.5rem;
    overflow-y: auto;
    transition: var(--transition);
    box-shadow: -10px 0 30px rgba(0,0,0,0.15);
}

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

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--gray-200);
}

.mobile-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-text-mobile {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 3px;
}

.brand-name-primary-mobile {
    font-size: 1.0rem;
    font-weight: 800;
    color: var(--navy);
    line-height: 1.2;
    white-space: normal; /* Allow wrapping on very small screens if absolutely necessary, but try to fit */
}

.mobile-close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    color: var(--text-primary);
}

.mobile-close svg {
    width: 24px;
    height: 24px;
}

.mobile-nav-links {
    list-style: none;
}

.mobile-nav-links > li {
    border-bottom: 1px solid var(--gray-100);
}

.mobile-nav-links > li > a {
    display: block;
    padding: 0.9rem 0;
    font-weight: 500;
    color: var(--text-primary);
    font-size: 1rem;
}

.mobile-nav-links > li > a:hover {
    color: var(--orange);
}

.mobile-cta {
    margin-top: 1rem;
    width: 100%;
    text-align: center;
}

.mobile-dropdown-trigger {
    display: flex !important;
    align-items: center;
    gap: 4px;
}

.mobile-sub-menu {
    list-style: none;
    padding-left: 1rem;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
}

.mobile-dropdown.open .mobile-sub-menu {
    max-height: 300px;
    padding-bottom: 0.5rem;
}

.mobile-dropdown.open .chevron-icon {
    transform: rotate(180deg);
}

.mobile-sub-menu li a {
    display: block;
    padding: 0.5rem 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.mobile-sub-menu li a:hover {
    color: var(--orange);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    max-height: 1000px;
    display: flex;
    align-items: center;
    color: var(--white);
    overflow: hidden;
}

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

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.1);
    transition: opacity 1.2s ease, transform 15s linear;
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(10, 22, 40, 0.92) 0%,
        rgba(15, 29, 50, 0.75) 50%,
        rgba(10, 22, 40, 0.85) 100%
    );
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    padding-bottom: 80px;
    width: 100%;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0.5rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.hero-badge i {
    color: var(--orange-light);
}

.hero-badge svg {
    width: 16px;
    height: 16px;
}

.hero-content h1 {
    color: var(--white);
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1.5rem;
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.1rem;
    max-width: 620px;
    margin-bottom: 2.5rem;
    color: var(--text-on-dark-muted);
    line-height: 1.8;
}

.cta-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Hero Stats */
.hero-stats {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 4;
    background: rgba(10, 22, 40, 0.5);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255,255,255,0.08);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1.5rem 2rem;
    gap: 3rem;
}

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

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
    font-family: 'JetBrains Mono', monospace;
}

.stat-number::after {
    content: '+';
    font-size: 0.7em;
    color: var(--orange-light);
}

.stat-icon-text {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.stat-icon-inline {
    width: 22px;
    height: 22px;
    color: var(--orange-light);
}

.stat-label {
    font-size: 0.75rem;
    color: var(--text-on-dark-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    margin-top: 4px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.12);
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    gap: 10px;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
}

.slider-dot.active {
    background: var(--orange);
    transform: scale(1.3);
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 5rem;
    align-items: center;
}

.about-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin-top: 2.5rem;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 1rem;
    background: var(--gray-50);
    border-radius: var(--radius-md);
    transition: var(--transition);
    border: 1px solid transparent;
}

.highlight-item:hover {
    background: var(--white);
    border-color: var(--gray-200);
    box-shadow: var(--shadow-md);
}

.highlight-icon {
    width: 42px;
    height: 42px;
    border-radius: var(--radius-md);
    background: var(--orange-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.highlight-icon svg {
    width: 20px;
    height: 20px;
    color: var(--orange);
}

.highlight-item h4 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2px;
}

.highlight-item p {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.4;
}

/* About Visual */
.about-image-stack {
    position: relative;
}

.about-img-main {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    width: 100%;
    height: auto;
    aspect-ratio: 4/3;
    object-fit: cover;
}

.about-floating-card {
    position: absolute;
    bottom: -30px;
    left: -30px;
    background: var(--navy);
    border-radius: var(--radius-md);
    padding: 1.25rem 1.5rem;
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(255,255,255,0.08);
}

.floating-stat {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
}

.floating-stat svg {
    width: 28px;
    height: 28px;
    color: var(--orange-light);
}

.floating-stat h3 {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 700;
}

.floating-stat p {
    font-size: 0.75rem;
    color: var(--text-on-dark-muted);
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.service-tabs {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin: 3rem 0 2.5rem;
    flex-wrap: wrap;
}

.service-tab {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0.9rem 1.5rem;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(255,255,255,0.04);
    color: var(--text-on-dark-muted);
    border-radius: var(--radius-md);
    cursor: pointer;
    font-family: inherit;
    font-size: 0.88rem;
    font-weight: 500;
    transition: var(--transition);
}

.service-tab svg {
    width: 18px;
    height: 18px;
}

.service-tab:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.2);
    color: var(--white);
}

.service-tab.active {
    background: var(--orange);
    border-color: var(--orange);
    color: var(--white);
    box-shadow: var(--shadow-orange);
}

/* Service Panels */
.service-panel {
    display: none;
    animation: panelFadeIn 0.5s ease;
}

.service-panel.active {
    display: block;
}

@keyframes panelFadeIn {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}

.service-panel-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 3.5rem;
    align-items: center;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
}

.service-panel-image img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
}

.service-panel-content h3 {
    color: var(--white);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.service-panel-content > p {
    color: var(--text-on-dark-muted);
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-size: 0.95rem;
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.service-list-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 0.6rem 0.8rem;
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
}

.service-list-item:hover {
    background: rgba(255,255,255,0.04);
}

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

.service-list-item strong {
    display: block;
    color: var(--white);
    font-size: 0.92rem;
    font-weight: 600;
}

.service-list-item p {
    color: var(--text-on-dark-muted);
    font-size: 0.82rem;
    line-height: 1.4;
    margin-top: 2px;
}

/* ============================================
   WHY CHOOSE US
   ============================================ */
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.why-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--orange), var(--orange-light));
    transform: scaleX(0);
    transition: var(--transition);
}

.why-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

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

.why-card-icon {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, var(--orange-subtle), rgba(232, 100, 12, 0.12));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.why-card-icon svg {
    width: 28px;
    height: 28px;
    color: var(--orange);
}

.why-card h3 {
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
}

.why-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ============================================
   PARTNERS & TESTIMONIALS
   ============================================ */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.25rem;
    margin: 3rem 0;
}

.partner-logo-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 3/2;
    transition: var(--transition);
}

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

.partner-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--gray-400);
}

.partner-placeholder svg {
    width: 28px;
    height: 28px;
    opacity: 0.6;
}

.partner-placeholder span {
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
}

/* Testimonials */
.testimonials-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 1rem;
}

.testimonial-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: var(--transition);
    position: relative;
}

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

.testimonial-stars {
    color: var(--orange);
    font-size: 1rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.testimonial-card > p {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

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

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--navy), var(--navy-lighter));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.testimonial-author strong {
    display: block;
    font-size: 0.9rem;
    color: var(--text-primary);
}

.testimonial-author span {
    font-size: 0.78rem;
    color: var(--text-muted);
}

/* ============================================
   DOWNLOADS
   ============================================ */
.downloads-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.download-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: var(--transition);
}

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

.download-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    background: var(--orange-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
}

.download-icon svg {
    width: 24px;
    height: 24px;
    color: var(--orange);
}

.download-card h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.download-card > p {
    font-size: 0.83rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-details {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.contact-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    background: rgba(232, 100, 12, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 20px;
    height: 20px;
    color: var(--orange-light);
}

.contact-detail-item strong {
    display: block;
    color: var(--white);
    font-size: 0.9rem;
    margin-bottom: 4px;
}

.contact-detail-item p {
    color: var(--text-on-dark-muted);
    font-size: 0.85rem;
    line-height: 1.6;
}

.contact-detail-item a {
    color: var(--text-on-dark-muted);
}

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

.map-container {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 2px solid rgba(255,255,255,0.08);
}

.map-container iframe {
    display: block;
}

/* ============================================
   QUOTE FORM
   ============================================ */
.quote-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 4rem;
    align-items: start;
}

.quote-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}

.quote-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.92rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.quote-feature svg {
    width: 18px;
    height: 18px;
    color: var(--orange);
}

.quote-form-wrapper {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--gray-200);
}

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

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.4rem;
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--text-primary);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 0.92rem;
    transition: var(--transition-fast);
    background: var(--gray-50);
    color: var(--text-primary);
}

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

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-400);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2364748b' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 2.5rem;
}

.submit-btn {
    width: 100%;
    margin-top: 0.5rem;
    font-size: 1rem;
    padding: 1rem;
}

.form-status {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: var(--radius-sm);
    display: none;
    font-size: 0.9rem;
    font-weight: 500;
}

.form-status.success {
    display: block;
    background: #dcfce7;
    color: #166534;
    border: 1px solid #bbf7d0;
}

.form-status.error {
    display: block;
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

/* ============================================
   STICKY QUOTE BUTTON
   ============================================ */
.sticky-quote-btn {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: var(--orange);
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0.9rem 1.5rem;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.88rem;
    box-shadow: var(--shadow-orange), 0 8px 20px rgba(0,0,0,0.15);
    z-index: 999;
    transition: var(--transition);
    opacity: 0;
    transform: translateY(20px);
}

.sticky-quote-btn.visible {
    opacity: 1;
    transform: translateY(0);
}

.sticky-quote-btn:hover {
    background: var(--orange-hover);
    transform: translateY(-3px);
    box-shadow: var(--shadow-orange), 0 12px 30px rgba(0,0,0,0.2);
}

.sticky-quote-btn svg {
    width: 20px;
    height: 20px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--navy);
    color: var(--text-on-dark-muted);
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 3rem;
    padding: 5rem 0 3rem;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 0.25rem;
}

.footer-tagline {
    font-size: 0.85rem;
    color: var(--orange-light);
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.footer-desc {
    font-size: 0.88rem;
    line-height: 1.7;
    margin-bottom: 1.25rem;
    color: var(--text-on-dark-muted);
}

.footer-trust-line {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--text-on-dark-muted);
    padding: 0.75rem 1rem;
    background: rgba(255,255,255,0.04);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255,255,255,0.06);
}

.footer-trust-line svg {
    width: 16px;
    height: 16px;
    color: var(--orange-light);
    flex-shrink: 0;
}

.footer-links-col h4 {
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-links-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 28px;
    height: 2px;
    background: var(--orange);
}

.footer-links-col ul {
    list-style: none;
}

.footer-links-col ul li {
    margin-bottom: 0.6rem;
}

.footer-links-col ul li a {
    font-size: 0.88rem;
    color: var(--text-on-dark-muted);
    transition: var(--transition-fast);
}

.footer-links-col ul li a:hover {
    color: var(--orange-light);
    padding-left: 4px;
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.85rem;
    line-height: 1.5;
}

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

.footer-contact-list a {
    color: var(--text-on-dark-muted);
}

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

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 1.5rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.82rem;
}

.footer-gstin {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.78rem;
    color: var(--gray-500);
}

/* ============================================
   ANIMATIONS
   ============================================ */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.visible {
    opacity: 1 !important;
    transform: translate(0) !important;
}

.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }
.delay-4 { transition-delay: 0.6s; }

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
    .mega-menu {
        width: 650px;
    }

    .mega-menu-inner {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .service-panel-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .service-panel-image img {
        height: 300px;
    }

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

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

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

    .testimonials-wrapper .testimonial-card:nth-child(3) {
        display: none;
    }

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

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .quote-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .top-bar-left {
        display: none;
    }

    .top-bar-right {
        width: 100%;
        justify-content: center;
    }

    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .brand-name-primary {
        font-size: 0.95rem;
        white-space: normal;
        max-width: 210px;
        line-height: 1.2;
    }

    .hero {
        min-height: 600px;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 1.5rem;
        padding: 1.25rem 1rem;
    }

    .stat-divider {
        display: none;
    }

    .stat-item {
        flex: 1;
        min-width: 40%;
    }

    .stat-number {
        font-size: 1.6rem;
    }

    .slider-dots {
        bottom: 120px;
    }

    .section {
        padding: 70px 0;
    }

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

    .about-floating-card {
        position: relative;
        bottom: auto;
        left: auto;
        margin-top: 1rem;
    }

    .service-tabs {
        gap: 0.5rem;
    }

    .service-tab span {
        display: none;
    }

    .service-tab {
        padding: 0.75rem 1rem;
    }

    .service-panel-grid {
        padding: 1.5rem;
    }

    .service-panel-image img {
        height: 220px;
    }

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

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

    .testimonials-wrapper {
        grid-template-columns: 1fr;
    }

    .testimonials-wrapper .testimonial-card:nth-child(3) {
        display: block;
    }

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

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

    .quote-form-wrapper {
        padding: 1.5rem;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .sticky-quote-btn span {
        display: none;
    }

    .sticky-quote-btn {
        padding: 1rem;
        border-radius: 50%;
        width: 56px;
        height: 56px;
    }

    .cta-group {
        flex-direction: column;
    }

    .cta-group .btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1.25rem;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .hero-badge {
        font-size: 0.7rem;
        padding: 0.4rem 0.9rem;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .hero-stats {
        padding: 1rem;
    }

    .stat-item {
        min-width: 45%;
    }
}

/* Selection color */
::selection {
    background: var(--orange);
    color: var(--white);
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--gray-100);
}

::-webkit-scrollbar-thumb {
    background: var(--gray-400);
    border-radius: 4px;
}

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