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

:root {
    --coral: #FF4040;
    --teal: #069494;
    --white: #ffffff;
    --dark: #0a0e14;
    --glass-bg: rgba(255, 255, 255, 0.06);
    --glass-border: rgba(255, 255, 255, 0.10);
    --glass-shadow: 0 8px 40px rgba(0, 0, 0, 0.35);
    --transition: 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--dark);
    color: var(--white);
    overflow-x: hidden;
    line-height: 1.7;
    font-weight: 400;
}

::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--dark);
}
::-webkit-scrollbar-thumb {
    background: var(--teal);
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--coral);
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
}

.section-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--teal);
    background: rgba(6, 148, 148, 0.10);
    padding: 6px 20px;
    border-radius: 100px;
    border: 1px solid rgba(6, 148, 148, 0.18);
    margin-bottom: 14px;
}

.section-title {
    font-size: clamp(2.2rem, 4.5vw, 3.6rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.03em;
    color: var(--white);
}
.section-title .highlight-coral {
    color: var(--coral);
}
.section-title .highlight-teal {
    color: var(--teal);
}

.section-sub {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin-top: 14px;
    font-weight: 400;
    line-height: 1.8;
}

.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(16px) saturate(1.5);
    -webkit-backdrop-filter: blur(16px) saturate(1.5);
    border: 1px solid var(--glass-border);
    border-radius: 28px;
    box-shadow: var(--glass-shadow);
}

/* ============================
   PRELOADER
============================ */
#preloader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: var(--dark);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}
#preloader.hide {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
.loader-ring {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 4px solid rgba(255, 255, 255, 0.04);
    border-top-color: var(--coral);
    border-bottom-color: var(--teal);
    animation: spin 1s linear infinite;
}
@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}
.loader-text {
    margin-top: 24px;
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    background: linear-gradient(135deg, var(--coral), var(--teal));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: pulse-text 1.4s ease-in-out infinite;
}
@keyframes pulse-text {
    0%,
    100% {
        opacity: 0.6;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.04);
    }
}
.loader-sub {
    margin-top: 8px;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.2);
    letter-spacing: 6px;
    text-transform: uppercase;
}

/* ============================
   3D CANVAS
============================ */
#three-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0;
    pointer-events: none;
}

/* ============================
   HEADER
============================ */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 14px 0;
    transition: all 0.4s ease;
    background: rgba(10, 14, 20, 0.6);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
header.scrolled {
    background: rgba(10, 14, 20, 0.92);
    padding: 10px 0;
    box-shadow: 0 4px 40px rgba(0, 0, 0, 0.5);
}

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

.logo-wrap {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    color: var(--white);
}
.logo-img {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    object-fit: contain;
    background: rgba(255, 255, 255, 0.04);
    padding: 4px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}
.logo-text-group {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}
.logo-text-group .brand {
    font-weight: 800;
    font-size: 1.2rem;
    letter-spacing: -0.3px;
}
.logo-text-group .brand .teal-text {
    color: var(--teal);
}
.logo-text-group .brand .coral-text {
    color: var(--coral);
}
.logo-text-group .tagline {
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #ffffff;
    opacity: 1;
    margin-top: 1px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
    list-style: none;
}
.nav-links a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--coral);
    transition: width 0.3s;
}
.nav-links a:hover {
    color: var(--white);
}
.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    background: linear-gradient(135deg, var(--coral), #d63030);
    color: var(--white) !important;
    padding: 8px 26px;
    border-radius: 100px;
    font-weight: 600 !important;
    transition: transform 0.3s, box-shadow 0.3s !important;
    box-shadow: 0 4px 24px rgba(255, 64, 64, 0.3);
}
.nav-cta::after {
    display: none !important;
}
.nav-cta:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 36px rgba(255, 64, 64, 0.45);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
}
.hamburger span {
    display: block;
    width: 28px;
    height: 2.5px;
    background: var(--white);
    border-radius: 4px;
    transition: all 0.3s;
}
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
}
.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================
   HERO
============================ */
#hero {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 130px 0 80px;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.hero-content {
    position: relative;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(6, 148, 148, 0.10);
    border: 1px solid rgba(6, 148, 148, 0.18);
    padding: 6px 22px 6px 14px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 28px;
    backdrop-filter: blur(4px);
}
.hero-badge .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--teal);
    animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.4;
        transform: scale(1.3);
    }
}

.hero-title {
    font-size: clamp(2.8rem, 6.5vw, 5rem);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.04em;
    color: var(--white);
}
.hero-title .coral {
    color: var(--coral);
}
.hero-title .teal {
    color: var(--teal);
}

