/* ============================================================
   RAA INTERNATIONAL — SHARED DESIGN SYSTEM
   Single source of truth for all pages (index, about, products,
   solutions, contact). Page-specific <style> blocks have been
   removed in favor of the shared classes defined here.
   ============================================================ */

/* ==================== RESET ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}

/* ==================== ROOT VARIABLES ==================== */
:root {
    /* Brand blues */
    --primary-blue: #003D82;
    --blue-deep: #003D82;
    --secondary-blue: #0052A3;
    --blue-mid: #0052A3;
    --accent: #0066CC;
    --blue-accent: #0066CC;

    /* Brand gold */
    --gold: #C9A96E;
    --gold-light: #E6D3A3;
    --gold-dark: #9F7E4A;

    /* Neutrals */
    --light-gray: #F5F5F5;
    --off-white: #F8F9FB;
    --dark-gray: #333333;
    --text-gray: #666666;
    --text-dark: #1A1A2E;
    --text-mid: #444444;
    --text-soft: #777777;
    --white: #FFFFFF;
    --text-dim: rgba(255, 255, 255, 0.7);

    /* Header */
    --header-bg: #060A14;
    /* Fallback before JS measures the real header height; kept in sync
       with the actual rendered height via setHeaderHeightVar() in each
       page's script so hero sections reserve exactly the right space. */
    --header-h: 84px;
}

/* ==================== TYPOGRAPHY ==================== */
body {
    font-family: 'DM Sans', sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    background-color: var(--white);
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    width: 100%;
}

h1, h2, h3, h4, h5, h6 {
    font-family: Arial, Helvetica, sans-serif;
    margin-bottom: 1rem;
    color: var(--primary-blue);
}

h1 { font-size: 2.5rem; font-weight: 700; }
h2 { font-size: 2rem; font-weight: 700; margin-bottom: 1.5rem; }
h3 { font-size: 1.5rem; font-weight: 600; }
h4 { font-size: 1.25rem; font-weight: 600; }
h5 { font-size: 1rem; font-weight: 600; }

p {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: var(--dark-gray);
}

a {
    color: var(--accent);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--secondary-blue);
}

/* ==================== HEADER & NAVIGATION ====================
   Transparent/gradient overlay that blends into the hero image
   below it; becomes a solid, pinned bar once the user scrolls
   (see ".scrolled", toggled by the scroll listener in each page's
   script block). ==================== */
header {
    background: linear-gradient(to bottom, rgba(6, 10, 20, 0.65) 0%, rgba(6, 10, 20, 0.3) 60%, rgba(6, 10, 20, 0) 100%);
    box-shadow: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

header.scrolled {
    background: var(--header-bg);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.18);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 5%;
    width: 100%;
    /* Deliberately not centered with a max-width — the header floats
       over full-bleed (100vw) hero images, so the logo/nav must hug the
       true viewport edges at any screen width to stay aligned with the
       hero artwork underneath instead of drifting inward on wide monitors. */
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start;
}

.logo a {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    /* Guarantees contrast against whatever hero artwork sits behind it,
       regardless of what each page's hero image looks like at that spot,
       without needing to move or crop the hero image itself. */
    background: rgba(6, 10, 20, 0.4);
    padding: 6px 14px 6px 10px;
    border-radius: 10px;
    -webkit-backdrop-filter: blur(3px);
    backdrop-filter: blur(3px);
}

header.scrolled .logo a {
    background: transparent;
    padding: 0;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
}

.logo img {
    height: 44px;
    width: auto;
    cursor: pointer;
}

.logo span {
    color: var(--white);
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: #ffffff;
    font-weight: 500;
    transition: color 0.3s ease, border-bottom 0.3s ease;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid transparent;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--gold-light);
    border-bottom: 2px solid var(--gold);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #ffffff;
}

/* ==================== BUTTONS ==================== */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--accent) 0%, var(--primary-blue) 100%);
    color: var(--white);
    padding: 0.9rem 2.3rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 8px 20px rgba(0, 102, 204, 0.35);
    transition: box-shadow 0.3s ease, transform 0.3s ease, background 0.3s ease;
    border: none;
    cursor: pointer;
    margin: 0.5rem;
}

.cta-button::after {
    content: "\2192";
    display: inline-block;
    transition: transform 0.3s ease;
}

.cta-button:hover {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent) 100%);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(0, 102, 204, 0.45);
}

.cta-button:hover::after {
    transform: translateX(4px);
}

.cta-button-secondary {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
    box-shadow: none;
}

.cta-button-secondary:hover {
    background-color: var(--white);
    color: var(--primary-blue);
}

.highlight {
    color: var(--accent);
    font-weight: 600;
}

/* ==================== SECTION SCAFFOLDING ==================== */
section {
    padding: 3rem 5%;
    margin: 0 auto;
}

section.light-bg,
.section.alt-bg,
.con-section.alt-bg,
.prod-section.alt-bg,
.sol-section.alt-bg {
    background-color: var(--light-gray);
}

.con-section.alt-bg,
.prod-section.alt-bg,
.sol-section.alt-bg {
    background-color: var(--off-white);
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background-color: var(--accent);
    border-radius: 2px;
}

