/* 
   Interlink Collaborations V6 — Full Overhaul
   Veteran-Owned | SoCal IT | Navy + Orange + Military Green accents
*/

:root {
    /* Colors */
    --primary: #0f172a;
    --secondary: #1e293b;
    --accent: #f97316;
    --accent-dark: #ea580c;
    --accent-glow: rgba(249, 115, 22, 0.15);
    --veteran-green: #166534;
    --veteran-green-light: #22c55e;
    --bg-light: #f8fafc;
    --bg-dark: #0b1120;
    --text-main: #1e293b;
    --text-light: #64748b;
    --text-white: #ffffff;
    --border: #e2e8f0;

    /* Typography */
    --font-primary: 'Plus Jakarta Sans', sans-serif;
    --container-width: 1200px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    color: var(--text-main);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s;
}

ul {
    list-style: none;
}

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

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 6rem 0;
}

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

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

/* ========================
   BUTTONS
   ======================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 1.75rem;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-primary);
}

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

.btn-primary:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.4);
}

.btn-accent {
    background: var(--accent);
    color: white;
}

.btn-accent:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.4);
}

.btn-outline-white {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

.btn-outline-dark {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--border);
}

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

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

.btn-navy:hover {
    background: var(--secondary);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(15, 23, 42, 0.4);
}

.full-width {
    width: 100%;
}

/* ========================
   TOP BAR
   ======================== */
.top-bar {
    background: var(--primary);
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.82rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

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

.top-bar a {
    color: rgba(255, 255, 255, 0.85);
}

.top-bar a:hover {
    color: var(--accent);
}

.top-bar i {
    margin-right: 0.25rem;
}

.veteran-badge {
    background: rgba(22, 101, 52, 0.3);
    color: #4ade80;
    padding: 0.15rem 0.6rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ========================
   HEADER
   ======================== */
.header {
    background: var(--primary);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.brand-text {
    font-size: 1.35rem;
    font-weight: 800;
    color: white;
    letter-spacing: 0.05em;
}

.brand-sub {
    font-weight: 400;
    opacity: 0.8;
}

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

.nav-list a {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    font-size: 0.95rem;
}

.nav-list a:hover {
    color: var(--accent);
}

.header-cta {
    font-size: 0.85rem;
    padding: 0.6rem 1.25rem;
}

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

/* ========================
   HERO
   ======================== */
.hero {
    height: 70vh;
    min-height: 500px;
    background: url('../images/hero-city-v6-hq.jpg') no-repeat center center;
    background-size: cover;
    position: relative;
    display: flex;
    align-items: center;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(15, 23, 42, 0.85) 0%,
            rgba(15, 23, 42, 0.4) 35%,
            rgba(15, 23, 42, 0.3) 65%,
            rgba(15, 23, 42, 0.9) 100%);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    color: white;
    width: 100%;
}

.hero-veteran-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(22, 101, 52, 0.35);
    color: #4ade80;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(34, 197, 94, 0.25);
}

.hero-title {
    font-size: 3.75rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: white;
    letter-spacing: -0.02em;
    line-height: 1.1;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.6);
}

.hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 650px;
    margin: 0 auto 2rem;
    font-weight: 400;
    line-height: 1.6;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

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

/* ========================
   SERVICE AREA BANNER
   ======================== */
.service-area-banner {
    background: var(--primary);
    padding: 1.5rem 0;
    border-bottom: 3px solid var(--accent);
}

.service-area-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.area-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    font-size: 0.95rem;
}

.area-item i {
    color: var(--accent);
    font-size: 1.25rem;
}

/* ========================
   SECTION HEADERS
   ======================== */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--text-light);
    font-size: 1.1rem;
}

.section-header.light h2 {
    color: white;
}

.section-header.light p {
    color: rgba(255, 255, 255, 0.7);
}