.hero-desc {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 540px;
    margin: 20px 0 32px;
    line-height: 1.8;
}
.hero-desc strong {
    color: var(--white);
    font-weight: 600;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--coral), #d63030);
    color: var(--white);
    padding: 14px 38px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 28px rgba(255, 64, 64, 0.35);
}
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 48px rgba(255, 64, 64, 0.5);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: var(--white);
    padding: 14px 38px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    cursor: pointer;
    transition: all 0.3s;
}
.btn-secondary:hover {
    border-color: var(--teal);
    background: rgba(6, 148, 148, 0.06);
    transform: translateY(-3px);
}

.hero-card {
    padding: 36px 32px;
    position: relative;
    overflow: hidden;
}
.hero-card::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -30%;
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(255, 64, 64, 0.06), transparent 70%);
    pointer-events: none;
}

.hero-stats-row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 4px;
}
.hero-stat-item {
    flex: 1;
    min-width: 80px;
}
.hero-stat-item .number {
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--white);
}
.hero-stat-item .number .coral {
    color: var(--coral);
}
.hero-stat-item .number .teal {
    color: var(--teal);
}
.hero-stat-item .label {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 2px;
}

.hero-states {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.hero-states .state-pill {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.04);
    padding: 6px 18px 6px 14px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s;
    flex-wrap: wrap;
}
.hero-states .state-pill:hover {
    background: rgba(255, 64, 64, 0.06);
    border-color: rgba(255, 64, 64, 0.15);
    transform: translateY(-2px);
}
.hero-states .state-pill .flag {
    font-size: 1rem;
}
.hero-states .state-pill .state-name {
    color: #ffffff;
    font-weight: 600;
}
.hero-states .state-pill .cities {
    font-size: 0.65rem;
    color: rgb(255 255 255 / 78%);
    margin-left: 4px;
    font-weight: 400;
}

/* ============================
   TRINITY – POWERHOUSE SHOWCASE (FULL-WIDTH, SPACIOUS)
============================ */
#trinity {
    position: relative;
    z-index: 1;
    padding: 90px 0 70px;
    background: radial-gradient(ellipse at 20% 30%, rgba(255, 64, 64, 0.03), transparent 60%),
                radial-gradient(ellipse at 80% 70%, rgba(6, 148, 148, 0.03), transparent 60%);
}

.trinity-header {
    text-align: center;
    margin-bottom: 56px;
}
.trinity-header .section-sub {
    margin-left: auto;
    margin-right: auto;
}

/* ---------- COMPANY CARD (FULL-WIDTH, STACKED) ---------- */
.trinity-company {
    margin-bottom: 40px;
    border-radius: 32px;
    background: rgba(255, 255, 255, 0.035);
    backdrop-filter: blur(20px) saturate(1.6);
    -webkit-backdrop-filter: blur(20px) saturate(1.6);
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.25);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    overflow: hidden;
    position: relative;
}

/* Accent glow line at top of each card */
.trinity-company .company-accent-line {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    opacity: 0.8;
}

.trinity-company:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 72px rgba(0, 0, 0, 0.45);
}
.trinity-company.company-it:hover {
    border-color: rgba(255, 64, 64, 0.15);
}
.trinity-company.company-fm:hover {
    border-color: rgba(6, 148, 148, 0.15);
}
.trinity-company.company-trust:hover {
    border-color: rgba(255, 255, 255, 0.1);
}

/* ---------- INNER LAYOUT (FLEX ROW) ---------- */
.company-inner {
    display: flex;
    gap: 40px;
    padding: 40px 44px;
    align-items: stretch;
    position: relative;
    z-index: 1;
}

/* ---------- LEFT: ICON + VISUAL ---------- */
.company-visual {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 8px;
    min-width: 120px;
}
.company-icon {
    font-size: 4.2rem;
    line-height: 1;
    filter: drop-shadow(0 8px 32px rgba(0, 0, 0, 0.3));
    background: rgba(255, 255, 255, 0.04);
    border-radius: 28px;
    padding: 12px 16px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: 0.3s;
}
.trinity-company:hover .company-icon {
    transform: scale(1.06);
    border-color: rgba(255, 255, 255, 0.12);
}

/* ---------- RIGHT: ALL CONTENT ---------- */
.company-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.company-head {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}
.company-head h3 {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin: 0;
}
.company-tag {
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.04);
    padding: 4px 18px;
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.company-desc {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.88);
    max-width: 800px;
    margin: 4px 0 6px;
}
.company-desc strong {
    color: #fff;
    font-weight: 600;
}