/* ── Shared "eyebrow" section header pattern
     (used across home, about, contact, products, solutions) ── */
.section-header,
.con-section-header,
.prod-section-header,
.sol-section-header {
    text-align: center;
    margin-bottom: 3.5rem;
    position: relative;
    z-index: 1;
}

.section-eyebrow {
    font-size: 0.72rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0.8rem;
}

.section-eyebrow::before,
.section-eyebrow::after {
    content: '';
    width: 20px;
    height: 1px;
    background: var(--gold);
    opacity: 0.7;
}

.section-header h2,
.con-section-header h2,
.prod-section-header h2,
.sol-section-header h2 {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    color: var(--blue-deep);
    margin-bottom: 0.8rem;
}

.section-header p,
.con-section-header p,
.prod-section-header p,
.sol-section-header p,
.section-title p {
    color: var(--text-soft);
    font-size: 1rem;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.75;
}

.section-divider {
    width: 55px;
    height: 3px;
    background: linear-gradient(90deg, var(--blue-accent), var(--gold));
    border-radius: 2px;
    margin: 1rem auto 0;
}

/* ==================== HERO CAROUSEL (Home) ==================== */
.hero-carousel {
    position: relative;
    z-index: 0;
    width: 100vw !important;
    left: 50% !important;
    right: 50% !important;
    margin-left: -50vw !important;
    margin-right: -50vw !important;
    overflow: hidden;
    background: var(--header-bg) !important;
    border: none !important;
    padding: 0 !important;
    padding-top: var(--header-h) !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    box-shadow: none !important;
    line-height: 0 !important;
    font-size: 0 !important;
}

/* Soft fade from the header's reserved space into the slide image itself,
   so the seam reads as a gradual blend rather than a hard line between a
   flat-color band and the photo. */
.hero-carousel::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: calc(var(--header-h) + 110px);
    background: linear-gradient(to bottom, var(--header-bg) 0%, var(--header-bg) 45%, rgba(6, 10, 20, 0) 100%);
    z-index: 2;
    pointer-events: none;
}

.carousel-slides {
    position: relative;
    width: 100%;
    margin: 0 !important;
    padding: 0 !important;
    background: transparent !important;
    display: block;
}

.carousel-slide {
    display: none;
    position: relative;
    width: 100%;
    height: 650px;
}

.carousel-slide.active {
    display: block;
}

.slide-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    opacity: 0.88;
}

.hero-carousel::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 140px;
    background: linear-gradient(to bottom,
        rgba(0,0,0,0) 0%,
        rgba(0,0,0,0.4) 40%,
        rgba(255,255,255,0.8) 85%,
        #ffffff 100%);
    z-index: 5;
    pointer-events: none;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
        rgba(0, 20, 60, 0.05) 0%,
        rgba(0, 40, 100, 0.04) 40%,
        rgba(0, 40, 100, 0.02) 70%,
        rgba(0, 40, 100, 0) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 3;
}

.slide-overlay--right {
    justify-content: right;
    text-align: right;
    padding-right: 3%;
}

.slide-overlay--left1,
.slide-overlay--left2 {
    justify-content: flex-start;
    text-align: left;
    padding-left: 10%;
}

.slide-content {
    color: var(--white);
    max-width: 800px;
    padding: 2rem;
    z-index: 4;
}

.slide-content h1 {
    color: var(--white);
    font-size: 2.4rem;
    font-weight: 800;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.slide-content p {
    color: rgba(255, 255, 255, 0.92);
    font-size: 1.15rem;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
    margin-bottom: 2rem;
}

.carousel-controls {
    position: absolute;
    bottom: 1.2rem;
    width: 100%;
    text-align: center;
    z-index: 10;
}

.carousel-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 0 5px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
}

.carousel-dot.active {
    background: var(--white);
    transform: scale(1.3);
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: var(--white);
    font-size: 1.5rem;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.carousel-nav:hover {
    background: rgba(255, 255, 255, 0.4);
}

.carousel-nav.prev { left: 1.5rem; }
.carousel-nav.next { right: 1.5rem; }

/* ==================== INNER-PAGE HERO
     (.about-hero / .con-hero / .prod-hero / .sol-hero) ==================== */
.about-hero,
.con-hero,
.prod-hero,
.sol-hero {
    position: relative;
    z-index: 0;
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    height: calc(520px + var(--header-h));
    padding-top: var(--header-h);
    overflow: hidden;
    background: var(--header-bg);
}

.about-hero::before,
.con-hero::before,
.prod-hero::before,
.sol-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: calc(var(--header-h) + 110px);
    background: linear-gradient(to bottom, var(--header-bg) 0%, var(--header-bg) 45%, rgba(6, 10, 20, 0) 100%);
    z-index: 1;
    pointer-events: none;
}

.about-hero-img,
.con-hero-bg,
.prod-hero-bg,
.sol-hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.6;
    display: block;
}

.prod-hero-bg,
.sol-hero-bg {
    object-position: center 30%;
}

.about-hero-overlay,
.con-hero-overlay,
.prod-hero-overlay,
.sol-hero-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    padding-left: 6%;
}

.about-hero-overlay {
    justify-content: flex-end;
    padding-left: 0;
    padding-right: 6%;
}

