/* ================================================
   KEEVAATH LLC - Expert Talent Solutions & Digital Excellence
   Modern Premium Website Styles
   Aesthetic: Refined Professional with Teal/Navy Elegance
   ================================================ */

/* CSS Variables */
:root {
    /* Primary Colors - Deep Navy & Teal */
    --primary-navy: #0A1628;
    --primary-blue: #1E3A5F;
    --primary-light: #2D4A6F;
    
    /* Accent Colors - Sophisticated Teal & Gold */
    --accent-teal: #00B4A0;
    --accent-teal-light: #00D4C4;
    --accent-gold: #D4AF37;
    --accent-gold-light: #E8C547;
    
    /* Neutral Colors */
    --white: #FFFFFF;
    --off-white: #F8FAFB;
    --gray-50: #F5F7FA;
    --gray-100: #E8ECF1;
    --gray-200: #D1D9E3;
    --gray-400: #8896A6;
    --gray-600: #5A6B7D;
    --gray-800: #2D3B4A;
    --text-dark: #1A1A2E;
    --text-body: #4A5568;
    
    /* GCA Brand Colors */
    --gca-gold: #D4AF37;
    --gca-navy: #1A2332;
    
    /* Typography */
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'DM Sans', 'Segoe UI', sans-serif;
    
    /* Spacing */
    --section-pad: 100px;
    --container-max: 1280px;
    
    /* Effects */
    --shadow-sm: 0 2px 8px rgba(10, 22, 40, 0.06);
    --shadow-md: 0 8px 24px rgba(10, 22, 40, 0.08);
    --shadow-lg: 0 16px 48px rgba(10, 22, 40, 0.12);
    --shadow-xl: 0 24px 64px rgba(10, 22, 40, 0.16);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* Reset & Base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: var(--font-body);
    color: var(--text-body);
    line-height: 1.7;
    background: var(--white);
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5 {
    font-family: var(--font-display);
    color: var(--text-dark);
    font-weight: 600;
    line-height: 1.2;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: 1.25rem; }

p { margin-bottom: 1rem; }

a { 
    color: var(--accent-teal); 
    text-decoration: none;
    transition: var(--transition-fast);
}
a:hover { color: var(--accent-teal-light); }

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

.section {
    padding: var(--section-pad) 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

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

.section-title {
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.15rem;
    color: var(--gray-600);
    max-width: 640px;
    margin: 0 auto;
}

/* ========== HEADER & NAVIGATION ========== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition-base);
    background: transparent;
}

.header.scrolled {
    background: var(--white);
    box-shadow: var(--shadow-md);
    padding: 12px 0;
}

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

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

.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
    transition: var(--transition-fast);
}

.header.scrolled .logo-img {
    height: 45px;
}

.logo-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--primary-navy), var(--primary-blue));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.5rem;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-navy);
}

.header.scrolled .logo-text { color: var(--primary-navy); }
.header:not(.scrolled) .logo-text { color: var(--white); }

/* Footer logo */
.footer .logo-img {
    height: 60px;
    filter: brightness(1.2);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    transition: var(--transition-fast);
    position: relative;
}

.header:not(.scrolled) .nav-link { color: rgba(255,255,255,0.9); }
.header.scrolled .nav-link { color: var(--gray-800); }
.nav-link:hover { color: var(--accent-teal); }

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-teal);
    transition: var(--transition-fast);
}
.nav-link:hover::after { width: 100%; }

.nav-cta {
    padding: 10px 24px;
    background: var(--accent-teal);
    color: var(--white) !important;
    border-radius: 6px;
    font-weight: 600;
}
.nav-cta:hover {
    background: var(--accent-teal-light);
    transform: translateY(-2px);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--primary-navy);
    transition: var(--transition-fast);
}

.header:not(.scrolled) .menu-toggle span { background: var(--white); }