.section-label {
    font-size: 0.8rem;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

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

/* ========================
   SERVICES GRID (V6)
   ======================== */
.services-grid-v6 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.service-card-v6 {
    background: white;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.service-card-v6:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 30px -5px rgba(0, 0, 0, 0.1);
    border-color: var(--accent);
}

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

.card-icon-v6 {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin: 0 auto 1.25rem;
    color: var(--accent);
}

/* Service icon color variations */
.card-icon-v6.icon-orange {
    color: #f97316;
}

.card-icon-v6.icon-red {
    color: #ef4444;
}

.card-icon-v6.icon-blue {
    color: #3b82f6;
}

.card-icon-v6.icon-purple {
    color: #a855f7;
}

.card-icon-v6.icon-green {
    color: #22c55e;
}

.card-icon-v6.icon-yellow {
    color: #fbbf24;
}

.card-icon-v6.icon-cyan {
    color: #06b6d4;
}

.card-icon-v6.icon-pink {
    color: #ec4899;
}

.service-card-v6 h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--primary);
}

.service-card-v6 p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.5;
}

/* ========================
   ABOUT (V6)
   ======================== */
.about-section-v6 {
}

.feature-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.feature-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.15;
    color: var(--primary);
}

.feature-desc {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 1.25rem;
    max-width: 520px;
    line-height: 1.7;
}

.about-stats {
    display: flex;
    gap: 2.5rem;
    margin: 2rem 0;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.stat-box {
    display: flex;
    flex-direction: column;
}

.stat-num {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.stat-label {
    font-size: 0.82rem;
    color: var(--text-light);
    margin-top: 0.35rem;
}

.feature-visual {
    position: relative;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.15);
}

.visual-placeholder {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}

.feature-visual:hover .visual-placeholder {
    transform: scale(1.05);
}

.img-about {
    background-image: url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?q=80&w=800&auto=format&fit=crop');
}

/* ========================
   TEAM (V6)
   ======================== */
.team-grid-v6 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 700px;
    margin: 0 auto;
}

.team-card-v6 {
    text-align: center;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease;
}

.team-card-v6:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.team-img-wrapper {
    height: 300px;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    position: relative;
    overflow: hidden;
}

.team-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.4s ease;
}

.team-card-v6:hover .team-photo {
    transform: scale(1.05);
}

.team-info {
    padding: 1.5rem;
}

.team-info h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--primary);
}

.team-role {
    color: var(--accent);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.team-bio {
    color: var(--text-light);
    font-size: 0.875rem;
    line-height: 1.5;
}

/* ========================
   SMALL BUSINESS ADVANTAGE
   ======================== */
.advantage-section {
}

.advantage-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2.5rem;
}

.advantage-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.advantage-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.advantage-icon.icon-orange {
    color: #f97316;
}

.advantage-icon.icon-blue {
    color: #3b82f6;
}

.advantage-icon.icon-yellow {
    color: #fbbf24;
}

.advantage-icon.icon-green {
    color: #22c55e;
}

.advantage-text h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.advantage-text p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
}

.img-advantage {
    background-image: url('https://images.unsplash.com/photo-1556761175-b413da4baf72?q=80&w=800&auto=format&fit=crop');
    position: relative;
}

.experience-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    border-radius: 50%;
    width: 120px;
    height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 8px 24px rgba(249, 115, 22, 0.4);
    animation: pulse-badge 2s ease-in-out infinite;
}