.con-hero-overlay {
    justify-content: center;
    text-align: center;
    padding: 0 5%;
}

.about-hero-content,
.con-hero-content,
.prod-hero-content,
.sol-hero-content {
    max-width: 620px;
    color: #fff;
    position: relative;
    z-index: 2;
}

.about-hero-content { text-align: right; }
.con-hero-content { max-width: 700px; margin: 0 auto; }

.about-hero-eyebrow,
.con-hero-eyebrow,
.prod-hero-eyebrow,
.sol-hero-eyebrow {
    font-size: 0.72rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.2rem;
    display: block;
}

.con-hero-eyebrow,
.prod-hero-eyebrow,
.sol-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.con-hero-eyebrow::before,
.con-hero-eyebrow::after {
    content: '';
    width: 30px;
    height: 1px;
    background: var(--gold);
}

.prod-hero-eyebrow::before,
.sol-hero-eyebrow::before {
    content: '';
    width: 40px;
    height: 1px;
    background: var(--gold);
}

.about-hero-content h1,
.con-hero-content h1,
.prod-hero-content h1,
.sol-hero-content h1 {
    color: #fff;
    font-size: clamp(2.2rem, 4.5vw, 3.2rem);
    font-weight: 800;
    line-height: 1.2;
    text-shadow: 0 3px 12px rgba(0, 0, 0, 0.5);
    margin-bottom: 1rem;
}

.con-hero-content h1 em,
.prod-hero-content h1 em,
.sol-hero-content h1 em {
    font-style: italic;
    color: var(--gold-light);
}

.about-hero-content p,
.con-hero-content p,
.prod-hero-content p,
.sol-hero-content p {
    color: rgba(255, 255, 255, 0.88);
    font-size: 1.1rem;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.4);
    margin-bottom: 0;
    line-height: 1.75;
}

.prod-hero-content p,
.sol-hero-content p {
    margin-bottom: 2rem;
}

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

.about-hero::after,
.con-hero::after,
.prod-hero::after,
.sol-hero::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
    background: linear-gradient(to bottom, transparent 0%, rgba(255, 255, 255, 0.9) 80%, #fff 100%);
    z-index: 5;
    pointer-events: none;
}

@media (max-width: 768px) {
    .about-hero,
    .con-hero,
    .prod-hero,
    .sol-hero {
        height: calc(420px + var(--header-h));
    }

    .about-hero-overlay {
        justify-content: center;
        padding: 0 5%;
        text-align: center;
    }

    .about-hero-content { text-align: center; }

    .prod-hero-overlay,
    .sol-hero-overlay {
        padding-left: 5%;
        justify-content: center;
        text-align: center;
    }

    .prod-hero-content,
    .sol-hero-content { text-align: center; }

    .prod-hero-eyebrow,
    .sol-hero-eyebrow,
    .hero-cta-group {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .about-hero,
    .con-hero,
    .prod-hero,
    .sol-hero {
        height: calc(380px + var(--header-h));
    }
}

/* ==================== CTA GRADIENT BANNER
     (.about-cta / .con-cta / .prod-cta / .sol-cta / .home-cta) ==================== */
.about-cta,
.con-cta,
.prod-cta,
.sol-cta,
.home-cta {
    background: linear-gradient(135deg, var(--blue-deep) 0%, var(--blue-mid) 100%);
    padding: 5rem 5%;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.con-cta::before,
.prod-cta::before,
.sol-cta::before,
.home-cta::before {
    content: "";
    position: absolute;
    top: -80px;
    right: -80px;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(201, 169, 110, 0.14) 0%, transparent 65%);
    pointer-events: none;
}

.about-cta h2,
.con-cta h2,
.prod-cta h2,
.sol-cta h2,
.home-cta h2 {
    color: #fff;
    font-size: 2.2rem;
    margin-bottom: 0.8rem;
}

.about-cta p,
.con-cta p,
.prod-cta p,
.sol-cta p,
.home-cta p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.05rem;
    margin-bottom: 2rem;
}

/* ==================== WHY-CHOOSE CARD GRID
     (shared literally by home, contact, products, solutions) ==================== */
.why-section {
    padding: 5rem 5%;
    background: #fff;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.8rem;
    max-width: 1100px;
    margin: 0 auto;
}

.why-card {
    background: var(--off-white);
    border-radius: 14px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    transition: all 0.3s ease;
    border-top: 3px solid transparent;
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-top-color: var(--blue-accent);
    background: #fff;
}

.why-icon {
    font-size: 2rem;
}

.why-card h4 {
    font-size: 1rem;
    color: var(--blue-deep);
    font-weight: 700;
    margin: 0;
}

.why-card p {
    font-size: 0.88rem;
    color: var(--text-soft);
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 768px) {
    .why-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
    .why-grid { grid-template-columns: 1fr; }
}

/* ==================== FEATURE CARDS (Home — Core Solutions) ==================== */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    max-width: 1300px;
    margin: 0 auto;
}

.feature-card {
    background: #fff;
    border-radius: 14px;
    padding: 2.2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-top: 4px solid var(--blue-deep);
    transition: all 0.3s ease;
    text-align: left;
}

