/* ============================================================
   BLAZER CO — Enterprise Design System
   Palette: Navy #0a2540 | Teal #00b4d8 | Text #1e293b
   Font: Inter (Google Fonts)
   ============================================================ */

/* ── Google Font loaded conditionally via JS based on cookie consent ── */

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #1e293b;
    background: #f8fafc;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: #00b4d8; text-decoration: none; transition: color .2s; }
a:hover { color: #0096b7; }
ul, ol { list-style: none; }

/* ── CSS Variables ── */
:root {
    --navy:        #0a2540;
    --navy-mid:    #0e3460;
    --navy-light:  #1a4a7a;
    --teal:        #00b4d8;
    --teal-dark:   #0096b7;
    --teal-light:  #e0f7fc;
    --accent:      #f59e0b;
    --text:        #1e293b;
    --muted:       #64748b;
    --border:      #e2e8f0;
    --light:       #f8fafc;
    --white:       #ffffff;
    --radius:      10px;
    --radius-lg:   16px;
    --shadow-sm:   0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
    --shadow-md:   0 4px 16px rgba(0,0,0,.10), 0 2px 6px rgba(0,0,0,.06);
    --shadow-lg:   0 10px 40px rgba(0,0,0,.14);
    --transition:  .25s cubic-bezier(.4,0,.2,1);
    --container:   1200px;
}

/* ══════════════════════════════════════
   LAYOUT UTILITIES
══════════════════════════════════════ */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

.section { padding: 96px 0; }
.section--sm { padding: 64px 0; }
.section--lg { padding: 120px 0; }

.section-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 12px;
}

.section-title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    color: var(--navy);
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 17px;
    color: var(--muted);
    max-width: 560px;
    line-height: 1.7;
}

.section-header { margin-bottom: 56px; }
.section-header--center { text-align: center; }
.section-header--center .section-subtitle { margin: 0 auto; }

/* Grid helpers */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 28px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: .3px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all var(--transition);
    text-decoration: none;
    white-space: nowrap;
}
.btn--primary {
    background: var(--teal);
    color: #fff;
    border-color: var(--teal);
}
.btn--primary:hover {
    background: var(--teal-dark);
    border-color: var(--teal-dark);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(0,180,216,.35);
}
.btn--outline {
    background: transparent;
    color: #fff;
    border-color: rgba(255,255,255,.5);
}
.btn--outline:hover {
    background: rgba(255,255,255,.1);
    border-color: #fff;
    color: #fff;
    transform: translateY(-1px);
}
.btn--outline-dark {
    background: transparent;
    color: var(--navy);
    border-color: var(--border);
}
.btn--outline-dark:hover {
    border-color: var(--teal);
    color: var(--teal);
}
.btn--lg { padding: 16px 36px; font-size: 15px; }

/* Tags */
.tag {
    display: inline-block;
    background: var(--teal-light);
    color: var(--teal-dark);
    font-size: 12px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
    letter-spacing: .3px;
}
.tag--navy {
    background: rgba(10,37,64,.08);
    color: var(--navy);
}

/* ══════════════════════════════════════
   NAVIGATION
══════════════════════════════════════ */
#navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
    padding: 6px 0;
}

#navbar.transparent {
    background: transparent;
}

#navbar.solid {
    background: var(--navy);
    box-shadow: 0 2px 20px rgba(0,0,0,.2);
    padding: 2px 0;
}

/* Inner pages always solid */
#navbar.always-solid {
    background: var(--navy);
    box-shadow: 0 2px 20px rgba(0,0,0,.2);
    padding: 2px 0;
    position: relative;
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.nav-logo img {
    height: 44px;
    width: auto;
    filter: brightness(0) invert(1);
}

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

.nav-logo-text .name {
    font-size: 18px;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    letter-spacing: -.3px;
}

