/* ============================================
   AgileXPS - Dark Mode Design System
   Purple & Yellow/Gold Theme
   ============================================ */

/* CSS Custom Properties - Logo-Matched Colors */
:root {
    /* Primary Purple Palette (from logo) */
    --primary: #8B5CF6;
    --primary-light: #A78BFA;
    --primary-dark: #7C3AED;
    --primary-deeper: #6D28D9;
    
    /* Accent Yellow/Gold (from logo text) */
    --accent: #FBBF24;
    --accent-light: #FCD34D;
    --accent-dark: #F59E0B;
    
    /* Figure Colors (from logo people) */
    --red: #EF4444;
    --green: #22C55E;
    --blue: #3B82F6;
    
    /* Dark Mode Backgrounds */
    --bg-darkest: #0D0D1A;
    --bg-darker: #12121F;
    --bg-dark: #1A1A2E;
    --bg-card: #1E1E32;
    --bg-card-hover: #252542;
    --bg-glass: rgba(139, 92, 246, 0.1);
    --bg-glass-strong: rgba(139, 92, 246, 0.15);
    
    /* Text Colors */
    --text-white: #FFFFFF;
    --text-light: #E2E8F0;
    --text-muted: #94A3B8;
    --text-dark: #64748B;
    
    /* Borders & Effects */
    --border-subtle: rgba(139, 92, 246, 0.2);
    --border-accent: rgba(251, 191, 36, 0.3);
    --shadow-glow-purple: 0 0 40px rgba(139, 92, 246, 0.3);
    --shadow-glow-yellow: 0 0 40px rgba(251, 191, 36, 0.3);
    --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.4);
    --shadow-card-hover: 0 8px 40px rgba(139, 92, 246, 0.2);
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--primary-deeper) 100%);
    --gradient-accent: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    --gradient-hero: linear-gradient(135deg, var(--bg-darkest) 0%, var(--bg-dark) 50%, var(--bg-darker) 100%);
    --gradient-card: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-darker) 100%);
    
    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
    background: var(--bg-darkest);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Selection */
::selection {
    background: rgba(139, 92, 246, 0.4);
    color: var(--text-white);
}

/* Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ============================================
   NAVIGATION - Glass Dark Style
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(13, 13, 26, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-subtle);
    transition: var(--transition-base);
}

.navbar.scrolled {
    background: rgba(13, 13, 26, 0.95);
    box-shadow: var(--shadow-card);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1.5rem;
}

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

.nav-brand img {
    height: 45px;
    width: auto;
}

.nav-brand a {
    font-size: 1.5rem;
    font-weight: 800;
    text-decoration: none;
    color: var(--accent);
    letter-spacing: -0.5px;
}

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

.nav-menu a {
    position: relative;
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 0;
    transition: var(--transition-base);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-accent);
    transition: var(--transition-base);
    border-radius: 2px;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--accent);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

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

.nav-toggle span {
    width: 28px;
    height: 3px;
    background: var(--accent);
    border-radius: 3px;
    transition: var(--transition-base);
}

/* ============================================
   HERO SECTION - Dark Animated Design
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--gradient-hero);
    padding-top: 80px;
}

/* Animated Mesh Gradient Background */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 20% 20%, rgba(139, 92, 246, 0.3) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(124, 58, 237, 0.25) 0%, transparent 50%),
        radial-gradient(ellipse at 40% 80%, rgba(251, 191, 36, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(139, 92, 246, 0.2) 0%, transparent 50%);
    animation: meshGradient 15s ease-in-out infinite alternate;
    z-index: 1;
}

@keyframes meshGradient {
    0% { transform: scale(1) rotate(0deg); opacity: 1; }
    50% { transform: scale(1.1) rotate(2deg); opacity: 0.8; }
    100% { transform: scale(1) rotate(-2deg); opacity: 1; }
}

