/* ==========================================================================
   TPAA Premium WOW-Factor Design System
   ========================================================================== */

:root {
    /* Brand Colors - Elevated & Modern */
    --color-primary: #0A192F;
    /* Deep Midnight Navy */
    --color-primary-light: #172A45;
    /* Dark Slate Blue */
    --color-accent: #00D06C;
    /* Vibrant Emerald Green */
    --color-accent-dark: #00A656;
    /* Deep Emerald */
    --color-accent-light: rgba(0, 208, 108, 0.1);

    /* Neutrals */
    --color-text: #334155;
    /* Crisp Slate Gray */
    --color-text-muted: #64748B;
    /* Lighter Slate */
    --color-bg: #FFFFFF;
    --color-bg-light: #F8FAFC;
    /* Extremely subtle ice-white */
    --color-border: #E2E8F0;
    --color-white: #FFFFFF;

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Aesthetics & WOW Factors */
    --shadow-sm: 0 4px 6px -1px rgba(10, 25, 47, 0.05);
    --shadow-md: 0 10px 30px -5px rgba(10, 25, 47, 0.12);
    --shadow-wow: 0 25px 50px -12px rgba(10, 25, 47, 0.25);
    --shadow-glow: 0 0 20px rgba(0, 208, 108, 0.3);

    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    --transition-bouncy: 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Base Reset & Smooth Scrolling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--color-bg);
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ==========================================================================
   Typography & Utilities
   ========================================================================== */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--color-primary);
    line-height: 1.2;
    letter-spacing: -0.02em;
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.text-center {
    text-align: center;
}

.text-white {
    color: var(--color-white) !important;
}

.text-white-muted {
    color: rgba(255, 255, 255, 0.7) !important;
}

.text-primary {
    color: var(--color-primary) !important;
}

.text-accent {
    background: linear-gradient(135deg, var(--color-accent), #00F2A6);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

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

.mt-3 {
    margin-top: 1rem;
}

.mt-4 {
    margin-top: 2rem;
}

.mt-5 {
    margin-top: 3rem;
}

.mb-4 {
    margin-bottom: 2rem;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.max-w-700 {
    max-width: 700px;
}

/* Buttons with WOW hover *************************************************** */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 2rem;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    border-radius: 50px;
    /* Pill shape for modern look */
    cursor: pointer;
    transition: var(--transition-bouncy);
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s cubic-bezier(0.86, 0, 0.07, 1);
    z-index: -1;
}

.btn:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.btn:hover {
    transform: translateY(-3px);
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-accent), var(--color-accent-dark));
    color: var(--color-white);
    border: none;
    box-shadow: 0 4px 15px rgba(0, 208, 108, 0.4);
}

.btn-primary:hover {
    box-shadow: 0 10px 25px rgba(0, 208, 108, 0.6);
}

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

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

/* ==========================================================================
   Navigation (Glassmorphism)
   ========================================================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: padding 0.4s ease, background 0.4s ease, box-shadow 0.4s ease;
}

.navbar.scrolled {
    padding: 1rem 0;
    /* Glassmorphism Effect */
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--shadow-sm);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.navbar.scrolled .logo-text,
.navbar.scrolled .nav-links a {
    color: var(--color-primary);
}

.navbar.scrolled .mobile-toggle {
    color: var(--color-primary);
}

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

.logo {
    text-decoration: none;
    font-size: 2rem;
    font-weight: 800;
    font-family: var(--font-heading);
    color: var(--color-white);
    letter-spacing: -1px;
    z-index: 100;
}

.logo-accent {
    color: var(--color-accent);
}

.nav-logo-img {
    height: 40px;
    width: auto;
    transition: filter var(--transition-smooth);
}

.navbar.scrolled .nav-logo-img {
    filter: none;
}

.footer-logo-img {
    height: 45px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    font-weight: 500;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    padding: 0.5rem 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--color-accent);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform var(--transition-smooth);
}

.nav-links a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

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

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