.nav-logo-text .sub {
    font-size: 10px;
    color: rgba(255,255,255,.55);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-top: 2px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-links a {
    color: rgba(255,255,255,.8);
    font-size: 13.5px;
    font-weight: 500;
    padding: 8px 14px;
    border-radius: 6px;
    transition: all var(--transition);
    text-decoration: none;
    letter-spacing: .2px;
}

.nav-links a:hover,
.nav-links a.active {
    color: #fff;
    background: rgba(255,255,255,.1);
}

.nav-links a.active {
    color: var(--teal);
}

.nav-cta {
    background: var(--teal) !important;
    color: #fff !important;
    padding: 9px 20px !important;
    border-radius: 6px !important;
    font-weight: 600 !important;
}

.nav-cta:hover {
    background: var(--teal-dark) !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(0,180,216,.35);
}

/* Hamburger (mobile) */
.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 6px;
}
.nav-hamburger span {
    display: block;
    width: 24px; height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: var(--transition);
}

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

.hero-slides {
    position: absolute;
    inset: 0;
}

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

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

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(10,37,64,.92) 0%,
        rgba(10,37,64,.75) 50%,
        rgba(10,37,64,.55) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 700px;
    padding: 120px 0 80px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0,180,216,.15);
    border: 1px solid rgba(0,180,216,.3);
    color: var(--teal);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 7px 16px;
    border-radius: 20px;
    margin-bottom: 24px;
}

.hero-badge::before {
    content: '';
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--teal);
    animation: pulse-dot 2s infinite;
}

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

.hero-title {
    font-size: clamp(36px, 5.5vw, 64px);
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero-title span {
    color: var(--teal);
    display: block;
}

.hero-desc {
    font-size: 18px;
    color: rgba(255,255,255,.75);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 560px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-scroll {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: rgba(255,255,255,.5);
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    animation: bounce-scroll 2s infinite;
}

.hero-scroll::after {
    content: '';
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255,255,255,.4), transparent);
}

@keyframes bounce-scroll {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(6px); }
}

/* Slide dots */
.hero-dots {
    position: absolute;
    bottom: 36px;
    right: 40px;
    display: flex;
    gap: 8px;
    z-index: 10;
}

.hero-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,.3);
    cursor: pointer;
    transition: all var(--transition);
    border: none;
    padding: 0;
}

.hero-dot.active {
    background: var(--teal);
    width: 24px;
    border-radius: 4px;
}

/* ══════════════════════════════════════
   STATS BAR
══════════════════════════════════════ */
#stats-bar {
    background: var(--navy);
    padding: 0;
    position: relative;
    z-index: 5;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-left: 1px solid rgba(255,255,255,.08);
}

.stat-item {
    padding: 36px 32px;
    border-right: 1px solid rgba(255,255,255,.08);
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 100%; height: 2px;
    background: linear-gradient(to right, var(--teal), transparent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .4s ease;
}

.stat-item:hover::before { transform: scaleX(1); }

.stat-number {
    font-size: 44px;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    margin-bottom: 6px;
    letter-spacing: -1px;
}

.stat-number span {
    color: var(--teal);
}

.stat-label {
    font-size: 13px;
    color: rgba(255,255,255,.5);
    font-weight: 500;
    letter-spacing: .3px;
}

/* ══════════════════════════════════════
   SERVICES SECTION (HOME)
══════════════════════════════════════ */
#services-home {
    background: var(--light);
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    border: 1px solid var(--border);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 3px;
    background: linear-gradient(to right, var(--teal), var(--navy-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .3s ease;
}

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

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

.service-icon {
    width: 56px; height: 56px;
    background: var(--teal-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: background var(--transition);
}

.service-card:hover .service-icon {
    background: var(--teal);
}

.service-card:hover .service-icon svg {
    color: #fff;
}

.service-icon svg {
    width: 26px; height: 26px;
    color: var(--teal);
    transition: color var(--transition);
}

.service-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
    line-height: 1.3;
}

.service-card p {
    font-size: 14.5px;
    color: var(--muted);
    line-height: 1.65;
    margin-bottom: 20px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--teal);
    transition: gap var(--transition);
}

.service-link:hover { gap: 10px; color: var(--teal-dark); }

.service-link svg { width: 14px; height: 14px; }

/* ══════════════════════════════════════
   WHY CHOOSE US (HOME)
══════════════════════════════════════ */
#why-us {
    background: var(--white);
}

