/* ==========================================================================
   MyBrandExpert - Styles
   ========================================================================== */

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

body {
    font-family: Arial, sans-serif;
    background: #1a202c;
    color: white;
    line-height: 1.6;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ==========================================================================
   Typography & Gradients
   ========================================================================== */

.gradient-text {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* TEXT GRADIENTS (for colored text) */
.blue-gradient-text {
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.green-gradient-text {
    background: linear-gradient(135deg, #10b981, #34d399);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.purple-gradient-text {
    background: linear-gradient(135deg, #8b5cf6, #a78bfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.orange-gradient-text {
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* BACKGROUND GRADIENTS (for containers) */
.blue-gradient-bg {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
}

.green-gradient-bg {
    background: linear-gradient(135deg, #10b981, #059669);
}

.purple-gradient-bg {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.orange-gradient-bg {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-header h2 {
    font-size: clamp(36px, 6vw, 56px);
    font-weight: 900;
    margin-bottom: 25px;
    letter-spacing: -0.02em;
}

.section-header p {
    font-size: 22px;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 400;
    opacity: 0.9;
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    text-decoration: none;
    border-radius: 16px;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(59, 130, 246, 0.4);
}

.btn-secondary {
    border: 2px solid #8b5cf6;
    background: rgba(139, 92, 246, 0.1);
    color: #c4b5fd;
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: #8b5cf6;
    color: white;
    transform: translateY(-3px) scale(1.05);
}

.btn-outline {
    border: 2px solid #64748b;
    color: #475569;
    background: transparent;
}

.btn-outline:hover {
    background: #64748b;
    color: white;
    transform: translateY(-3px);
}

.btn-dark {
    background: linear-gradient(135deg, #0f172a, #374151);
    color: white;
}

.btn-dark:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(15, 23, 42, 0.3);
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */

.header {
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(20px);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

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

.logo {
    font-size: 28px;
    font-weight: 900;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
}

/* Desktop Navigation */
.desktop-nav {
    display: flex;
    gap: 35px;
    align-items: center;
}

.desktop-nav a {
    color: #cbd5e0;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.desktop-nav a:hover {
    color: #3b82f6;
}

.desktop-nav .cta-button {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.desktop-nav .cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

/* Mobile Navigation */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    padding: 8px;
}

.mobile-nav {
    display: none;
    background: rgba(15, 23, 42, 0.98);
    backdrop-filter: blur(20px);
    padding: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav a {
    display: block;
    color: #cbd5e0;
    text-decoration: none;
    font-weight: 500;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.mobile-nav a:hover {
    color: #3b82f6;
}

.mobile-cta {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    padding: 15px;
    border-radius: 12px;
    font-weight: 600;
    text-align: center;
    margin-top: 20px;
    border-bottom: none !important;
}

.mobile-cta:hover {
    transform: translateY(-2px);
}

/* Mobile Navigation Styles */
@media (max-width: 768px) {
    .desktop-nav {
        display: none !important;
    }
    .mobile-menu-btn {
        display: block !important;
    }
}

@media (min-width: 769px) {
    .mobile-nav {
        display: none !important;
    }
}

/* ==========================================================================
   Hero Section
   ========================================================================== */

.hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 25%, #3730a3 50%, #1e293b 75%, #0f172a 100%);
    padding: 120px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(59, 130, 246, 0.1) 0%, transparent 50%), 
                radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
    opacity: 0.6;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: clamp(40px, 8vw, 72px);
    margin-bottom: 30px;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 22px;
    margin-bottom: 50px;
    opacity: 0.9;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    color: #e2e8f0;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ==========================================================================
   Client Banner
   ========================================================================== */

.client-banner {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 60px 20px;
    border-top: 1px solid rgba(148, 163, 184, 0.2);
    border-bottom: 1px solid rgba(148, 163, 184, 0.2);
    overflow: hidden;
}

.client-banner h3 {
    font-size: 18px;
    font-weight: 600;
    color: #64748b;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
}

.logo-scroll-container {
    position: relative;
    overflow: hidden;
    height: 80px;
}

.logo-scroll {
    display: flex;
    align-items: center;
    gap: 60px;
    animation: scroll 30s linear infinite;
    width: max-content;
}

.client-logo {
    height: 50px;
    width: auto;
    max-width: 160px;
    object-fit: contain;
    opacity: 0.8;
    transition: all 0.3s ease;
    margin: 0 10px;
}

.client-logo:hover {
    opacity: 1;
    transform: scale(1.05);
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ==========================================================================
   Stats Section
   ========================================================================== */

.stats {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    padding: 80px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px 20px;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.08);
}

.stat-number {
    font-size: 56px;
    font-weight: 900;
    margin-bottom: 15px;
    line-height: 1;
}

/* Stat Number Gradient Classes */
.stat-number.blue-gradient {
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-number.green-gradient {
    background: linear-gradient(135deg, #10b981, #34d399);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-number.purple-gradient {
    background: linear-gradient(135deg, #8b5cf6, #a78bfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-number.orange-gradient {
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    color: #e2e8f0;
    font-weight: 500;
    font-size: 16px;
}

/* ==========================================================================
   About Section
   ========================================================================== */

.about {
    background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 100%);
    color: #1e293b;
    padding: 100px 20px;
}

.about .section-header h2 {
    color: #0f172a;
}

.about .section-header p {
    color: #64748b;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-text {
    margin-bottom: 60px;
}

.about-text h3 {
    font-size: clamp(28px, 5vw, 42px);
    font-weight: 800;
    margin-bottom: 30px;
    line-height: 1.2;
    color: #0f172a;
}

.about-text p {
    font-size: 18px;
    color: #475569;
    margin-bottom: 28px;
    line-height: 1.7;
    font-weight: 400;
}

.about-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.what-makes-different {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(148, 163, 184, 0.2);
    padding: 50px;
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.what-makes-different::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.what-makes-different > * {
    position: relative;
    z-index: 1;
}

.icon-circle {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
    border: 3px solid #3b82f6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.what-makes-different h4 {
    font-size: 28px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 25px;
    color: #0f172a;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.features-list li {
    margin: 20px 0;
    display: flex;
    align-items: start;
    gap: 15px;
}

.checkmark {
    color: #10b981;
    font-weight: 900;
    font-size: 14px;
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    background: #dcfce7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.features-list span:last-child {
    font-weight: 500;
    color: #374151;
    line-height: 1.6;
}

/* ==========================================================================
   Services Section
   ========================================================================== */

.services {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    padding: 100px 20px;
    color: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 35px;
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
}

.service-card:hover {
    transform: translateY(-12px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

.service-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Service Icon Background Classes */
.blue-bg { background: linear-gradient(135deg, #3b82f6, #1d4ed8); }
.purple-bg { background: linear-gradient(135deg, #8b5cf6, #7c3aed); }
.green-bg { background: linear-gradient(135deg, #10b981, #059669); }
.orange-bg { background: linear-gradient(135deg, #f59e0b, #d97706); }
.cyan-bg { background: linear-gradient(135deg, #06b6d4, #0891b2); }
.pink-bg { background: linear-gradient(135deg, #ec4899, #db2777); }
.orange2-bg { background: linear-gradient(135deg, #f97316, #ea580c); }
.purple2-bg { background: linear-gradient(135deg, #a855f7, #9333ea); }
.blue2-bg { background: linear-gradient(135deg, #0ea5e9, #0284c7); }

.service-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: white;
}

.service-card p {
    color: #cbd5e0;
    font-size: 15px;
    line-height: 1.6;
}

/* ==========================================================================
   Programs Section
   ========================================================================== */

.programs {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 100px 20px;
    color: #1e293b;
}

.programs .section-header h2 {
    color: #0f172a;
}

.programs .section-header p {
    color: #64748b;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.program-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

.program-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.program-header {
    color: white;
    padding: 35px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.program-header::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    pointer-events: none;
}

.program-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    position: relative;
    z-index: 1;
}

.program-header h3 {
    font-size: 24px;
    font-weight: 800;
    margin: 0 0 10px 0;
    position: relative;
    z-index: 1;
    color: white !important;
}

.program-header p {
    margin: 0;
    opacity: 0.9;
    font-size: 14px;
    position: relative;
    z-index: 1;
    color: white !important;
}

/* Program Header Gradients */
.blue-gradient.program-header { 
    background: linear-gradient(135deg, #3b82f6, #8b5cf6); 
}
.green-gradient.program-header { 
    background: linear-gradient(135deg, #10b981, #059669); 
}
.purple-gradient.program-header { 
    background: linear-gradient(135deg, #8b5cf6, #7c3aed); 
}
.orange-gradient.program-header { 
    background: linear-gradient(135deg, #f59e0b, #d97706); 
}

.program-content {
    padding: 35px;
}

.program-ideal {
    margin-bottom: 25px;
}

.program-includes {
    margin-bottom: 25px;
}

.label {
    font-size: 11px;
    color: #64748b;
    margin-bottom: 6px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.program-ideal .value {
    color: #0f172a;
    font-weight: 600;
    font-size: 14px;
}

.includes-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.includes-list li {
    margin: 10px 0;
    display: flex;
    align-items: start;
    gap: 10px;
}

.check {
    width: 18px;
    height: 18px;
    background: #dcfce7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
    color: #16a34a;
    font-size: 10px;
    font-weight: bold;
}

.includes-list span:last-child {
    color: #374151;
    font-weight: 500;
    line-height: 1.4;
    font-size: 14px;
}

.program-btn {
    width: 100%;
    padding: 16px;
    text-decoration: none;
    border-radius: 16px;
    font-weight: 700;
    font-size: 14px;
    display: block;
    text-align: center;
    box-sizing: border-box;
    transition: all 0.3s ease;
    color: white;
}

.blue-btn { background: linear-gradient(135deg, #3b82f6, #1d4ed8); }
.green-btn { background: linear-gradient(135deg, #10b981, #059669); }
.purple-btn { background: linear-gradient(135deg, #8b5cf6, #7c3aed); }
.orange-btn { background: linear-gradient(135deg, #f59e0b, #d97706); }

.program-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

.programs-cta {
    text-align: center;
    padding: 40px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 20px;
}

.programs-cta h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #0f172a;
}

.programs-cta p {
    font-size: 18px;
    color: #64748b;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ==========================================================================
   Team Section
   ========================================================================== */

.team {
    background: white;
    padding: 80px 20px;
    color: #1a202c;
}

.team .section-header h2 {
    color: #1a202c;
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 20px;
}

.team .section-header p {
    font-size: 20px;
    color: #4a5568;
    max-width: 800px;
    margin: 0 auto;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.team-member {
    background: #f7fafc;
    border-radius: 20px;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.member-header {
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.member-avatar {
    width: 120px;
    height: 120px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    font-weight: bold;
    color: white !important;
    overflow: hidden;
    position: relative;
    z-index: 1;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Team Member Photo Styles */
.member-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.member-photo:hover {
    transform: scale(1.05);
}

.member-info {
    padding: 30px;
}

.member-info h3 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
}

.member-title {
    font-weight: bold;
    margin-bottom: 15px;
}

.blue-gradient.member-header { 
    background: linear-gradient(135deg, #3182ce, #63b3ed); 
}
.purple-gradient.member-header { 
    background: linear-gradient(135deg, #805ad5, #b794f6); 
}
.green-gradient.member-header { 
    background: linear-gradient(135deg, #10b981, #34d399); 
}

.blue-gradient .member-title { color: #3182ce; }
.purple-gradient .member-title { color: #805ad5; }
.green-gradient .member-title { color: #10b981; }

.member-info p {
    color: #4a5568;
    line-height: 1.6;
}

/* ==========================================================================
   Testimonials Section
   ========================================================================== */

.testimonials {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 100px 20px;
    color: #1e293b;
}

.testimonials .section-header h2 {
    color: #0f172a;
}

.testimonials .section-header p {
    color: #64748b;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 40px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(148, 163, 184, 0.2);
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.testimonial-content {
    margin-bottom: 30px;
}

.stars {
    display: flex;
    margin-bottom: 20px;
}

.star {
    width: 24px;
    height: 24px;
    color: #f59e0b;
}

.testimonial-content p {
    font-size: 18px;
    color: #374151;
    line-height: 1.7;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 18px;
}

/* Avatar Gradient Classes */
.author-avatar.blue-gradient { 
    background: linear-gradient(135deg, #3b82f6, #8b5cf6); 
}
.author-avatar.green-gradient { 
    background: linear-gradient(135deg, #10b981, #059669); 
}
.author-avatar.purple-gradient { 
    background: linear-gradient(135deg, #8b5cf6, #7c3aed); 
}

.author-name {
    font-weight: 700;
    color: #0f172a;
    font-size: 16px;
}

.author-title,
.author-revenue {
    color: #64748b;
    font-size: 14px;
}

/* ==========================================================================
   Contact Section
   ========================================================================== */

.contact {
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    padding: 80px 20px;
    color: white;
    text-align: center;
}

.contact h2 {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 20px;
}

.contact-highlight {
    color: #3182ce;
}

.contact-subtitle {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.8;
}

.contact-form-container {
    background: rgba(45, 55, 72, 0.8);
    padding: 40px;
    border-radius: 20px;
    max-width: 600px;
    margin: 0 auto;
}

.contact-form {
    display: grid;
    gap: 20px;
}

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

.form-group {
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    background: #4a5568;
    border: 1px solid #718096;
    border-radius: 8px;
    color: white;
    box-sizing: border-box;
}

.form-group textarea {
    resize: none;
}

.form-submit {
    width: 100%;
    background: #3182ce;
    color: white;
    padding: 16px;
    border: none;
    border-radius: 12px;
    font-weight: bold;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.3s ease;
}

.form-submit:hover {
    background: #2c5282;
    transform: translateY(-2px);
}

/* ==========================================================================
   Footer
   ========================================================================== */

.footer {
    background: #2d3748;
    padding: 60px 20px 40px;
    color: white;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    font-size: 24px;
    font-weight: bold;
    color: #3182ce;
    margin-bottom: 20px;
}

.footer-section p {
    color: #a0aec0;
    line-height: 1.6;
}

.footer-section h4 {
    font-weight: bold;
    margin-bottom: 20px;
    color: white;
}

.footer-section a {
    color: #a0aec0;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
}

.footer-section a:hover {
    color: #3182ce;
}

.footer-section div {
    color: #a0aec0;
    margin-bottom: 10px;
}

.footer-bottom {
    border-top: 1px solid #4a5568;
    padding-top: 30px;
    text-align: center;
    color: #a0aec0;
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .about-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .programs-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}