/* ---------- STATS ---------- */
.company-stats {
    display: flex;
    gap: 36px;
    flex-wrap: wrap;
    padding: 12px 0 6px;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.stat-box {
    display: flex;
    flex-direction: column;
}
.stat-number {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.2;
}
.company-it .stat-number {
    background: linear-gradient(135deg, var(--coral), #d63030);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.company-fm .stat-number {
    background: linear-gradient(135deg, var(--teal), #048080);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.company-trust .stat-number {
    background: linear-gradient(135deg, #ccc, #888);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.stat-label {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.3);
    margin-top: 2px;
}

/* ---------- INDUSTRY BADGES ---------- */
.company-industries {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 6px 0 8px;
}
.industry-badge {
    background: rgba(255, 255, 255, 0.04);
    padding: 5px 16px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: 0.3s;
    white-space: nowrap;
}
.industry-badge:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    transform: translateY(-2px);
}

/* ---------- DUAL CTAs ---------- */
.company-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 6px;
}
.btn-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13px 32px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s;
    border: none;              /* 👈 Critical: remove default button border */
    background: transparent;
    color: var(--white);
    font-family: inherit;
    min-width: 200px;
}
/* The rest of your .btn-action rules stay the same */
.btn-action.primary {
    background: linear-gradient(135deg, var(--coral), #d63030);
    color: #fff;
    box-shadow: 0 4px 24px rgba(255, 64, 64, 0.25);
}
.btn-action.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 40px rgba(255, 64, 64, 0.35);
}
.btn-action.secondary {
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.8);
}
.btn-action.secondary:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.04);
    transform: translateY(-3px);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
    .company-inner {
        padding: 32px 30px;
        gap: 28px;
    }
    .company-visual {
        min-width: 90px;
    }
    .company-icon {
        font-size: 3.4rem;
        padding: 10px 14px;
    }
    .company-head h3 {
        font-size: 1.7rem;
    }
    .company-desc {
        font-size: 0.95rem;
    }
    .stat-number {
        font-size: 1.6rem;
    }
}

@media (max-width: 768px) {
    .company-inner {
        flex-direction: column;
        padding: 28px 22px;
        gap: 16px;
        text-align: center;
    }
    .company-visual {
        min-width: unset;
        align-items: center;
        padding-top: 0;
    }
    .company-icon {
        font-size: 3rem;
        padding: 8px 14px;
    }
    .company-head {
        justify-content: center;
    }
    .company-head h3 {
        font-size: 1.5rem;
    }
    .company-desc {
        font-size: 0.9rem;
        text-align: center;
    }
    .company-stats {
        justify-content: center;
        gap: 20px;
    }
    .stat-number {
        font-size: 1.4rem;
    }
    .company-industries {
        justify-content: center;
    }
    .company-actions {
        justify-content: center;
    }
    .btn-action {
        min-width: 160px;
        padding: 11px 24px;
        font-size: 0.8rem;
        flex: 1 1 auto;
    }
    .trinity-company {
        margin-bottom: 28px;
    }
    .company-accent-line {
        height: 2px;
    }
}

@media (max-width: 480px) {
    .company-inner {
        padding: 20px 16px;
        gap: 12px;
    }
    .company-head h3 {
        font-size: 1.3rem;
    }
    .company-desc {
        font-size: 0.85rem;
        line-height: 1.6;
    }
    .company-stats {
        gap: 14px;
    }
    .stat-number {
        font-size: 1.2rem;
    }
    .stat-label {
        font-size: 0.55rem;
    }
    .company-actions {
        flex-direction: column;
        align-items: stretch;
    }
    .btn-action {
        min-width: unset;
        width: 100%;
        padding: 12px 20px;
        font-size: 0.8rem;
        justify-content: center;
    }
    .industry-badge {
        font-size: 0.65rem;
        padding: 3px 12px;
    }
    .company-tag {
        font-size: 0.55rem;
        padding: 3px 14px;
    }
}

/* ============================
   INDUSTRY ROOTS
============================ */
#industry-roots {
    position: relative;
    z-index: 1;
    padding: 80px 0 90px;
    background: radial-gradient(ellipse at 50% 30%, rgba(6, 148, 148, 0.04), transparent 60%);
}

.roots-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.roots-content .section-tag {
    color: var(--coral);
    border-color: rgba(255, 64, 64, 0.18);
    background: rgba(255, 64, 64, 0.06);
}

.roots-content p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    font-size: 1rem;
}

.roots-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 28px;
}
.roots-stat-item {
    padding: 18px 16px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    text-align: center;
}
.roots-stat-item .num {
    font-size: 2rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--coral), var(--teal));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.roots-stat-item .lbl {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 2px;
}

.roots-quote {
    margin-top: 28px;
    padding: 24px 28px;
    border-radius: 20px;
    background: rgba(255, 64, 64, 0.04);
    border-left: 4px solid var(--coral);
}
.roots-quote p {
    font-size: 1.05rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
    line-height: 1.8;
}
.roots-quote .attrib {
    font-style: normal;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--white);
    margin-top: 8px;
}