.why-us-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.why-us-image {
    position: relative;
}

.why-us-image img {
    border-radius: var(--radius-lg);
    width: 100%;
    object-fit: cover;
    height: 500px;
}

.why-us-image-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--navy);
    color: #fff;
    padding: 20px 24px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.why-us-image-badge .big { font-size: 40px; font-weight: 800; color: var(--teal); line-height: 1; }
.why-us-image-badge .small { font-size: 12px; color: rgba(255,255,255,.6); letter-spacing: .5px; }

.why-us-content .section-subtitle { max-width: 100%; }

.check-list {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

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

.check-icon {
    flex-shrink: 0;
    width: 24px; height: 24px;
    background: var(--teal-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
}

.check-icon svg { width: 12px; height: 12px; color: var(--teal); }

.check-item h4 {
    font-size: 15px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 2px;
}

.check-item p { font-size: 14px; color: var(--muted); margin: 0; }

/* ══════════════════════════════════════
   PARTNERS
══════════════════════════════════════ */
#partners {
    background: var(--light);
    padding: 56px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

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

.partner-badge {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 12px 24px;
    font-size: 13.5px;
    font-weight: 700;
    color: var(--muted);
    letter-spacing: .5px;
    transition: all var(--transition);
}

.partner-badge:hover {
    border-color: var(--teal);
    color: var(--navy);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

/* ══════════════════════════════════════
   CTA BANNER
══════════════════════════════════════ */
#cta-banner {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 50%, var(--navy-light) 100%);
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

#cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px; height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0,180,216,.12) 0%, transparent 70%);
    pointer-events: none;
}

.cta-inner {
    position: relative;
    text-align: center;
    z-index: 1;
}

.cta-inner h2 {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 800;
    color: #fff;
    margin-bottom: 14px;
    letter-spacing: -.5px;
}

.cta-inner p {
    font-size: 17px;
    color: rgba(255,255,255,.7);
    margin-bottom: 36px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ══════════════════════════════════════
   INDUSTRIES (HOME)
══════════════════════════════════════ */
#industries-home {
    background: var(--white);
}

.industries-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}

.industry-chip {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 10px 18px;
    background: var(--light);
    border: 1px solid var(--border);
    border-radius: 50px;
    font-size: 13.5px;
    font-weight: 500;
    color: var(--text);
    transition: all var(--transition);
}

.industry-chip svg { width: 14px; height: 14px; color: var(--teal); }

.industry-chip:hover {
    background: var(--teal-light);
    border-color: var(--teal);
    color: var(--navy);
    transform: translateY(-2px);
}

/* ══════════════════════════════════════
   PAGE HEADER (inner pages)
══════════════════════════════════════ */
.page-header {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
}

.page-header::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0h60v60H0z' fill='none'/%3E%3Ccircle cx='30' cy='30' r='1' fill='rgba(0,180,216,.08)'/%3E%3C/svg%3E") repeat;
    pointer-events: none;
}

.page-header-inner { position: relative; z-index: 1; }

.page-header h1 {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    color: #fff;
    letter-spacing: -.5px;
    margin-bottom: 10px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(255,255,255,.5);
}

.breadcrumb a {
    color: rgba(255,255,255,.7);
    transition: color var(--transition);
}

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

.breadcrumb svg { width: 12px; height: 12px; }

/* ══════════════════════════════════════
   CONTENT CARD (inner pages)
══════════════════════════════════════ */
.content-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 48px 52px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
}

/* ══════════════════════════════════════
   ABOUT PAGE
══════════════════════════════════════ */
.about-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    padding: 80px 0;
}

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

.about-image-wrap img {
    border-radius: var(--radius-lg);
    width: 100%;
    height: 460px;
    object-fit: cover;
}

.about-image-card {
    position: absolute;
    bottom: -24px;
    left: -24px;
    background: var(--teal);
    color: #fff;
    padding: 20px 26px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}