.feature-card:nth-child(2) { border-top-color: var(--blue-accent); }
.feature-card:nth-child(3) { border-top-color: var(--gold); }
.feature-card:nth-child(4) { border-top-color: var(--blue-mid); }

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.14);
}

.feature-card-icon {
    width: 46px;
    height: 46px;
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-card-icon img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.feature-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.6rem;
}

.feature-card p {
    font-size: 0.94rem;
    color: var(--text-mid);
    line-height: 1.75;
    margin-bottom: 1.2rem;
}

/* ==================== STATS STRIP
     (.about-stats — reused on home) ==================== */
.about-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
    padding: 3rem 5%;
    background: var(--blue-deep);
}

.astat {
    text-align: center;
    color: #fff;
}

.astat-num {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
}

.astat-label {
    font-size: 0.82rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.4rem;
}

/* ==================== BRAND CAROUSEL ==================== */
.brands-carousel {
    position: relative;
    display: flex;
    align-items: center;
    margin-top: 2rem;
}

.brands-wrapper {
    overflow: hidden;
    width: 100%;
    padding-top: 2%;
    padding-bottom: 2%;
    background: linear-gradient(to bottom, #ffffff 0%, var(--header-bg) 25%, var(--header-bg) 75%, #ffffff 100%);
}

.brands-track {
    display: flex;
    transition: transform 0.5s ease;
}

.brands-section {
    padding: 2rem 5%;
}

.brand-card {
    min-width: 180px;
    height: 100px;
    margin: 0 10px;
    background: #ffffff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.brand-card:hover {
    transform: translateY(-5px);
}

.brand-card img {
    max-width: 120px;
    max-height: 60px;
    object-fit: contain;
}

.brand-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.6);
    color: #fff;
    border: none;
    font-size: 18px;
    padding: 10px 14px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
}

.brand-nav.prev { left: 10px; }
.brand-nav.next { right: 10px; }

.brand-nav:hover {
    background: var(--secondary-blue);
}

/* ==================== SCROLL REVEAL ANIMATION (shared) ==================== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* ================================================================
   ABOUT PAGE — unique sections
   ================================================================ */
.overview-section {
    padding: 5rem 5%;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.overview-section::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 48%;
    height: 100%;
    background: url("images/About Us.png") no-repeat center / cover;
    opacity: 0.82;
    -webkit-mask-image: linear-gradient(to left, black 60%, transparent 100%);
    mask-image: linear-gradient(to left, black 60%, transparent 100%);
}

.overview-inner {
    position: relative;
    z-index: 2;
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.overview-left .mini-line {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 1.2rem;
}

.overview-left .mini-line .line {
    width: 55px;
    height: 2px;
    background: linear-gradient(to right, var(--gold), var(--gold-light));
}

.overview-left .mini-line .label {
    font-size: 0.78rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
}

.overview-left h2 {
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 800;
    color: var(--blue-deep);
    line-height: 1.2;
    margin-bottom: 0.3rem;
}

.overview-left h2 span {
    color: var(--gold);
    font-weight: 300;
}

.overview-badge {
    display: inline-block;
    background: rgba(0, 61, 130, 0.08);
    border: 1px solid rgba(0, 61, 130, 0.2);
    color: var(--blue-deep);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.35rem 1rem;
    border-radius: 30px;
    margin-bottom: 1.8rem;
}

.overview-text {
    font-size: 1rem;
    color: #555;
    line-height: 1.85;
    margin-bottom: 1.2rem;
}

.overview-text strong {
    color: var(--blue-deep);
}

.overview-principles {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1.8rem;
}

.principle-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.principle-dot {
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    flex-shrink: 0;
}

.principle-row span {
    font-size: 0.92rem;
    color: #444;
    font-weight: 500;
}

@media (max-width: 768px) {
    .overview-inner { grid-template-columns: 1fr; }
    .overview-section::after { display: none; }
}

/* Mission & Vision */
.mv-section { padding: 5rem 5%; background: #F5F7FA; }

.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.mv-card {
    background: #fff;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mv-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.12);
}

.mv-card::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 4px;
    background: linear-gradient(90deg, var(--blue-deep), var(--blue-accent));
}

.mv-card.gold::before {
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
}

.mv-emoji { font-size: 2.6rem; margin-bottom: 1.2rem; display: block; }
.mv-card h3 { font-size: 1.5rem; color: var(--blue-deep); margin-bottom: 0.8rem; }
.mv-card p { color: #666; line-height: 1.8; }

@media (max-width: 640px) {
    .mv-grid { grid-template-columns: 1fr; }
}

/* Business Divisions */
.divisions-section { padding: 5rem 5%; background: #fff; }

.divisions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.division-card {
    background: #fff;
    border-radius: 14px;
    padding: 2.2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-left: 5px solid var(--blue-deep);
    transition: all 0.3s ease;
    position: relative;
}

.division-card:nth-child(2) { border-left-color: var(--blue-accent); }
.division-card:nth-child(3) { border-left-color: var(--gold); }

.division-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 32px rgba(0, 0, 0, 0.14);
}

.division-icon { font-size: 2.4rem; margin-bottom: 1rem; }
.division-card h3 { color: var(--blue-deep); font-size: 1.25rem; margin-bottom: 0.4rem; }

.division-subtitle {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--blue-accent);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1rem;
}

.division-card:nth-child(3) .division-subtitle { color: var(--gold); }

.division-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.75;
    margin-bottom: 1.2rem;
}