.roots-image {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 320px;
    border-radius: 28px;
    background: radial-gradient(circle at 30% 40%, rgba(6, 148, 148, 0.05), transparent 60%),
                radial-gradient(circle at 70% 60%, rgba(255, 64, 64, 0.04), transparent 50%);
    border: 1px solid rgba(255, 255, 255, 0.04);
    padding: 30px;
}
.roots-image .big-icon {
    font-size: 5rem;
    opacity: 0.5;
}

/* ============================
   LOGO SHOWCASE – FULL WIDTH
============================ */
#logo-showcase {
    position: relative;
    z-index: 1;
    padding: 70px 0 80px;
    text-align: center;
}
#logo-showcase .section-sub {
    margin-left: auto;
    margin-right: auto;
}

/* Full-width logo container */
.logo-full {
    max-width: 100%;
    margin: 40px auto 0;
    padding: 60px 40px;
    border-radius: 32px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(12px) saturate(1.4);
    -webkit-backdrop-filter: blur(12px) saturate(1.4);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

/* Subtle glow effect */
.logo-full::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 140%;
    height: 200%;
    background: radial-gradient(ellipse at 30% 40%, rgba(255, 64, 64, 0.03), transparent 60%),
                radial-gradient(ellipse at 70% 60%, rgba(6, 148, 148, 0.03), transparent 60%);
    pointer-events: none;
    animation: logoGlow 8s ease-in-out infinite alternate;
}

@keyframes logoGlow {
    0% { transform: translateX(-10%) scale(1); }
    100% { transform: translateX(10%) scale(1.1); }
}

.logo-full:hover {
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: 0 16px 64px rgba(0, 0, 0, 0.35);
    transform: translateY(-4px);
}

/* The logo image – full width, responsive */
.logo-full-img {
    width: 100%;
    max-width: 600px;
    height: auto;
    display: block;
    margin: 0 auto;
    filter: drop-shadow(0 8px 40px rgba(0, 0, 0, 0.3));
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    z-index: 1;
}

.logo-full:hover .logo-full-img {
    transform: scale(1.02);
}

/* Responsive */
@media (max-width: 768px) {
    .logo-full {
        padding: 40px 24px;
        margin-top: 30px;
        border-radius: 24px;
    }
    .logo-full-img {
        max-width: 400px;
    }
}

@media (max-width: 480px) {
    .logo-full {
        padding: 30px 16px;
        border-radius: 20px;
    }
    .logo-full-img {
        max-width: 280px;
    }
}

/* ============================
   DIFFERENCE SECTION
============================ */
#difference {
    position: relative;
    z-index: 1;
    padding: 80px 0 90px;
    background: radial-gradient(ellipse at 60% 40%, rgba(255, 64, 64, 0.02), transparent 60%);
}

.diff-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.diff-left .section-tag {
    color: var(--teal);
}

.diff-left p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    font-size: 1rem;
}

.diff-features {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    margin-top: 28px;
}
.diff-feature {
    padding: 24px 18px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    text-align: center;
    transition: all 0.4s;
}
.diff-feature:hover {
    background: rgba(255, 255, 255, 0.04);
    transform: translateY(-6px);
    border-color: rgba(255, 255, 255, 0.08);
}
.diff-feature .icon {
    font-size: 2rem;
    margin-bottom: 10px;
}
.diff-feature h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
}
.diff-feature p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 6px;
    line-height: 1.7;
}

.diff-right {
    padding: 36px 32px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
}
.diff-right h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--white);
}
.diff-right h3 .highlight-coral {
    color: var(--coral);
}
.diff-right p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.8;
}
.diff-right .stats-inline {
    display: flex;
    gap: 30px;
    margin-top: 20px;
    flex-wrap: wrap;
}
.diff-right .stats-inline div {
    text-align: center;
}
.diff-right .stats-inline .num {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--coral);
}
.diff-right .stats-inline .lbl {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.3);
}

/* ============================
   DIRECTORS SECTION
============================ */
#directors {
    position: relative;
    z-index: 1;
    padding: 80px 0 90px;
    background: radial-gradient(ellipse at 40% 60%, rgba(6, 148, 148, 0.03), transparent 60%);
}

.directors-header {
    text-align: center;
    margin-bottom: 56px;
}
.directors-header .section-sub {
    margin-left: auto;
    margin-right: auto;
}