.about-image-card .big { font-size: 38px; font-weight: 800; line-height: 1; }
.about-image-card .small { font-size: 12px; opacity: .8; letter-spacing: .5px; margin-top: 4px; }

.about-text h2 {
    font-size: 36px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 16px;
    line-height: 1.2;
    letter-spacing: -.3px;
}

.about-text p {
    font-size: 15.5px;
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 16px;
}

.about-text .btn { margin-top: 16px; }

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

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

.value-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 3px;
    background: var(--teal);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .3s;
}

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

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

.value-card .icon {
    width: 44px; height: 44px;
    background: var(--teal-light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}

.value-card .icon svg { width: 22px; height: 22px; color: var(--teal); }

.value-card h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 6px;
}

.value-card p {
    font-size: 13.5px;
    color: var(--muted);
    line-height: 1.6;
}

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

.partner-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
    text-align: center;
    font-size: 13.5px;
    font-weight: 700;
    color: var(--muted);
    letter-spacing: .3px;
    transition: all var(--transition);
}

.partner-card:hover {
    border-color: var(--teal);
    color: var(--navy);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.vision-mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 16px;
}

.vm-card {
    background: var(--light);
    border-radius: var(--radius);
    padding: 32px;
    border-left: 4px solid var(--teal);
}

.vm-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 12px;
}

.vm-card p {
    font-size: 14.5px;
    color: var(--muted);
    line-height: 1.7;
}

/* ══════════════════════════════════════
   SERVICES PAGE
══════════════════════════════════════ */
.services-hero-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 64px;
}

.services-detail {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.service-detail-block {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 48px;
    align-items: start;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.service-detail-block.reverse {
    grid-template-columns: 1fr 340px;
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    min-height: 280px;
    object-fit: cover;
}

.service-detail-block.reverse .service-detail-image { order: 2; }

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

.service-detail-block.reverse .service-detail-content {
    padding: 40px 0 40px 40px;
}

.service-detail-content h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 12px;
}

.service-detail-content p {
    font-size: 14.5px;
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 20px;
}

.bullet-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.bullet-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text);
}

.bullet-list li::before {
    content: '';
    flex-shrink: 0;
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--teal);
}

/* ══════════════════════════════════════
   SOLUTIONS PAGE
══════════════════════════════════════ */
.solutions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-bottom: 64px;
}

.solution-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}

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

.solution-card-image {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.solution-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

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

.solution-card-image-placeholder {
    height: 220px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.solution-card-image-placeholder svg {
    width: 64px; height: 64px;
    color: rgba(255,255,255,.15);
}

.solution-card-body {
    padding: 28px 28px 32px;
}

.solution-card-body .tag { margin-bottom: 12px; }

.solution-card-body h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
    line-height: 1.3;
}

.solution-card-body p {
    font-size: 14.5px;
    color: var(--muted);
    line-height: 1.65;
    margin-bottom: 20px;
}

/* Full-width solution block */
.solution-feature {
    background: var(--navy);
    border-radius: var(--radius-lg);
    padding: 52px;
    margin-bottom: 32px;
    position: relative;
    overflow: hidden;
}

.solution-feature::before {
    content: '';
    position: absolute;
    top: -80px; right: -80px;
    width: 400px; height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0,180,216,.12), transparent 70%);
    pointer-events: none;
}

.solution-feature h2 {
    font-size: 26px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 14px;
}

.solution-feature p {
    font-size: 15px;
    color: rgba(255,255,255,.65);
    max-width: 600px;
    line-height: 1.7;
    margin-bottom: 24px;
}

.feature-bullets {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 28px;
}

.feature-bullet {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13.5px;
    color: rgba(255,255,255,.7);
}

.feature-bullet::before {
    content: '';
    flex-shrink: 0;
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--teal);
}

.industries-section {
    background: var(--light);
    border-radius: var(--radius-lg);
    padding: 48px;
    border: 1px solid var(--border);
}

.industries-section h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
}

.industries-section > p {
    font-size: 15px;
    color: var(--muted);
    margin-bottom: 24px;
}

.industries-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.ind-chip {
    padding: 9px 18px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 50px;
    font-size: 13.5px;
    font-weight: 500;
    color: var(--text);
    transition: all var(--transition);
}