.division-list { list-style: none; padding: 0; margin: 0; }

.division-list li {
    padding: 0.35rem 0 0.35rem 1.4rem;
    position: relative;
    font-size: 0.88rem;
    color: #555;
}

.division-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--blue-accent);
    font-weight: 700;
}

.division-card:nth-child(3) .division-list li::before { color: var(--gold); }

@media (max-width: 900px) {
    .divisions-grid { grid-template-columns: 1fr; }
}

/* Who We Serve */
.serve-section { padding: 5rem 5%; background: #F5F7FA; }

.serve-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.serve-item {
    background: #fff;
    border-radius: 12px;
    padding: 1.8rem;
    border-left: 4px solid var(--blue-deep);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.serve-item:hover {
    transform: translateX(6px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.serve-item h4 { font-size: 1rem; color: var(--blue-deep); margin-bottom: 0.5rem; }
.serve-item p { font-size: 0.9rem; color: #666; line-height: 1.7; }

@media (max-width: 768px) {
    .serve-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
    .serve-grid { grid-template-columns: 1fr; }
}

/* Core Values */
.values-section { padding: 5rem 5%; background: #fff; }

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.value-card {
    background: #F5F7FA;
    border-radius: 12px;
    padding: 1.8rem 1.8rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    border-top: 3px solid transparent;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border-top-color: var(--blue-deep);
}

.value-card .v-icon { font-size: 2.2rem; margin-bottom: 0.8rem; }
.value-card h4 { font-size: 1rem; color: var(--blue-deep); margin-bottom: 0.5rem; font-weight: 700; }
.value-card p { font-size: 0.88rem; color: #666; line-height: 1.7; }

@media (max-width: 768px) {
    .values-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
    .values-grid { grid-template-columns: 1fr; }
}

/* ================================================================
   CONTACT PAGE — unique sections
   ================================================================ */
.con-section { padding: 5rem 5%; }

.con-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.con-info-card {
    background: #fff;
    border-radius: 14px;
    padding: 2.4rem 2rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-top: 4px solid var(--blue-deep);
    transition: all 0.3s ease;
}

.con-info-card:nth-child(2) { border-top-color: var(--blue-accent); }
.con-info-card:nth-child(3) { border-top-color: var(--gold); }

.con-info-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.14);
}

.con-info-icon { font-size: 2.2rem; margin-bottom: 1rem; }
.con-info-card h3 { color: var(--blue-deep); font-size: 1.15rem; margin-bottom: 0.5rem; }
.con-info-card .con-info-main { color: var(--text-dark); font-weight: 600; margin-bottom: 0.2rem; }
.con-info-card .con-info-sub { font-size: 0.88rem; color: var(--text-soft); margin-bottom: 1.4rem; }

@media (max-width: 900px) {
    .con-info-grid { grid-template-columns: 1fr; }
}

.con-form-panel {
    max-width: 850px;
    margin: 0 auto;
    background: #fff;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.con-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 1.5rem;
}

.con-form-grid .form-group.full { grid-column: 1 / -1; }

#contactForm { max-width: none; margin: 0; }

#contactForm label {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--blue-deep);
    letter-spacing: 0.02em;
}

#contactForm input[type="text"],
#contactForm input[type="email"],
#contactForm input[type="tel"],
#contactForm textarea,
#contactForm select {
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 0.85rem 1rem;
    background: var(--off-white);
    font-family: 'DM Sans', sans-serif;
}

#contactForm input[type="text"]:focus,
#contactForm input[type="email"]:focus,
#contactForm input[type="tel"]:focus,
#contactForm textarea:focus,
#contactForm select:focus {
    border-color: var(--gold);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.18);
}

#contactForm .checkbox-row {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 0.88rem;
    color: var(--text-mid);
}

#contactForm .checkbox-row input { width: auto; margin-top: 0.2rem; }

#contactForm button[type="submit"] {
    background: linear-gradient(135deg, var(--blue-deep), var(--blue-mid));
    border-radius: 30px;
    padding: 0.95rem;
    font-family: 'DM Sans', sans-serif;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    font-size: 0.85rem;
}

#contactForm button[type="submit"]:hover {
    background: linear-gradient(135deg, var(--blue-mid), var(--blue-accent));
}

#formMessage {
    max-width: 850px;
    margin: 1.5rem auto 0 !important;
    border-radius: 10px;
    font-family: 'DM Sans', sans-serif;
}

@media (max-width: 640px) {
    .con-form-grid { grid-template-columns: 1fr; }
    .con-form-panel { padding: 2rem 1.4rem; }
}

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

.faq-item {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 14px rgba(0, 0, 0, 0.06);
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.3rem 1.6rem;
    cursor: pointer;
    font-weight: 600;
    color: var(--blue-deep);
    font-size: 0.98rem;
}

.faq-question .faq-toggle {
    flex-shrink: 0;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--off-white);
    color: var(--blue-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: transform 0.3s ease, background 0.3s ease;
}

.faq-item.open .faq-question .faq-toggle {
    transform: rotate(45deg);
    background: var(--gold);
    color: #fff;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    padding: 0 1.6rem;
}