.directors-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.director-card {
    padding: 38px 26px 32px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    border-radius: 28px;
    cursor: default;
}
.director-card:hover {
    transform: translateY(-12px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 24px 72px rgba(0, 0, 0, 0.5);
}
.director-card .avatar {
    font-size: 3.5rem;
    margin-bottom: 12px;
    display: block;
}
.director-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
}
.director-card .designation {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--teal);
    margin-bottom: 12px;
}
.director-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.8;
}
.director-card .badge-vert {
    display: inline-block;
    margin-top: 14px;
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 4px 18px;
    border-radius: 100px;
    background: rgba(255, 64, 64, 0.08);
    color: var(--coral);
    border: 1px solid rgba(255, 64, 64, 0.10);
}
.director-card:nth-child(2) .badge-vert {
    background: rgba(6, 148, 148, 0.08);
    color: var(--teal);
    border-color: rgba(6, 148, 148, 0.10);
}
.director-card:nth-child(3) .badge-vert {
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.5);
    border-color: rgba(255, 255, 255, 0.06);
}

/* ============================
   OPERATIONS
============================ */
#operations {
    position: relative;
    z-index: 1;
    padding: 80px 0 90px;
}

.ops-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.ops-map {
    position: relative;
    min-height: 300px;
    border-radius: 28px;
    overflow: hidden;
    background: radial-gradient(circle at 30% 40%, rgba(6, 148, 148, 0.04), transparent 60%),
                radial-gradient(circle at 70% 60%, rgba(255, 64, 64, 0.03), transparent 50%);
    border: 1px solid rgba(255, 255, 255, 0.04);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.ops-cities {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
}
.city-pin {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 16px 20px;
    min-width: 90px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.04);
    transition: all 0.4s;
    cursor: default;
}
.city-pin:hover {
    background: rgba(255, 64, 64, 0.05);
    border-color: rgba(255, 64, 64, 0.12);
    transform: translateY(-6px) scale(1.02);
}
.city-pin .pin-icon {
    font-size: 1.6rem;
    filter: drop-shadow(0 4px 12px rgba(255, 64, 64, 0.15));
}
.city-pin .city-name {
    font-weight: 600;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.9);
}
.city-pin .city-state {
    font-size: 0.6rem;
    color: rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ops-info .section-sub {
    max-width: 100%;
    color: rgba(255, 255, 255, 0.8);
}

.ops-location-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-top: 24px;
}
.ops-location-item {
    padding: 16px 18px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    transition: all 0.3s;
}
.ops-location-item:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}
.ops-location-item h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 2px;
}
.ops-location-item p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
    line-height: 1.5;
}

/* ============================
   STATS BAR
============================ */
#stats {
    position: relative;
    z-index: 1;
    padding: 50px 0 70px;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
}
.stat-item {
    padding: 28px 16px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    transition: all 0.4s;
}
.stat-item:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.08);
    transform: translateY(-4px);
}
.stat-item .num {
    font-size: 2.8rem;
    font-weight: 900;
    letter-spacing: -0.03em;
    background: linear-gradient(135deg, var(--coral), var(--teal));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.stat-item .stat-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 500;
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============================
   CONTACT
============================ */
#contact {
    position: relative;
    z-index: 1;
    padding: 80px 0 60px;
    background: radial-gradient(ellipse at 40% 50%, rgba(6, 148, 148, 0.03), transparent 60%);
}
.contact-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}
.contact-info h2 {
    margin-bottom: 12px;
}
.contact-info p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 24px;
    line-height: 1.8;
    font-size: 1rem;
}
.contact-details {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.contact-details .item {
    display: flex;
    align-items: center;
    gap: 14px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}
.contact-details .item i {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: var(--teal);
    font-size: 1rem;
}
.contact-details .item a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}
.contact-details .item a:hover {
    color: var(--coral);
}

/* ============================
   SOCIAL ICONS – ALWAYS IN BRAND COLORS
============================ */
.social-brand {
    display: flex;
    gap: 16px;
    margin-top: 20px;
}

.social-brand a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    font-size: 1.3rem;
    text-decoration: none;
    transition: all 0.35s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
}

/* ----- DEFAULT: TINTED BACKGROUND + BRAND COLOR ICON ----- */
.social-brand a.whatsapp {
    background: rgba(37, 211, 102, 0.10);
    border: 1.5px solid rgba(37, 211, 102, 0.20);
    color: #25D366;
}
.social-brand a.instagram {
    background: rgba(228, 64, 95, 0.10);
    border: 1.5px solid rgba(228, 64, 95, 0.20);
    color: #E4405F;
}
.social-brand a.linkedin {
    background: rgba(10, 102, 194, 0.10);
    border: 1.5px solid rgba(10, 102, 194, 0.20);
    color: #0A66C2;
}

/* ----- HOVER: SOLID BACKGROUND + WHITE ICON + GLOW ----- */
.social-brand a:hover {
    transform: translateY(-4px) scale(1.06);
}

