/* SSK Team Trading - Main Stylesheet */

/* CSS Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* SSK Team Trading - Deep Navy Blue tech theme */
    --background: #fafafa;
    --foreground: #1a1a2e;
    --card: #ffffff;
    --card-foreground: #1a1a2e;
    --popover: #ffffff;
    --popover-foreground: #1a1a2e;
    --primary: #3b4a99;
    --primary-foreground: #fafafa;
    --secondary: #f2f3f7;
    --secondary-foreground: #1a1a2e;
    --muted: #eff0f5;
    --muted-foreground: #6b7280;
    --accent: #ea952d;
    --accent-foreground: #fafafa;
    --destructive: #dc2626;
    --destructive-foreground: #fafafa;
    --border: #e5e7eb;
    --input: #e5e7eb;
    --ring: #3b4a99;
    --radius: 0.5rem;

    /* Custom brand tokens */
    --brand-navy: #1e293b;
    --brand-blue: #3b4a99;
    --brand-orange: #ea952d;
    --brand-light-blue: #7b93db;
    --brand-dark: #0f172a;

    /* Fonts */
    --font-inter: 'Inter', sans-serif;
    --font-rajdhani: 'Rajdhani', sans-serif;
}

body {
    font-family: var(--font-inter);
    background-color: var(--background);
    color: var(--foreground);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-rajdhani);
    font-weight: 700;
    line-height: 1.2;
}

.font-rajdhani {
    font-family: var(--font-rajdhani);
}

.text-balance {
    text-wrap: balance;
}

/* Utility Classes */
.bg-brand-navy { background-color: var(--brand-navy); }
.bg-brand-blue { background-color: var(--brand-blue); }
.bg-brand-orange { background-color: var(--brand-orange); }
.bg-brand-light-blue { background-color: var(--brand-light-blue); }
.bg-brand-dark { background-color: var(--brand-dark); }
.bg-background { background-color: var(--background); }
.bg-secondary { background-color: var(--secondary); }
.bg-card { background-color: var(--card); }

.text-brand-blue { color: var(--brand-blue); }
.text-brand-orange { color: var(--brand-orange); }
.text-brand-light-blue { color: var(--brand-light-blue); }
.text-foreground { color: var(--foreground); }
.text-muted-foreground { color: var(--muted-foreground); }

.border-brand-blue { border-color: var(--brand-blue); }
.border-border { border-color: var(--border); }

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--background);
}

::-webkit-scrollbar-thumb {
    background: var(--brand-blue);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--brand-orange);
}

/* Header & Navbar */
/* Header & Navbar */
.navbar-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

/* ── Top bar ── */
.topbar {
    display: none; /* hidden on mobile */
    background-color: var(--brand-navy);
    padding: 0.5rem 1.5rem;
    width: 100%;
}