.ind-chip:hover {
    background: var(--teal-light);
    border-color: var(--teal);
    color: var(--navy);
}

/* ══════════════════════════════════════
   PROJECTS PAGE
══════════════════════════════════════ */
.achievements-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 56px;
}

.achievement-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 28px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
    border-top: 3px solid var(--teal);
}

.achievement-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.achievement-card h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
}

.achievement-card p {
    font-size: 13.5px;
    color: var(--muted);
    line-height: 1.6;
}

.projects-table-wrap {
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.table-header {
    padding: 24px 28px;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.table-header h2 {
    font-size: 20px;
    font-weight: 700;
    color: var(--navy);
}

.projects-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13.5px;
}

.projects-table thead th {
    background: var(--navy);
    color: rgba(255,255,255,.8);
    padding: 12px 16px;
    text-align: left;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.projects-table thead th:first-child { width: 52px; }
.projects-table thead th:last-child { width: 110px; }

.projects-table tbody td {
    padding: 13px 16px;
    border-bottom: 1px solid var(--border);
    color: var(--text);
    vertical-align: top;
    line-height: 1.5;
}

.projects-table tbody tr:last-child td { border-bottom: none; }
.projects-table tbody tr:nth-child(even) td { background: var(--light); }

.projects-table tbody tr:hover td {
    background: var(--teal-light);
    color: var(--navy);
}

.projects-table .no-cell {
    font-weight: 700;
    color: var(--teal);
}

.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}

.service-tag-mini {
    padding: 2px 8px;
    background: var(--teal-light);
    color: var(--teal-dark);
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    white-space: nowrap;
}

/* ══════════════════════════════════════
   CONTACT PAGE
══════════════════════════════════════ */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 48px;
    align-items: start;
}


/* Sidebar info */
.contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-info-card {
    background: var(--navy);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    color: #fff;
}

.contact-info-card h3 {
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255,255,255,.1);
}

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

.contact-detail:last-child { margin-bottom: 0; }

.contact-detail-icon {
    width: 36px; height: 36px;
    background: rgba(0,180,216,.15);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-detail-icon svg { width: 16px; height: 16px; color: var(--teal); }

.contact-detail-label {
    font-size: 11px;
    color: rgba(255,255,255,.4);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 3px;
}

.contact-detail-value {
    font-size: 14px;
    color: rgba(255,255,255,.85);
    line-height: 1.5;
}

.contact-detail-value a {
    color: var(--teal);
}

.offices-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 28px;
    border: 1px solid var(--border);
}

.offices-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
}

.office-item {
    display: flex;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    align-items: flex-start;
}

.office-item:last-child { border-bottom: none; padding-bottom: 0; }

.office-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--teal);
    flex-shrink: 0;
    margin-top: 6px;
}

.office-city {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 2px;
}

.office-addr {
    font-size: 12.5px;
    color: var(--muted);
    line-height: 1.4;
}

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
#footer {
    background: var(--navy);
    color: rgba(255,255,255,.65);
    padding: 72px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.4fr;
    gap: 48px;
    padding-bottom: 56px;
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer-brand img {
    height: 44px;
    filter: brightness(0) invert(1);
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255,255,255,.5);
    margin-bottom: 24px;
    max-width: 280px;
}

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

.footer-social a {
    width: 36px; height: 36px;
    border-radius: 8px;
    background: rgba(255,255,255,.07);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition);
}