/* Floating Orbs - Purple Theme */
.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.5;
    animation: float 20s ease-in-out infinite;
    z-index: 1;
}

.hero-orb-1 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.hero-orb-2 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    top: 60%;
    right: 10%;
    animation-delay: -5s;
}

.hero-orb-3 {
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    bottom: 20%;
    left: 30%;
    animation-delay: -10s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, -30px) scale(1.05); }
    50% { transform: translate(-20px, 20px) scale(0.95); }
    75% { transform: translate(20px, 30px) scale(1.02); }
}

/* Particle Grid */
.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 2px 2px, rgba(139, 92, 246, 0.2) 1px, transparent 0);
    background-size: 60px 60px;
    z-index: 2;
    animation: particleShift 30s linear infinite;
}

@keyframes particleShift {
    0% { background-position: 0 0; }
    100% { background-position: 60px 60px; }
}

.hero .container {
    position: relative;
    z-index: 10;
    text-align: center;
}

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

.hero-logo {
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease-out;
}

.hero-logo img {
    max-width: 200px;
    height: auto;
    filter: drop-shadow(0 0 30px rgba(139, 92, 246, 0.4));
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: var(--bg-glass);
    border: 1px solid var(--border-subtle);
    border-radius: 100px;
    color: var(--text-light);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
    animation: fadeInUp 0.8s ease-out;
}

.hero-badge-dot {
    width: 8px;
    height: 8px;
    background: var(--green);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.3); opacity: 0.7; }
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    color: var(--text-white);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -2px;
    animation: fadeInUp 0.8s ease-out 0.1s both;
}

.hero-title .highlight {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    color: var(--text-muted);
    max-width: 650px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

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

/* Trust Indicators */
.hero-trust {
    margin-top: 4rem;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-trust-label {
    font-size: 0.875rem;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.hero-trust-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    flex-wrap: wrap;
    opacity: 0.6;
}

.hero-trust-logos img {
    height: 40px;
    width: auto;
    filter: brightness(0) invert(1);
    transition: var(--transition-base);
}

.hero-trust-logos img:hover {
    opacity: 1;
    transform: scale(1.1);
    filter: brightness(0) invert(1) drop-shadow(0 0 10px rgba(251, 191, 36, 0.5));
}

/* ============================================
   BUTTONS - Purple & Yellow Theme
   ============================================ */
.btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    transition: all var(--transition-base);
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-accent);
    color: var(--bg-darkest);
    box-shadow: 0 4px 20px rgba(251, 191, 36, 0.3);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: var(--transition-slow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(251, 191, 36, 0.5);
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-secondary {
    background: var(--bg-glass);
    color: var(--text-white);
    border: 1px solid var(--border-subtle);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: var(--bg-glass-strong);
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow-purple);
}

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

.btn-outline:hover {
    background: var(--accent);
    color: var(--bg-darkest);
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow-yellow);
}

.btn-large {
    padding: 1.125rem 2.5rem;
    font-size: 1.125rem;
}

.btn-glow {
    animation: btnGlow 3s ease-in-out infinite;
}

@keyframes btnGlow {
    0%, 100% { box-shadow: 0 4px 20px rgba(251, 191, 36, 0.3); }
    50% { box-shadow: 0 4px 40px rgba(251, 191, 36, 0.5), 0 0 60px rgba(251, 191, 36, 0.2); }
}

/* ============================================
   SECTIONS
   ============================================ */
section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.section-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--bg-glass);
    border: 1px solid var(--border-subtle);
    border-radius: 100px;
    color: var(--primary-light);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 1rem;
    letter-spacing: -1px;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.page-header {
    background: var(--gradient-hero);
    padding: 8rem 0 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 30% 30%, rgba(139, 92, 246, 0.25) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 70%, rgba(251, 191, 36, 0.1) 0%, transparent 50%);
    z-index: 1;
}

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