/* ==========================================================================
   Hero Section (Premium Gradient & Floating Elements)
   ========================================================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--color-primary);
    /* Complex luxury gradient */
    background: radial-gradient(circle at 80% 20%, #152A4A 0%, var(--color-primary) 60%),
        radial-gradient(circle at 10% 90%, #0D3B3A 0%, var(--color-primary) 40%);
    overflow: hidden;
}

/* Floating Orb Effects in Background */
.hero::before,
.hero::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    z-index: 0;
    opacity: 0.4;
    animation: float 20s infinite alternate ease-in-out;
}

.hero::before {
    width: 600px;
    height: 600px;
    background: var(--color-accent-dark);
    top: -200px;
    right: -100px;
}

.hero::after {
    width: 400px;
    height: 400px;
    background: #00F2A6;
    bottom: -100px;
    left: -100px;
    animation-delay: -10s;
}

@keyframes float {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(-50px, 50px) scale(1.1);
    }
}

/* Hero Slider Logic */
.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s cubic-bezier(0.25, 1, 0.5, 1), visibility 1s;
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 3;
}

.hero-slide-content {
    transform: translateY(30px) scale(0.98);
    opacity: 0;
    transition: transform 1.2s cubic-bezier(0.25, 1, 0.5, 1) 0.3s, opacity 1s cubic-bezier(0.25, 1, 0.5, 1) 0.3s;
    margin-top: 5rem;
}

.hero-slide.active .hero-slide-content {
    transform: translateY(0) scale(1);
    opacity: 1;
}

/* Slider Controls */
.slider-dots {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 10;
}

.dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: background 0.4s ease, transform 0.4s ease;
}

.dot.active {
    background: var(--color-accent);
    transform: scale(1.3);
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition-fast);
}

.slider-arrow:hover {
    background: var(--color-accent);
    border-color: var(--color-accent);
    transform: translateY(-50%) scale(1.1);
}

.slider-arrow.prev {
    left: 3rem;
}

.slider-arrow.next {
    right: 3rem;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"><filter id="noiseFilter"><feTurbulence type="fractalNoise" baseFrequency="0.65" numOctaves="3" stitchTiles="stitch"/></filter><rect width="100%" height="100%" filter="url(%23noiseFilter)" opacity="0.03"/></svg>');
    z-index: 1;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin-top: 5rem;
}

.badge {
    display: inline-block;
    padding: 0.4rem 1.2rem;
    background: rgba(0, 208, 108, 0.1);
    color: var(--color-accent);
    border: 1px solid rgba(0, 208, 108, 0.2);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

.hero-title {
    font-size: clamp(3rem, 6vw, 5.5rem);
    /* Huge dynamic sizing */
    color: var(--color-white);
    line-height: 1.05;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: var(--color-text-muted);
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2.5rem;
    max-width: 750px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

/* ==========================================================================
   Inner Page Headers
   ========================================================================== */
.page-header {
    background: var(--color-primary);
    padding: 12rem 0 6rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(0, 208, 108, 0.1) 0%, transparent 60%);
    z-index: 1;
    pointer-events: none;
}

.page-header .container {
    position: relative;
    z-index: 2;
}

.page-header .logo-text,
.page-header .nav-links a {
    color: var(--color-white);
}

.page-title {
    font-size: 3.5rem;
    color: var(--color-white);
    margin-bottom: 1rem;
    font-weight: 700;
}

.page-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ==========================================================================
   Sections & Layouts
   ========================================================================== */
.section {
    padding: 8rem 0;
    position: relative;
}

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

.section-title {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-desc {
    font-size: 1.2rem;
    color: var(--color-text-muted);
}

/* Service Cards - 3D Hover Effects */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.service-card {
    background: var(--color-white);
    padding: 3rem 2rem;
    border-radius: 16px;
    border: 1px solid var(--color-border);
    transition: var(--transition-bouncy);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.service-card::after {
    /* Gradient glow that appears on hover */
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--color-accent), #00F2A6);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-smooth);
    z-index: 2;
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-wow);
    border-color: transparent;
}

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

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--color-bg-light);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--color-accent);
    margin-bottom: 2rem;
    transition: var(--transition-smooth);
}