/* ========== HERO SECTION ========== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--primary-blue) 50%, var(--primary-light) 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(0, 180, 160, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.03;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--accent-teal-light);
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.hero-title {
    color: var(--white);
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease;
}

.hero-title span { color: var(--accent-teal-light); }

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 40px;
    max-width: 600px;
    line-height: 1.8;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.4s both;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition-base);
    border: none;
    text-decoration: none;
}

.btn-primary {
    background: var(--accent-teal);
    color: var(--white);
}
.btn-primary:hover {
    background: var(--accent-teal-light);
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 180, 160, 0.3);
    color: var(--white);
}

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

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

.btn-gold {
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-light));
    color: var(--primary-navy);
}
.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(212, 175, 55, 0.4);
}

/* ========== SERVICES SECTION ========== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
}

.service-card {
    background: var(--white);
    border-radius: 16px;
    padding: 40px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-100);
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-teal), var(--accent-teal-light));
    opacity: 0;
    transition: var(--transition-base);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.service-card:hover::before { opacity: 1; }

.service-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(0, 180, 160, 0.1), rgba(0, 180, 160, 0.05));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-size: 28px;
}

.service-card h3 { margin-bottom: 12px; }

.service-card p {
    color: var(--gray-600);
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    margin-bottom: 24px;
}

.service-features li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    color: var(--gray-600);
    font-size: 0.95rem;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-teal);
    font-weight: 700;
}

.service-link {
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.service-link:hover { gap: 10px; }

/* Tier Labels */
.tier-badge {
    display: inline-block;
    padding: 4px 12px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    margin-bottom: 16px;
}

.tier-core { background: rgba(0, 180, 160, 0.1); color: var(--accent-teal); }
.tier-growth { background: rgba(30, 58, 95, 0.1); color: var(--primary-blue); }
.tier-specialized { background: rgba(212, 175, 55, 0.15); color: var(--accent-gold); }

/* ========== SKILLS SECTION ========== */
.skills-section {
    background: var(--gray-50);
}

.skills-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

.skills-category h3 {
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.skills-category h3::before {
    content: '';
    width: 4px;
    height: 28px;
    background: var(--accent-teal);
    border-radius: 2px;
}

.skills-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.skill-tag {
    padding: 10px 20px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-800);
    transition: var(--transition-fast);
}

.skill-tag:hover {
    border-color: var(--accent-teal);
    color: var(--accent-teal);
    transform: translateY(-2px);
}

.skill-tag.niche {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.05));
    border-color: rgba(212, 175, 55, 0.3);
    color: var(--accent-gold);
}

/* ========== INDUSTRIES SECTION ========== */
.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.industry-card {
    background: var(--white);
    border-radius: 12px;
    padding: 32px;
    text-align: center;
    border: 1px solid var(--gray-100);
    transition: var(--transition-base);
}

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

.industry-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-navy), var(--primary-blue));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
}

.industry-card h4 { margin-bottom: 8px; }
.industry-card p { color: var(--gray-600); font-size: 0.95rem; margin: 0; }