.page-header h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.page-header p {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services-preview {
    background: var(--bg-darker);
}

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

.service-card {
    position: relative;
    background: var(--gradient-card);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid var(--border-subtle);
    transition: all var(--transition-base);
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-accent);
    opacity: 0;
    transition: var(--transition-base);
}

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

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

.service-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-glass);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    transition: var(--transition-base);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    border-color: var(--accent);
    box-shadow: var(--shadow-glow-yellow);
}

.service-card h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 0.75rem;
}

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

/* Service Detail Cards */
.service-detail-card {
    background: var(--gradient-card);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid var(--border-subtle);
    margin-bottom: 1.5rem;
    transition: var(--transition-base);
}

.service-detail-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-card-hover);
}

.service-detail-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.service-detail-card h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 1rem;
}

.service-detail-card p {
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}

.service-detail-card ul {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.service-detail-card li {
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.service-detail-card li strong {
    color: var(--accent);
}

.service-note {
    margin-top: 1.5rem;
    padding: 1.25rem;
    background: var(--bg-glass);
    border-radius: 12px;
    border-left: 4px solid var(--accent);
}

.service-note a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
}

.service-note a:hover {
    text-decoration: underline;
}

/* ============================================
   PROJECTS & PORTFOLIO
   ============================================ */
.featured-projects {
    background: var(--bg-darkest);
}

.projects-grid,
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.project-card,
.portfolio-card {
    position: relative;
    background: var(--gradient-card);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid var(--border-subtle);
    transition: all var(--transition-base);
}

.project-card:hover,
.portfolio-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: var(--shadow-card-hover);
}

.portfolio-logo {
    text-align: center;
    margin-bottom: 1.5rem;
}

.portfolio-logo img {
    max-width: 160px;
    height: auto;
    border-radius: 12px;
    transition: var(--transition-base);
}

.project-card:hover .portfolio-logo img,
.portfolio-card:hover .portfolio-logo img {
    transform: scale(1.05);
}

.project-card h3,
.portfolio-card h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 0.75rem;
}

.project-card p,
.portfolio-card p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.project-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-base);
}

.project-link:hover {
    color: var(--accent-light);
    transform: translateX(5px);
}

.portfolio-links {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

/* ============================================
   STATS SECTION
   ============================================ */
.stats-section {
    background: var(--bg-dark);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(139, 92, 246, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(251, 191, 36, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.stats-section .container {
    position: relative;
    z-index: 2;
}

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

.stat-item {
    padding: 1.5rem;
}

.stat-number {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-section {
    background: var(--bg-darker);
    padding: 5rem 0;
}

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

.testimonial-card {
    background: var(--gradient-card);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid var(--border-subtle);
    transition: var(--transition-base);
}

.testimonial-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-card-hover);
}

.testimonial-quote {
    font-size: 3rem;
    color: var(--primary);
    opacity: 0.5;
    line-height: 1;
    margin-bottom: 0.75rem;
}

.testimonial-text {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-weight: 700;
    font-size: 1.25rem;
}

.testimonial-info h4 {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.testimonial-info span {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    position: relative;
    background: var(--gradient-primary);
    padding: 5rem 0;
    text-align: center;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.1) 0%, transparent 50%);
    animation: ctaPulse 10s ease-in-out infinite;
}

@keyframes ctaPulse {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(5%, 5%); }
}

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

.cta-section h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 600px;
    margin: 0 auto 2rem;
}

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

.cta-section .btn-primary {
    background: var(--gradient-accent);
    color: var(--bg-darkest);
}

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

.cta-section .btn-secondary:hover {
    background: var(--text-white);
    color: var(--primary);
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-content {
    padding: 5rem 0;
}

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

.about-section h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.about-section h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--gradient-accent);
    border-radius: 2px;
}

.about-section p {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.about-section a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
}

.about-section a:hover {
    text-decoration: underline;
}