.footer-social a:hover { background: var(--teal); }
.footer-social a svg { width: 16px; height: 16px; color: rgba(255,255,255,.7); }
.footer-social a:hover svg { color: #fff; }

.footer-col h4 {
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}

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

.footer-col ul li a {
    font-size: 14px;
    color: rgba(255,255,255,.5);
    transition: color var(--transition);
}

.footer-col ul li a:hover {
    color: var(--teal);
}

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

.footer-contact-item svg {
    width: 15px; height: 15px;
    color: var(--teal);
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-contact-item span {
    font-size: 13.5px;
    color: rgba(255,255,255,.5);
    line-height: 1.5;
}

.footer-contact-item a {
    color: rgba(255,255,255,.5);
    transition: color var(--transition);
}

.footer-contact-item a:hover { color: var(--teal); }

.footer-bottom {
    padding: 22px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255,255,255,.35);
}

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

.footer-bottom-links a {
    font-size: 13px;
    color: rgba(255,255,255,.35);
    transition: color var(--transition);
}

.footer-bottom-links a:hover { color: var(--teal); }

/* ══════════════════════════════════════
   SCROLL REVEAL ANIMATIONS
══════════════════════════════════════ */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .55s ease, transform .55s ease;
}

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

.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 1024px) {
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .why-us-grid, .about-split { grid-template-columns: 1fr; gap: 40px; }
    .why-us-image, .about-image-wrap { display: none; }
    .contact-layout { grid-template-columns: 1fr; }
    .contact-sidebar { display: grid; grid-template-columns: 1fr 1fr; }
    .service-detail-block,
    .service-detail-block.reverse { grid-template-columns: 1fr; }
    .service-detail-image { display: none; }
    .service-detail-content,
    .service-detail-block.reverse .service-detail-content { padding: 32px; }
}

@media (max-width: 768px) {
    .grid-2, .grid-3, .solutions-grid,
    .services-hero-cards, .achievements-grid,
    .values-grid, .vision-mission-grid,
    .partners-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr; }
    .contact-sidebar { grid-template-columns: 1fr; }
    .feature-bullets { grid-template-columns: 1fr 1fr; }
    .nav-links { display: none; }
    .nav-links.open { display: flex; flex-direction: column; position: absolute; top: 70px; left: 0; right: 0; background: var(--navy); padding: 16px; gap: 4px; }
    .nav-hamburger { display: flex; }
    .hero-title { font-size: 36px; }
    .hero-desc { font-size: 16px; }
    .content-card { padding: 28px 24px; }
    .solution-feature { padding: 32px 24px; }
    .feature-bullets { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
}

/* ══════════════════════════════════════
   COOKIE BANNER
══════════════════════════════════════ */
#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: var(--navy);
    border-top: 1px solid rgba(255,255,255,.08);
    box-shadow: 0 -4px 32px rgba(0,0,0,.25);
    transform: translateY(100%);
    transition: transform .4s cubic-bezier(.4,0,.2,1);
    will-change: transform;
}

#cookie-banner.visible {
    transform: translateY(0);
}

.cookie-inner {
    display: flex;
    align-items: center;
    gap: 28px;
    padding: 20px 24px;
    flex-wrap: wrap;
}

.cookie-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: rgba(0,180,216,.12);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cookie-icon svg {
    width: 22px;
    height: 22px;
    color: var(--teal);
}

.cookie-text {
    flex: 1;
    min-width: 260px;
}

.cookie-text strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}

.cookie-text p {
    font-size: 13px;
    color: rgba(255,255,255,.55);
    margin: 0;
    line-height: 1.5;
}

.cookie-text a {
    color: var(--teal);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.cookie-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 9px 20px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all .2s;
    white-space: nowrap;
    font-family: 'Inter', sans-serif;
}

.cookie-btn--accept {
    background: var(--teal);
    color: #fff;
}

.cookie-btn--accept:hover {
    background: var(--teal-dark);
    transform: translateY(-1px);
}

.cookie-btn--decline {
    background: rgba(255,255,255,.07);
    color: rgba(255,255,255,.65);
    border: 1px solid rgba(255,255,255,.12);
}

.cookie-btn--decline:hover {
    background: rgba(255,255,255,.12);
    color: #fff;
}

.cookie-btn--details {
    background: transparent;
    color: rgba(255,255,255,.45);
    padding: 9px 12px;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.cookie-btn--details:hover {
    color: rgba(255,255,255,.75);
}

@media (max-width: 640px) {
    .cookie-inner { flex-direction: column; align-items: flex-start; gap: 16px; }
    .cookie-actions { width: 100%; }
    .cookie-btn { flex: 1; text-align: center; }
}