.service-card:hover .service-icon {
    background: var(--color-accent);
    color: var(--color-white);
    transform: rotateY(180deg);
    /* Playful 3D wow effect */
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    transition: color var(--transition-fast);
}

.service-card p {
    color: var(--color-text-muted);
    line-height: 1.7;
    font-size: 1.05rem;
}

/* Values Section (Glassmorphism layout) */
.values-section {
    background: var(--color-primary);
    position: relative;
    overflow: hidden;
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.values-list li {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.val-icon {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--color-accent);
}

.val-text h4 {
    color: var(--color-white);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.val-text p {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

.glass-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    transform: rotate(45deg);
}

.glass-stat h3 {
    color: var(--color-accent);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.glass-stat p {
    color: rgba(255, 255, 255, 0.8);
}

/* Globals & Brands */
.global-section {
    background: linear-gradient(to bottom, #FFFFFF 0%, #F8FAFC 100%);
}

.client-sectors {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.sector-badge {
    padding: 0.8rem 1.5rem;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 50px;
    font-weight: 500;
    color: var(--color-primary);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

.sector-badge:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

/* ==========================================================================
   Content Pages (Team, general boxes)
   ========================================================================== */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.team-card {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: 3rem 1.5rem;
    text-align: center;
    transition: var(--transition-bouncy);
}

.team-card:hover {
    box-shadow: var(--shadow-wow);
    transform: translateY(-8px);
    border-color: transparent;
}

.team-avatar {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--color-bg-light), #E2E8F0);
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--color-primary-light);
    transition: var(--transition-smooth);
    border: 4px solid var(--color-white);
    box-shadow: var(--shadow-sm);
}

.team-card:hover .team-avatar {
    color: var(--color-accent);
    transform: scale(1.1);
}

.team-name {
    font-size: 1.25rem;
    margin-bottom: 0.3rem;
    color: var(--color-primary);
    font-family: var(--font-heading);
    font-weight: 700;
}

.team-role {
    color: var(--color-accent);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.content-box {
    background: var(--color-white);
    padding: 4rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(10, 25, 47, 0.03);
    margin-bottom: 3rem;
    transition: var(--transition-smooth);
}

.content-box:hover {
    box-shadow: var(--shadow-wow);
}

.content-box h3 {
    margin-bottom: 1.5rem;
    font-size: 2rem;
    font-weight: 700;
}

.content-box p {
    margin-bottom: 1.5rem;
    color: var(--color-text-muted);
    font-size: 1.1rem;
    line-height: 1.8;
}

.content-box ul {
    padding-left: 1.5rem;
    list-style-type: none;
    margin-bottom: 1.5rem;
}

.content-box ul li {
    margin-bottom: 0.8rem;
    position: relative;
    font-size: 1.05rem;
    color: var(--color-text);
}

.content-box ul li::before {
    content: '→';
    position: absolute;
    left: -1.5rem;
    color: var(--color-accent);
    font-weight: bold;
}

/* Contact Grid */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
}

.contact-info-card {
    background: var(--color-primary);
    color: var(--color-white);
    padding: 3rem;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.contact-info-card::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: rgba(0, 208, 108, 0.1);
    border-radius: 50%;
}

.contact-info-card h3 {
    color: var(--color-white);
    font-size: 2rem;
}

.contact-info-card .text-text-muted {
    color: rgba(255, 255, 255, 0.7);
}

.contact-info-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-info-item i {
    font-size: 1.5rem;
    color: var(--color-accent);
}

.contact-info-item h4 {
    color: var(--color-white);
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.contact-form-wrapper {
    padding: 2rem 0;
}

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

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

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem 1.2rem;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition-fast);
    background: var(--color-bg-light);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--color-accent);
    box-shadow: 0 0 0 4px rgba(0, 208, 108, 0.1);
    background: var(--color-white);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
    background: var(--color-primary);
    color: var(--color-white);
    padding: 6rem 0 2rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand p {
    font-size: 1.1rem;
    max-width: 300px;
    line-height: 1.6;
}

.footer-links h4 {
    color: var(--color-white);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-links ul li {
    margin-bottom: 0.8rem;
}

.footer-links ul a {
    color: rgba(255, 255, 255, 0.6);
    position: relative;
    padding-left: 0;
}

.footer-links ul a::before {
    content: '›';
    position: absolute;
    left: -15px;
    top: 0;
    color: var(--color-accent);
    opacity: 0;
    transform: translateX(-5px);
    transition: var(--transition-fast);
}

.footer-links ul a:hover {
    color: var(--color-white);
    padding-left: 3px;
}

.footer-links ul a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* ==========================================================================
   Advanced Animations (Triggered by JS)
   ========================================================================== */
.fade-in-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s cubic-bezier(0.25, 1, 0.5, 1), transform 1s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal {
    opacity: 0;
    transform: translateY(50px) scale(0.98);
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal.active,
.fade-in-up.active {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* ==========================================================================
   Homepage Specific Sections
   ========================================================================== */
.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.stat-box {
    background: rgba(0, 208, 108, 0.05);
    border-left: 4px solid var(--color-accent);
    padding: 2rem;
    border-radius: 0 12px 12px 0;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1;
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
}

.cta-section {
    background: linear-gradient(135deg, var(--color-primary), #0a2115);
    color: var(--color-white);
    padding: 8rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(0, 208, 108, 0.15) 0%, transparent 40%);
    animation: spin 40s linear infinite;
    z-index: 0;
}

.cta-content {
    position: relative;
    z-index: 2;
}

@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}

/* Responsive Overrides */
@media (max-width: 900px) {
    .nav-links {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }

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

    .values-grid,
    .contact-grid,
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .page-title {
        font-size: 2.5rem;
    }
}

/* ==============================================
   Chat Bot Styles
   ============================================== */
.chat-bot-container {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.chat-window-hidden .chat-bot-window {
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.9);
}

.chat-bot-window {
    width: 350px;
    background: var(--color-white);
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    margin-bottom: 1rem;
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    transform-origin: bottom right;
    border: 1px solid var(--color-border);
}

.chat-header {
    background: linear-gradient(135deg, var(--color-primary), #1A365D);
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-close {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    font-size: 1.2rem;
    transition: var(--transition-fast);
}

.chat-close:hover {
    color: white;
    transform: rotate(90deg);
}

.chat-body {
    height: 300px;
    background: var(--color-bg-light);
    padding: 1.5rem;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.chat-message {
    max-width: 85%;
    padding: 0.8rem 1rem;
    border-radius: 12px;
    font-size: 0.95rem;
    line-height: 1.4;
    animation: slideUpFade 0.3s ease forwards;
}

.bot-message {
    background: var(--color-white);
    color: var(--color-text);
    border: 1px solid var(--color-border);
    border-bottom-left-radius: 4px;
    align-self: flex-start;
}

.user-message {
    background: var(--color-accent);
    color: white;
    border-bottom-right-radius: 4px;
    align-self: flex-end;
}

.chat-input-area {
    display: flex;
    padding: 1rem;
    background: var(--color-white);
    border-top: 1px solid var(--color-border);
    gap: 0.5rem;
}

.chat-input {
    flex: 1;
    border: 1px solid var(--color-border);
    border-radius: 20px;
    padding: 0.6rem 1rem;
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition-fast);
}

.chat-input:focus {
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(0, 208, 108, 0.1);
}

.chat-send {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--color-primary);
    color: white;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: var(--transition-fast);
}

.chat-send:hover {
    background: var(--color-accent);
    transform: scale(1.1);
}

.chat-toggle-btn {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-accent), #00A656);
    color: white;
    border: none;
    font-size: 1.8rem;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(0, 208, 108, 0.4);
    transition: var(--transition-bouncy);
    animation: float 4s ease-in-out infinite;
}

.chat-toggle-btn:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 208, 108, 0.6);
}

@media (max-width: 768px) {
    .chat-bot-container {
        bottom: 1rem;
        right: 1rem;
    }

    .chat-bot-window {
        width: 320px;
    }
}