.profile-card {
    background: var(--gradient-card);
    padding: 2.5rem;
    border-radius: 24px;
    border: 1px solid var(--border-subtle);
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.profile-image-container {
    flex: 0 0 300px;
    text-align: center;
}

.profile-portrait {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 20px;
    border: 3px solid var(--border-subtle);
    box-shadow: var(--shadow-card);
    transition: var(--transition-base);
}

.profile-portrait:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-glow-purple);
}

.profile-content {
    flex: 1;
    min-width: 300px;
}

.profile-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 1rem;
}

.profile-content h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--accent);
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.profile-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 0.75rem;
}

.profile-content ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.profile-content li {
    color: var(--text-light);
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.profile-content li strong {
    color: var(--accent);
}

.profile-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.approach-item {
    background: var(--gradient-card);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--border-subtle);
    transition: var(--transition-base);
}

.approach-item:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-card-hover);
}

.approach-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.75rem;
}

.approach-item p {
    color: var(--text-muted);
    font-size: 1rem;
}

.values-list {
    list-style: none;
    margin-top: 2rem;
}

.values-list li {
    padding: 1.25rem;
    margin-bottom: 1rem;
    background: var(--gradient-card);
    border-radius: 12px;
    border: 1px solid var(--border-subtle);
    border-left: 4px solid var(--accent);
    color: var(--text-light);
    transition: var(--transition-base);
}

.values-list li:hover {
    border-color: var(--primary);
    border-left-color: var(--accent);
    transform: translateX(5px);
}

.values-list strong {
    color: var(--accent);
}

/* ============================================
   BOOKING PAGE
   ============================================ */
.booking-content {
    padding: 5rem 0;
}

.booking-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.booking-intro p {
    font-size: 1.125rem;
    color: var(--text-light);
    line-height: 1.8;
}

.donation-requirement {
    margin: 3rem 0;
}

.donation-card {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.15) 0%, rgba(245, 158, 11, 0.1) 100%);
    border: 2px solid var(--accent);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    position: relative;
}

.donation-card h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 1rem;
}

.donation-text {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.donation-text strong {
    color: var(--accent);
    font-size: 1.35rem;
}

.donation-cta {
    margin-top: 1.5rem;
}

.donation-note {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--text-muted);
    font-style: italic;
}

.booking-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.booking-card {
    background: var(--gradient-card);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid var(--border-subtle);
    transition: var(--transition-base);
}

.booking-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-card-hover);
}

.booking-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.booking-card h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 0.75rem;
}

.booking-card p {
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}

.booking-card ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.booking-card li {
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.booking-note {
    margin-top: 1.5rem;
    padding: 1rem;
    background: var(--bg-glass);
    border-radius: 8px;
    font-style: italic;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Calendly Section */
.calendly-section {
    background: var(--gradient-card);
    padding: 2.5rem;
    border-radius: 24px;
    border: 1px solid var(--border-subtle);
    max-width: 1000px;
    margin: 0 auto 3rem;
}

.calendly-section h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 1rem;
    text-align: center;
}

.calendly-intro {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-size: 1.125rem;
}

.calendly-inline-widget {
    width: 100%;
    min-height: 700px;
    margin: 2rem 0;
    border-radius: 16px;
    overflow: hidden;
}

.calendly-note {
    text-align: center;
    margin-top: 1rem;
    color: var(--text-muted);
}

.calendly-note a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
}

/* Booking Form */
.booking-form-section {
    background: var(--gradient-card);
    padding: 2.5rem;
    border-radius: 24px;
    border: 1px solid var(--border-subtle);
    max-width: 800px;
    margin: 0 auto;
}

.booking-form-section h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 1.5rem;
}

.form-intro {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--bg-glass);
    border-radius: 12px;
    border-left: 4px solid var(--primary);
}

.form-reminder {
    background: rgba(251, 191, 36, 0.1);
    border: 2px solid var(--accent);
    padding: 1rem;
    border-radius: 12px;
    margin: 1.5rem 0;
}