.social-brand a.whatsapp:hover {
    background: #25D366;
    color: #ffffff;
    border-color: #25D366;
    box-shadow: 0 6px 28px rgba(37, 211, 102, 0.35);
}
.social-brand a.instagram:hover {
    background: #E4405F;
    color: #ffffff;
    border-color: #E4405F;
    box-shadow: 0 6px 28px rgba(228, 64, 95, 0.35);
}
.social-brand a.linkedin:hover {
    background: #0A66C2;
    color: #ffffff;
    border-color: #0A66C2;
    box-shadow: 0 6px 28px rgba(10, 102, 194, 0.35);
}

.contact-form {
    padding: 36px 32px;
    border-radius: 28px;
}
.contact-form h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--white);
}
.contact-form .form-group {
    margin-bottom: 16px;
}
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px 18px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: var(--white);
    font-size: 0.95rem;
    font-family: inherit;
    transition: border 0.3s;
    outline: none;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.3);
}
.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--teal);
    background: rgba(255, 255, 255, 0.06);
}
.contact-form textarea {
    min-height: 120px;
    resize: vertical;
}
.contact-form .btn-primary {
    width: 100%;
    justify-content: center;
    padding: 16px;
    font-size: 1rem;
}

/* ============================
   FOOTER
============================ */
footer {
    position: relative;
    z-index: 1;
    padding: 60px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    background: rgba(10, 14, 20, 0.7);
    backdrop-filter: blur(8px);
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}
.footer-brand p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    max-width: 300px;
    margin-top: 12px;
    line-height: 1.8;
}
.footer-brand .logo-wrap {
    margin-bottom: 4px;
}
.footer-col h4 {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 16px;
}
.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.footer-col ul a {
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s;
}
.footer-col ul a:hover {
    color: var(--coral);
}
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.2);
}

/* ============================
   FOOTER SOCIAL ICONS – ALWAYS IN BRAND COLORS
============================ */
.footer-social-brand {
    display: flex;
    gap: 12px;
    margin-top: 12px;
}

.footer-social-brand a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.35s cubic-bezier(0.23, 1, 0.32, 1);
}

/* ----- DEFAULT: TINTED BACKGROUND + BRAND COLOR ICON ----- */
.footer-social-brand a.whatsapp {
    background: rgba(37, 211, 102, 0.08);
    border: 1.5px solid rgba(37, 211, 102, 0.15);
    color: #25D366;
}
.footer-social-brand a.instagram {
    background: rgba(228, 64, 95, 0.08);
    border: 1.5px solid rgba(228, 64, 95, 0.15);
    color: #E4405F;
}
.footer-social-brand a.linkedin {
    background: rgba(10, 102, 194, 0.08);
    border: 1.5px solid rgba(10, 102, 194, 0.15);
    color: #0A66C2;
}

/* ----- HOVER: SOLID BACKGROUND + WHITE ICON + GLOW ----- */
.footer-social-brand a:hover {
    transform: translateY(-3px) scale(1.06);
}

.footer-social-brand a.whatsapp:hover {
    background: #25D366;
    color: #ffffff;
    border-color: #25D366;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.30);
}
.footer-social-brand a.instagram:hover {
    background: #E4405F;
    color: #ffffff;
    border-color: #E4405F;
    box-shadow: 0 4px 20px rgba(228, 64, 95, 0.30);
}
.footer-social-brand a.linkedin:hover {
    background: #0A66C2;
    color: #ffffff;
    border-color: #0A66C2;
    box-shadow: 0 4px 20px rgba(10, 102, 194, 0.30);
}

/* ============================
   WHATSAPP FLOATING BUTTON
============================ */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 999;
    background: #25D366;
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 28px rgba(37, 211, 102, 0.4);
    text-decoration: none;
    transition: all 0.3s;
    animation: pulse-wa 2.5s infinite;
}
.whatsapp-float:hover {
    transform: scale(1.1) translateY(-4px);
    box-shadow: 0 8px 44px rgba(37, 211, 102, 0.55);
}
@keyframes pulse-wa {
    0%,
    100% {
        box-shadow: 0 4px 28px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 48px rgba(37, 211, 102, 0.7);
    }
}

/* ============================
   SCROLL ANIMATIONS
============================ */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.9s cubic-bezier(0.23, 1, 0.32, 1);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.9s cubic-bezier(0.23, 1, 0.32, 1);
}
.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.9s cubic-bezier(0.23, 1, 0.32, 1);
}
.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.92);
    transition: all 0.9s cubic-bezier(0.23, 1, 0.32, 1);
}
.reveal-scale.visible {
    opacity: 1;
    transform: scale(1);
}