/* ========== GCA PROMO SECTION ========== */
.gca-promo {
    background: linear-gradient(135deg, var(--gca-navy) 0%, #0D1A2B 100%);
    position: relative;
    overflow: hidden;
}

.gca-promo::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.gca-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.gca-text h2 {
    color: var(--white);
    margin-bottom: 8px;
}

.gca-text h2 span { color: var(--accent-gold); }

.gca-tagline {
    color: var(--accent-gold);
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 24px;
}

.gca-text p {
    color: rgba(255,255,255,0.8);
    font-size: 1.1rem;
    margin-bottom: 32px;
}

.gca-features {
    list-style: none;
    margin-bottom: 32px;
}

.gca-features li {
    padding: 12px 0;
    padding-left: 32px;
    color: rgba(255,255,255,0.9);
    position: relative;
    font-size: 1.05rem;
}

.gca-features li::before {
    content: '★';
    position: absolute;
    left: 0;
    color: var(--accent-gold);
}

.gca-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.gca-stat {
    text-align: center;
    padding: 24px;
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.gca-stat-value {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-gold);
    display: block;
}

.gca-stat-label {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    margin-top: 4px;
}

/* ========== TEAM / LEADERSHIP SECTION ========== */
.leadership-section {
    background: var(--gray-50);
}

.leader-card {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 48px;
    align-items: center;
    background: var(--white);
    border-radius: 20px;
    padding: 48px;
    box-shadow: var(--shadow-md);
}

.leader-image {
    width: 100%;
    aspect-ratio: 1;
    background: linear-gradient(135deg, var(--primary-navy), var(--primary-blue));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
    color: rgba(255,255,255,0.3);
}

.leader-info h3 {
    margin-bottom: 4px;
}

.leader-title {
    color: var(--accent-teal);
    font-weight: 600;
    margin-bottom: 20px;
}

.leader-info p {
    color: var(--gray-600);
    line-height: 1.8;
}

.leader-credentials {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 24px;
}

.credential-tag {
    padding: 6px 14px;
    background: rgba(0, 180, 160, 0.1);
    color: var(--accent-teal);
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 500;
}

/* Team Grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    margin-top: 60px;
}

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

.team-avatar {
    width: 120px;
    height: 120px;
    margin: 0 auto 16px;
    background: linear-gradient(135deg, var(--gray-200), var(--gray-100));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: var(--gray-400);
}

.team-member h4 { margin-bottom: 4px; }
.team-member p { color: var(--gray-600); font-size: 0.95rem; margin: 0; }

/* Partners Section */
.partners-section {
    margin-top: 80px;
}

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

.partner-logo {
    width: 140px;
    height: 60px;
    background: var(--gray-100);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    font-weight: 600;
    font-size: 0.85rem;
    transition: var(--transition-fast);
}

.partner-logo:hover {
    background: var(--gray-200);
    color: var(--gray-600);
}

/* ========== CONTACT CTA SECTION ========== */
.contact-cta {
    background: linear-gradient(135deg, var(--accent-teal), var(--accent-teal-light));
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.05;
}

.contact-cta h2 {
    color: var(--white);
    margin-bottom: 16px;
}

.contact-cta p {
    color: rgba(255,255,255,0.9);
    font-size: 1.15rem;
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

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

/* ========== FOOTER ========== */
.footer {
    background: var(--primary-navy);
    color: rgba(255,255,255,0.7);
    padding: 80px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 60px;
}

.footer-brand p {
    margin-bottom: 20px;
    font-size: 0.95rem;
}

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

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    transition: var(--transition-fast);
}

.social-link:hover {
    background: var(--accent-teal);
    transform: translateY(-2px);
}

.footer-title {
    color: var(--white);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
}

.footer-links li { margin-bottom: 12px; }

.footer-links a {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
}

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

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a { color: rgba(255,255,255,0.6); }
.footer-legal a:hover { color: var(--white); }

/* ========== PAGE HEADERS ========== */
.page-header {
    padding: 180px 0 100px;
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--primary-blue) 100%);
    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 30% 70%, rgba(0, 180, 160, 0.1) 0%, transparent 50%);
}

.page-header h1 {
    color: var(--white);
    margin-bottom: 16px;
    position: relative;
}

.page-header p {
    color: rgba(255,255,255,0.8);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

/* ========== TIMELINE ========== */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: var(--gray-200);
}

.timeline-item {
    position: relative;
    margin-bottom: 48px;
    padding-left: calc(50% + 40px);
}

.timeline-item:nth-child(even) {
    padding-left: 0;
    padding-right: calc(50% + 40px);
    text-align: right;
}

.timeline-content {
    background: var(--white);
    padding: 24px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    position: relative;
}

.timeline-year {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-teal);
    margin-bottom: 8px;
}

.timeline-content h4 { margin-bottom: 8px; }
.timeline-content p { margin: 0; color: var(--gray-600); }

/* ========== CONTACT FORM ========== */
.contact-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
}

.contact-info h3 { margin-bottom: 24px; }