.form-reminder p {
    margin: 0;
    color: var(--text-light);
}

.form-reminder a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
}

/* ============================================
   FORMS
   ============================================ */
.form-group {
    margin-bottom: 1.5rem;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid var(--border-subtle);
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    background: var(--bg-darker);
    color: var(--text-light);
    transition: var(--transition-base);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.15);
}

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

.form-group select {
    cursor: pointer;
}

.form-group select option {
    background: var(--bg-dark);
    color: var(--text-light);
}

/* ============================================
   GIFT CARDS
   ============================================ */
.gift-cards-content {
    padding: 5rem 0;
}

.gift-card-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.gift-card-intro h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 1rem;
}

.gift-card-intro p {
    font-size: 1.125rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 0.75rem;
}

.gift-card-intro a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
}

.gift-card-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.gift-card-option {
    background: var(--gradient-card);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid var(--border-subtle);
    text-align: center;
    position: relative;
    transition: var(--transition-base);
}

.gift-card-option:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: var(--shadow-card-hover);
}

.gift-card-option.featured {
    border-color: var(--accent);
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.1), var(--bg-card));
}

.gift-card-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--gradient-accent);
    color: var(--bg-darkest);
    padding: 0.35rem 1rem;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.gift-card-amount {
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 1rem 0;
}

.gift-card-option p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.gift-card-info {
    background: var(--gradient-card);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid var(--border-subtle);
    max-width: 800px;
    margin: 0 auto;
}

.gift-card-info h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 1rem;
}

.gift-card-info ul {
    list-style: none;
    padding: 0;
}

.gift-card-info li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-subtle);
    color: var(--text-light);
}

.gift-card-info li:last-child {
    border-bottom: none;
}

.gift-card-info a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-content {
    padding: 5rem 0;
}

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

.contact-form-section h2,
.contact-info-section h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 1.5rem;
}

.contact-form {
    background: var(--gradient-card);
    padding: 2rem;
    border-radius: 24px;
    border: 1px solid var(--border-subtle);
}

.contact-info {
    margin-bottom: 2rem;
}

.info-item {
    margin-bottom: 1.5rem;
    padding: 1.25rem;
    background: var(--gradient-card);
    border-radius: 16px;
    border: 1px solid var(--border-subtle);
    transition: var(--transition-base);
}

.info-item:hover {
    border-color: var(--primary);
    transform: translateX(5px);
}

.info-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.info-item p {
    color: var(--text-muted);
    line-height: 1.7;
}

.info-item a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
}

.quick-links,
.project-links {
    margin-top: 2rem;
}

.quick-links h3,
.project-links h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 1rem;
}

.quick-links ul,
.project-links ul {
    list-style: none;
}

.quick-links li,
.project-links li {
    margin-bottom: 0.5rem;
}

.quick-links a,
.project-links a {
    color: var(--accent);
    text-decoration: none;
    transition: var(--transition-base);
}

.quick-links a:hover,
.project-links a:hover {
    color: var(--accent-light);
    transform: translateX(5px);
    display: inline-block;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--bg-darker);
    color: var(--text-light);
    padding: 4rem 0 1.5rem;
    margin-top: 0;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent), var(--primary-light));
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--accent);
}

.footer-section h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-white);
}