.stagger-children>* {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.7s cubic-bezier(0.23, 1, 0.32, 1);
}
.stagger-children.visible>*:nth-child(1) {
    transition-delay: 0.04s;
}
.stagger-children.visible>*:nth-child(2) {
    transition-delay: 0.12s;
}
.stagger-children.visible>*:nth-child(3) {
    transition-delay: 0.20s;
}
.stagger-children.visible>*:nth-child(4) {
    transition-delay: 0.28s;
}
.stagger-children.visible>*:nth-child(5) {
    transition-delay: 0.36s;
}
.stagger-children.visible>*:nth-child(6) {
    transition-delay: 0.44s;
}
.stagger-children.visible>* {
    opacity: 1;
    transform: translateY(0);
}

.stagger-text>* {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}
.stagger-text.visible>*:nth-child(1) {
    transition-delay: 0.03s;
}
.stagger-text.visible>*:nth-child(2) {
    transition-delay: 0.10s;
}
.stagger-text.visible>*:nth-child(3) {
    transition-delay: 0.17s;
}
.stagger-text.visible>*:nth-child(4) {
    transition-delay: 0.24s;
}
.stagger-text.visible>*:nth-child(5) {
    transition-delay: 0.31s;
}
.stagger-text.visible>* {
    opacity: 1;
    transform: translateY(0);
}