.faq-answer p {
    color: var(--text-mid);
    font-size: 0.92rem;
    line-height: 1.75;
    margin: 0 0 1.4rem;
}

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

/* ================================================================
   PRODUCTS PAGE — unique sections
   ================================================================ */
.prod-section { padding: 5rem 5%; }

.scroll-target { scroll-margin-top: 110px; }

/* Tab navigation */
.tab-nav-wrap {
    position: sticky;
    top: var(--header-h);
    z-index: 90;
    background: #fff;
    border-bottom: 1px solid #e8edf5;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.tab-nav {
    display: flex;
    justify-content: center;
    gap: 0;
    max-width: 1000px;
    margin: 0 auto;
    overflow-x: auto;
    scrollbar-width: none;
}

.tab-nav::-webkit-scrollbar { display: none; }

.tab-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 1rem 2rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-soft);
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.3s ease;
    letter-spacing: 0.02em;
    font-family: 'DM Sans', sans-serif;
}

.tab-btn:hover {
    color: var(--blue-deep);
    background: rgba(0, 61, 130, 0.03);
}

.tab-btn.active {
    color: var(--blue-deep);
    border-bottom-color: var(--blue-accent);
}

.tab-btn .tab-icon { font-size: 1.1rem; }

@media (max-width: 768px) {
    .tab-btn { padding: 0.8rem 1.2rem; font-size: 0.82rem; }
}

/* RAA Connect+ HDMI */
.hdmi-section {
    background: linear-gradient(160deg, #ffffff 0%, #f5f7fa 55%, #e9eef5 100%);
    padding: 6rem 5%;
    position: relative;
    overflow: hidden;
}

.hdmi-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url('images/HDMI1.jpeg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 42%;
    opacity: 0.08;
    z-index: 0;
    pointer-events: none;
}

.hdmi-section::after {
    content: "";
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 102, 204, 0.2) 0%, transparent 65%);
    pointer-events: none;
}

.hdmi-inner {
    position: relative;
    z-index: 2;
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.hdmi-brand-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 61, 130, 0.06);
    border: 1px solid rgba(0, 61, 130, 0.15);
    padding: 0.45rem 1.2rem;
    border-radius: 30px;
    margin-bottom: 1.5rem;
}

.hdmi-brand-badge span { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--blue-deep); }

.hdmi-brand-badge .dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--blue-deep);
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.7); }
}