.contact-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: rgba(0, 180, 160, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.contact-item h4 {
    margin-bottom: 4px;
    font-family: var(--font-body);
}

.contact-item p {
    margin: 0;
    color: var(--gray-600);
}

.contact-form {
    background: var(--white);
    padding: 48px;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

.form-group {
    margin-bottom: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--gray-800);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition-fast);
}

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

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

/* ========== NEWS CARDS ========== */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.news-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-100);
    transition: var(--transition-base);
}

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

.news-image {
    height: 200px;
    background: linear-gradient(135deg, var(--primary-navy), var(--primary-blue));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: rgba(255,255,255,0.3);
}

.news-content {
    padding: 24px;
}

.news-date {
    font-size: 0.85rem;
    color: var(--accent-teal);
    margin-bottom: 8px;
}

.news-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.news-card p { color: var(--gray-600); margin-bottom: 16px; }

/* ========== RESOURCES ========== */
.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.resource-card {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: 12px;
    padding: 32px;
    transition: var(--transition-base);
}

.resource-card:hover {
    border-color: var(--accent-teal);
    box-shadow: var(--shadow-md);
}

.resource-type {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(0, 180, 160, 0.1);
    color: var(--accent-teal);
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.resource-card h4 { margin-bottom: 12px; }
.resource-card p { color: var(--gray-600); font-size: 0.95rem; }

/* Newsletter */
.newsletter-box {
    background: linear-gradient(135deg, var(--primary-navy), var(--primary-blue));
    border-radius: 16px;
    padding: 48px;
    text-align: center;
    margin-top: 60px;
}

.newsletter-box h3 {
    color: var(--white);
    margin-bottom: 12px;
}

.newsletter-box p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 24px;
}

.newsletter-form {
    display: flex;
    max-width: 480px;
    margin: 0 auto;
    gap: 12px;
}

.newsletter-form input {
    flex: 1;
    padding: 14px 20px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
}

.newsletter-form button {
    padding: 14px 28px;
    background: var(--accent-teal);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
}

.newsletter-form button:hover {
    background: var(--accent-teal-light);
}

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

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

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .gca-content { grid-template-columns: 1fr; }
    .leader-card { grid-template-columns: 1fr; text-align: center; }
    .leader-image { max-width: 250px; margin: 0 auto; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .skills-wrapper { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    :root { --section-pad: 60px; }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 24px;
        box-shadow: var(--shadow-lg);
        gap: 16px;
    }
    
    .nav-menu.active { display: flex; }
    .nav-link { color: var(--gray-800) !important; }
    .menu-toggle { display: flex; }
    
    .hero-content { text-align: center; }
    .hero-actions { justify-content: center; }
    
    .services-grid { grid-template-columns: 1fr; }
    .contact-section { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
    .gca-stats { grid-template-columns: 1fr; }
    .timeline::before { left: 0; }
    .timeline-item { padding-left: 32px !important; padding-right: 0 !important; text-align: left !important; }
}

@media (max-width: 480px) {
    .hero-actions { flex-direction: column; }
    .btn { width: 100%; }
    .newsletter-form { flex-direction: column; }
}

/* ========== COOKIE CONSENT BANNER ========== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-navy);
    color: rgba(255,255,255,0.9);
    padding: 20px;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
    display: none;
}

.cookie-banner.show { display: block; }

.cookie-banner-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.cookie-banner p {
    margin: 0;
    flex: 1;
    min-width: 300px;
    font-size: 0.95rem;
}

.cookie-banner a { color: var(--accent-teal-light); }

.cookie-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    border: none;
    transition: var(--transition-fast);
}

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

.cookie-btn-accept:hover {
    background: var(--accent-teal-light);
}

.cookie-btn-settings {
    background: transparent;
    color: white;
    border: 1px solid rgba(255,255,255,0.3);
}

.cookie-btn-settings:hover {
    background: rgba(255,255,255,0.1);
}

.cookie-btn-reject {
    background: transparent;
    color: rgba(255,255,255,0.7);
    border: none;
}

.cookie-btn-reject:hover {
    color: white;
}

@media (max-width: 768px) {
    .cookie-banner-inner { flex-direction: column; text-align: center; }
    .cookie-buttons { justify-content: center; }
}

/* ========== SOCIAL MEDIA BUTTONS ========== */
.social-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 700;
    transition: var(--transition-fast);
    text-decoration: none;
}