/* ============================
   RESPONSIVE
============================ */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    .hero-desc {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-actions {
        justify-content: center;
    }
    .hero-stats-row {
        justify-content: center;
    }
    .hero-states {
        justify-content: center;
    }
    .ops-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .roots-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .diff-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .directors-grid {
        grid-template-columns: 1fr 1fr;
    }
    .diff-features {
        grid-template-columns: 1fr 1fr 1fr;
    }
    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }
    .contact-wrap {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .ops-location-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(10, 14, 20, 0.97);
        backdrop-filter: blur(24px);
        flex-direction: column;
        justify-content: center;
        gap: 28px;
        transform: translateX(100%);
        transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
        padding: 40px;
    }
    .nav-links.open {
        transform: translateX(0);
    }
    .nav-links a {
        font-size: 1.2rem;
    }
    .hamburger {
        display: flex;
    }

    .directors-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin: 0 auto;
    }
    .diff-features {
        grid-template-columns: 1fr;
        max-width: 320px;
        margin: 0 auto;
    }
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 14px;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .hero-card {
        padding: 24px 18px;
    }
    .hero-stat-item .number {
        font-size: 1.8rem;
    }
    .ops-map {
        min-height: 200px;
    }
    .city-pin {
        min-width: 70px;
        padding: 12px 14px;
    }
    .city-pin .pin-icon {
        font-size: 1.3rem;
    }
    .section-title {
        font-size: 1.9rem;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    .roots-stats {
        grid-template-columns: 1fr 1fr;
    }
    .roots-quote {
        padding: 18px 20px;
    }
    .diff-right {
        padding: 24px 20px;
    }
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 1.6rem;
        bottom: 20px;
        right: 20px;
    }
    .logo-img {
        width: 40px;
        height: 40px;
    }
    .logo-text-group .brand {
        font-size: 1rem;
    }
    .logo-text-group .tagline {
        font-size: 0.5rem;
    }
    .hero-states .state-pill {
        font-size: 0.7rem;
        padding: 4px 14px 4px 10px;
    }
    .hero-states .state-pill .cities {
        font-size: 0.55rem;
    }
    .ops-location-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    .ops-location-item {
        padding: 12px 14px;
    }
    .ops-location-item h4 {
        font-size: 0.9rem;
    }
    .ops-location-item p {
        font-size: 0.7rem;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    .stat-item .num {
        font-size: 2rem;
    }
    .hero-title {
        font-size: 2.2rem;
    }
    .btn-primary,
    .btn-secondary {
        padding: 12px 24px;
        font-size: 0.85rem;
    }
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    .city-pin {
        min-width: 60px;
        padding: 8px 10px;
    }
    .city-pin .city-name {
        font-size: 0.7rem;
    }
    .roots-stats {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    .roots-stat-item .num {
        font-size: 1.5rem;
    }
    .contact-form {
        padding: 24px 18px;
    }
    .logo-display {
        padding: 24px 16px;
    }
    .logo-display img {
        max-width: 200px;
    }
    .diff-features {
        grid-template-columns: 1fr;
    }
    .hero-stats-row {
        gap: 12px;
    }
    .hero-stat-item {
        min-width: 60px;
    }
    .hero-stat-item .number {
        font-size: 1.6rem;
    }
    .hero-states {
        gap: 6px;
    }
    .hero-states .state-pill {
        font-size: 0.6rem;
        padding: 3px 10px 3px 8px;
    }
    .social-brand a {
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }
    .ops-location-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================
   SMART CONTEXT POPUP MODAL
============================ */
.modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(10, 14, 20, 0.88);
    backdrop-filter: blur(18px) saturate(1.8);
    -webkit-backdrop-filter: blur(18px) saturate(1.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    padding: 20px;
}
.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-container {
    max-width: 520px;
    width: 100%;
    padding: 44px 36px 36px;
    border-radius: 32px;
    background: rgba(20, 24, 32, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.8);
    position: relative;
    transform: scale(0.92) translateY(24px);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    max-height: 90vh;
    overflow-y: auto;
}
.modal-overlay.active .modal-container {
    transform: scale(1) translateY(0);
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 20px;
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.3);
    background: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    line-height: 1;
    padding: 8px;
    border-radius: 12px;
}
.modal-close:hover {
    color: var(--coral);
    background: rgba(255, 64, 64, 0.06);
}

.modal-icon {
    font-size: 3.2rem;
    margin-bottom: 12px;
    display: block;
}
.modal-container h2 {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 6px;
    line-height: 1.2;
}
.modal-container .modal-sub {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 24px;
}
.modal-container .modal-highlight {
    background: rgba(255, 64, 64, 0.06);
    border-left: 3px solid var(--coral);
    padding: 14px 18px;
    border-radius: 12px;
    margin: 8px 0 20px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
}
.modal-container .modal-highlight strong {
    color: var(--white);
}
.modal-container .modal-highlight.role-prompt {
    border-left-color: var(--teal);
    background: rgba(6, 148, 148, 0.06);
}

.modal-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 8px;
}
.modal-actions .btn-modal-primary {
    flex: 1;
    min-width: 160px;
    padding: 14px 28px;
    border-radius: 100px;
    border: none;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s;
    font-family: inherit;
    background: linear-gradient(135deg, var(--coral), #d63030);
    color: #fff;
    box-shadow: 0 4px 24px rgba(255, 64, 64, 0.25);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
}
.modal-actions .btn-modal-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 40px rgba(255, 64, 64, 0.35);
}
.modal-actions .btn-modal-primary.teal {
    background: linear-gradient(135deg, var(--teal), #048080);
    box-shadow: 0 4px 24px rgba(6, 148, 148, 0.25);
}
.modal-actions .btn-modal-primary.teal:hover {
    box-shadow: 0 8px 40px rgba(6, 148, 148, 0.35);
}
.modal-actions .btn-modal-primary.trust {
    background: linear-gradient(135deg, #555, #333);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
}
.modal-actions .btn-modal-primary.trust:hover {
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4);
}

.modal-actions .btn-modal-secondary {
    flex: 0 0 auto;
    padding: 14px 28px;
    border-radius: 100px;
    border: 1.5px solid rgba(255, 255, 255, 0.12);
    background: transparent;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s;
    font-family: inherit;
}
.modal-actions .btn-modal-secondary:hover {
    border-color: var(--white);
    color: var(--white);
    background: rgba(255, 255, 255, 0.04);
}

/* Responsive Modal */
@media (max-width: 480px) {
    .modal-container {
        padding: 32px 20px 28px;
    }
    .modal-container h2 {
        font-size: 1.3rem;
    }
    .modal-actions {
        flex-direction: column;
    }
    .modal-actions .btn-modal-primary,
    .modal-actions .btn-modal-secondary {
        flex: 1 1 auto;
        width: 100%;
        justify-content: center;
    }
}

/* ============================
   CONTACT FORM VALIDATION
============================ */
.form-group {
    position: relative;
}

.error-msg {
    display: block;
    font-size: 0.75rem;
    color: var(--coral);
    margin-top: 4px;
    min-height: 20px;
}

input.error, textarea.error {
    border-color: var(--coral) !important;
    background: rgba(255, 64, 64, 0.04) !important;
}

input.success, textarea.success {
    border-color: var(--teal) !important;
    background: rgba(6, 148, 148, 0.04) !important;
}

#formFeedback.success {
    background: rgba(6, 148, 148, 0.10);
    border: 1px solid var(--teal);
    color: var(--teal);
}
#formFeedback.error {
    background: rgba(255, 64, 64, 0.10);
    border: 1px solid var(--coral);
    color: var(--coral);
}
#formFeedback .feedback-icon {
    font-size: 2.4rem;
    display: block;
    margin-bottom: 6px;
}
#formFeedback .feedback-title {
    font-weight: 700;
    font-size: 1.1rem;
}

/* ============================
   SUCCESS MODAL (Contact Form)
============================ */
#successModal .modal-container {
    background: rgba(20, 28, 36, 0.96);
    border: 1px solid rgba(6, 148, 148, 0.15);
}
#successModal h2 {
    color: var(--teal);
}