.topbar-inner {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.topbar-left {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.topbar-item {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.8125rem;
    color: #cbd5e1;
}

.topbar-item svg {
    flex-shrink: 0;
    color: #94a3b8;
}

.topbar-right {
    font-size: 0.75rem;
    color: #94a3b8;
}

/* ── Main nav ── */
.main-nav {
    background-color: var(--brand-dark);
    transition: all 0.3s ease;
}

.main-nav.scrolled {
    background-color: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(12px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.nav-inner {
    max-width: 80rem;
    margin: 0 auto;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* ── Logo ── */
.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    text-decoration: none;
    flex-shrink: 0;
}

.logo-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.625rem;
    background-color: var(--brand-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-rajdhani);
    font-weight: 700;
    font-size: 1.125rem;
    color: white;
    letter-spacing: 0.02em;
    flex-shrink: 0;
}

.logo-text-wrap {
    display: flex;
    flex-direction: column;
}

.logo-name {
    font-family: var(--font-rajdhani);
    font-weight: 700;
    font-size: 1.125rem;
    color: white;
    line-height: 1.2;
    letter-spacing: 0.02em;
}

.logo-sub {
    font-size: 0.65rem;
    color: var(--brand-light-blue);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    line-height: 1.4;
}

/* ── Desktop nav links ── */
.nav-links {
    display: none; /* hidden on mobile; shown via media query */
    list-style: none;
    align-items: center;
    gap: 0.25rem;
    margin: 0;
    padding: 0;
}

.nav-link {
    color: rgb(203, 213, 225);
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.2s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    white-space: nowrap;
}

.nav-link:hover {
    color: white;
    background-color: rgba(255, 255, 255, 0.08);
}

/* ── Dropdown ── */
.dropdown-parent {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    padding-top: 0.25rem;
    width: 15rem;
    display: none;
    z-index: 100;
}

.dropdown-parent:hover .dropdown-menu {
    display: block;
}

.dropdown-menu a {
    display: block;
    padding: 0.625rem 1rem;
    font-size: 0.875rem;
    color: rgb(203, 213, 225);
    text-decoration: none;
    background-color: var(--brand-dark);
    border-left: 1px solid rgba(255,255,255,0.1);
    border-right: 1px solid rgba(255,255,255,0.1);
    transition: all 0.15s;
}

.dropdown-menu a:first-child {
    border-top: 1px solid rgba(255,255,255,0.1);
    border-radius: 0.5rem 0.5rem 0 0;
}

.dropdown-menu a:last-child {
    border-bottom: 1px solid rgba(255,255,255,0.1);
    border-radius: 0 0 0.5rem 0.5rem;
}

.dropdown-item:hover {
    color: white;
    background-color: var(--brand-blue);
}

/* ── CTA button ── */
.nav-cta {
    display: none; /* hidden on mobile */
    flex-shrink: 0;
}

.nav-cta-btn {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    border-radius: 0.5rem;
    background-color: var(--brand-orange);
    color: white;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    transition: filter 0.2s;
    white-space: nowrap;
}

.nav-cta-btn:hover {
    filter: brightness(1.1);
}

/* ── Mobile toggle ── */
.nav-mobile-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.25rem;
    color: white;
}

/* ── Mobile menu ── */
.mobile-menu {
    display: none;
    background-color: var(--brand-dark);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 0.5rem 1.5rem 1.25rem;
}

.mobile-menu.active {
    display: block;
}

.mobile-menu-link {
    display: block;
    padding: 0.75rem 0;
    color: rgb(203, 213, 225);
    text-decoration: none;
    font-size: 0.9375rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    transition: color 0.2s;
}

.mobile-menu-link:hover {
    color: white;
}

.mobile-menu-sub {
    padding-left: 1.25rem;
    font-size: 0.875rem;
    color: #94a3b8;
}

.mobile-menu-section {
    color: white;
    font-weight: 600;
    cursor: default;
}

.mobile-menu-cta {
    display: block;
    margin-top: 1rem;
    padding: 0.75rem 1.25rem;
    background-color: var(--brand-orange);
    color: white;
    font-weight: 600;
    text-align: center;
    border-radius: 0.5rem;
    text-decoration: none;
    font-size: 0.9375rem;
    transition: filter 0.2s;
}

.mobile-menu-cta:hover {
    filter: brightness(1.1);
}

/* ── Responsive breakpoints ── */
@media (min-width: 768px) {
    .topbar {
        display: flex;
    }
}

@media (min-width: 1024px) {
    .nav-links {
        display: flex;
    }
    .nav-cta {
        display: flex;
    }
    .nav-mobile-toggle {
        display: none;
    }
}


/* Hero Section */
.hero-section {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(10, 15, 30, 0.78);
    z-index: 1;
}

.hero-grid {
    position: absolute;
    inset: 0;
    z-index: 2;
    opacity: 0.08;
    background-image:
        linear-gradient(rgba(80, 140, 255, 0.5) 1px, transparent 1px),
        linear-gradient(90deg, rgba(80, 140, 255, 0.5) 1px, transparent 1px);
    background-size: 60px 60px;
}

.hero-content-wrap {
    position: relative;
    z-index: 10;
    max-width: 80rem;
    margin: 0 auto;
    padding: 9rem 1.5rem 5rem;
    width: 100%;
}

.hero-grid-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

/* ── Left content ── */
.hero-badge {
    display: inline-block;
    padding: 0.375rem 1rem;
    border-radius: 9999px;
    border: 1px solid rgba(123, 147, 219, 0.6);
    color: var(--brand-light-blue);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-family: var(--font-rajdhani);
    font-weight: 700;
    font-size: clamp(2.25rem, 5vw, 4rem);
    color: white;
    line-height: 1.1;
    margin-bottom: 0.5rem;
}

.hero-subtitle {
    font-family: var(--font-rajdhani);
    font-weight: 700;
    font-size: clamp(2.25rem, 5vw, 4rem);
    color: var(--brand-orange);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-desc {
    color: #cbd5e1;
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: 2rem;
    max-width: 30rem;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.hero-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.75rem;
    border-radius: 0.5rem;
    background-color: var(--brand-blue);
    color: white;
    font-weight: 700;
    font-size: 0.9375rem;
    text-decoration: none;
    transition: filter 0.2s;
}

.hero-btn-primary:hover {
    filter: brightness(1.15);
}

.hero-btn-secondary {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 1.75rem;
    border-radius: 0.5rem;
    border: 2px solid rgba(255, 255, 255, 0.35);
    color: white;
    font-weight: 700;
    font-size: 0.9375rem;
    text-decoration: none;
    transition: background-color 0.2s, border-color 0.2s;
}

.hero-btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.hero-trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #94a3b8;
}

.hero-trust-item svg {
    color: var(--brand-orange);
    flex-shrink: 0;
}

/* ── Right: stats cards ── */
.hero-right {
    display: none; /* hidden on mobile */
    flex-direction: column;
    gap: 1rem;
}

.hero-stat-card {
    padding: 1.5rem 1.75rem;
    border-radius: 0.875rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-stat-card--dark {
    background-color: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(8px);
}

.hero-stat-card--blue {
    background-color: var(--brand-blue);
    border-color: transparent;
}

.hero-stat-label {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 0.375rem;
}

.hero-stat-number {
    font-family: var(--font-rajdhani);
    font-weight: 700;
    font-size: 2.5rem;
    color: white;
    line-height: 1;
    margin-bottom: 0.375rem;
}

.hero-stat-desc {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
}

.hero-stat-desc--orange {
    color: var(--brand-orange);
}

/* ── Wave bottom ── */
.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10;
    line-height: 0;
}

.hero-wave svg {
    width: 100%;
    height: 60px;
    display: block;
}

.headline-rotator {
    transition: opacity 0.4s ease;
}

/* ── Responsive ── */
@media (min-width: 1024px) {
    .hero-grid-layout {
        grid-template-columns: 1fr 340px;
        gap: 4rem;
    }

    .hero-right {
        display: flex;
    }
}

@media (min-width: 1280px) {
    .hero-grid-layout {
        grid-template-columns: 1fr 380px;
    }
}

/* Brands Section */
.brands-section {
    background-color: #f1f3f7;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
    padding: 3.5rem 1.5rem;
}

.brands-inner {
    max-width: 80rem;
    margin: 0 auto;
}

.brands-heading {
    text-align: center;
    font-size: 0.75rem;
    font-weight: 700;
    color: #64748b;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 2.5rem;
}

.brands-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.brand-pill {
    padding: 0.625rem 1.625rem;
    border-radius: 9999px;
    border: 1px solid #d1d5db;
    background-color: white;
    cursor: default;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.brand-pill:hover {
    border-color: var(--brand-blue);
    box-shadow: 0 2px 8px rgba(59, 74, 153, 0.15);
}

.brand-pill span {
    font-family: var(--font-rajdhani);
    font-weight: 700;
    font-size: 0.875rem;
    letter-spacing: 0.04em;
    color: #475569;
}

/* Category Filters */
.category-filter {
    padding: 0.5rem 1.25rem;
    border-radius: 9999px;
    border: 1px solid #d1d5db;
    background-color: white;
    color: #6b7280;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}

.category-filter:hover {
    border-color: var(--brand-blue);
    color: var(--brand-blue);
}

.category-filter.active {
    background-color: var(--brand-blue);
    border-color: var(--brand-blue);
    color: white;
}

/* Products Section */
.products-section {
    background-color: var(--background);
    padding: 5rem 1.5rem;
}

.products-inner {
    max-width: 80rem;
    margin: 0 auto;
}

.products-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.products-badge {
    display: inline-block;
    padding: 0.25rem 1rem;
    border-radius: 9999px;
    border: 1px solid #bfcbf0;
    background-color: #eef1fb;
    color: var(--brand-blue);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.products-title {
    font-family: var(--font-rajdhani);
    font-weight: 700;
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    color: var(--foreground);
    margin-bottom: 0.75rem;
}

.products-subtitle {
    color: var(--muted-foreground);
    font-size: 0.9375rem;
    line-height: 1.7;
    max-width: 36rem;
    margin: 0 auto;
}

.products-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.625rem;
    margin-bottom: 2.5rem;
}

.products-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

@media (min-width: 640px) {
    .products-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
    .products-grid { grid-template-columns: repeat(3, 1fr); }
}

/* Product Card */
.pcard {
    background-color: white;
    border: 1px solid #e5e7eb;
    border-radius: 1rem;
    overflow: hidden;
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.25s, opacity 0.25s;
    opacity: 1;
}

.pcard.hidden-card {
    display: none;
    opacity: 0;
}

.pcard.fading-out {
    opacity: 0;
    transform: translateY(8px);
    pointer-events: none;
}

.pcard:hover {
    border-color: var(--brand-blue);
    box-shadow: 0 8px 30px rgba(59, 74, 153, 0.12);
    transform: translateY(-3px);
    opacity: 1;
}

.pcard-image {
    position: relative;
    height: 14rem;
    overflow: hidden;
    background-color: #f3f4f6;
}

.pcard-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.pcard:hover .pcard-image img {
    transform: scale(1.05);
}

.pcard-badge {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    padding: 0.25rem 0.625rem;
    border-radius: 9999px;
    font-size: 0.7rem;
    font-weight: 700;
    color: white;
    z-index: 2;
    letter-spacing: 0.02em;
}

.badge-orange { background-color: #ea952d; }
.badge-blue   { background-color: #3b4a99; }
.badge-green  { background-color: #10b981; }
.badge-red    { background-color: #ef4444; }
.badge-teal   { background-color: #0d9488; }

.pcard-body {
    padding: 1.125rem 1.25rem 1.25rem;
}

.pcard-category {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--brand-blue);
    margin-bottom: 0.375rem;
    text-transform: uppercase;
}

.pcard-name {
    font-family: var(--font-rajdhani);
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--foreground);
    margin-bottom: 0.25rem;
    line-height: 1.3;
}

.pcard-specs {
    font-size: 0.8rem;
    color: var(--brand-blue);
    margin-bottom: 0.625rem;
}

.pcard-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.875rem;
}

.pcard-stars {
    display: flex;
    gap: 1px;
}

.star-icon { flex-shrink: 0; }
.star-filled { fill: #f59e0b; color: #f59e0b; }
.star-empty  { fill: #d1d5db; color: #d1d5db; }

.pcard-rating-text {
    font-size: 0.78rem;
    color: #94a3b8;
}

.pcard-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
}

.pcard-price-wrap {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.pcard-price {
    font-family: var(--font-rajdhani);
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--foreground);
}

.pcard-old-price {
    font-size: 0.8rem;
    color: #94a3b8;
    text-decoration: line-through;
}

.pcard-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.5rem 0.875rem;
    border-radius: 0.5rem;
    background-color: var(--brand-blue);
    color: white;
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    transition: filter 0.2s;
    flex-shrink: 0;
}

.pcard-btn:hover {
    filter: brightness(1.15);
}

/* Browse all CTA */
.products-cta {
    text-align: center;
}

.browse-all-btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    border-radius: 9999px;
    border: 1.5px solid #d1d5db;
    color: var(--foreground);
    font-size: 0.9375rem;
    font-weight: 600;
    text-decoration: none;
    transition: border-color 0.2s, color 0.2s;
}

.browse-all-btn:hover {
    border-color: var(--brand-blue);
    color: var(--brand-blue);
}

/* Product Cards (legacy) */
.product-card {
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-4px);
}

.line-clamp-1 {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}


/* About Section */
.about-section {
    background-color: var(--background);
    padding: 5rem 1.5rem 6rem;
}

.about-inner {
    max-width: 80rem;
    margin: 0 auto;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .about-grid { grid-template-columns: 1fr 1fr; gap: 5rem; }
}

/* Image column */
.about-img-col {
    position: relative;
    padding-bottom: 4rem;
}

.about-img-wrap {
    border-radius: 1.25rem;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    aspect-ratio: 4/3;
}

.about-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Floating stats */
.about-stats-card {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    border-radius: 1rem;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    padding: 1.125rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    white-space: nowrap;
}

.about-stat {
    text-align: center;
}

.about-stat-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 0.25rem;
    color: var(--brand-blue);
}

.about-stat-value {
    font-family: var(--font-rajdhani);
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--foreground);
    line-height: 1.2;
}

.about-stat-label {
    font-size: 0.65rem;
    color: var(--muted-foreground);
    line-height: 1.3;
}

.about-stat-divider {
    width: 1px;
    height: 2.5rem;
    background-color: #e5e7eb;
    flex-shrink: 0;
}

/* Text column */
.about-badge {
    display: inline-block;
    padding: 0.25rem 1rem;
    border-radius: 9999px;
    border: 1px solid #bfcbf0;
    background-color: #eef1fb;
    color: var(--brand-blue);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.about-title {
    font-family: var(--font-rajdhani);
    font-weight: 700;
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    color: var(--foreground);
    margin-bottom: 1.25rem;
    line-height: 1.15;
}

.about-title-blue { color: var(--brand-blue); }

.about-para {
    color: var(--muted-foreground);
    font-size: 0.9375rem;
    line-height: 1.75;
    margin-bottom: 1rem;
}

.about-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.about-list-item {
    display: flex;
    align-items: flex-start;
    gap: 0.625rem;
    font-size: 0.9rem;
    color: var(--foreground);
}

.about-check {
    color: var(--brand-blue);
    flex-shrink: 0;
    margin-top: 1px;
}

.about-cta {
    display: inline-block;
    padding: 0.75rem 2rem;
    border-radius: 0.625rem;
    background-color: var(--brand-blue);
    color: white;
    font-weight: 700;
    font-size: 0.9375rem;
    text-decoration: none;
    transition: filter 0.2s;
}

.about-cta:hover { filter: brightness(1.12); }

/* Testimonials Section */
.testi-section {
    background-color: #f4f6fb;
    padding: 5rem 1.5rem;
}

.testi-inner {
    max-width: 80rem;
    margin: 0 auto;
}

.testi-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.testi-badge {
    display: inline-block;
    padding: 0.25rem 1rem;
    border-radius: 9999px;
    border: 1px solid #bfcbf0;
    background-color: #eef1fb;
    color: var(--brand-blue);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.testi-title {
    font-family: var(--font-rajdhani);
    font-weight: 700;
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    color: var(--foreground);
}

.testi-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .testi-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Testimonial card */
.testi-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 1rem;
    padding: 1.75rem;
    position: relative;
    transition: box-shadow 0.2s;
}

.testi-card:hover {
    box-shadow: 0 6px 24px rgba(0,0,0,0.08);
}

.testi-quote-icon {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    color: #dbeafe;
}

.testi-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 1rem;
}

.testi-star {
    fill: #f59e0b;
    color: #f59e0b;
}

.testi-text {
    font-size: 0.9rem;
    color: var(--muted-foreground);
    line-height: 1.75;
    font-style: italic;
    margin-bottom: 1.25rem;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-top: 1rem;
    border-top: 1px solid #f1f3f7;
}

.testi-avatar {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 9999px;
    background-color: var(--brand-blue);
    color: white;
    font-weight: 700;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.testi-author-name {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--foreground);
    line-height: 1.3;
}

.testi-author-role {
    font-size: 0.78rem;
    color: var(--muted-foreground);
}

/* Navigation */
.testi-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.testi-nav-btn {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 9999px;
    border: 1.5px solid #d1d5db;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #6b7280;
    transition: border-color 0.2s, color 0.2s;
}

.testi-nav-btn:hover {
    border-color: var(--brand-blue);
    color: var(--brand-blue);
}

.testi-dots {
    display: flex;
    gap: 0.5rem;
}

.testi-dot {
    width: 0.625rem;
    height: 0.625rem;
    border-radius: 9999px;
    background-color: #d1d5db;
    cursor: pointer;
    transition: background-color 0.2s, width 0.2s;
    border: none;
    padding: 0;
}

.testi-dot.active {
    background-color: var(--brand-blue);
    width: 1.5rem;
}

/* Services Section */
.svc-section {
    background-color: var(--brand-dark);
    padding: 5rem 1.5rem;
}

.svc-inner {
    max-width: 80rem;
    margin: 0 auto;
}

.svc-header {
    text-align: center;
    margin-bottom: 3rem;
}

.svc-badge {
    display: inline-block;
    padding: 0.25rem 1rem;
    border-radius: 9999px;
    border: 1px solid rgba(123, 147, 219, 0.45);
    color: var(--brand-light-blue);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.svc-title {
    font-family: var(--font-rajdhani);
    font-weight: 700;
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    color: white;
    margin-bottom: 0.75rem;
}

.svc-subtitle {
    color: #94a3b8;
    font-size: 0.9375rem;
    line-height: 1.75;
    max-width: 36rem;
    margin: 0 auto;
}

/* 2×3 grid */
.svc-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

@media (min-width: 640px)  { .svc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .svc-grid { grid-template-columns: repeat(3, 1fr); } }

/* Service Card */
.svc-card {
    display: block;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1rem;
    padding: 1.75rem;
    text-decoration: none;
    transition: background-color 0.2s, border-color 0.2s, transform 0.2s;
}

.svc-card:hover {
    background-color: rgba(255, 255, 255, 0.07);
    border-color: rgba(59, 74, 153, 0.5);
    transform: translateY(-3px);
}

.svc-icon-wrap {
    width: 3.25rem;
    height: 3.25rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    transition: transform 0.2s;
}

.svc-card:hover .svc-icon-wrap {
    transform: scale(1.08);
}

.svc-icon--blue   { background-color: rgba(99, 179, 237, 0.15); color: #63b3ed; }
.svc-icon--orange { background-color: rgba(234, 149, 45, 0.15);  color: #ea952d; }
.svc-icon--green  { background-color: rgba(16, 185, 129, 0.15);  color: #10b981; }
.svc-icon--purple { background-color: rgba(167, 139, 250, 0.15); color: #a78bfa; }
.svc-icon--red    { background-color: rgba(239, 68, 68, 0.15);   color: #ef4444; }
.svc-icon--amber  { background-color: rgba(245, 158, 11, 0.15);  color: #f59e0b; }

.svc-card-title {
    font-family: var(--font-rajdhani);
    font-weight: 700;
    font-size: 1.1rem;
    color: white;
    margin-bottom: 0.625rem;
}

.svc-card-desc {
    font-size: 0.875rem;
    color: #94a3b8;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.svc-learn-more {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--brand-light-blue);
    transition: letter-spacing 0.2s;
}

.svc-card:hover .svc-learn-more {
    letter-spacing: 0.02em;
}

/* CTA Banner */
.svc-cta-banner {
    margin-top: 3rem;
    background-color: var(--brand-blue);
    border-radius: 1.25rem;
    padding: 2.25rem 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .svc-cta-banner {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

.svc-cta-title {
    font-family: var(--font-rajdhani);
    font-weight: 700;
    font-size: 1.5rem;
    color: white;
    margin-bottom: 0.25rem;
}

.svc-cta-desc {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
}

.svc-cta-btns {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
}

.svc-cta-btn {
    display: inline-block;
    padding: 0.625rem 1.5rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.2s, color 0.2s;
    white-space: nowrap;
}

.svc-cta-btn--outline {
    border: 2px solid rgba(255, 255, 255, 0.7);
    color: white;
    background-color: transparent;
}

.svc-cta-btn--outline:hover {
    background-color: white;
    color: var(--brand-blue);
    border-color: white;
}

/* Contact Section */
.ctc-section {
    background-color: var(--brand-navy);
    padding: 5rem 1.5rem;
}

.ctc-inner {
    max-width: 80rem;
    margin: 0 auto;
}

.ctc-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.ctc-badge {
    display: inline-block;
    padding: 0.25rem 1rem;
    border-radius: 9999px;
    border: 1px solid rgba(123, 147, 219, 0.5);
    color: var(--brand-light-blue);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.ctc-title {
    font-family: var(--font-rajdhani);
    font-weight: 700;
    font-size: clamp(2rem, 4vw, 2.75rem);
    color: white;
    margin-bottom: 0.75rem;
    line-height: 1.15;
}

.ctc-subtitle {
    color: #94a3b8;
    font-size: 0.9375rem;
    line-height: 1.7;
    max-width: 38rem;
    margin: 0 auto;
}

.ctc-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
}

@media (min-width: 1024px) {
    .ctc-grid { grid-template-columns: 2fr 3fr; gap: 3rem; align-items: start; }
}

/* Info column */
.ctc-info-col {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.ctc-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.ctc-info-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.75rem;
    background-color: rgba(59, 74, 153, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-light-blue);
    flex-shrink: 0;
}

.ctc-info-text { flex: 1; }

.ctc-info-title {
    color: white;
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
}

.ctc-info-line {
    color: #94a3b8;
    font-size: 0.875rem;
    line-height: 1.6;
}

/* Map */
.ctc-map {
    border-radius: 1rem;
    overflow: hidden;
    height: 11rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

/* Form column */
.ctc-form-card {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 2rem;
}

.ctc-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin-bottom: 1.25rem;
}

@media (max-width: 639px) {
    .ctc-form-row { grid-template-columns: 1fr; }
}

.ctc-field {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
}

.ctc-field--full { grid-column: 1 / -1; }

.ctc-label {
    color: white;
    font-size: 0.875rem;
    font-weight: 500;
}

.ctc-input {
    width: 100%;
    padding: 0.6875rem 1rem;
    border-radius: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background-color: rgba(255, 255, 255, 0.06);
    color: white;
    font-size: 0.875rem;
    font-family: inherit;
    transition: border-color 0.2s, background-color 0.2s;
    box-sizing: border-box;
    -webkit-appearance: none;
    appearance: none;
}

.ctc-input:focus {
    outline: none;
    border-color: var(--brand-blue);
    background-color: rgba(255, 255, 255, 0.1);
}

.ctc-input::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

.ctc-input option {
    background-color: var(--brand-dark);
    color: white;
}

.ctc-textarea {
    resize: vertical;
    min-height: 9rem;
}

.ctc-submit {
    width: 100%;
    padding: 0.875rem;
    border-radius: 0.625rem;
    background-color: var(--brand-blue);
    color: white;
    font-weight: 700;
    font-size: 0.9375rem;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: filter 0.2s;
}

.ctc-submit:hover { filter: brightness(1.15); }

.ctc-success {
    text-align: center;
    padding: 3rem 1rem;
    flex-direction: column;
    align-items: center;
}

.ctc-success-title {
    font-family: var(--font-rajdhani);
    font-weight: 700;
    font-size: 1.5rem;
    color: white;
    margin-bottom: 0.5rem;
}

.ctc-success-text {
    color: #94a3b8;
    font-size: 0.9rem;
}

/* Footer */
.ftc-footer {
    background-color: var(--brand-dark);
    color: #94a3b8;
}

.ftc-inner {
    max-width: 80rem;
    margin: 0 auto;
    padding: 4rem 1.5rem 2rem;
}

.ftc-top {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .ftc-top { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
    .ftc-top { grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2rem; }
}

/* Brand column */
.ftc-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    margin-bottom: 1rem;
}

.ftc-logo-icon {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 0.5rem;
    background-color: var(--brand-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-rajdhani);
    font-weight: 700;
    font-size: 1rem;
    color: white;
    flex-shrink: 0;
}

.ftc-logo-name {
    font-family: var(--font-rajdhani);
    font-weight: 700;
    font-size: 1rem;
    color: white;
    line-height: 1.2;
}

.ftc-logo-sub {
    font-size: 0.65rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--brand-light-blue);
}

.ftc-desc {
    font-size: 0.875rem;
    line-height: 1.7;
    margin-bottom: 1.25rem;
    color: #94a3b8;
}

.ftc-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.ftc-contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #94a3b8;
}

.ftc-contact-icon {
    flex-shrink: 0;
    color: var(--brand-light-blue);
}

/* Link columns */
.ftc-col-title {
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.ftc-link-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.ftc-link {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s;
}

.ftc-link:hover { color: white; }

/* Bottom bar */
.ftc-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 1.75rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

@media (min-width: 768px) {
    .ftc-bottom { flex-direction: row; justify-content: space-between; }
}

.ftc-copy {
    font-size: 0.8125rem;
    color: #64748b;
}

.ftc-socials {
    display: flex;
    gap: 0.75rem;
}

.ftc-social-btn {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 0.5rem;
    background-color: rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    text-decoration: none;
    transition: background-color 0.2s, color 0.2s;
}

.ftc-social-btn:hover {
    background-color: var(--brand-blue);
    color: white;
}

/* Buttons */
button, .btn {
    cursor: pointer;
    transition: all 0.2s;
}

button:hover, .btn:hover {
    filter: brightness(1.1);
}

/* Responsive Utilities */
.hidden { display: none; }

@media (max-width: 1023px) {
    .lg\\:hidden { display: none !important; }
    .mobile-menu-toggle { display: block; }
}

@media (min-width: 1024px) {
    .lg\\:flex { display: flex !important; }
    .lg\\:grid { display: grid !important; }
    .lg\\:block { display: block !important; }
    .lg\\:col-span-2 { grid-column: span 2 / span 2; }
    .lg\\:col-span-3 { grid-column: span 3 / span 3; }
    .lg\\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .lg\\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .lg\\:grid-cols-5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }
}

@media (min-width: 768px) {
    .md\\:flex { display: flex !important; }
    .md\\:grid { display: grid !important; }
    .md\\:flex-row { flex-direction: row !important; }
    .md\\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .md\\:gap-10 { gap: 2.5rem; }
    .md\\:text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
    .md\\:text-5xl { font-size: 3rem; line-height: 1; }
}

@media (min-width: 640px) {
    .sm\\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* Grid System */
.grid {
    display: grid;
}

.gap-0-5 { gap: 0.125rem; }
.gap-1 { gap: 0.25rem; }
.gap-1-5 { gap: 0.375rem; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-5 { gap: 1.25rem; }
.gap-6 { gap: 1.5rem; }
.gap-10 { gap: 2.5rem; }
.gap-12 { gap: 3rem; }
.gap-16 { gap: 4rem; }

/* Flexbox */
.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.flex-shrink-0 { flex-shrink: 0; }

/* Spacing */
.space-y-2 > * + * { margin-top: 0.5rem; }
.space-y-2-5 > * + * { margin-top: 0.625rem; }
.space-y-3 > * + * { margin-top: 0.75rem; }
.space-y-5 > * + * { margin-top: 1.25rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }

/* Padding */
.p-1 { padding: 0.25rem; }
.p-3 { padding: 0.75rem; }
.p-5 { padding: 1.25rem; }
.p-7 { padding: 1.75rem; }
.p-8 { padding: 2rem; }
.p-10 { padding: 2.5rem; }

.px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-5 { padding-left: 1.25rem; padding-right: 1.25rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-7 { padding-left: 1.75rem; padding-right: 1.75rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }

.py-1 { padding-top: 0.25rem; padding-bottom: 0.25rem; }
.py-1-5 { padding-top: 0.375rem; padding-bottom: 0.375rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-2-5 { padding-top: 0.625rem; padding-bottom: 0.625rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-3-5 { padding-top: 0.875rem; padding-bottom: 0.875rem; }
.py-14 { padding-top: 3.5rem; padding-bottom: 3.5rem; }
.py-24 { padding-top: 6rem; padding-bottom: 6rem; }

.pt-3 { padding-top: 0.75rem; }
.pt-5 { padding-top: 1.25rem; }
.pt-8 { padding-top: 2rem; }
.pt-16 { padding-top: 4rem; }
.pt-40 { padding-top: 10rem; }
.pb-4 { padding-bottom: 1rem; }
.pb-8 { padding-bottom: 2rem; }
.pb-24 { padding-bottom: 6rem; }

/* Margin */
.m-0 { margin: 0; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-5 { margin-bottom: 1.25rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-7 { margin-bottom: 1.75rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-14 { margin-bottom: 3.5rem; }
.mt-0-5 { margin-top: 0.125rem; }
.mt-1 { margin-top: 0.25rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mt-5 { margin-top: 1.25rem; }
.mt-10 { margin-top: 2.5rem; }
.mt-16 { margin-top: 4rem; }

/* Width & Height */
.w-3 { width: 0.75rem; }
.w-3-5 { width: 0.875rem; }
.w-4 { width: 1rem; }
.w-4-5 { width: 1.125rem; }
.w-5 { width: 1.25rem; }
.w-7 { width: 1.75rem; }
.w-8 { width: 2rem; }
.w-9 { width: 2.25rem; }
.w-10 { width: 2.5rem; }
.w-11 { width: 2.75rem; }
.w-14 { width: 3.5rem; }
.w-16 { width: 4rem; }
.w-full { width: 100%; }

.h-3 { height: 0.75rem; }
.h-3-5 { height: 0.875rem; }
.h-4 { height: 1rem; }
.h-4-5 { height: 1.125rem; }
.h-5 { height: 1.25rem; }
.h-7 { height: 1.75rem; }
.h-8 { height: 2rem; }
.h-9 { height: 2.25rem; }
.h-10 { height: 2.5rem; }
.h-11 { height: 2.75rem; }
.h-14 { height: 3.5rem; }
.h-16 { height: 4rem; }
.h-44 { height: 11rem; }
.h-56 { height: 14rem; }
.h-96 { height: 24rem; }
.h-full { height: 100%; }

.max-w-xl { max-width: 36rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-7xl { max-width: 80rem; }

.mx-auto { margin-left: auto; margin-right: auto; }

/* Positioning */
.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.top-0 { top: 0; }
.left-0 { left: 0; }
.right-0 { right: 0; }
.top-3 { top: 0.75rem; }
.top-6 { top: 1.5rem; }
.right-3 { right: 0.75rem; }
.right-6 { right: 1.5rem; }
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.z-10 { z-index: 10; }
.z-50 { z-index: 50; }

/* Borders */
.border { border-width: 1px; }
.border-2 { border-width: 2px; }
.border-t { border-top-width: 1px; }
.border-y { border-top-width: 1px; border-bottom-width: 1px; }

.rounded { border-radius: 0.25rem; }
.rounded-md { border-radius: 0.375rem; }
.rounded-lg { border-radius: 0.5rem; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-3xl { border-radius: 1.5rem; }
.rounded-full { border-radius: 9999px; }

/* Shadows */
.shadow-sm { box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); }
.shadow { box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); }
.shadow-md { box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06); }
.shadow-lg { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); }
.shadow-xl { box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); }
.shadow-2xl { box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); }

/* Text Sizing */
.text-xs { font-size: 0.75rem; line-height: 1rem; }
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.text-base { font-size: 1rem; line-height: 1.5rem; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.text-2xl { font-size: 1.5rem; line-height: 2rem; }
.text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
.text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
.text-5xl { font-size: 3rem; line-height: 1; }
.text-6xl { font-size: 3.75rem; line-height: 1; }

/* Font Weight */
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }

/* Text Alignment */
.text-center { text-align: center; }

/* Text Transform */
.uppercase { text-transform: uppercase; }
.line-through { text-decoration: line-through; }
.italic { font-style: italic; }

/* Letter Spacing */
.tracking-wide { letter-spacing: 0.025em; }
.tracking-widest { letter-spacing: 0.1em; }

/* Line Height */
.leading-tight { line-height: 1.25; }
.leading-relaxed { line-height: 1.625; }

/* Overflow */
.overflow-hidden { overflow: hidden; }

/* Object Fit */
.object-cover { object-fit: cover; }

/* Cursor */
.cursor-pointer { cursor: pointer; }
.cursor-default { cursor: default; }

/* Transitions */
.transition-all { transition: all 0.2s; }
.transition-colors { transition: color 0.2s, background-color 0.2s, border-color 0.2s; }
.transition-transform { transition: transform 0.2s; }
.transition-shadow { transition: box-shadow 0.2s; }
.duration-300 { transition-duration: 0.3s; }

/* Transforms */
.hover-translate-y-1:hover { transform: translateY(-0.25rem); }
.hover-scale-105:hover { transform: scale(1.05); }
.hover-scale-110:hover { transform: scale(1.1); }
.hover-gap-2:hover { gap: 0.5rem; }

/* Hover Effects */
.hover-brightness-110:hover { filter: brightness(1.1); }
.hover-bg-white-10:hover { background-color: rgba(255, 255, 255, 0.1); }
.hover-bg-brand-blue:hover { background-color: var(--brand-blue); }
.hover-bg-white:hover { background-color: white; }
.hover-bg-gray-100:hover { background-color: #f3f4f6; }
.hover-text-white:hover { color: white; }
.hover-text-brand-blue:hover { color: var(--brand-blue); }
.hover-border-brand-blue:hover { border-color: var(--brand-blue); }
.hover-border-brand-blue-40:hover { border-color: rgba(59, 74, 153, 0.4); }
.hover-shadow-md:hover { box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06); }
.hover-shadow-lg:hover { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); }

/* Group Hover */
.group:hover .group-hover-scale-105 { transform: scale(1.05); }
.group:hover .group-hover-scale-110 { transform: scale(1.1); }
.group:hover .group-hover-gap-2 { gap: 0.5rem; }

/* Inline Flex */
.inline-flex { display: inline-flex; }
.inline-block { display: inline-block; }

/* Text Colors */
.text-white { color: white; }
.text-slate-300 { color: rgb(203, 213, 225); }
.text-slate-400 { color: rgb(148, 163, 184); }
.text-blue-200 { color: rgb(191, 219, 254); }
.text-emerald-400 { color: rgb(52, 211, 153); }
.text-amber-400 { color: rgb(251, 191, 36); }
.fill-amber-400 { fill: rgb(251, 191, 36); }

/* Background Overlays */
.bg-emerald-500 { background-color: rgb(16, 185, 129); }
.bg-red-500 { background-color: rgb(239, 68, 68); }
.bg-blue-500-10 { background-color: rgba(59, 130, 246, 0.1); }
.bg-orange-500-10 { background-color: rgba(249, 115, 22, 0.1); }
.bg-emerald-500-10 { background-color: rgba(16, 185, 129, 0.1); }
.bg-cyan-500-10 { background-color: rgba(6, 182, 212, 0.1); }
.bg-rose-500-10 { background-color: rgba(244, 63, 94, 0.1); }
.bg-amber-500-10 { background-color: rgba(245, 158, 11, 0.1); }
.bg-emerald-500-20 { background-color: rgba(16, 185, 129, 0.2); }
.bg-white-5 { background-color: rgba(255, 255, 255, 0.05); }
.bg-brand-blue-10 { background-color: rgba(59, 74, 153, 0.1); }
.bg-brand-blue-20 { background-color: rgba(59, 74, 153, 0.2); }
.bg-brand-blue-40 { background-color: rgba(59, 74, 153, 0.4); }
.bg-brand-dark-75 { background-color: rgba(15, 23, 42, 0.75); }
.bg-white-10 { background-color: rgba(255, 255, 255, 0.1); }

/* Text Colors for Icons */
.text-blue-500 { color: rgb(59, 130, 246); }
.text-orange-500 { color: rgb(249, 115, 22); 
.text-brand-blue-20 { color: rgba(59, 74, 153, 0.2); }}
.text-emerald-500 { color: rgb(16, 185, 129); }
.text-cyan-500 { color: rgb(6, 182, 212); }
.text-rose-500 { color: rgb(244, 63, 94); }
.text-amber-500 { color: rgb(245, 158, 11); }

/* Border Colors */
.border-white-10 { border-color: rgba(255, 255, 255, 0.1); }
.border-white-30 { border-color: rgba(255, 255, 255, 0.3); }
.border-brand-blue-40 { border-color: rgba(59, 74, 153, 0.4); }

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Additional utility classes for responsive design */
@media (max-width: 767px) {
    .pt-40 {
        padding-top: 8rem;
    }
}

/* ═══════════════════════════════════════════════════════
   Product Listing Page
   ═══════════════════════════════════════════════════════ */

/* Hero */
.prd-hero {
    background-color: var(--brand-dark);
    padding: 7rem 1.5rem 2.5rem;
    min-height: 13rem;
    display: flex;
    align-items: center;
}
.prd-hero-inner {
    max-width: 80rem;
    margin: 0 auto;
    width: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}
.prd-hero-left { flex: 1; min-width: 0; }
.prd-hero-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
    margin-bottom: 1rem;
}
.prd-hero-breadcrumb a { color: rgba(255,255,255,0.5); text-decoration: none; }
.prd-hero-breadcrumb a:hover { color: white; }
.prd-hero-breadcrumb-active { color: rgba(255,255,255,0.85); }
.prd-hero-badge {
    display: inline-block;
    padding: 0.2rem 0.75rem;
    border-radius: 9999px;
    border: 1px solid rgba(123,147,219,0.5);
    color: var(--brand-light-blue);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}
.prd-hero-title {
    font-family: var(--font-rajdhani);
    font-weight: 700;
    font-size: clamp(2rem, 4vw, 3rem);
    color: white;
    margin-bottom: 0.625rem;
    line-height: 1.1;
}
.prd-hero-desc {
    color: rgba(255,255,255,0.55);
    font-size: 0.9rem;
    max-width: 38rem;
    line-height: 1.6;
}
.prd-hero-right { flex-shrink: 0; }
.prd-hero-count {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    border-radius: 0.625rem;
    border: 1px solid rgba(59,74,153,0.5);
    background-color: rgba(59,74,153,0.2);
    color: var(--brand-light-blue);
    font-size: 0.875rem;
    font-weight: 600;
    white-space: nowrap;
}

/* Page wrap */
.prd-page-wrap {
    background-color: #f1f5f9;
    min-height: 100vh;
    padding: 2rem 1.5rem 4rem;
}
.prd-page-inner {
    max-width: 80rem;
    margin: 0 auto;
}

/* Top bar */
.prd-top-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.25rem;
}
.prd-showing {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}
.prd-showing span { font-weight: 600; color: var(--foreground); }
.prd-sort-wrap {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--muted-foreground);
}
.prd-sort-select {
    padding: 0.5rem 0.75rem;
    border-radius: 0.5rem;
    border: 1px solid #e2e8f0;
    background: white;
    font-size: 0.875rem;
    color: var(--foreground);
    cursor: pointer;
}
.prd-sort-select:focus { outline: none; border-color: var(--brand-blue); }

/* Layout */
.prd-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}
@media (min-width: 1024px) {
    .prd-layout { grid-template-columns: 17rem 1fr; align-items: start; }
}

/* Sidebar */
.prd-sidebar-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 1rem;
    padding: 1.5rem;
    position: sticky;
    top: 5.5rem;
}
.prd-sidebar-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-rajdhani);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--foreground);
    margin-bottom: 1.25rem;
    padding-bottom: 0.875rem;
    border-bottom: 1px solid #f1f5f9;
}
.prd-filter-section {
    margin-bottom: 1.375rem;
    padding-bottom: 1.375rem;
    border-bottom: 1px solid #f1f5f9;
}
.prd-filter-section:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.prd-filter-label {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--foreground);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 0.625rem;
}
.prd-filter-label-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.625rem;
}
.prd-filter-label-row .prd-filter-label { margin-bottom: 0; }
.prd-price-val { font-size: 0.8rem; font-weight: 600; color: var(--brand-blue); }
.prd-check-item, .prd-radio-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--muted-foreground);
    cursor: pointer;
    padding: 0.25rem 0;
}
.prd-check-item input, .prd-radio-item input { accent-color: var(--brand-blue); cursor: pointer; }
.prd-slider {
    width: 100%;
    accent-color: var(--brand-blue);
    cursor: pointer;
    margin-bottom: 0.375rem;
}
.prd-slider-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.72rem;
    color: var(--muted-foreground);
}