.hdmi-left h2 { font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 800; color: #0f172a; line-height: 1.2; margin-bottom: 0.5rem; }
.hdmi-left h2 em { font-style: italic; color: var(--blue-deep); }
.hdmi-tagline { font-size: 1rem; color: #475569; margin-bottom: 2rem; letter-spacing: 0.04em; }
.hdmi-desc { color: #334155; font-size: 0.97rem; line-height: 1.85; margin-bottom: 2.5rem; }

.spec-pills { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-bottom: 2.5rem; }

.spec-pill {
    display: flex; align-items: center; gap: 6px;
    padding: 0.45rem 1rem; border-radius: 30px;
    font-size: 0.82rem; font-weight: 600;
    background: rgba(0, 61, 130, 0.05);
    border: 1px solid rgba(0, 61, 130, 0.12);
    color: var(--blue-deep);
    transition: 0.3s;
}

.spec-pill:hover { background: rgba(0, 61, 130, 0.10); border-color: rgba(0, 61, 130, 0.25); }
.spec-pill .sp-icon { font-size: 1rem; }

.hdmi-features { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.85rem; }
.hdmi-features li { display: flex; align-items: flex-start; gap: 12px; color: #334155; font-size: 0.93rem; line-height: 1.6; }

.hdmi-features li .fi-check {
    flex-shrink: 0; width: 22px; height: 22px; border-radius: 50%;
    background: rgba(201, 169, 110, 0.25);
    border: 1px solid rgba(201, 169, 110, 0.5);
    display: flex; align-items: center; justify-content: center;
    font-size: 0.65rem; color: var(--gold); margin-top: 2px;
}

.hdmi-features li strong { color: #0f172a; }

.hdmi-right { display: flex; flex-direction: column; gap: 1.2rem; }

.hdmi-visual-card {
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    border-radius: 18px;
    padding: 2rem;
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
}

.hdmi-visual-card h4 {
    color: var(--blue-deep);
    font-size: 0.78rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.hdmi-visual-card h4::after {
    content: '';
    display: block;
    width: 30px; height: 1px;
    background: var(--gold);
    margin-top: 6px;
    opacity: 0.5;
}

.apps-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.app-item { display: flex; align-items: center; gap: 10px; font-size: 0.88rem; color: #334155; }
.app-item .app-icon { font-size: 1.3rem; }

.spec-table { width: 100%; border-collapse: collapse; }
.spec-table tr { border-bottom: 1px solid rgba(15, 23, 42, 0.08); }
.spec-table tr:last-child { border-bottom: none; }
.spec-table td { padding: 0.65rem 0; font-size: 0.88rem; }
.spec-table td:first-child { color: #64748b; font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; width: 45%; }
.spec-table td:last-child { color: #0f172a; font-weight: 600; }

.hdmi-bg-image { position: relative; overflow: hidden; border-radius: 24px; }

.hdmi-bg-image::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url('images/HDMI1.jpeg');
    background-size: cover;
    background-position: center;
    opacity: 0.12;
    z-index: 0;
}

.hdmi-bg-image > * { position: relative; z-index: 2; }

@media (max-width: 900px) {
    .hdmi-inner { grid-template-columns: 1fr; gap: 3rem; }
}

/* IT Hardware / Software category blocks */
.hw-categories { display: flex; flex-direction: column; gap: 3rem; max-width: 1200px; margin: 0 auto; }

.hw-cat-block {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
    transition: box-shadow 0.3s;
}

.hw-cat-block:hover { box-shadow: 0 8px 36px rgba(0, 0, 0, 0.12); }

.hw-cat-header {
    background: linear-gradient(135deg, var(--blue-deep) 0%, var(--blue-mid) 100%);
    padding: 1.4rem 2rem;
    display: flex;
    align-items: center;
    gap: 14px;
}

.hw-cat-header .cat-icon { font-size: 1.6rem; }
.hw-cat-header h3 { color: #fff; font-size: 1.15rem; margin: 0; font-weight: 700; }

.hw-cat-header .cat-count {
    margin-left: auto;
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    letter-spacing: 0.05em;
}

.hw-product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1px;
    background: #e8edf5;
}

.hw-product-cell {
    background: #fff;
    padding: 1.3rem 1.5rem;
    transition: background 0.25s;
    cursor: default;
}

.hw-product-cell:hover { background: #f0f5ff; }
.hw-product-cell .pc-icon { font-size: 1.5rem; margin-bottom: 0.5rem; }
.hw-product-cell strong { display: block; font-size: 0.9rem; color: var(--blue-deep); margin-bottom: 0.25rem; font-weight: 700; }
.hw-product-cell p { font-size: 0.8rem; color: var(--text-soft); line-height: 1.5; margin: 0; }

.sw-cat-header { background: linear-gradient(135deg, #1a1a2e 0%, var(--blue-deep) 100%); }

/* Lifestyle / leather goods */
.lifestyle-section {
    padding: 6rem 5%;
    background: linear-gradient(160deg, #fdf9f3 0%, #fff 100%);
    position: relative;
    overflow: hidden;
}

.lifestyle-section::before {
    content: "";
    position: absolute;
    top: 0; right: 0;
    width: 35%; height: 100%;
    background: linear-gradient(to left, rgba(201, 169, 110, 0.06) 0%, transparent 100%);
    pointer-events: none;
}

.lifestyle-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.lifestyle-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.35s ease;
    position: relative;
}

.lifestyle-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.14);
}

.lifestyle-card-top {
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4.5rem;
    background: linear-gradient(135deg, #f5f0e8 0%, #ede4d0 100%);
    position: relative;
    overflow: hidden;
}

.lifestyle-card-top::after {
    content: "";
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 40px;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.6));
}

.lifestyle-card-body { padding: 1.6rem 1.8rem 2rem; }
.lifestyle-card h3 { font-size: 1.15rem; color: var(--blue-deep); margin-bottom: 0.5rem; }
.lifestyle-card p { font-size: 0.88rem; color: var(--text-soft); line-height: 1.7; margin-bottom: 1.2rem; }

.ls-tag {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    background: rgba(201, 169, 110, 0.12);
    color: var(--gold-dark);
    border: 1px solid rgba(201, 169, 110, 0.3);
    margin-right: 0.4rem;
    margin-bottom: 0.4rem;
}

@media (max-width: 900px) {
    .lifestyle-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
    .lifestyle-grid { grid-template-columns: 1fr; }
}

.brand-strip-section { padding: 4rem 5%; background: var(--off-white); }

/* ================================================================
   SOLUTIONS PAGE — unique sections
   ================================================================ */
.sol-section { padding: 5rem 5%; }

.sol-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.sol-card {
    background: #fff;
    border-radius: 14px;
    padding: 2.2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-top: 4px solid var(--blue-deep);
    transition: all 0.3s ease;
}

.sol-card:nth-child(2) { border-top-color: var(--blue-accent); }
.sol-card:nth-child(3) { border-top-color: var(--gold); }

.sol-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.14);
}

.sol-card-icon { font-size: 2.2rem; margin-bottom: 1rem; }
.sol-card h3 { color: var(--blue-deep); font-size: 1.2rem; margin-bottom: 0.6rem; }
.sol-card p { color: var(--text-mid); font-size: 0.94rem; line-height: 1.75; margin-bottom: 1.2rem; }

.sol-card .cap-label {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--blue-accent);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 0.8rem;
}

.sol-list { list-style: none; padding: 0; margin: 0; }
.sol-list li { padding: 0.35rem 0 0.35rem 1.5rem; position: relative; font-size: 0.88rem; color: var(--text-mid); }
.sol-list li::before { content: "✓"; position: absolute; left: 0; color: var(--blue-accent); font-weight: 700; }

@media (max-width: 900px) {
    .sol-grid { grid-template-columns: 1fr; }
}

/* Dashboard feature panel */
.dash-panel {
    position: relative;
    max-width: 1100px;
    margin: 3.5rem auto 0;
    padding: 3rem;
    background: linear-gradient(160deg, #ffffff 0%, #f5f7fa 55%, #e9eef5 100%);
    border-radius: 20px;
    overflow: hidden;
}

.dash-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url('images/dashboard.png');
    background-repeat: no-repeat;
    background-position: right -40px center;
    background-size: 32%;
    opacity: 0.08;
    z-index: 0;
    pointer-events: none;
}

.dash-panel-inner { position: relative; z-index: 2; }
.dash-panel h3 { text-align: center; color: var(--blue-deep); font-size: 1.4rem; margin-bottom: 2rem; }

.dash-feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.8rem; }

.dash-feature {
    background: rgba(255, 255, 255, 0.7);
    border-radius: 12px;
    padding: 1.4rem;
    border-left: 3px solid var(--gold);
}

.dash-feature h4 { font-size: 0.95rem; color: var(--blue-deep); margin-bottom: 0.4rem; }
.dash-feature p { font-size: 0.85rem; color: var(--text-soft); line-height: 1.65; margin: 0; }

@media (max-width: 900px) {
    .dash-feature-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
    .dash-feature-grid { grid-template-columns: 1fr; }
    .dash-panel { padding: 2rem 1.4rem; }
}

/* Process steps */
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.8rem;
    max-width: 1200px;
    margin: 0 auto;
}

.process-card {
    background: #fff;
    border-radius: 14px;
    padding: 2rem 1.8rem;
    text-align: center;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.07);
    transition: all 0.3s ease;
    position: relative;
}

.process-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.process-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px; height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--blue-deep), var(--blue-accent));
    color: #fff;
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.process-card h4 { color: var(--blue-deep); font-size: 1.02rem; margin-bottom: 0.5rem; }
.process-card p { color: var(--text-soft); font-size: 0.88rem; line-height: 1.7; margin: 0; }