.footer-section p {
    color: var(--text-muted);
    line-height: 1.8;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition-base);
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-subtle);
    color: var(--text-dark);
    font-size: 0.9rem;
}

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

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

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

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 0;
        flex-direction: column;
        background: var(--bg-darkest);
        width: 100%;
        height: 100vh;
        text-align: center;
        transition: var(--transition-base);
        padding: 100px 2rem 2rem;
        gap: 1.5rem;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
        z-index: 1001;
    }

    .hero {
        min-height: auto;
        padding: 120px 0 60px;
    }

    .hero-logo img {
        max-width: 150px;
    }

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

    .section-title {
        font-size: 1.75rem;
    }

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

    .services-grid,
    .projects-grid,
    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .profile-card {
        flex-direction: column;
        text-align: center;
    }

    .profile-image-container {
        flex: 0 0 auto;
    }

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

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

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

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .hero {
        padding: 100px 0 50px;
    }

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

    .page-header {
        padding: 100px 0 40px;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-cta,
    .cta-buttons,
    .profile-links {
        flex-direction: column;
    }

    .gift-card-options {
        grid-template-columns: 1fr;
    }

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

/* ============================================
   FLOATING BOOKING WIDGET
   ============================================ */
.floating-book-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 28px;
    background: var(--gradient-accent);
    color: var(--bg-darkest);
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 100px;
    box-shadow: 0 8px 32px rgba(251, 191, 36, 0.4), 0 0 0 0 rgba(251, 191, 36, 0.4);
    cursor: pointer;
    border: none;
    font-family: inherit;
    transition: all var(--transition-base);
    animation: bookPulse 2s ease-in-out infinite;
}

.floating-book-btn:hover {
    transform: scale(1.05) translateY(-3px);
    box-shadow: 0 12px 40px rgba(251, 191, 36, 0.5);
    animation: none;
}

.floating-book-btn .btn-icon {
    font-size: 1.4rem;
    line-height: 1;
}

.floating-book-btn .btn-text {
    white-space: nowrap;
}

@keyframes bookPulse {
    0%, 100% {
        box-shadow: 0 8px 32px rgba(251, 191, 36, 0.4), 0 0 0 0 rgba(251, 191, 36, 0.4);
    }
    50% {
        box-shadow: 0 8px 32px rgba(251, 191, 36, 0.4), 0 0 0 15px rgba(251, 191, 36, 0);
    }
}

/* Mobile floating button */
@media (max-width: 768px) {
    .floating-book-btn {
        bottom: 20px;
        right: 20px;
        padding: 14px 20px;
        font-size: 1rem;
    }
    
    .floating-book-btn .btn-text {
        display: none;
    }
    
    .floating-book-btn .btn-icon {
        font-size: 1.6rem;
    }
}

/* Booking Modal/Popup Overlay */
.booking-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity var(--transition-base);
}

.booking-modal-overlay.active {
    display: flex;
    opacity: 1;
}

.booking-modal {
    background: var(--bg-dark);
    border-radius: 24px;
    border: 1px solid var(--border-subtle);
    width: 100%;
    max-width: 600px;
    max-height: 90vh;
    overflow: hidden;
    position: relative;
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.booking-modal-header {
    padding: 24px;
    border-bottom: 1px solid var(--border-subtle);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.booking-modal-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-white);
    margin: 0;
}

.booking-modal-close {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-glass);
    border: 1px solid var(--border-subtle);
    color: var(--text-light);
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-base);
}

.booking-modal-close:hover {
    background: var(--primary);
    color: white;
}

.booking-modal-body {
    padding: 24px;
    overflow-y: auto;
    max-height: calc(90vh - 100px);
}

.quick-book-options {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.quick-book-option {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: var(--gradient-card);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    text-decoration: none;
    transition: var(--transition-base);
}

.quick-book-option:hover {
    border-color: var(--accent);
    transform: translateX(5px);
    box-shadow: var(--shadow-glow-yellow);
}

.quick-book-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: var(--bg-glass);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    flex-shrink: 0;
}

.quick-book-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 4px;
}

.quick-book-content p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
}

.booking-modal-footer {
    padding: 16px 24px;
    border-top: 1px solid var(--border-subtle);
    text-align: center;
}

.booking-modal-footer p {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin: 0;
}

.booking-modal-footer a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
}

/* Focus States */
*:focus-visible {
    outline: 3px solid var(--primary);
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .navbar, .hero-orb, .hero-particles, .cta-section {
        display: none;
    }
    body {
        background: white;
        color: black;
    }
}