/* Product grid */
.prd-main { min-width: 0; }
.prd-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}
@media (min-width: 768px) {
    .prd-grid { grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
}

/* Product card */
.prd-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 0.875rem;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.2s, transform 0.2s;
}
.prd-card:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

/* Card image */
.prd-card-img {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: #f8fafc;
}
.prd-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s;
}
.prd-card:hover .prd-card-img img { transform: scale(1.05); }
.prd-card-badge {
    position: absolute;
    top: 0.625rem;
    left: 0.625rem;
    padding: 0.25rem 0.625rem;
    border-radius: 9999px;
    font-size: 0.7rem;
    font-weight: 700;
    color: white;
    z-index: 1;
}
.prd-badge--orange { background-color: #f97316; }
.prd-badge--blue   { background-color: var(--brand-blue); }
.prd-badge--green  { background-color: #10b981; }
.prd-badge--red    { background-color: #ef4444; }
.prd-badge--gray   { background-color: #475569; }
.prd-card-oos {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}
.prd-card-oos span {
    background: #ef4444;
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.375rem 0.875rem;
    border-radius: 9999px;
}

/* Card body */
.prd-card-body {
    padding: 0.875rem 1rem 1rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.prd-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.375rem;
}
.prd-card-brand {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--brand-blue);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.prd-card-warranty {
    font-size: 0.68rem;
    color: var(--muted-foreground);
    text-align: right;
}
.prd-card-name {
    font-family: var(--font-rajdhani);
    font-weight: 700;
    font-size: 1.0625rem;
    color: var(--foreground);
    margin-bottom: 0.375rem;
    line-height: 1.25;
}
.prd-card-specs {
    font-size: 0.75rem;
    color: var(--muted-foreground);
    line-height: 1.55;
    margin-bottom: 0.625rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
}
.prd-card-stars {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    margin-bottom: 0.75rem;
}
.prd-stars-row { display: flex; gap: 1px; }
.prd-star { width: 0.8rem; height: 0.8rem; }
.prd-star--full  { fill: #f59e0b; color: #f59e0b; }
.prd-star--half  { fill: #f59e0b; color: #f59e0b; opacity: 0.6; }
.prd-star--empty { fill: #e2e8f0; color: #e2e8f0; }
.prd-rating-val { font-size: 0.78rem; font-weight: 600; color: var(--foreground); }
.prd-review-count { font-size: 0.72rem; color: var(--muted-foreground); }
.prd-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    margin-top: auto;
}
.prd-card-price { display: flex; flex-direction: column; }
.prd-price-cur {
    font-family: var(--font-rajdhani);
    font-weight: 700;
    font-size: 1.1875rem;
    color: var(--brand-navy);
}
.prd-price-old {
    font-size: 0.72rem;
    color: var(--muted-foreground);
    text-decoration: line-through;
}
.prd-card-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    background-color: var(--brand-navy);
    color: white;
    font-size: 0.8125rem;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    transition: background-color 0.2s;
    flex-shrink: 0;
}
.prd-card-btn:hover { background-color: var(--brand-blue); }

/* Empty state */
.prd-empty {
    text-align: center;
    padding: 3rem 1rem;
    color: var(--muted-foreground);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}
/* Help CTA */
.prd-help-cta {
    background-color: var(--brand-navy);
    border-radius: 1rem;
    padding: 2rem 2.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
    margin-bottom: 2.5rem;
    text-align: center;
}
.prd-help-text { flex: 1; }
.prd-help-title {
    font-family: var(--font-rajdhani);
    font-weight: 700;
    font-size: 1.25rem;
    color: white;
    margin-bottom: 0.375rem;
}
.prd-help-desc { font-size: 0.875rem; color: #94a3b8; }
.prd-help-btn {
    display: inline-flex;
    align-items: center;
    padding: 0.7rem 1.5rem;
    border-radius: 0.625rem;
    background-color: var(--brand-orange);
    color: white;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
    transition: filter 0.2s;
}
.prd-help-btn:hover { filter: brightness(1.12); }

/* Browse Other Categories */
.prd-browse { margin-top: 0.5rem; text-align: center; }
.prd-browse-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}
.prd-browse-title {
    font-family: var(--font-rajdhani);
    font-weight: 700;
    font-size: 1.1875rem;
    color: var(--foreground);
}
.prd-browse-all {
    font-size: 0.875rem;
    color: var(--brand-blue);
    text-decoration: none;
    font-weight: 600;
}
.prd-browse-all:hover { text-decoration: underline; }
.prd-browse-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.625rem;
    justify-content: center;
}
.prd-cat-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    border: 1px solid #e2e8f0;
    background: white;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--foreground);
    text-decoration: none;
    transition: border-color 0.2s, color 0.2s, background-color 0.2s;
}
.prd-cat-pill:hover {
    border-color: var(--brand-blue);
    color: var(--brand-blue);
    background-color: #eef1fb;
}
.prd-cat-pill-count {
    display: inline-flex;
    align-items: center;
    gap: 0.2rem;
    color: var(--muted-foreground);
    font-size: 0.78rem;
}