/* ==================== FORM STYLES (base) ==================== */
form { max-width: 600px; margin: 0 auto; }
.form-group { margin-bottom: 1.5rem; }

label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--dark-gray);
    font-weight: 500;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea,
select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #DDD;
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

textarea { resize: vertical; min-height: 120px; }

button[type="submit"] {
    width: 100%;
    padding: 0.75rem;
    background-color: var(--accent);
    color: var(--white);
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button[type="submit"]:hover { background-color: var(--secondary-blue); }

/* ==================== FOOTER ==================== */
footer {
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 3rem 5%;
    margin-top: 3rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer-section h4 { color: var(--white); margin-bottom: 1rem; }

.footer-section p,
.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.footer-section a:hover { color: var(--white); }

.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}

/* ==================== UTILITY CLASSES ==================== */
.container { max-width: 1400px; margin: 0 auto; padding: 0 5%; }
.text-center { text-align: center; }
.text-right { text-align: right; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

/* ==================== ANIMATIONS ==================== */
@keyframes slideIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.fade-in { animation: slideIn 0.6s ease-out; }
.scroll-fade-in { animation: fadeIn 0.6s ease-out; }

/* ==================== PRINT STYLES ==================== */
@media print {
    header, footer, .no-print { display: none; }
    body { font-size: 12pt; color: black; }
}

/* ==================== RESPONSIVE DESIGN (global) ==================== */
@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.5rem; }
    h3 { font-size: 1.25rem; }

    .slide-content h1 { font-size: 1.8rem; }
    .slide-content p { font-size: 1rem; }

    .carousel-nav { width: 40px; height: 40px; font-size: 1.2rem; }
    .carousel-nav.prev { left: 0.5rem; }
    .carousel-nav.next { right: 0.5rem; }
    .carousel-controls { bottom: 1.5rem; }

    nav { padding: 1rem 3%; flex-wrap: wrap; }

    .nav-links {
        display: none;
        flex-direction: column;
        gap: 0.5rem;
        width: 100%;
        margin-top: 1rem;
    }

    .nav-links.active {
        display: flex;
        background: var(--header-bg);
        padding: 1rem;
        border-radius: 8px;
    }
    .mobile-menu-toggle { display: block; }

    .hero-carousel { min-height: 350px; }
    .carousel-slide { height: 420px; }

    section { padding: 2rem 3%; }

    .feature-grid,
    .footer-content { grid-template-columns: 1fr; }

    .cta-button { width: 100%; margin-bottom: 0.5rem; }
}

@media (max-width: 480px) {
    h1 { font-size: 1.5rem; }
    h2 { font-size: 1.25rem; }
    h3 { font-size: 1rem; }

    nav { padding: 1rem 2%; }

    .logo {
        font-size: 1.2rem;
        background-color: var(--header-bg);
        padding: 5px 8px;
        border-radius: 4px;
        align-items: center;
        justify-content: center;
    }

    .logo-text {
        font-size: 0.6rem;
        color: rgba(255,255,255,0.7);
        margin-top: 2px;
        letter-spacing: 0.5px;
    }

    .logo img {
        background-color: transparent;
        mix-blend-mode: multiply;
        height: 36px;
        width: auto;
    }

    section { padding: 1.5rem 2%; }
    .carousel-slide { height: 340px; }
    .section-title,
    .section-header { margin-bottom: 1.5rem; }
    footer { padding: 2rem 2%; }
}