.badge-number {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.badge-text {
    font-size: 0.7rem;
    font-weight: 600;
    text-align: center;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@keyframes pulse-badge {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 8px 24px rgba(249, 115, 22, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 12px 32px rgba(249, 115, 22, 0.6);
    }
}

/* ========================
   CERTIFICATIONS
   ======================== */
.certs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.cert-badge {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.cert-badge:hover {
    background: rgba(249, 115, 22, 0.1);
    border-color: rgba(249, 115, 22, 0.3);
    transform: translateY(-4px);
}

.cert-icon {
    width: 56px;
    height: 56px;
    background: rgba(249, 115, 22, 0.15);
    color: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 1rem;
}

.cert-badge h4 {
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.35rem;
}

.cert-badge p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.82rem;
}

/* ========================
   PRICING — WARM FUTURISM / GLASSMORPHISM
   ======================== */
.pricing-section-v6 {
    position: relative;
    overflow: hidden;
}

/* Subtle ambient glow behind cards */
.pricing-section-v6::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

.pricing-grid-v6 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    align-items: start;
    position: relative;
    z-index: 1;
}

/* --- Glass Card Base --- */
.glass-card {
    background: white;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    position: relative;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    border-radius: 20px 20px 0 0;
    transition: height 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
}

/* --- Card Color Variants --- */

/* Basic — Cool Ocean Blue */
.card-basic {
    border-color: rgba(56, 189, 248, 0.3);
}

.card-basic::before {
    background: linear-gradient(90deg, #38bdf8, #0ea5e9);
}

.card-basic:hover {
    border-color: rgba(56, 189, 248, 0.5);
    box-shadow: 0 12px 35px rgba(56, 189, 248, 0.12);
}

/* Standard — Sunset Orange (Featured) */
.card-standard {
    border-color: rgba(249, 115, 22, 0.3);
}

.card-standard::before {
    background: linear-gradient(90deg, #f97316, #fb923c);
    height: 3px;
}

.card-standard:hover {
    border-color: rgba(249, 115, 22, 0.5);
    box-shadow: 0 12px 35px rgba(249, 115, 22, 0.15);
}

.featured-glass {
    background: white;
    transform: scale(1.04);
    box-shadow: 0 8px 30px rgba(249, 115, 22, 0.1);
}

.featured-glass:hover {
    transform: scale(1.04) translateY(-8px);
}

/* Premium — Warm Gold/Sand */
.card-premium {
    border-color: rgba(234, 179, 8, 0.3);
}

.card-premium::before {
    background: linear-gradient(90deg, #eab308, #facc15);
}

.card-premium:hover {
    border-color: rgba(234, 179, 8, 0.5);
    box-shadow: 0 12px 35px rgba(234, 179, 8, 0.12);
}

/* --- Most Popular Badge --- */
.popular-badge {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, #f97316, #fb923c);
    color: white;
    padding: 0.4rem 1.5rem 0.35rem;
    border-radius: 0 0 12px 12px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    white-space: nowrap;
}

/* --- Tier Name (Outfit) --- */
.glass-tier {
    font-family: 'Outfit', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.35rem;
    letter-spacing: 0.5px;
}

.featured-glass .glass-tier {
    margin-top: 1rem;
}

/* --- Subhead --- */
.glass-subhead {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--text-light);
    font-size: 0.88rem;
    font-weight: 500;
    margin-bottom: 1.75rem;
}

/* --- Prices (Outfit) --- */
.glass-price {
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
}

.price-monthly {
    font-family: 'Outfit', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    letter-spacing: -1px;
}

.price-monthly sup {
    font-size: 1.5rem;
    font-weight: 600;
    position: relative;
    top: -12px;
    margin-right: 2px;
    color: var(--text-light);
}

.price-period {
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-light);
}

.price-setup {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.78rem;
    color: #94a3b8;
    font-weight: 500;
    letter-spacing: 0.3px;
}

/* --- Feature List (Plus Jakarta Sans) --- */
.glass-features {
    text-align: left;
    margin-bottom: 2rem;
    padding: 0 0.5rem;
}

.glass-features li {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.6rem 0;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.88rem;
    color: var(--text-main);
    border-bottom: 1px solid var(--border);
    line-height: 1.4;
}

.glass-features li:last-child {
    border-bottom: none;
}

.glass-features li i {
    font-size: 1.15rem;
    flex-shrink: 0;
}

.card-basic .glass-features li i {
    color: #38bdf8;
}

.card-standard .glass-features li i {
    color: #fb923c;
}

.card-premium .glass-features li i {
    color: #facc15;
}

/* --- CTA Buttons --- */
.glass-btn {
    display: inline-block;
    width: 100%;
    padding: 0.85rem 1.5rem;
    border-radius: 12px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-decoration: none;
}

button.glass-btn {
    background: none;
}

.btn-blue {
    background: rgba(56, 189, 248, 0.12);
    color: #38bdf8;
    border-color: rgba(56, 189, 248, 0.3);
}

.btn-blue:hover {
    background: #38bdf8;
    color: #0c1222;
    box-shadow: 0 4px 20px rgba(56, 189, 248, 0.35);
}

.btn-orange {
    background: rgba(249, 115, 22, 0.12);
    color: #f97316;
    border-color: rgba(249, 115, 22, 0.3);
}

.btn-orange:hover {
    background: #f97316;
    color: #0c1222;
    box-shadow: 0 4px 20px rgba(249, 115, 22, 0.35);
}

.btn-gold {
    background: rgba(234, 179, 8, 0.12);
    color: #facc15;
    border-color: rgba(234, 179, 8, 0.3);
}

.btn-gold:hover {
    background: #eab308;
    color: #0c1222;
    box-shadow: 0 4px 20px rgba(234, 179, 8, 0.35);
}


/* ========================
   REVIEWS (Google Placeholder)
   ======================== */
.reviews-placeholder {
    max-width: 600px;
    margin: 0 auto;
}

.google-reviews-widget {
    background: white;
    border: 2px solid var(--border);
    border-radius: 16px;
    padding: 3rem;
    text-align: center;
}

.google-logo {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.g-blue {
    color: #4285F4;
}

.g-red {
    color: #EA4335;
}

.g-yellow {
    color: #FBBC05;
}

.g-green {
    color: #34A853;
}

.reviews-text {
    color: var(--text-light);
    font-size: 1.25rem;
    margin-left: 0.5rem;
}

.stars.big {
    font-size: 2.5rem;
    color: #FBBC05;
    letter-spacing: 4px;
    margin-bottom: 1rem;
}

.reviews-cta {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

.review-link {
    color: var(--accent) !important;
    font-weight: 600;
}

.review-link:hover {
    text-decoration: underline;
}

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

.faq-item {
    border: 1px solid var(--border);
    border-radius: 10px;
    margin-bottom: 0.75rem;
    background: white;
    overflow: hidden;
    transition: border-color 0.3s;
}

.faq-item:hover {
    border-color: var(--accent);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary);
    text-align: left;
    gap: 1rem;
}

.faq-question i {
    color: var(--accent);
    font-size: 1.25rem;
    flex-shrink: 0;
    transition: transform 0.3s;
}

.faq-item.open .faq-question i {
    transform: rotate(45deg);
}

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

.faq-item.open .faq-answer {
    max-height: 300px;
    padding: 0 1.5rem 1.25rem;
}

.faq-answer p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ========================
   CONTACT
   ======================== */
.contact-section {
    color: var(--text-main);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: start;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    flex-shrink: 0;
    color: var(--accent);
}

/* Contact icon color variations */
.contact-icon.icon-orange {
    color: #f97316;
}

.contact-icon.icon-blue {
    color: #3b82f6;
}

.contact-icon.icon-green {
    color: #22c55e;
}

.contact-item h4 {
    color: var(--primary);
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.contact-item a,
.contact-item p {
    color: var(--text-light);
    font-size: 0.95rem;
}

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

/* Service Area List Styling */
.service-area-subtitle {
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.service-area-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem 1rem;
}

.service-area-list li {
    color: var(--text-light);
    font-size: 0.9rem;
    padding-left: 1.25rem;
    position: relative;
    line-height: 1.6;
}

.service-area-list li::before {
    content: "📍";
    position: absolute;
    left: 0;
    font-size: 0.85rem;
}

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

.contact-form-wrapper {
    background: rgba(56, 189, 248, 0.08);
    border: 1px solid rgba(56, 189, 248, 0.25);
    border-radius: 16px;
    padding: 2.5rem;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    background: white;
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text-main);
    font-family: var(--font-primary);
    font-size: 0.95rem;
    transition: border-color 0.3s;
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1);
}

.form-group select {
    appearance: none;
    cursor: pointer;
}

.form-group select option {
    background: white;
    color: var(--text-main);
}

/* Form Validation Styles */
.form-group input.invalid,
.form-group select.invalid,
.form-group textarea.invalid {
    border-color: #ff6b6b;
    background-color: rgba(255, 107, 107, 0.05);
}

.form-group input.valid,
.form-group select.valid,
.form-group textarea.valid {
    border-color: #51cf66;
}

.error-message {
    display: block;
    color: #ff6b6b;
    font-size: 0.8rem;
    margin-top: 0.35rem;
    min-height: 1.2rem;
    font-weight: 500;
}

/* ========================
   LINE SEPARATOR
   ======================== */
.line-separator {
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, transparent, var(--accent), transparent);
    margin: 0;
    padding: 0;
}

/* ========================
   FOOTER
   ======================== */
.footer-dark {
    background: var(--primary);
    color: white;
    padding: 5rem 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.brand-text.white {
    color: white;
}

.footer-brand p {
    color: #9ca3af;
    margin: 1rem 0;
    font-size: 0.9rem;
    line-height: 1.5;
}

.socials {
    display: flex;
    gap: 0.75rem;
}

.socials a {
    width: 36px;
    height: 36px;
    background: #1f2937;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
    transition: background 0.3s;
}

.socials a:hover {
    background: var(--accent);
}

.link-col h4 {
    color: white;
    margin-bottom: 1.25rem;
    font-size: 0.95rem;
}

.link-col ul li {
    margin-bottom: 0.65rem;
}

.link-col ul li a {
    color: #9ca3af;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.link-col ul li a:hover {
    color: white;
    padding-left: 4px;
}

.footer-contact-col h4 {
    color: white;
    margin-bottom: 1.25rem;
    font-size: 0.95rem;
}

.footer-contact-col p {
    color: #9ca3af;
    font-size: 0.875rem;
    margin-bottom: 0.65rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-contact-col a {
    color: #9ca3af;
}

.footer-contact-col a:hover {
    color: var(--accent);
}

.footer-bottom {
    border-top: 1px solid #1f2937;
    padding: 1.5rem 0;
    text-align: center;
    color: #6b7280;
    font-size: 0.82rem;
}

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

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

/* ========================
   RESPONSIVE
   ======================== */
@media (max-width: 1024px) {
    .services-grid-v6 {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

    .hero-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .top-bar-content {
        justify-content: center;
        text-align: center;
    }

    .top-bar-left,
    .top-bar-right {
        gap: 1rem;
        font-size: 0.75rem;
    }

    .nav-list,
    .header-cta {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }

    .nav-list.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--primary);
        padding: 1rem 2rem;
        gap: 0.5rem;
    }

    .hero {
        height: auto;
        min-height: 60vh;
        padding: 4rem 0;
    }

    .hero-title {
        font-size: 2.25rem;
    }

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

    .service-area-content {
        flex-direction: column;
        gap: 1rem;
    }

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

    .feature-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .feature-desc {
        margin-left: auto;
        margin-right: auto;
    }

    .feature-visual {
        height: 260px;
    }

    .about-stats {
        justify-content: center;
        flex-wrap: wrap;
    }

    .team-grid-v6 {
        grid-template-columns: 1fr;
        max-width: 350px;
    }

    .advantage-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .experience-badge {
        width: 100px;
        height: 100px;
        bottom: 15px;
        right: 15px;
    }

    .badge-number {
        font-size: 1.75rem;
    }

    .badge-text {
        font-size: 0.65rem;
    }

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

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .pricing-card.featured {
        transform: none;
    }

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

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

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

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

    .pricing-grid-v6 {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin: 0 auto;
    }

    .featured-glass {
        transform: scale(1);
    }

    .featured-glass:hover {
        transform: translateY(-8px);
    }

    .section {
        padding: 4rem 0;
    }

    .section-header {
        margin-bottom: 3rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.85rem;
    }

    .top-bar-left {
        flex-direction: column;
        gap: 0.25rem;
    }

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