.social-btn-linkedin { background: #0A66C2; color: white; }
.social-btn-linkedin:hover { background: #004182; transform: translateY(-3px); }

.social-btn-twitter { background: #1DA1F2; color: white; }
.social-btn-twitter:hover { background: #0c85d0; transform: translateY(-3px); }

.social-btn-facebook { background: #1877F2; color: white; }
.social-btn-facebook:hover { background: #0d65d9; transform: translateY(-3px); }

.social-btn-instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); color: white; }
.social-btn-instagram:hover { transform: translateY(-3px); opacity: 0.9; }

.social-btn-youtube { background: #FF0000; color: white; }
.social-btn-youtube:hover { background: #cc0000; transform: translateY(-3px); }

.social-btn-whatsapp { background: #25D366; color: white; }
.social-btn-whatsapp:hover { background: #1da851; transform: translateY(-3px); }

/* Social Share Bar */
.social-share {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 0;
    border-top: 1px solid var(--gray-200);
    margin-top: 24px;
}

.social-share span {
    font-weight: 600;
    color: var(--gray-600);
    font-size: 0.9rem;
}

/* ========== MEDIA PLACEHOLDERS ========== */
.media-placeholder {
    background: linear-gradient(135deg, var(--gray-100), var(--gray-200));
    border: 2px dashed var(--gray-300);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 300px;
    text-align: center;
    padding: 40px;
    transition: var(--transition-fast);
}

.media-placeholder:hover {
    border-color: var(--accent-teal);
    background: linear-gradient(135deg, var(--gray-50), var(--gray-100));
}

.media-placeholder-icon {
    font-size: 64px;
    margin-bottom: 16px;
    opacity: 0.5;
}

.media-placeholder-text {
    color: var(--gray-500);
    font-size: 0.95rem;
    margin: 0;
}

.media-placeholder-size {
    color: var(--gray-400);
    font-size: 0.8rem;
    margin-top: 8px;
}

/* Video Placeholder */
.video-placeholder {
    position: relative;
    background: var(--primary-navy);
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 16/9;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.video-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,180,160,0.2), rgba(212,175,55,0.1));
}

.video-play-btn {
    width: 80px;
    height: 80px;
    background: var(--accent-teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
    position: relative;
    z-index: 1;
    transition: var(--transition-base);
    box-shadow: 0 8px 32px rgba(0,180,160,0.4);
}

.video-placeholder:hover .video-play-btn {
    transform: scale(1.1);
    background: var(--accent-teal-light);
}

/* Hero Media */
.hero-media {
    position: relative;
}

.hero-image-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-light));
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.5);
}

/* Team Photo Placeholder */
.team-photo {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 16px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--gray-200), var(--gray-100));
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-photo-placeholder {
    font-size: 80px;
    opacity: 0.3;
}

/* CTA Buttons Enhanced */
.cta-section {
    background: linear-gradient(135deg, var(--primary-navy), var(--primary-blue));
    border-radius: 20px;
    padding: 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0,180,160,0.2), transparent 70%);
}

.cta-section h3 {
    color: white;
    margin-bottom: 16px;
    position: relative;
}

.cta-section p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 32px;
    position: relative;
}

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

/* Demo Request Button */
.btn-demo {
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-light));
    color: var(--primary-navy);
    font-weight: 700;
    padding: 16px 32px;
    font-size: 1.05rem;
}

.btn-demo:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(212,175,55,0.4);
}

/* Floating CTA */
.floating-cta {
    position: fixed;
    bottom: 100px;
    right: 24px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.floating-cta-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-fast);
    border: none;
    cursor: pointer;
}

.floating-cta-btn:hover {
    transform: scale(1.1);
}

.floating-cta-whatsapp {
    background: #25D366;
    color: white;
}

.floating-cta-call {
    background: var(--accent-teal);
    color: white;
}
