/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', 'Poppins', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

:root {
    /* Monochrome Palette with #f8be14 as accent */
    --primary-gold: #f8be14;
    --gold-light: #fad257;
    --gold-pale: #fce9aa;
    --gold-soft: #fff3d6;
    --gold-deep: #d9a00c;
    --gold-dark: #a07809;
    
    /* Monochrome Grays */
    --gray-900: #1a1a1a;
    --gray-800: #2d2d2d;
    --gray-700: #404040;
    --gray-600: #666666;
    --gray-500: #808080;
    --gray-400: #999999;
    --gray-300: #b3b3b3;
    --gray-200: #e0e0e0;
    --gray-100: #f2f2f2;
    --gray-50: #fafafa;
    --white: #ffffff;
    
    /* Functional Colors */
    --text-primary: var(--gray-900);
    --text-secondary: var(--gray-600);
    --text-tertiary: var(--gray-500);
    --text-light: var(--gray-50);
    --bg-primary: var(--white);
    --bg-secondary: var(--gray-50);
    --bg-tertiary: var(--gray-100);
    --border-light: var(--gray-200);
    --border-medium: var(--gray-300);
    
    /* Modern Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.02), 0 1px 4px rgba(0, 0, 0, 0.02);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.04), 0 2px 8px rgba(0, 0, 0, 0.02);
    --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.06), 0 4px 12px rgba(0, 0, 0, 0.02);
    --shadow-xl: 0 24px 64px rgba(0, 0, 0, 0.08), 0 8px 24px rgba(0, 0, 0, 0.02);
    --shadow-gold: 0 12px 32px rgba(248, 190, 20, 0.12);
    
    /* Modern Border Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-2xl: 48px;
    --radius-full: 9999px;
    
    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    
    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 2.5rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 5rem;
}

body {
    background-color: var(--white);
    color: var(--text-primary);
    line-height: 1.6;
    font-weight: 400;
}

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: var(--space-lg);
}

/* ===== MODERN GRID LAYOUTS ===== */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
}

.grid-asymmetric {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: var(--space-xl);
}

/* ===== MODERN TYPOGRAPHY ===== */
.section-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: var(--space-xl);
    color: var(--gray-900);
    letter-spacing: -0.03em;
    line-height: 1.2;
    position: relative;
}

.section-title--large {
    font-size: 4rem;
    font-weight: 900;
}

.section-title--small {
    font-size: 2rem;
    font-weight: 700;
}

.section-title--centered {
    text-align: center;
}

.section-title--centered::after {
    left: 50%;
    transform: translateX(-50%);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 0;
    width: 120px;
    height: 6px;
    background: linear-gradient(90deg, var(--primary-gold), var(--gray-300));
    border-radius: var(--radius-full);
    transition: width var(--transition-base);
}

.section-title:hover::after {
    width: 180px;
}

/* Modern text treatments */
.gradient-text {
    background: linear-gradient(135deg, var(--gray-900) 0%, var(--primary-gold) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

/* ===== HEADER & NAVIGATION ===== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-light);
    transition: all var(--transition-base);
}

.site-header.scrolled {
    box-shadow: var(--shadow-lg);
}

.site-header.scrolled .header-wrapper {
    padding: 0.75rem 0;
}

.header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 0;
    gap: var(--space-xl);
    transition: padding var(--transition-base);
}

/* Logo Area */
.logo-area {
    position: relative;
    flex-shrink: 0;
}

.logo-link {
    display: block;
    text-decoration: none;
    color: inherit;
    position: relative;
    z-index: 2;
}

.dynamic-logo {
    display: inline-flex;
    align-items: center;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--gray-900);
    letter-spacing: -0.03em;
    line-height: 1.2;
    position: relative;
    cursor: default;
    margin: 0;
    padding: 0;
}

.logo-char {
    display: inline-block;
    transition: all var(--transition-bounce);
    animation: logoFloat 4s ease-in-out infinite;
    animation-delay: calc(var(--char-index) * 0.08s);
    transform-origin: center;
}

.logo-space {
    width: 0.35rem;
    display: inline-block;
}

@keyframes logoFloat {
    0%, 100% {
        transform: translateY(0);
        color: var(--gray-900);
    }
    20% {
        transform: translateY(-4px);
        color: var(--primary-gold);
        text-shadow: 0 4px 12px rgba(248, 190, 20, 0.25);
    }
    40% {
        transform: translateY(0);
        color: var(--gray-900);
    }
}

.logo-char:hover {
    animation: none;
    transform: scale(1.15) rotate(3deg);
    color: var(--primary-gold);
    text-shadow: 0 0 25px rgba(248, 190, 20, 0.4);
    cursor: default;
}

.logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(248, 190, 20, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    transition: width 0.6s ease-out, height 0.6s ease-out;
    pointer-events: none;
    z-index: 1;
    opacity: 0.5;
}

.logo-area:hover .logo-glow {
    width: 320px;
    height: 320px;
}

.tagline {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-top: 0.25rem;
    margin-left: 0.25rem;
    padding-left: 1rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    border-right: 2px solid var(--primary-gold);
    animation: typing 3.5s steps(35, end) 0.5s 1 normal both, 
               blink-caret 1s step-end infinite;
    width: fit-content;
    max-width: 100%;
}

@keyframes typing {
    0% { width: 0; }
    100% { width: 100%; }
}

@keyframes blink-caret {
    from, to { border-color: transparent; }
    50% { border-color: var(--primary-gold); }
}

/* Navigation Menu */
.main-nav {
    flex: 0 1 auto;
    display: flex;
    justify-content: center;
}

.nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
    gap: var(--space-lg);
    margin: 0;
    padding: 0;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: inline-block;
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.03em;
    padding: 0.5rem 0;
    position: relative;
    transition: color var(--transition-base);
    white-space: nowrap;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2.5px;
    background: var(--primary-gold);
    transition: width var(--transition-base);
    border-radius: var(--radius-full);
}

.nav-link:hover {
    color: var(--primary-gold);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link.active {
    color: var(--primary-gold);
    font-weight: 700;
}

.nav-link.active::after {
    width: 100%;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    margin: 0;
    border-radius: var(--radius-full);
    transition: background var(--transition-base);
}

.mobile-menu-btn:hover {
    background: var(--gray-100);
}

.mobile-menu-btn span {
    width: 24px;
    height: 2.5px;
    background: var(--gray-900);
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
    transform-origin: center;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    position: relative;
    flex-shrink: 0;
}

.header-actions::before {
    content: '';
    position: absolute;
    top: -8px;
    right: -8px;
    width: calc(100% + 16px);
    height: calc(100% + 16px);
    border: 2px solid var(--primary-gold);
    border-radius: var(--radius-full);
    opacity: 0;
    animation: pulse-ring 2.5s ease-in-out infinite;
    pointer-events: none;
    box-sizing: border-box;
}

@keyframes pulse-ring {
    0% {
        transform: scale(0.95);
        opacity: 0.4;
    }
    50% {
        transform: scale(1.02);
        opacity: 0.15;
    }
    100% {
        transform: scale(0.95);
        opacity: 0.4;
    }
}

/* ===== MODERN BUTTONS ===== */
.pill-btn {
    padding: 0.7rem 2rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    color: var(--gray-900);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all var(--transition-bounce);
    border: 2px solid var(--border-light);
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    background: var(--white);
    position: relative;
    overflow: hidden;
    z-index: 1;
    cursor: pointer;
    line-height: 1.2;
    min-width: 140px;
}

.pill-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(248, 190, 20, 0.15), transparent);
    transition: left 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.pill-btn:hover::before {
    left: 100%;
}

.pill-btn i {
    color: var(--primary-gold);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    font-size: 1rem;
}

.pill-btn:hover {
    border-color: var(--primary-gold);
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--shadow-gold), var(--shadow-lg);
}

.pill-btn:hover i {
    transform: rotate(360deg) scale(1.1);
}

.pill-btn:active {
    transform: translateY(-1px) scale(1.01);
}

.pill-btn.primary {
    background: var(--gray-900);
    border: none;
    color: var(--white);
}

.pill-btn.primary i {
    color: var(--primary-gold);
}

.pill-btn.primary:hover {
    background: var(--gray-800);
}

.pill-btn.dark {
    background: var(--gray-900);
    border: none;
    color: var(--white);
}

.pill-btn.dark i {
    color: var(--primary-gold);
}

.pill-btn.large {
    padding: 1rem 2.8rem;
    font-size: 1.1rem;
    min-width: 180px;
    gap: 0.8rem;
}

.pill-btn.large i {
    font-size: 1.2rem;
}

.pill-btn.small {
    padding: 0.5rem 1.5rem;
    font-size: 0.85rem;
    min-width: 120px;
    gap: 0.4rem;
}

.pill-btn.small i {
    font-size: 0.9rem;
}

/* Dynamic Button */
.dynamic-btn {
    position: relative;
    overflow: hidden;
    min-width: 160px;
}

.dynamic-btn .btn-text {
    display: inline-block;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), 
                opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.dynamic-btn .btn-hover-text {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, 200%);
    opacity: 0;
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), 
                opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    font-weight: 600;
    width: 100%;
    text-align: center;
}

.dynamic-btn:hover .btn-text {
    transform: translateY(-200%);
    opacity: 0;
}

.dynamic-btn:hover .btn-hover-text {
    transform: translate(-50%, -50%);
    opacity: 1;
}

/* Button group spacing */
.button-group {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.button-group .pill-btn {
    margin: 0;
}

/* Responsive Header */
@media (max-width: 992px) {
    .header-wrapper {
        gap: var(--space-md);
    }
    
    .nav-menu {
        gap: var(--space-md);
    }
    
    .nav-link {
        font-size: 0.85rem;
        letter-spacing: 0.02em;
    }
    
    .dynamic-logo {
        font-size: 2rem;
    }
    
    .pill-btn {
        padding: 0.6rem 1.5rem;
        min-width: 120px;
    }
    
    .dynamic-btn {
        min-width: 140px;
    }
}

@media (max-width: 768px) {
    .header-wrapper {
        flex-wrap: wrap;
        padding: 1rem 0;
    }
    
    .site-header.scrolled .header-wrapper {
        padding: 0.5rem 0;
    }
    
    .logo-area {
        flex: 1;
    }
    
    .mobile-menu-btn {
        display: flex;
        order: 2;
    }
    
    .main-nav {
        order: 3;
        width: 100%;
        flex: 0 0 100%;
    }
    
    .nav-menu {
        display: none;
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        padding: var(--space-lg) 0;
        gap: var(--space-md);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-item {
        width: 100%;
    }
    
    .nav-link {
        display: block;
        width: 100%;
        padding: 0.75rem 0;
        font-size: 1rem;
    }
    
    .nav-link::after {
        bottom: 0.5rem;
    }
    
    .header-actions {
        order: 1;
        margin-left: auto;
    }
    
    .header-actions::before {
        display: none;
    }
    
    .dynamic-logo {
        font-size: 1.8rem;
    }
    
    .tagline {
        font-size: 0.8rem;
        white-space: normal;
        animation: none;
        border-right: none;
        padding-left: 0.75rem;
    }
}

@media (max-width: 576px) {
    .header-wrapper {
        gap: var(--space-sm);
    }
    
    .header-actions {
        width: 100%;
        justify-content: flex-end;
        margin-top: var(--space-xs);
    }
    
    .pill-btn {
        padding: 0.5rem 1.2rem;
        min-width: 100px;
        font-size: 0.85rem;
    }
    
    .dynamic-btn {
        min-width: 120px;
    }
    
    .dynamic-logo {
        font-size: 1.5rem;
    }
    
    .logo-space {
        width: 0.2rem;
    }
}

/* Print styles */
@media print {
    .site-header {
        position: static;
        background: white;
        border-bottom: 1px solid #ccc;
        backdrop-filter: none;
    }
    
    .header-actions,
    .mobile-menu-btn,
    .logo-glow {
        display: none;
    }
    
    .nav-menu {
        display: flex !important;
        gap: 1rem;
    }
    
    .nav-link {
        color: black;
    }
    
    .nav-link::after {
        display: none;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .nav-link {
        color: black;
    }
    
    .nav-link::after {
        background: black;
    }
    
    .pill-btn {
        border: 2px solid black;
    }
    
    .pill-btn.primary,
    .pill-btn.dark {
        background: black;
        color: white;
    }
}

/* Reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
    .logo-char,
    .logo-glow,
    .pill-btn,
    .pill-btn::before,
    .pill-btn i,
    .nav-link::after,
    .header-actions::before,
    .dynamic-btn .btn-text,
    .dynamic-btn .btn-hover-text {
        animation: none !important;
        transition: none !important;
    }
    
    .logo-char:hover {
        transform: none;
    }
    
    .pill-btn:hover {
        transform: none;
    }
}

/* ===== PAGE HERO SECTIONS ===== */
.page-hero {
    padding: var(--space-4xl) 0;
    background: var(--gray-50);
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, transparent, rgba(248, 190, 20, 0.05));
    clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.home-hero {
    background: linear-gradient(135deg, var(--gray-900) 0%, var(--gray-800) 100%);
    color: var(--white);
}

.home-hero::before {
    background: linear-gradient(135deg, transparent, rgba(248, 190, 20, 0.1));
}

.hero-content {
    max-width: 800px;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: var(--space-lg);
}

.home-hero .hero-title {
    color: var(--white);
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--gray-300);
    margin-bottom: var(--space-xl);
}

.hero-cta {
    display: flex;
    gap: var(--space-md);
}

/* Hero Stats */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
    margin-top: var(--space-3xl);
    position: relative;
    z-index: 2;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-gold);
    display: inline-block;
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: var(--gray-300);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Breadcrumb */
.breadcrumb {
    margin-top: var(--space-md);
    color: var(--gray-500);
}

.breadcrumb a {
    color: var(--gray-600);
    text-decoration: none;
}

.breadcrumb a:hover {
    color: var(--primary-gold);
}

/* ===== ACHIEVEMENTS ===== */
.achievements {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
    padding: var(--space-2xl);
    margin: var(--space-3xl) 0;
    background: linear-gradient(135deg, var(--gray-900) 0%, var(--gray-800) 100%);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: hidden;
}

.achievements::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(248, 190, 20, 0.2), transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.ach-item {
    text-align: center;
    position: relative;
    z-index: 2;
}

.ach-number {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--primary-gold);
    line-height: 1.2;
    display: inline-block;
    margin-bottom: var(--space-xs);
    text-shadow: 0 4px 12px rgba(248, 190, 20, 0.3);
    animation: countPulse 2s ease-in-out infinite;
}

@keyframes countPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.ach-label {
    font-size: 0.95rem;
    color: var(--gray-300);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-weight: 500;
}

/* ===== WHY CHOOSE US ===== */
.why-choose-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: var(--space-2xl);
    background: var(--white);
    border-radius: var(--radius-2xl);
    padding: var(--space-2xl);
    margin: var(--space-3xl) 0;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-light);
    position: relative;
    overflow: hidden;
}

.why-choose-grid::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(248, 190, 20, 0.03) 0%, transparent 70%);
    border-radius: 50%;
}

.why-left {
    position: relative;
    z-index: 2;
}

.why-left h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: var(--space-lg);
}

.why-left .highlight {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: var(--space-lg);
    line-height: 1.5;
    padding: var(--space-md);
    background: var(--gold-soft);
    border-radius: var(--radius-lg);
    border-left: 6px solid var(--primary-gold);
}

.why-left p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: var(--space-md);
}

.why-right {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    position: relative;
    z-index: 2;
}

.feature-tag {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    font-weight: 600;
    color: var(--gray-800);
    display: flex;
    align-items: center;
    gap: var(--space-md);
    transition: all var(--transition-bounce);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.feature-tag::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary-gold);
    transform: scaleY(0);
    transition: transform var(--transition-base);
}

.feature-tag:hover {
    transform: translateX(10px) scale(1.02);
    border-color: var(--primary-gold);
    box-shadow: var(--shadow-gold);
}

.feature-tag:hover::after {
    transform: scaleY(1);
}

.feature-tag i {
    color: var(--primary-gold);
    font-size: 1.5rem;
    width: 32px;
}

/* ===== SERVICE CARDS ===== */
.service-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
    margin: var(--space-2xl) 0;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
    text-align: center;
    transition: all var(--transition-bounce);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, rgba(248, 190, 20, 0.02) 100%);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(248, 190, 20, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.service-card:hover::after {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-xl), var(--shadow-gold);
    border-color: var(--primary-gold);
}

.service-card i {
    font-size: 3rem;
    color: var(--gray-700);
    margin-bottom: var(--space-lg);
    transition: all var(--transition-bounce);
}

.service-card:hover i {
    color: var(--primary-gold);
    transform: scale(1.2) rotate(360deg);
}

.service-card h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: var(--space-md);
}

.service-card p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
}

.service-card.light-bg {
    background: var(--gray-50);
}

/* Services Page Specific */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
    margin: var(--space-2xl) 0;
}

.service-card.large {
    padding: var(--space-2xl);
}

.service-icon {
    font-size: 3rem;
    color: var(--primary-gold);
    margin-bottom: var(--space-lg);
}

.service-features {
    list-style: none;
    margin: var(--space-lg) 0;
    padding: 0;
    text-align: left;
}

.service-features li {
    margin-bottom: var(--space-sm);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.service-features i {
    color: var(--primary-gold);
}

/* ===== DESIGN INNOVATE ===== */
.design-innovate {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: var(--space-2xl);
    background: var(--white);
    border-radius: var(--radius-2xl);
    padding: var(--space-2xl);
    margin: var(--space-3xl) 0;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-light);
    position: relative;
    overflow: hidden;
}

.design-innovate::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(248, 190, 20, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.design-innovate h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--gray-900);
    line-height: 1.2;
    position: relative;
    z-index: 2;
}

.design-innovate .service-row {
    margin: 0;
    gap: var(--space-md);
}

/* ===== PORTFOLIO ===== */
.portfolio-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
    margin: var(--space-2xl) 0;
}

.portfolio-item {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: all var(--transition-bounce);
    position: relative;
    overflow: hidden;
}

.portfolio-item:nth-child(2) {
    transform: translateY(30px);
}

.portfolio-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-gold);
}

.portfolio-item:hover:nth-child(2) {
    transform: translateY(22px);
}

.portfolio-item .tag {
    font-size: 0.9rem;
    font-weight: 700;
    background: var(--gray-900);
    color: var(--white);
    padding: 0.4rem 1.2rem;
    border-radius: var(--radius-full);
    display: inline-block;
    margin-bottom: var(--space-lg);
    letter-spacing: 0.5px;
    transition: all var(--transition-base);
}

.portfolio-item:hover .tag {
    background: var(--primary-gold);
    color: var(--gray-900);
}

.portfolio-item h4 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: var(--space-sm);
    letter-spacing: -0.02em;
}

.portfolio-item p {
    color: var(--text-secondary);
    font-weight: 500;
}

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
    margin: var(--space-2xl) 0;
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
    transition: all var(--transition-bounce);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 8rem;
    font-family: serif;
    color: var(--primary-gold);
    opacity: 0.1;
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-gold);
}

.testimonial-card i {
    font-size: 2rem;
    color: var(--primary-gold);
    margin-bottom: var(--space-md);
    opacity: 0.5;
}

.testimonial-card p {
    color: var(--text-primary);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: var(--space-lg);
    font-style: italic;
    position: relative;
    z-index: 2;
}

.testimonial-card h5 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: var(--space-xs);
}

.testimonial-card .role {
    color: var(--primary-gold);
    font-size: 0.95rem;
    font-weight: 600;
}

/* ===== QUOTE SECTION ===== */
.quote-section {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--space-2xl);
    background: linear-gradient(135deg, var(--gray-900) 0%, var(--gray-800) 100%);
    border-radius: var(--radius-2xl);
    padding: var(--space-2xl);
    margin: var(--space-3xl) 0;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.quote-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(248, 190, 20, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.2); opacity: 0.8; }
}

.quote-left h2 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: var(--space-md);
    line-height: 1.2;
    position: relative;
    z-index: 2;
}

.quote-left p {
    color: var(--gray-300);
    font-size: 1.2rem;
}

.quote-right {
    text-align: right;
    position: relative;
    z-index: 2;
}

.quote-right .pill-btn {
    background: var(--primary-gold);
    border: none;
    color: var(--gray-900);
    font-size: 1.1rem;
    padding: 1rem 2.5rem;
}

.quote-right .pill-btn i {
    color: var(--gray-900);
}

/* ===== FEEDBACK ROW ===== */
.feedback-row {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--space-xl);
    align-items: center;
    background: var(--white);
    border-radius: var(--radius-2xl);
    padding: var(--space-2xl);
    margin: var(--space-3xl) 0;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-light);
    position: relative;
    overflow: hidden;
}

.feedback-row p {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--gray-900);
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

.feedback-row i {
    color: var(--primary-gold);
    margin-right: var(--space-sm);
}

.feedback-row .pill-btn {
    justify-self: end;
}

/* ===== PORTFOLIO PAGE STYLES ===== */

/* Portfolio Hero */
.portfolio-hero {
    background: linear-gradient(135deg, var(--gray-900) 0%, var(--gray-800) 100%);
    color: var(--white);
    padding: var(--space-4xl) 0;
}

.portfolio-hero .hero-title {
    color: var(--white);
    font-size: 4rem;
}

.portfolio-hero .hero-subtitle {
    color: var(--gray-300);
    font-size: 1.4rem;
}

/* Filter Section */
.portfolio-filter-section {
    padding: var(--space-2xl) 0;
    background: var(--white);
    border-bottom: 1px solid var(--border-light);
    position: sticky;
    top: 80px;
    z-index: 90;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.95);
}

.filter-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-sm);
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.8rem 2rem;
    border: 2px solid var(--border-light);
    background: var(--white);
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-primary);
    cursor: pointer;
    transition: all var(--transition-base);
    letter-spacing: 0.5px;
}

.filter-btn:hover {
    border-color: var(--primary-gold);
    color: var(--primary-gold);
    transform: translateY(-2px);
}

.filter-btn.active {
    background: var(--gray-900);
    border-color: var(--gray-900);
    color: var(--white);
}

/* Portfolio Grid */
.portfolio-grid-section {
    padding: var(--space-3xl) 0;
    background: var(--gray-50);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

/* Project Card */
.portfolio-project {
    opacity: 1;
    transform: scale(1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.portfolio-project.hidden {
    display: none;
    opacity: 0;
    transform: scale(0.8);
}

.project-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
    transition: all var(--transition-bounce);
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl), var(--shadow-gold);
    border-color: var(--primary-gold);
}

.project-image {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.project-card:hover .project-image img {
    transform: scale(1.1);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-base);
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-links {
    display: flex;
    gap: var(--space-md);
    transform: translateY(20px);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.project-card:hover .project-links {
    transform: translateY(0);
}

.project-link {
    width: 50px;
    height: 50px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-900);
    font-size: 1.2rem;
    transition: all var(--transition-base);
}

.project-link:hover {
    background: var(--primary-gold);
    color: var(--white);
    transform: rotate(360deg);
}

.project-info {
    padding: var(--space-lg);
}

.project-category {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--space-xs);
}

.project-info h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: var(--space-xs);
}

.project-info p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Featured Project */
.featured-project-section {
    padding: var(--space-3xl) 0;
    background: var(--white);
}

.featured-project {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%);
    border-radius: var(--radius-2xl);
    padding: var(--space-2xl);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-lg);
}

.featured-content {
    padding: var(--space-xl);
}

.featured-tag {
    display: inline-block;
    padding: 0.4rem 1.2rem;
    background: var(--primary-gold);
    color: var(--gray-900);
    font-weight: 700;
    font-size: 0.85rem;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--space-lg);
}

.featured-content h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: var(--space-md);
    line-height: 1.2;
}

.featured-content p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: var(--space-xl);
}

.featured-stats {
    display: flex;
    gap: var(--space-2xl);
    margin-bottom: var(--space-xl);
}

.featured-stat {
    text-align: center;
}

.featured-stat .stat-value {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-gold);
    line-height: 1.2;
}

.featured-stat .stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.featured-image {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    height: 400px;
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-bounce);
}

.featured-image:hover img {
    transform: scale(1.05);
}

/* Client Images */
.client-info {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-top: var(--space-lg);
}

.client-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-gold);
}

/* CTA Section */
.cta-section {
    padding: var(--space-4xl) 0;
    background: linear-gradient(135deg, var(--gray-900) 0%, var(--gray-800) 100%);
    text-align: center;
    color: var(--white);
}

.cta-content h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: var(--space-md);
}

.cta-content p {
    font-size: 1.3rem;
    color: var(--gray-300);
    margin-bottom: var(--space-xl);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
}

/* Responsive */
@media (max-width: 1200px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .portfolio-hero .hero-title {
        font-size: 3rem;
    }
    
    .featured-project {
        grid-template-columns: 1fr;
    }
    
    .featured-image {
        order: -1;
        height: 300px;
    }
    
    .filter-container {
        gap: var(--space-xs);
    }
    
    .filter-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 768px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .portfolio-hero .hero-title {
        font-size: 2.5rem;
    }
    
    .portfolio-hero .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .filter-container {
        flex-direction: row;
        overflow-x: auto;
        padding-bottom: var(--space-sm);
        justify-content: flex-start;
    }
    
    .filter-btn {
        flex-shrink: 0;
    }
    
    .featured-stats {
        flex-direction: column;
        gap: var(--space-md);
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-content h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 480px) {
    .portfolio-filter-section {
        top: 70px;
    }
    
    .project-image {
        height: 220px;
    }
    
    .featured-content h2 {
        font-size: 2rem;
    }
    
    .featured-content {
        padding: var(--space-md);
    }
}

/* Loading Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.portfolio-project {
    animation: fadeInUp 0.6s ease-out forwards;
}

.portfolio-project:nth-child(1) { animation-delay: 0.1s; }
.portfolio-project:nth-child(2) { animation-delay: 0.15s; }
.portfolio-project:nth-child(3) { animation-delay: 0.2s; }
.portfolio-project:nth-child(4) { animation-delay: 0.25s; }
.portfolio-project:nth-child(5) { animation-delay: 0.3s; }
.portfolio-project:nth-child(6) { animation-delay: 0.35s; }
.portfolio-project:nth-child(7) { animation-delay: 0.4s; }
.portfolio-project:nth-child(8) { animation-delay: 0.45s; }
.portfolio-project:nth-child(9) { animation-delay: 0.5s; }

/* ===== ABOUT PAGE STYLES ===== */

/* About Hero */
.about-hero {
    background: linear-gradient(135deg, var(--gray-900) 0%, var(--gray-800) 100%);
    color: var(--white);
    padding: var(--space-4xl) 0;
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(248, 190, 20, 0.1) 0%, transparent 70%);
    clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.about-hero .hero-title {
    font-size: 4rem;
    color: var(--white);
    margin-bottom: var(--space-md);
}

.about-hero .hero-subtitle {
    font-size: 1.4rem;
    color: var(--gray-300);
    max-width: 700px;
}

/* Intro Section */
.about-intro {
    padding: var(--space-4xl) 0;
    background: var(--white);
}

.intro-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: var(--space-3xl);
    align-items: start;
}

.intro-content .section-title {
    margin-bottom: var(--space-xl);
}

.intro-text {
    font-size: 1.2rem;
    color: var(--gray-700);
    line-height: 1.8;
    margin-bottom: var(--space-lg);
    font-weight: 500;
}

.intro-content p {
    color: var(--text-secondary);
    margin-bottom: var(--space-md);
    line-height: 1.8;
}

.core-philosophy {
    margin-top: var(--space-xl);
    padding: var(--space-xl);
    background: var(--gold-soft);
    border-radius: var(--radius-xl);
    border-left: 6px solid var(--primary-gold);
}

.core-philosophy h3 {
    font-size: 1.3rem;
    color: var(--gray-900);
    margin-bottom: var(--space-md);
}

.core-philosophy blockquote {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--gray-800);
    line-height: 1.5;
    font-style: italic;
    quotes: "“" "”" "‘" "’";
}

.core-philosophy blockquote::before {
    content: "“";
    color: var(--primary-gold);
    font-size: 2rem;
    margin-right: 5px;
}

.core-philosophy blockquote::after {
    content: "”";
    color: var(--primary-gold);
    font-size: 2rem;
    margin-left: 5px;
}

/* Intro Stats */
.intro-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
}

.stat-card {
    background: var(--gray-50);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    text-align: center;
    border: 1px solid var(--border-light);
    transition: all var(--transition-bounce);
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-gold);
    box-shadow: var(--shadow-gold);
}

.stat-card .stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-gold);
    line-height: 1.2;
    margin-bottom: var(--space-xs);
}

.stat-card .stat-label {
    font-size: 0.95rem;
    color: var(--text-secondary);
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Values Section */
.values-section {
    padding: var(--space-4xl) 0;
    background: var(--gray-50);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: var(--space-md);
    margin-top: var(--space-2xl);
}

.value-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    text-align: center;
    border: 1px solid var(--border-light);
    transition: all var(--transition-bounce);
}

.value-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-gold);
    box-shadow: var(--shadow-gold);
}

.value-card i {
    font-size: 2rem;
    color: var(--primary-gold);
    margin-bottom: var(--space-md);
}

.value-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: var(--space-xs);
}

.value-card p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Mission & Vision */
.mission-vision {
    padding: var(--space-4xl) 0;
    background: var(--white);
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-2xl);
}

.mission-card,
.vision-card {
    padding: var(--space-2xl);
    border-radius: var(--radius-2xl);
    position: relative;
    overflow: hidden;
}

.mission-card {
    background: linear-gradient(135deg, var(--gray-900) 0%, var(--gray-800) 100%);
    color: var(--white);
}

.vision-card {
    background: var(--gray-50);
    border: 1px solid var(--border-light);
}

.badge {
    display: inline-block;
    padding: 0.4rem 1.2rem;
    background: var(--primary-gold);
    color: var(--gray-900);
    font-weight: 700;
    font-size: 0.85rem;
    border-radius: var(--radius-full);
    margin-bottom: var(--space-lg);
    letter-spacing: 0.5px;
}

.mission-card h2,
.vision-card h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: var(--space-lg);
}

.mission-card h2 {
    color: var(--white);
}

.vision-card h2 {
    color: var(--gray-900);
}

.mission-card p,
.vision-card p {
    line-height: 1.8;
    margin-bottom: var(--space-md);
}

.mission-card p {
    color: var(--gray-300);
}

.vision-card p {
    color: var(--text-secondary);
}

.mission-list {
    list-style: none;
    margin-top: var(--space-xl);
}

.mission-list li {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
    color: var(--gray-300);
}

.mission-list i {
    color: var(--primary-gold);
    font-size: 1.2rem;
}

/* Founder Section */
.founder-section {
    padding: var(--space-4xl) 0;
    background: var(--gray-50);
}

.founder-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--space-3xl);
    align-items: center;
}

.founder-image {
    position: relative;
}

.image-wrapper {
    position: relative;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform var(--transition-bounce);
}

.image-wrapper:hover img {
    transform: scale(1.05);
}

.image-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(248, 190, 20, 0.2) 0%, transparent 70%);
    pointer-events: none;
    opacity: 0;
    transition: opacity var(--transition-base);
}

.image-wrapper:hover .image-glow {
    opacity: 1;
}

.founder-content {
    padding: var(--space-xl);
}

.founder-tag {
    display: inline-block;
    padding: 0.4rem 1.2rem;
    background: var(--primary-gold);
    color: var(--gray-900);
    font-weight: 700;
    font-size: 0.85rem;
    border-radius: var(--radius-full);
    margin-bottom: var(--space-md);
    letter-spacing: 0.5px;
}

.founder-content h2 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: var(--space-xs);
    line-height: 1.2;
}

.founder-title {
    font-size: 1.1rem;
    color: var(--primary-gold);
    font-weight: 600;
    margin-bottom: var(--space-lg);
}

.founder-bio p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: var(--space-md);
}

.founder-social {
    display: flex;
    gap: var(--space-md);
    margin-top: var(--space-xl);
}

.founder-social a {
    width: 44px;
    height: 44px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-900);
    font-size: 1.2rem;
    transition: all var(--transition-bounce);
    border: 1px solid var(--border-light);
}

.founder-social a:hover {
    background: var(--primary-gold);
    color: var(--white);
    transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 1200px) {
    .values-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 992px) {
    .about-hero .hero-title {
        font-size: 3rem;
    }
    
    .intro-grid,
    .founder-grid,
    .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }
    
    .values-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .intro-stats {
        order: -1;
    }
    
    .founder-image {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-hero .hero-title {
        font-size: 2.5rem;
    }
    
    .about-hero .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .core-philosophy blockquote {
        font-size: 1.2rem;
    }
    
    .founder-content h2 {
        font-size: 2.2rem;
    }
    
    .mission-card h2,
    .vision-card h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .intro-stats {
        grid-template-columns: 1fr;
    }
    
    .founder-social {
        justify-content: center;
    }
    
    .founder-content {
        text-align: center;
    }
}

/* Animation for value cards */
@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.value-card {
    animation: fadeInScale 0.5s ease-out forwards;
}

.value-card:nth-child(n) {
    animation-delay: calc(0.05s * var(--i, 0));
}
.value-card:nth-child(1) { --i: 1; }
.value-card:nth-child(2) { --i: 2; }
.value-card:nth-child(3) { --i: 3; }
.value-card:nth-child(4) { --i: 4; }
.value-card:nth-child(5) { --i: 5; }
.value-card:nth-child(6) { --i: 6; }
.value-card:nth-child(7) { --i: 7; }
.value-card:nth-child(8) { --i: 8; }
.value-card:nth-child(9) { --i: 9; }
.value-card:nth-child(10) { --i: 10; }
.value-card:nth-child(11) { --i: 11; }
.value-card:nth-child(12) { --i: 12; }
.value-card:nth-child(13) { --i: 13; }
.value-card:nth-child(14) { --i: 14; }
.value-card:nth-child(15) { --i: 15; }

/* ===== DARK THEME ===== */
@media (prefers-color-scheme: dark) {
    :root {
        /* Monochrome Palette with #f8be14 as accent - Dark Theme */
        --primary-gold: #f8be14;
        --gold-light: #fad257;
        --gold-pale: #fce9aa;
        --gold-soft: #332e1f; /* Darker version for backgrounds */
        --gold-deep: #d9a00c;
        --gold-dark: #a07809;
        
        /* Monochrome Grays - Inverted for dark theme */
        --gray-900: #f2f2f2;  /* Lightest for primary text */
        --gray-800: #e0e0e0;  /* Light for headings */
        --gray-700: #b3b3b3;  /* Medium light for secondary text */
        --gray-600: #999999;  /* Medium for tertiary text */
        --gray-500: #808080;  /* Medium dark */
        --gray-400: #666666;  /* Dark for borders */
        --gray-300: #404040;  /* Darker for cards */
        --gray-200: #2d2d2d;  /* Very dark for backgrounds */
        --gray-100: #1a1a1a;  /* Darkest for main background */
        --gray-50: #0f0f0f;   /* Darker than main background */
        --white: #000000;      /* Black as base */
        
        /* Functional Colors - Dark Theme */
        --text-primary: var(--gray-900);
        --text-secondary: var(--gray-700);
        --text-tertiary: var(--gray-600);
        --text-light: var(--gray-800);
        --bg-primary: var(--gray-100);
        --bg-secondary: var(--gray-200);
        --bg-tertiary: var(--gray-300);
        --border-light: var(--gray-300);
        --border-medium: var(--gray-400);
        
        /* Shadows adjusted for dark theme */
        --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.5), 0 1px 4px rgba(0, 0, 0, 0.3);
        --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.6), 0 2px 8px rgba(0, 0, 0, 0.4);
        --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.7), 0 4px 12px rgba(0, 0, 0, 0.5);
        --shadow-xl: 0 24px 64px rgba(0, 0, 0, 0.8), 0 8px 24px rgba(0, 0, 0, 0.6);
        --shadow-gold: 0 12px 32px rgba(248, 190, 20, 0.25);
    }

    body {
        background-color: var(--gray-100);
        color: var(--text-primary);
    }

    /* ===== HEADER & NAVIGATION - DARK ===== */
    .site-header {
        background: rgba(26, 26, 26, 0.98);
        border-bottom: 1px solid var(--border-light);
    }

    .site-header.scrolled {
        background: rgba(26, 26, 26, 0.98);
        box-shadow: var(--shadow-lg);
    }

    .dynamic-logo {
        color: var(--gray-900);
    }

    @keyframes logoFloat {
        0%, 100% {
            transform: translateY(0);
            color: var(--gray-900);
        }
        20% {
            transform: translateY(-4px);
            color: var(--primary-gold);
            text-shadow: 0 4px 12px rgba(248, 190, 20, 0.35);
        }
        40% {
            transform: translateY(0);
            color: var(--gray-900);
        }
    }

    .tagline {
        color: var(--text-secondary);
        border-right: 2px solid var(--primary-gold);
    }

    .nav-link {
        color: var(--text-primary);
    }

    .nav-link:hover {
        color: var(--primary-gold);
    }

    .nav-link.active {
        color: var(--primary-gold);
    }

    .mobile-menu-btn span {
        background: var(--gray-900);
    }

    .mobile-menu-btn:hover {
        background: var(--gray-300);
    }

    /* ===== BUTTONS - DARK ===== */
    .pill-btn {
        color: var(--gray-900);
        border: 2px solid var(--border-light);
        background: var(--gray-200);
    }

    .pill-btn::before {
        background: linear-gradient(90deg, transparent, rgba(248, 190, 20, 0.25), transparent);
    }

    .pill-btn:hover {
        border-color: var(--primary-gold);
        box-shadow: var(--shadow-gold), var(--shadow-lg);
    }

    .pill-btn i {
        color: var(--primary-gold);
    }

    .pill-btn.primary {
        background: var(--primary-gold);
        color: var(--gray-100);
    }

    .pill-btn.primary i {
        color: var(--gray-100);
    }

    .pill-btn.primary:hover {
        background: var(--gold-light);
    }

    .pill-btn.dark {
        background: var(--gray-900);
        color: var(--gray-100);
        border: none;
    }

    .pill-btn.dark i {
        color: var(--primary-gold);
    }

    /* ===== PAGE HERO SECTIONS - DARK ===== */
    .page-hero {
        background: var(--gray-200);
    }

    .home-hero {
        background: linear-gradient(135deg, var(--gray-200) 0%, var(--gray-100) 100%);
        color: var(--text-primary);
    }

    .home-hero .hero-title {
        color: var(--gray-900);
    }

    .hero-subtitle {
        color: var(--text-secondary);
    }

    .stat-label {
        color: var(--text-secondary);
    }

    /* ===== ACHIEVEMENTS - DARK ===== */
    .achievements {
        background: linear-gradient(135deg, var(--gray-200) 0%, var(--gray-300) 100%);
    }

    .ach-number {
        color: var(--primary-gold);
        text-shadow: 0 4px 12px rgba(248, 190, 20, 0.4);
    }

    .ach-label {
        color: var(--text-secondary);
    }

    /* ===== WHY CHOOSE US - DARK ===== */
    .why-choose-grid {
        background: var(--gray-200);
        border: 1px solid var(--border-light);
    }

    .why-left h2 {
        color: var(--gray-900);
    }

    .why-left .highlight {
        color: var(--gray-800);
        background: var(--gold-soft);
        border-left: 6px solid var(--primary-gold);
    }

    .why-left p {
        color: var(--text-secondary);
    }

    .feature-tag {
        background: var(--gray-300);
        color: var(--gray-800);
        border: 1px solid var(--border-light);
        box-shadow: var(--shadow-sm);
    }

    .feature-tag i {
        color: var(--primary-gold);
    }

    /* ===== SERVICE CARDS - DARK ===== */
    .service-card {
        background: var(--gray-200);
        border: 1px solid var(--border-light);
        box-shadow: var(--shadow-md);
    }

    .service-card::before {
        background: linear-gradient(135deg, transparent 0%, rgba(248, 190, 20, 0.05) 100%);
    }

    .service-card::after {
        background: radial-gradient(circle, rgba(248, 190, 20, 0.1) 0%, transparent 70%);
    }

    .service-card i {
        color: var(--gray-700);
    }

    .service-card:hover i {
        color: var(--primary-gold);
    }

    .service-card h3 {
        color: var(--gray-900);
    }

    .service-card p {
        color: var(--text-secondary);
    }

    .service-card.light-bg {
        background: var(--gray-300);
    }

    /* ===== PORTFOLIO - DARK ===== */
    .portfolio-item {
        background: var(--gray-200);
        border: 1px solid var(--border-light);
        box-shadow: var(--shadow-md);
    }

    .portfolio-item .tag {
        background: var(--primary-gold);
        color: var(--gray-100);
    }

    .portfolio-item h4 {
        color: var(--gray-900);
    }

    .portfolio-item p {
        color: var(--text-secondary);
    }

    /* ===== TESTIMONIALS - DARK ===== */
    .testimonials-grid {
        background: var(--gray-100);
    }

    .testimonial-card {
        background: var(--gray-200);
        border: 1px solid var(--border-light);
        box-shadow: var(--shadow-md);
    }

    .testimonial-card::before {
        color: var(--primary-gold);
        opacity: 0.15;
    }

    .testimonial-card i {
        color: var(--primary-gold);
        opacity: 0.7;
    }

    .testimonial-card p {
        color: var(--text-primary);
    }

    .testimonial-card h5 {
        color: var(--gray-900);
    }

    .testimonial-card .role {
        color: var(--primary-gold);
    }

    /* ===== QUOTE SECTION - DARK ===== */
    .quote-section {
        background: linear-gradient(135deg, var(--gray-200) 0%, var(--gray-300) 100%);
    }

    .quote-left h2 {
        color: var(--gray-900);
    }

    .quote-left p {
        color: var(--text-secondary);
    }

    .quote-right .pill-btn {
        background: var(--primary-gold);
        color: var(--gray-100);
    }

    .quote-right .pill-btn i {
        color: var(--gray-100);
    }

    /* ===== FEEDBACK ROW - DARK ===== */
    .feedback-row {
        background: var(--gray-200);
        border: 1px solid var(--border-light);
        box-shadow: var(--shadow-lg);
    }

    .feedback-row p {
        color: var(--gray-900);
    }

    .feedback-row i {
        color: var(--primary-gold);
    }

    /* ===== COURSES PAGE - DARK ===== */
    .filter-btn {
        border: 2px solid var(--border-light);
        background: var(--gray-200);
        color: var(--text-primary);
    }

    .filter-btn:hover {
        border-color: var(--primary-gold);
        color: var(--primary-gold);
    }

    .filter-btn.active {
        background: var(--primary-gold);
        border-color: var(--primary-gold);
        color: var(--gray-100);
    }

    .course-card {
        background: var(--gray-200);
        border: 1px solid var(--border-light);
        box-shadow: var(--shadow-md);
    }

    .course-badge {
        background: var(--primary-gold);
        color: var(--gray-100);
    }

    .course-meta {
        color: var(--text-secondary);
    }

    .course-meta i {
        color: var(--primary-gold);
    }

    .course-level {
        background: var(--gray-300);
    }

    .course-content h3 {
        color: var(--gray-900);
    }

    .course-content p {
        color: var(--text-secondary);
    }

    .course-price {
        color: var(--primary-gold);
    }

    .path-card {
        background: var(--gray-200);
        border: 1px solid var(--border-light);
        box-shadow: var(--shadow-lg);
    }

    .path-card h3 {
        color: var(--gray-900);
    }

    .path-card p {
        color: var(--text-secondary);
    }

    .path-card li {
        border-bottom: 1px solid var(--border-light);
    }

    .path-card li::before {
        color: var(--primary-gold);
    }

    /* ===== PROCESS TIMELINE - DARK ===== */
    .step-number {
        color: var(--gold-soft);
    }

    /* ===== FAQ SECTION - DARK ===== */
    .faq-item {
        background: var(--gray-200);
        box-shadow: var(--shadow-sm);
        border: 1px solid var(--border-light);
    }

    .faq-item h3 {
        color: var(--gray-900);
    }

    /* ===== FOOTER - DARK ===== */
    .site-footer {
        background: var(--gray-200);
        color: var(--text-secondary);
        border-top: 1px solid var(--border-light);
    }

    .footer-about h3 {
        color: var(--gray-900);
    }

    .social-links a {
        color: var(--text-secondary);
    }

    .social-links a:hover {
        color: var(--primary-gold);
    }

    .footer-links h4,
    .footer-services h4,
    .footer-courses h4,
    .footer-contact h4 {
        color: var(--gray-900);
    }

    .footer-links a,
    .footer-services a,
    .footer-courses a {
        color: var(--text-secondary);
    }

    .footer-links a:hover,
    .footer-services a:hover,
    .footer-courses a:hover {
        color: var(--primary-gold);
    }

    .footer-contact li {
        color: var(--text-secondary);
    }

    .footer-contact i {
        color: var(--primary-gold);
    }

    .footer-bottom {
        border-top: 1px solid var(--border-light);
        color: var(--text-tertiary);
    }

    .footer-bottom a {
        color: var(--text-secondary);
    }

    .footer-bottom a:hover {
        color: var(--primary-gold);
    }

    /* ===== PORTFOLIO PAGE - DARK ===== */
    .portfolio-hero {
        background: linear-gradient(135deg, var(--gray-200) 0%, var(--gray-300) 100%);
    }

    .portfolio-hero .hero-title {
        color: var(--gray-900);
    }

    .portfolio-hero .hero-subtitle {
        color: var(--text-secondary);
    }

    .portfolio-filter-section {
        background: rgba(26, 26, 26, 0.95);
        border-bottom: 1px solid var(--border-light);
    }

    .portfolio-grid-section {
        background: var(--gray-100);
    }

    .project-card {
        background: var(--gray-200);
        border: 1px solid var(--border-light);
        box-shadow: var(--shadow-md);
    }

    .project-overlay {
        background: rgba(0, 0, 0, 0.7);
    }

    .project-link {
        background: var(--gray-200);
        color: var(--gray-900);
    }

    .project-link:hover {
        background: var(--primary-gold);
        color: var(--gray-100);
    }

    .project-category {
        color: var(--primary-gold);
    }

    .project-info h3 {
        color: var(--gray-900);
    }

    .project-info p {
        color: var(--text-secondary);
    }

    .featured-project-section {
        background: var(--gray-100);
    }

    .featured-project {
        background: linear-gradient(135deg, var(--gray-200) 0%, var(--gray-300) 100%);
        border: 1px solid var(--border-light);
        box-shadow: var(--shadow-lg);
    }

    .featured-tag {
        background: var(--primary-gold);
        color: var(--gray-100);
    }

    .featured-content h2 {
        color: var(--gray-900);
    }

    .featured-content p {
        color: var(--text-secondary);
    }

    .featured-stat .stat-value {
        color: var(--primary-gold);
    }

    .featured-stat .stat-label {
        color: var(--text-secondary);
    }

    .client-image {
        border: 3px solid var(--primary-gold);
    }

    .cta-section {
        background: linear-gradient(135deg, var(--gray-200) 0%, var(--gray-300) 100%);
        color: var(--text-primary);
    }

    .cta-content h2 {
        color: var(--gray-900);
    }

    .cta-content p {
        color: var(--text-secondary);
    }

    /* ===== ABOUT PAGE - DARK ===== */
    .about-hero {
        background: linear-gradient(135deg, var(--gray-200) 0%, var(--gray-300) 100%);
    }

    .about-hero .hero-title {
        color: var(--gray-900);
    }

    .about-hero .hero-subtitle {
        color: var(--text-secondary);
    }

    .about-intro {
        background: var(--gray-100);
    }

    .intro-text {
        color: var(--gray-800);
    }

    .intro-content p {
        color: var(--text-secondary);
    }

    .core-philosophy {
        background: var(--gold-soft);
        border-left: 6px solid var(--primary-gold);
    }

    .core-philosophy h3 {
        color: var(--gray-900);
    }

    .core-philosophy blockquote {
        color: var(--gray-800);
    }

    .core-philosophy blockquote::before,
    .core-philosophy blockquote::after {
        color: var(--primary-gold);
    }

    .stat-card {
        background: var(--gray-200);
        border: 1px solid var(--border-light);
    }

    .stat-card .stat-number {
        color: var(--primary-gold);
    }

    .stat-card .stat-label {
        color: var(--text-secondary);
    }

    .values-section {
        background: var(--gray-200);
    }

    .value-card {
        background: var(--gray-300);
        border: 1px solid var(--border-light);
    }

    .value-card i {
        color: var(--primary-gold);
    }

    .value-card h3 {
        color: var(--gray-900);
    }

    .value-card p {
        color: var(--text-secondary);
    }

    .mission-vision {
        background: var(--gray-100);
    }

    .mission-card {
        background: linear-gradient(135deg, var(--gray-300) 0%, var(--gray-200) 100%);
    }

    .vision-card {
        background: var(--gray-200);
        border: 1px solid var(--border-light);
    }

    .badge {
        background: var(--primary-gold);
        color: var(--gray-100);
    }

    .mission-card h2 {
        color: var(--gray-900);
    }

    .vision-card h2 {
        color: var(--gray-900);
    }

    .mission-card p {
        color: var(--text-secondary);
    }

    .vision-card p {
        color: var(--text-secondary);
    }

    .mission-list li {
        color: var(--text-secondary);
    }

    .mission-list i {
        color: var(--primary-gold);
    }

    .founder-section {
        background: var(--gray-200);
    }

    .founder-tag {
        background: var(--primary-gold);
        color: var(--gray-100);
    }

    .founder-content h2 {
        color: var(--gray-900);
    }

    .founder-title {
        color: var(--primary-gold);
    }

    .founder-bio p {
        color: var(--text-secondary);
    }

    .founder-social a {
        background: var(--gray-300);
        color: var(--gray-900);
        border: 1px solid var(--border-light);
    }

    .founder-social a:hover {
        background: var(--primary-gold);
        color: var(--gray-100);
    }

    /* ===== ACCESSIBILITY & SELECTION - DARK ===== */
    :focus-visible {
        outline: 3px solid var(--primary-gold);
        outline-offset: 3px;
    }

    ::selection {
        background: var(--primary-gold);
        color: var(--gray-100);
    }

    /* ===== SCROLLBAR - DARK ===== */
    ::-webkit-scrollbar {
        width: 12px;
        height: 12px;
    }

    ::-webkit-scrollbar-track {
        background: var(--gray-200);
    }

    ::-webkit-scrollbar-thumb {
        background: var(--gray-400);
        border-radius: var(--radius-full);
        border: 3px solid var(--gray-200);
    }

    ::-webkit-scrollbar-thumb:hover {
        background: var(--primary-gold);
    }

    /* ===== PRINT STYLES - DARK ===== */
    @media print {
        body {
            background: white;
            color: black;
        }
        
        .site-header {
            background: white;
            border-bottom: 1px solid #ccc;
        }
        
        .pill-btn,
        .quote-section,
        .feedback-row,
        .course-card,
        .service-card {
            border: 1px solid #ccc;
            background: white;
            color: black;
        }
        
        .achievements {
            background: white;
            color: black;
        }
    }
}

/* ===== MANUAL DARK MODE TOGGLE SUPPORT ===== */
body.dark-theme {
    /* Copy all dark theme variables and styles here for manual toggle */
    --primary-gold: #f8be14;
    --gold-light: #fad257;
    --gold-pale: #fce9aa;
    --gold-soft: #332e1f;
    --gold-deep: #d9a00c;
    --gold-dark: #a07809;
    
    --gray-900: #f2f2f2;
    --gray-800: #e0e0e0;
    --gray-700: #b3b3b3;
    --gray-600: #999999;
    --gray-500: #808080;
    --gray-400: #666666;
    --gray-300: #404040;
    --gray-200: #2d2d2d;
    --gray-100: #1a1a1a;
    --gray-50: #0f0f0f;
    --white: #000000;
    
    --text-primary: var(--gray-900);
    --text-secondary: var(--gray-700);
    --text-tertiary: var(--gray-600);
    --text-light: var(--gray-800);
    --bg-primary: var(--gray-100);
    --bg-secondary: var(--gray-200);
    --bg-tertiary: var(--gray-300);
    --border-light: var(--gray-300);
    --border-medium: var(--gray-400);
    
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.5), 0 1px 4px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.6), 0 2px 8px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.7), 0 4px 12px rgba(0, 0, 0, 0.5);
    --shadow-xl: 0 24px 64px rgba(0, 0, 0, 0.8), 0 8px 24px rgba(0, 0, 0, 0.6);
    --shadow-gold: 0 12px 32px rgba(248, 190, 20, 0.25);
}

body.dark-theme {
    background-color: var(--gray-100);
    color: var(--text-primary);
}

/* Copy all other dark theme styles here with body.dark-theme prefix */

/* ===== SERVICES PAGE - NEW LAYOUT ===== */
/* Dark Theme Optimized - Gold Accent */

/* ----- Variables ----- */
:root {
    --gold: #f8be14;
    --gold-dark: #e5ae12;
    --gold-light: #fad257;
    --gold-pale: #fce9aa;
    
    --bg-dark: #0a0a0a;
    --bg-card: #141414;
    --bg-elevated: #1a1a1a;
    --bg-light: #1e1e1e;
    
    --text-primary: #ffffff;
    --text-secondary: #b3b3b3;
    --text-tertiary: #999999;
    
    --border-light: rgba(255, 255, 255, 0.05);
    --border-gold: rgba(248, 190, 20, 0.2);
    
    --shadow-sm: 0 5px 15px rgba(0, 0, 0, 0.2);
    --shadow-md: 0 10px 25px -5px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 20px 40px -10px rgba(0, 0, 0, 0.4);
    --shadow-gold: 0 10px 25px -5px rgba(248, 190, 20, 0.2);
}

/* ===== HERO SECTION ===== */
.services-hero {
    background: linear-gradient(145deg, var(--bg-dark) 0%, var(--bg-card) 100%);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.services-hero .container {
    position: relative;
    z-index: 5;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(248, 190, 20, 0.1);
    border: 1px solid var(--border-gold);
    border-radius: 60px;
    padding: 0.6rem 1.2rem;
    margin-bottom: 2rem;
    color: var(--gold);
    font-weight: 600;
    font-size: 0.9rem;
}

.hero-badge i {
    font-size: 1rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.gold-gradient {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 550px;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 1.2;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, var(--border-light), transparent);
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 1rem 2.2rem;
    border-radius: 60px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background: var(--gold);
    color: var(--bg-dark);
    border: none;
    box-shadow: 0 8px 20px -5px rgba(248, 190, 20, 0.3);
}

.btn-primary:hover {
    background: var(--gold-dark);
    transform: translateY(-3px);
    box-shadow: 0 15px 25px -8px rgba(248, 190, 20, 0.4);
}

.btn-primary i {
    transition: transform 0.3s ease;
}

.btn-primary:hover i {
    transform: translateX(5px);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--border-light);
}

.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-3px);
}

.btn-outline-light {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-outline-light:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(248, 190, 20, 0.05);
}

.btn-large {
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
}

/* Hero Graphic Elements */
.hero-graphic {
    position: relative;
    height: 400px;
}

.graphic-orb {
    position: absolute;
    border-radius: 50%;
    background: var(--gold);
    filter: blur(60px);
    opacity: 0.15;
    animation: floatOrb 12s ease-in-out infinite;
}

.orb-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.orb-2 {
    width: 200px;
    height: 200px;
    bottom: 20%;
    left: 0;
    background: var(--gold-light);
    opacity: 0.1;
    animation-delay: 3s;
}

.orb-3 {
    width: 150px;
    height: 150px;
    top: 40%;
    left: 20%;
    background: var(--gold-pale);
    opacity: 0.12;
    animation-delay: 6s;
}

.floating-card {
    position: absolute;
    width: 70px;
    height: 70px;
    background: rgba(20, 20, 20, 0.9);
    backdrop-filter: blur(5px);
    border: 1px solid var(--border-gold);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    animation: floatCard 8s ease-in-out infinite;
}

.floating-card i {
    font-size: 2rem;
    color: var(--gold);
}

.card-1 {
    top: 20%;
    right: 20%;
    animation-delay: 0s;
}

.card-2 {
    bottom: 30%;
    left: 10%;
    animation-delay: 2s;
}

.card-3 {
    top: 50%;
    right: 40%;
    animation-delay: 4s;
}

@keyframes floatOrb {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(-20px, 20px) scale(1.1); }
    66% { transform: translate(20px, -15px) scale(0.95); }
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-15px) rotate(5deg); }
    75% { transform: translateY(10px) rotate(-3deg); }
}

/* ===== CATEGORIES SECTION ===== */
.categories-section {
    padding: 4rem 0;
    background: var(--bg-dark);
}

.section-header {
    margin-bottom: 3rem;
}

.section-header.centered {
    text-align: center;
}

.section-subtitle {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.gold-text {
    color: var(--gold);
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.category-card {
    background: var(--bg-card);
    border-radius: 24px;
    padding: 2rem;
    text-align: center;
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.category-card:hover {
    transform: translateY(-5px);
    border-color: var(--border-gold);
    box-shadow: var(--shadow-gold);
}

.category-icon {
    width: 70px;
    height: 70px;
    background: rgba(248, 190, 20, 0.1);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.category-icon i {
    font-size: 2rem;
    color: var(--gold);
}

.category-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.3rem;
}

.category-card p {
    font-size: 0.95rem;
    color: var(--text-tertiary);
}

/* ===== SERVICES GRID ===== */
.services-grid-section {
    padding: 4rem 0;
    background: var(--bg-card);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-card-modern {
    background: var(--bg-dark);
    border-radius: 24px;
    padding: 2.5rem 2rem;
    border: 1px solid var(--border-light);
    transition: all 0.4s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.service-card-modern:hover {
    transform: translateY(-10px);
    border-color: var(--border-gold);
    box-shadow: var(--shadow-lg), var(--shadow-gold);
}

.card-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: var(--gold);
    color: var(--bg-dark);
    padding: 0.3rem 1rem;
    border-radius: 60px;
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
}

.card-icon-wrapper {
    width: 80px;
    height: 80px;
    background: rgba(248, 190, 20, 0.1);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.card-icon-wrapper i {
    font-size: 2.5rem;
    color: var(--gold);
}

.service-card-modern h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.card-description {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.card-features {
    list-style: none;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.card-features li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.6rem 0;
    color: var(--text-secondary);
    border-bottom: 1px dashed var(--border-light);
}

.card-features li:last-child {
    border-bottom: none;
}

.card-features i {
    color: var(--gold);
    font-size: 1rem;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border-light);
    padding-top: 1.5rem;
    margin-top: auto;
}

.starting-price {
    font-size: 1rem;
    color: var(--text-tertiary);
}

.btn-card {
    background: transparent;
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.btn-card i {
    transition: transform 0.3s ease;
}

.btn-card:hover {
    color: var(--gold);
}

.btn-card:hover i {
    transform: translateX(5px);
}

/* ===== PROCESS SECTION NEW ===== */
.process-section-new {
    padding: 5rem 0;
    background: var(--bg-dark);
}

.process-timeline-new {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.process-step-new {
    position: relative;
}

.step-marker {
    font-size: 4rem;
    font-weight: 900;
    color: rgba(248, 190, 20, 0.1);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.step-content {
    background: var(--bg-card);
    border-radius: 24px;
    padding: 2rem;
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.step-content:hover {
    border-color: var(--border-gold);
    transform: translateY(-5px);
}

.step-icon {
    width: 60px;
    height: 60px;
    background: rgba(248, 190, 20, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.step-icon i {
    font-size: 1.8rem;
    color: var(--gold);
}

.step-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.8rem;
}

.step-content p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ===== BENEFITS SECTION ===== */
.benefits-section {
    padding: 5rem 0;
    background: var(--bg-card);
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.benefits-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 1.5rem 0 2rem;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.benefit-item {
    display: flex;
    gap: 1rem;
}

.benefit-item i {
    font-size: 1.5rem;
    color: var(--gold);
    flex-shrink: 0;
}

.benefit-item h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.3rem;
}

.benefit-item p {
    font-size: 0.95rem;
    color: var(--text-tertiary);
}

.stats-showcase {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.stats-card {
    background: var(--bg-dark);
    border-radius: 24px;
    padding: 2rem;
    text-align: center;
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.stats-card:hover {
    border-color: var(--border-gold);
    transform: translateY(-5px);
    box-shadow: var(--shadow-gold);
}

.stats-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gold);
    margin-bottom: 0.3rem;
}

.stats-label {
    font-size: 0.9rem;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== TESTIMONIALS ===== */
.testimonials-section-services {
    padding: 5rem 0;
    background: var(--bg-dark);
}

.testimonials-grid-services {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card-services {
    background: var(--bg-card);
    border-radius: 24px;
    padding: 2.5rem;
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.testimonial-card-services:hover {
    border-color: var(--border-gold);
    transform: translateY(-5px);
    box-shadow: var(--shadow-gold);
}

.testimonial-rating {
    margin-bottom: 1.5rem;
}

.testimonial-rating i {
    color: var(--gold);
    font-size: 1rem;
    margin-right: 0.2rem;
}

.testimonial-card-services p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--gold);
}

.testimonial-author h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.2rem;
}

.testimonial-author span {
    font-size: 0.85rem;
    color: var(--text-tertiary);
}

/* ===== FAQ SECTION ===== */
.faq-section-services {
    padding: 5rem 0;
    background: var(--bg-card);
}

.faq-grid-services {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: start;
}

.faq-left .section-subtitle {
    margin-bottom: 0.5rem;
}

.faq-left .section-title {
    margin-bottom: 1rem;
}

.faq-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin: 1.5rem 0;
}

.faq-right {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item-services {
    background: var(--bg-dark);
    border-radius: 16px;
    border: 1px solid var(--border-light);
    overflow: hidden;
}

.faq-toggle-services {
    display: none;
}

.faq-question-services {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    font-weight: 600;
    color: var(--text-primary);
    cursor: pointer;
    transition: background 0.3s ease;
}

.faq-question-services:hover {
    background: rgba(248, 190, 20, 0.02);
}

.faq-question-services i {
    color: var(--gold);
    transition: transform 0.3s ease;
}

.faq-toggle-services:checked + .faq-question-services i {
    transform: rotate(180deg);
}

.faq-answer-services {
    max-height: 0;
    padding: 0 2rem;
    color: var(--text-secondary);
    line-height: 1.7;
    transition: all 0.3s ease;
    overflow: hidden;
}

.faq-toggle-services:checked + .faq-question-services + .faq-answer-services {
    max-height: 200px;
    padding: 0 2rem 1.5rem;
}

/* ===== CTA SECTION ===== */
.cta-section-services {
    padding: 6rem 0;
    background: linear-gradient(145deg, var(--bg-card), var(--bg-dark));
    position: relative;
    overflow: hidden;
    text-align: center;
}

.cta-section-services::before {
    content: '';
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(248, 190, 20, 0.08), transparent 70%);
    border-radius: 50%;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
    .services-grid,
    .testimonials-grid-services {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-timeline-new {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .services-hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .hero-graphic {
        display: none;
    }
    
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .faq-grid-services {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .services-grid,
    .testimonials-grid-services,
    .process-timeline-new {
        grid-template-columns: 1fr;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-showcase {
        grid-template-columns: 1fr;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .btn-large {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .stat-divider {
        display: none;
    }
    
    .service-card-modern {
        padding: 2rem 1.5rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
    .graphic-orb,
    .floating-card,
    .service-card-modern,
    .category-card,
    .step-content,
    .stats-card,
    .testimonial-card-services,
    .btn,
    .btn-card i,
    .faq-question-services i {
        animation: none;
        transition: none;
    }
    
    .service-card-modern:hover {
        transform: translateY(-5px);
    }
}

/* ===== ELEGANT FOOTER STYLES ===== */
/* Dark Theme with Gold Accents */

.site-footer {
    background: linear-gradient(145deg, #0a0a0a 0%, #0c0c0c 100%);
    color: #b3b3b3;
    position: relative;
    padding: 5rem 0 2rem;
    border-top: 1px solid rgba(248, 190, 20, 0.1);
    font-family: 'Inter', sans-serif;
    overflow: hidden;
}

/* Elegant gold top border */
.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(248, 190, 20, 0.3) 20%,
        #f8be14 50%,
        rgba(248, 190, 20, 0.3) 80%,
        transparent 100%
    );
}

/* Subtle background pattern */
.site-footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(248, 190, 20, 0.02) 0%, transparent 30%),
        radial-gradient(circle at 80% 70%, rgba(248, 190, 20, 0.02) 0%, transparent 40%);
    pointer-events: none;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

/* ===== FOOTER GRID ===== */
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
    gap: 2.5rem;
    margin-bottom: 4rem;
}

/* ===== FOOTER ABOUT SECTION ===== */
.footer-about {
    max-width: 350px;
}

.footer-about h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1.2rem;
    letter-spacing: -0.5px;
    position: relative;
    display: inline-block;
}

.footer-about h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: #f8be14;
    border-radius: 3px;
}

.footer-about p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #999999;
    margin-bottom: 2rem;
}

/* ===== SOCIAL LINKS ===== */
.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    color: #b3b3b3;
    font-size: 1.1rem;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.social-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #f8be14;
    transform: scale(0);
    border-radius: 50%;
    transition: transform 0.3s ease;
    z-index: -1;
}

.social-links a:hover {
    color: #0a0a0a;
    border-color: #f8be14;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px -5px rgba(248, 190, 20, 0.3);
}

.social-links a:hover::before {
    transform: scale(1);
}

/* ===== FOOTER SECTIONS COMMON STYLES ===== */
.footer-links,
.footer-services,
.footer-courses,
.footer-contact {
    position: relative;
}

.footer-links h4,
.footer-services h4,
.footer-courses h4,
.footer-contact h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
    position: relative;
    display: inline-block;
}

.footer-links h4::after,
.footer-services h4::after,
.footer-courses h4::after,
.footer-contact h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, #f8be14, transparent);
    border-radius: 2px;
}

.footer-links ul,
.footer-services ul,
.footer-courses ul,
.footer-contact ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li,
.footer-services li,
.footer-courses li {
    margin-bottom: 0.8rem;
}

/* ===== FOOTER LINKS STYLING ===== */
.footer-links a,
.footer-services a,
.footer-courses a {
    color: #999999;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    position: relative;
    padding-left: 0;
}

.footer-links a::before,
.footer-services a::before,
.footer-courses a::before {
    content: '→';
    position: absolute;
    left: -20px;
    opacity: 0;
    color: #f8be14;
    transition: all 0.3s ease;
}

.footer-links a:hover,
.footer-services a:hover,
.footer-courses a:hover {
    color: #f8be14;
    transform: translateX(20px);
}

.footer-links a:hover::before,
.footer-services a:hover::before,
.footer-courses a:hover::before {
    opacity: 1;
    left: 0;
}

/* ===== FOOTER CONTACT STYLES ===== */
.footer-contact ul {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    color: #999999;
    font-size: 0.95rem;
    line-height: 1.6;
    transition: all 0.3s ease;
}

.footer-contact li:hover {
    color: #ffffff;
    transform: translateX(5px);
}

.footer-contact i {
    color: #f8be14;
    font-size: 1rem;
    margin-top: 3px;
    min-width: 20px;
}

/* ===== FOOTER BOTTOM ===== */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
    text-align: center;
    position: relative;
}

.footer-bottom p {
    color: #666666;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.footer-bottom a {
    color: #999999;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding: 0 5px;
}

.footer-bottom a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 1px;
    background: #f8be14;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.footer-bottom a:hover {
    color: #f8be14;
}

.footer-bottom a:hover::after {
    transform: scaleX(1);
}

/* ===== DECORATIVE ELEMENTS ===== */
.footer-grid > div {
    position: relative;
}

/* Gold dots decoration */
.footer-about::before {
    content: '';
    position: absolute;
    top: -20px;
    right: 0;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(248, 190, 20, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* Newsletter section (optional - you can add this) */
.footer-newsletter {
    margin-top: 2rem;
}

.newsletter-title {
    font-size: 1rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
}

.newsletter-input {
    flex: 1;
    padding: 0.8rem 1.2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 50px;
    color: #ffffff;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.newsletter-input:focus {
    outline: none;
    border-color: #f8be14;
    background: rgba(255, 255, 255, 0.05);
}

.newsletter-input::placeholder {
    color: #666666;
}

.newsletter-btn {
    width: 45px;
    height: 45px;
    background: #f8be14;
    border: none;
    border-radius: 50%;
    color: #0a0a0a;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.newsletter-btn:hover {
    background: #e5ae12;
    transform: scale(1.1);
    box-shadow: 0 10px 20px -5px rgba(248, 190, 20, 0.3);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1fr;
        gap: 2rem;
    }
    
    .footer-contact {
        grid-column: span 2;
        max-width: 400px;
    }
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 2rem;
    }
    
    .footer-about {
        grid-column: span 3;
        max-width: 100%;
        text-align: center;
    }
    
    .footer-about h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-contact {
        grid-column: span 3;
        max-width: 100%;
    }
    
    .footer-contact ul {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .site-footer {
        padding: 4rem 0 1.5rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem 1.5rem;
    }
    
    .footer-about {
        grid-column: span 2;
    }
    
    .footer-contact {
        grid-column: span 2;
    }
    
    .footer-contact ul {
        grid-template-columns: 1fr;
    }
    
    .footer-links h4::after,
    .footer-services h4::after,
    .footer-courses h4::after,
    .footer-contact h4::after {
        left: 0;
        transform: none;
    }
    
    .footer-links,
    .footer-services,
    .footer-courses {
        text-align: left;
    }
}

@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-about {
        grid-column: span 1;
    }
    
    .footer-links,
    .footer-services,
    .footer-courses,
    .footer-contact {
        text-align: center;
    }
    
    .footer-links h4::after,
    .footer-services h4::after,
    .footer-courses h4::after,
    .footer-contact h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-links a,
    .footer-services a,
    .footer-courses a {
        justify-content: center;
    }
    
    .footer-links a:hover,
    .footer-services a:hover,
    .footer-courses a:hover {
        transform: translateX(10px);
    }
    
    .footer-contact li {
        justify-content: center;
    }
    
    .footer-contact li:hover {
        transform: translateY(-3px);
    }
}

/* ===== DARK MODE ENHANCEMENTS ===== */
@media (prefers-color-scheme: dark) {
    .site-footer {
        background: linear-gradient(145deg, #050505 0%, #0a0a0a 100%);
    }
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
    .site-footer::before,
    .social-links a,
    .footer-links a,
    .footer-services a,
    .footer-courses a,
    .footer-contact li,
    .newsletter-btn,
    .footer-bottom a::after {
        transition: none;
        animation: none;
    }
    
    .social-links a:hover {
        transform: translateY(-2px);
    }
    
    .footer-links a:hover,
    .footer-services a:hover,
    .footer-courses a:hover {
        transform: translateX(5px);
    }
}

/* ===== PRINT STYLES ===== */
@media print {
    .site-footer {
        background: white;
        color: black;
        border-top: 1px solid #ccc;
    }
    
    .social-links,
    .newsletter-form {
        display: none;
    }
}

/* ===== CONTACT PAGE STYLES ===== */
/* Dark Theme with Gold Accents */

:root {
    --gold: #f8be14;
    --gold-dark: #e5ae12;
    --gold-light: #fad257;
    --gold-pale: #fce9aa;
    
    --bg-dark: #0a0a0a;
    --bg-card: #141414;
    --bg-elevated: #1a1a1a;
    --bg-light: #1e1e1e;
    
    --text-primary: #ffffff;
    --text-secondary: #b3b3b3;
    --text-tertiary: #999999;
    
    --border-light: rgba(255, 255, 255, 0.05);
    --border-gold: rgba(248, 190, 20, 0.2);
    
    --shadow-sm: 0 5px 15px rgba(0, 0, 0, 0.2);
    --shadow-md: 0 10px 25px -5px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 20px 40px -10px rgba(0, 0, 0, 0.4);
    --shadow-gold: 0 10px 25px -5px rgba(248, 190, 20, 0.2);
}

/* ===== HERO SECTION ===== */
.contact-hero {
    background: linear-gradient(145deg, var(--bg-dark) 0%, var(--bg-card) 100%);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
    min-height: 550px;
    display: flex;
    align-items: center;
}

.contact-hero .container {
    position: relative;
    z-index: 5;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(248, 190, 20, 0.1);
    border: 1px solid var(--border-gold);
    border-radius: 60px;
    padding: 0.6rem 1.2rem;
    margin-bottom: 2rem;
    color: var(--gold);
    font-weight: 600;
    font-size: 0.9rem;
    backdrop-filter: blur(5px);
}

.hero-badge i {
    font-size: 1rem;
}

.hero-title {
    font-size: 3.8rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.gold-gradient {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 550px;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 1.2;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, var(--border-light), transparent);
}

/* Hero Graphic */
.hero-graphic {
    position: relative;
    height: 400px;
}

.graphic-orb {
    position: absolute;
    border-radius: 50%;
    background: var(--gold);
    filter: blur(60px);
    opacity: 0.15;
    animation: floatOrb 12s ease-in-out infinite;
}

.orb-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.orb-2 {
    width: 200px;
    height: 200px;
    bottom: 20%;
    left: 0;
    background: var(--gold-light);
    opacity: 0.1;
    animation-delay: 3s;
}

.orb-3 {
    width: 150px;
    height: 150px;
    top: 40%;
    left: 20%;
    background: var(--gold-pale);
    opacity: 0.12;
    animation-delay: 6s;
}

.floating-icon {
    position: absolute;
    width: 70px;
    height: 70px;
    background: rgba(20, 20, 20, 0.9);
    backdrop-filter: blur(5px);
    border: 1px solid var(--border-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    animation: floatIcon 8s ease-in-out infinite;
}

.floating-icon i {
    font-size: 2rem;
    color: var(--gold);
}

.icon-1 {
    top: 20%;
    right: 20%;
    animation-delay: 0s;
}

.icon-2 {
    bottom: 30%;
    left: 10%;
    animation-delay: 2s;
}

.icon-3 {
    top: 50%;
    right: 40%;
    animation-delay: 4s;
}

@keyframes floatOrb {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(-20px, 20px) scale(1.1); }
    66% { transform: translate(20px, -15px) scale(0.95); }
}

@keyframes floatIcon {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-15px) rotate(5deg); }
    75% { transform: translateY(10px) rotate(-3deg); }
}

/* ===== INFO CARDS SECTION ===== */
.info-cards-section {
    padding: 4rem 0;
    background: var(--bg-dark);
}

.info-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.info-card {
    background: var(--bg-card);
    border-radius: 24px;
    padding: 2.5rem 2rem;
    border: 1px solid var(--border-light);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    transform: translateX(-100%);
    transition: transform 0.5s ease;
}

.info-card:hover {
    transform: translateY(-10px);
    border-color: var(--border-gold);
    box-shadow: var(--shadow-gold);
}

.info-card:hover::before {
    transform: translateX(100%);
}

.info-icon {
    width: 80px;
    height: 80px;
    background: rgba(248, 190, 20, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.8rem;
    transition: all 0.3s ease;
}

.info-card:hover .info-icon {
    background: var(--gold);
    transform: scale(1.1);
}

.info-icon i {
    font-size: 2.2rem;
    color: var(--gold);
    transition: all 0.3s ease;
}

.info-card:hover .info-icon i {
    color: var(--bg-dark);
}

.info-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.info-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.info-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-tertiary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.info-link i {
    transition: transform 0.3s ease;
}

.info-link:hover {
    color: var(--gold);
}

.info-link:hover i {
    transform: translateX(5px);
}

/* ===== CONTACT FORM SECTION ===== */
.contact-form-section {
    padding: 5rem 0;
    background: var(--bg-card);
}

.form-map-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
}

/* Section Header */
.section-header {
    margin-bottom: 2.5rem;
}

.section-header.centered {
    text-align: center;
}

.section-subtitle {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.gold-text {
    color: var(--gold);
}

.section-description {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Form Styles */
.contact-form {
    background: var(--bg-dark);
    border-radius: 24px;
    padding: 2.5rem;
    border: 1px solid var(--border-light);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    position: relative;
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.2rem;
    padding-left: 3rem;
    background: var(--bg-elevated);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(248, 190, 20, 0.1);
    background: var(--bg-card);
}

.form-group i {
    position: absolute;
    left: 1rem;
    bottom: 1rem;
    color: var(--text-tertiary);
    font-size: 1rem;
    pointer-events: none;
    transition: all 0.3s ease;
}

.form-group input:focus + i,
.form-group select:focus + i,
.form-group textarea:focus + i {
    color: var(--gold);
}

.form-group select {
    appearance: none;
    cursor: pointer;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.full-width {
    grid-column: 1 / -1;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin: 1rem 0 2rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    padding: 0;
    margin: 0;
    accent-color: var(--gold);
}

.checkbox-group label {
    margin-bottom: 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.checkbox-group a {
    color: var(--gold);
    text-decoration: none;
}

.checkbox-group a:hover {
    text-decoration: underline;
}

.btn-submit {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1.2rem 2rem;
    background: linear-gradient(145deg, var(--gold), var(--gold-dark));
    border: none;
    border-radius: 60px;
    color: var(--bg-dark);
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-gold);
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 30px -8px rgba(248, 190, 20, 0.4);
}

.btn-submit i {
    transition: transform 0.3s ease;
}

.btn-submit:hover i {
    transform: translateX(5px);
}

/* Map Wrapper */
.map-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.map-container {
    position: relative;
    height: 400px;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--border-light);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    filter: grayscale(1) invert(0.9) brightness(0.8);
    transition: filter 0.3s ease;
}

.map-container:hover iframe {
    filter: grayscale(0) invert(0) brightness(1);
}

.map-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    pointer-events: none;
}

.map-card {
    background: rgba(20, 20, 20, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-gold);
    border-radius: 16px;
    padding: 1.5rem;
    pointer-events: auto;
}

.map-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.8rem;
}

.map-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.map-card i {
    color: var(--gold);
}

/* Quick Stats */
.quick-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    background: var(--bg-dark);
    border-radius: 24px;
    padding: 1.5rem;
    border: 1px solid var(--border-light);
}

.quick-stat {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: rgba(248, 190, 20, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-icon i {
    font-size: 1.3rem;
    color: var(--gold);
}

.stat-content {
    display: flex;
    flex-direction: column;
}

.stat-content .stat-number {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--text-primary);
}

.stat-content .stat-label {
    font-size: 0.8rem;
    color: var(--text-tertiary);
}

/* ===== FAQ SECTION ===== */
.faq-contact-section {
    padding: 5rem 0;
    background: var(--bg-dark);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.faq-item {
    background: var(--bg-card);
    border-radius: 16px;
    border: 1px solid var(--border-light);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--border-gold);
}

.faq-toggle {
    display: none;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    font-weight: 600;
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(248, 190, 20, 0.02);
}

.faq-question i {
    color: var(--gold);
    transition: transform 0.3s ease;
}

.faq-toggle:checked + .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    padding: 0 2rem;
    color: var(--text-secondary);
    line-height: 1.7;
    transition: all 0.3s ease;
    overflow: hidden;
}

.faq-toggle:checked + .faq-question + .faq-answer {
    max-height: 200px;
    padding: 0 2rem 1.5rem;
}

/* ===== TEAM SECTION ===== */
.team-section {
    padding: 5rem 0;
    background: var(--bg-card);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.team-card {
    background: var(--bg-dark);
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--border-light);
    transition: all 0.4s ease;
}

.team-card:hover {
    transform: translateY(-10px);
    border-color: var(--border-gold);
    box-shadow: var(--shadow-gold);
}

.team-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.team-card:hover .team-image img {
    transform: scale(1.1);
}

.team-social {
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    padding: 1rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    transition: bottom 0.3s ease;
}

.team-card:hover .team-social {
    bottom: 0;
}

.team-social a {
    width: 40px;
    height: 40px;
    background: var(--bg-elevated);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.team-social a:hover {
    background: var(--gold);
    color: var(--bg-dark);
    transform: translateY(-3px);
}

.team-info {
    padding: 1.5rem;
    text-align: center;
}

.team-info h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.3rem;
}

.team-position {
    font-size: 0.9rem;
    color: var(--gold);
    margin-bottom: 0.8rem;
}

.team-bio {
    font-size: 0.9rem;
    color: var(--text-tertiary);
    line-height: 1.6;
}

/* ===== CTA SECTION ===== */
.cta-contact-section {
    padding: 6rem 0;
    background: linear-gradient(145deg, var(--bg-card), var(--bg-dark));
    position: relative;
    overflow: hidden;
    text-align: center;
}

.cta-contact-section::before {
    content: '';
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(248, 190, 20, 0.08), transparent 70%);
    border-radius: 50%;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2.2rem;
    border-radius: 60px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background: var(--gold);
    color: var(--bg-dark);
    border: none;
    box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
    background: var(--gold-dark);
    transform: translateY(-3px);
    box-shadow: 0 20px 30px -8px rgba(248, 190, 20, 0.4);
}

.btn-outline-light {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-outline-light:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-3px);
}

.btn-large {
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
    .info-cards-grid,
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 992px) {
    .contact-hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-graphic {
        display: none;
    }
    
    .form-map-grid {
        grid-template-columns: 1fr;
    }
    
    .quick-stats {
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.8rem;
    }
    
    .info-cards-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .quick-stats {
        grid-template-columns: 1fr;
    }
    
    .quick-stat {
        justify-content: center;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .btn-large {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .stat-divider {
        display: none;
    }
    
    .info-card {
        padding: 2rem 1.5rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .faq-question {
        padding: 1.2rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
    .graphic-orb,
    .floating-icon,
    .info-card,
    .team-card,
    .btn,
    .btn-submit,
    .info-card::before,
    .team-social,
    .faq-question i {
        animation: none;
        transition: none;
    }
    
    .info-card:hover,
    .team-card:hover {
        transform: translateY(-5px);
    }
}

/* ===== CLEAN MINIMAL FOOTER ===== */
/* Based on screenshot design */

.site-footer {
    background: #0a0a0a;
    color: #b3b3b3;
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ===== FOOTER GRID ===== */
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

/* ===== LEFT SECTION - BRAND ===== */
.footer-about h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.2rem;
    letter-spacing: -0.5px;
}

.footer-about p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #999999;
    max-width: 350px;
    margin-bottom: 1.5rem;
}

/* ===== MIDDLE SECTION - QUICK LINKS ===== */
.footer-links h4,
.footer-contact h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1.2rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #999999;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: #f8be14;
}

/* ===== RIGHT SECTION - CONTACT ===== */
.footer-contact ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
    color: #999999;
    font-size: 0.95rem;
}

.footer-contact i {
    color: #f8be14;
    font-size: 1rem;
    width: 16px;
}

.footer-contact a {
    color: #999999;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-contact a:hover {
    color: #f8be14;
}

/* ===== FOOTER BOTTOM ===== */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
    text-align: left;
}

.footer-bottom p {
    color: #666666;
    font-size: 0.9rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
    
    .footer-about {
        grid-column: span 2;
    }
    
    .footer-about p {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-about {
        grid-column: span 1;
    }
    
    .footer-links h4,
    .footer-contact h4 {
        margin-bottom: 1rem;
    }
}

@media (max-width: 480px) {
    .site-footer {
        padding: 3rem 0 1.5rem;
    }
    
    .container {
        padding: 0 1.5rem;
    }
    
    .footer-contact li {
        flex-wrap: wrap;
    }
}


/* ===== ADOBE CREATIVE CLOUD COURSES PAGE ===== */
/* Dark Theme with Gold Accents */

:root {
    --gold: #f8be14;
    --gold-dark: #e5ae12;
    --gold-light: #fad257;
    --gold-pale: #fce9aa;
    
    --bg-dark: #0a0a0a;
    --bg-card: #141414;
    --bg-elevated: #1a1a1a;
    --bg-light: #1e1e1e;
    
    --text-primary: #ffffff;
    --text-secondary: #b3b3b3;
    --text-tertiary: #999999;
    
    --border-light: rgba(255, 255, 255, 0.05);
    --border-gold: rgba(248, 190, 20, 0.2);
    
    --shadow-sm: 0 5px 15px rgba(0, 0, 0, 0.2);
    --shadow-md: 0 10px 25px -5px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 20px 40px -10px rgba(0, 0, 0, 0.4);
    --shadow-gold: 0 10px 25px -5px rgba(248, 190, 20, 0.2);
    
    /* Adobe Software Colors */
    --ps-blue: #001e36;
    --ai-orange: #320000;
    --id-purple: #2d0019;
}

/* ===== HERO SECTION ===== */
.adobe-hero {
    background: linear-gradient(145deg, var(--bg-dark) 0%, var(--bg-card) 100%);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.adobe-hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 5;
}

.adobe-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(248, 190, 20, 0.1);
    border: 1px solid var(--border-gold);
    border-radius: 60px;
    padding: 0.6rem 1.2rem;
    margin-bottom: 2rem;
    color: var(--gold);
    font-weight: 600;
    font-size: 0.9rem;
    backdrop-filter: blur(5px);
}

.adobe-badge i {
    font-size: 1rem;
}

.adobe-hero-title {
    font-size: 3.8rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.gold-gradient {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.adobe-hero-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 550px;
}

/* Hero CTA */
.adobe-hero-cta {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2.2rem;
    border-radius: 60px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background: var(--gold);
    color: var(--bg-dark);
    border: none;
    box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
    background: var(--gold-dark);
    transform: translateY(-3px);
    box-shadow: 0 20px 30px -8px rgba(248, 190, 20, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--border-light);
}

.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-3px);
}

.btn-outline-light {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-outline-light:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(248, 190, 20, 0.05);
}

.btn-large {
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
}

/* Hero Stats */
.adobe-hero-stats {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.hero-stat-item {
    display: flex;
    flex-direction: column;
}

.hero-stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 1.2;
}

.hero-stat-label {
    font-size: 0.9rem;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, var(--border-light), transparent);
}

/* Hero Visual */
.adobe-hero-visual {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.software-icons {
    display: flex;
    gap: 2rem;
    position: relative;
    z-index: 10;
}

.software-icon {
    width: 100px;
    height: 100px;
    background: var(--bg-elevated);
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
    animation: floatIcon 6s ease-in-out infinite;
}

.software-icon:nth-child(2) { animation-delay: 0.2s; }
.software-icon:nth-child(3) { animation-delay: 0.4s; }

.software-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(145deg, rgba(255,255,255,0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.software-icon:hover::before {
    opacity: 1;
}

.software-icon i {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 0.3rem;
}

.software-icon span {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
}

.photoshop .software-icon i { color: #31a8ff; }
.illustrator .software-icon i { color: #ff9a00; }
.indesign .software-icon i { color: #ff3366; }

/* Hero Orbs */
.hero-orb {
    position: absolute;
    border-radius: 50%;
    background: var(--gold);
    filter: blur(60px);
    opacity: 0.15;
    animation: floatOrb 12s ease-in-out infinite;
}

.orb-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.orb-2 {
    width: 200px;
    height: 200px;
    bottom: 20%;
    left: 0;
    background: var(--gold-light);
    opacity: 0.1;
    animation-delay: 3s;
}

.orb-3 {
    width: 150px;
    height: 150px;
    top: 40%;
    left: 20%;
    background: var(--gold-pale);
    opacity: 0.12;
    animation-delay: 6s;
}

@keyframes floatOrb {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(-20px, 20px) scale(1.1); }
    66% { transform: translate(20px, -15px) scale(0.95); }
}

@keyframes floatIcon {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* ===== SOFTWARE SHOWCASE ===== */
.software-showcase {
    padding: 5rem 0;
    background: var(--bg-dark);
}

.section-header {
    margin-bottom: 3rem;
}

.section-header.centered {
    text-align: center;
}

.section-header.with-icon {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.section-icon {
    width: 70px;
    height: 70px;
    background: rgba(248, 190, 20, 0.1);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-gold);
}

.section-icon i {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 0.2rem;
}

.section-icon span {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
}

.section-subtitle {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.gold-text {
    color: var(--gold);
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

/* Software Grid */
.software-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.software-card {
    background: var(--bg-card);
    border-radius: 32px;
    overflow: hidden;
    border: 1px solid var(--border-light);
    transition: all 0.4s ease;
    position: relative;
}

.software-card:hover {
    transform: translateY(-10px);
    border-color: var(--border-gold);
    box-shadow: var(--shadow-lg), var(--shadow-gold);
}

.software-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.software-card:hover::before {
    opacity: 1;
}

.software-card-header {
    padding: 2.5rem 2rem 1.5rem;
    text-align: center;
}

.software-icon-large {
    width: 90px;
    height: 90px;
    margin: 0 auto 1.5rem;
    background: rgba(248, 190, 20, 0.1);
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.software-card:hover .software-icon-large {
    transform: scale(1.1);
}

.software-icon-large i {
    font-size: 2.8rem;
    color: var(--gold);
    margin-bottom: 0.3rem;
}

.software-icon-large span {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-primary);
}

.photoshop-card .software-icon-large i { color: #31a8ff; }
.illustrator-card .software-icon-large i { color: #ff9a00; }
.indesign-card .software-icon-large i { color: #ff3366; }

.software-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.software-subtitle {
    font-size: 0.95rem;
    color: var(--text-tertiary);
}

.software-card-body {
    padding: 1.5rem 2rem;
}

.software-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.software-features li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.software-features i {
    color: var(--gold);
    font-size: 1rem;
}

.software-card-footer {
    padding: 1.5rem 2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border-light);
}

.course-count {
    font-size: 1rem;
    color: var(--text-tertiary);
    font-weight: 500;
}

.btn-soft {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.btn-soft i {
    transition: transform 0.3s ease;
}

.btn-soft:hover {
    color: var(--gold);
}

.btn-soft:hover i {
    transform: translateX(5px);
}

/* ===== COURSE SECTIONS ===== */
.course-section {
    padding: 5rem 0;
}

.photoshop-section {
    background: linear-gradient(145deg, var(--bg-dark), #001e36);
}

.illustrator-section {
    background: linear-gradient(145deg, var(--bg-dark), #2a0000);
}

.indesign-section {
    background: linear-gradient(145deg, var(--bg-dark), #2d0019);
}

.course-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.course-card-adobe {
    background: var(--bg-elevated);
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--border-light);
    transition: all 0.4s ease;
    position: relative;
}

.course-card-adobe:hover {
    transform: translateY(-8px);
    border-color: var(--border-gold);
    box-shadow: var(--shadow-lg);
}

.course-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--gold);
    color: var(--bg-dark);
    padding: 0.4rem 1.2rem;
    border-radius: 60px;
    font-weight: 700;
    font-size: 0.75rem;
    z-index: 10;
    text-transform: uppercase;
    box-shadow: var(--shadow-sm);
}

.course-media {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.course-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.course-card-adobe:hover .course-media img {
    transform: scale(1.1);
}

.course-level {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    padding: 0.3rem 1rem;
    border-radius: 60px;
    font-size: 0.8rem;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 0.3rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.course-level i {
    color: var(--gold);
}

.course-content {
    padding: 1.8rem 1.5rem;
}

.course-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.8rem;
    line-height: 1.4;
}

.course-content p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 1.2rem;
    line-height: 1.6;
}

.course-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    color: var(--text-tertiary);
}

.course-meta i {
    color: var(--gold);
    margin-right: 0.3rem;
}

.course-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border-light);
    padding-top: 1.2rem;
}

.course-price {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--gold);
}

.btn-enroll {
    background: transparent;
    border: 2px solid var(--border-gold);
    color: var(--text-primary);
    padding: 0.5rem 1.2rem;
    border-radius: 60px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

.btn-enroll:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--bg-dark);
    transform: translateX(3px);
}

/* ===== LEARNING PATH ===== */
.learning-path-section {
    padding: 5rem 0;
    background: var(--bg-dark);
}

.path-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.path-step {
    position: relative;
}

.step-marker {
    width: 50px;
    height: 50px;
    background: rgba(248, 190, 20, 0.1);
    border: 2px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.step-content {
    background: var(--bg-card);
    border-radius: 24px;
    padding: 2rem;
    border: 1px solid var(--border-light);
}

.step-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.8rem;
}

.step-content p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 1.2rem;
}

.step-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.step-content li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-tertiary);
    font-size: 0.9rem;
}

.step-content i {
    color: var(--gold);
}

/* ===== LEARNING OUTCOMES ===== */
.learning-outcomes {
    padding: 5rem 0;
    background: var(--bg-card);
}

.outcomes-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.outcomes-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 1.5rem 0 2rem;
}

.outcome-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.outcome-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 1.2;
}

.outcome-label {
    font-size: 0.9rem;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.outcomes-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.outcomes-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.2rem;
    color: var(--text-secondary);
    font-size: 1rem;
}

.outcomes-list i {
    color: var(--gold);
    font-size: 1.2rem;
}

/* ===== INSTRUCTORS ===== */
.instructors-section {
    padding: 5rem 0;
    background: var(--bg-dark);
}

.instructors-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.instructor-card {
    background: var(--bg-card);
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--border-light);
    transition: all 0.4s ease;
}

.instructor-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-gold);
    box-shadow: var(--shadow-gold);
}

.instructor-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.instructor-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.instructor-card:hover .instructor-image img {
    transform: scale(1.1);
}

.instructor-social {
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 1rem;
    padding: 1rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    transition: bottom 0.3s ease;
}

.instructor-card:hover .instructor-social {
    bottom: 0;
}

.instructor-social a {
    width: 40px;
    height: 40px;
    background: var(--bg-elevated);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.instructor-social a:hover {
    background: var(--gold);
    color: var(--bg-dark);
    transform: translateY(-3px);
}

.instructor-info {
    padding: 1.5rem;
    text-align: center;
}

.instructor-info h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.3rem;
}

.instructor-title {
    font-size: 0.9rem;
    color: var(--gold);
    margin-bottom: 0.8rem;
}

.instructor-bio {
    font-size: 0.9rem;
    color: var(--text-tertiary);
    line-height: 1.6;
}

/* ===== CERTIFICATION ===== */
.certification-section {
    padding: 5rem 0;
    background: var(--bg-card);
}

.certification-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.certification-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 1.5rem 0 2rem;
}

.certification-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 2.5rem;
}

.certification-benefits li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

.certification-benefits i {
    color: var(--gold);
    font-size: 1.2rem;
}

.certification-image {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.certification-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 24px;
}

.certificate-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(248, 190, 20, 0.2), transparent 70%);
    pointer-events: none;
}

/* ===== STUDENT WORK ===== */
.student-work-section {
    padding: 5rem 0;
    background: var(--bg-dark);
}

.work-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.work-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 1/1;
}

.work-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.work-item:hover img {
    transform: scale(1.1);
}

.work-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.work-item:hover .work-overlay {
    opacity: 1;
}

.work-overlay span {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.9rem;
}

/* ===== PRICING ===== */
.pricing-section {
    padding: 5rem 0;
    background: var(--bg-card);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.pricing-card {
    background: var(--bg-dark);
    border-radius: 32px;
    padding: 2.5rem 2rem;
    border: 1px solid var(--border-light);
    transition: all 0.4s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-gold);
    box-shadow: var(--shadow-lg);
}

.pricing-card.popular {
    border-color: var(--gold);
    transform: scale(1.05);
    z-index: 2;
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: var(--bg-dark);
    padding: 0.3rem 1.5rem;
    border-radius: 60px;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
}

.pricing-card h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.pricing-subtitle {
    font-size: 0.95rem;
    color: var(--text-tertiary);
    margin-bottom: 1.5rem;
}

.pricing-price {
    margin-bottom: 2rem;
}

.currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-tertiary);
    vertical-align: top;
}

.amount {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
}

.period {
    font-size: 1rem;
    color: var(--text-tertiary);
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.pricing-features i {
    color: var(--gold);
}

/* ===== FAQ ===== */
.faq-adobe-section {
    padding: 5rem 0;
    background: var(--bg-dark);
}

.faq-adobe-grid {
    max-width: 800px;
    margin: 3rem auto 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-adobe-item {
    background: var(--bg-card);
    border-radius: 16px;
    border: 1px solid var(--border-light);
    overflow: hidden;
}

.faq-adobe-toggle {
    display: none;
}

.faq-adobe-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    font-weight: 600;
    color: var(--text-primary);
    cursor: pointer;
    transition: background 0.3s ease;
}

.faq-adobe-question:hover {
    background: rgba(248, 190, 20, 0.02);
}

.faq-adobe-question i {
    color: var(--gold);
    transition: transform 0.3s ease;
}

.faq-adobe-toggle:checked + .faq-adobe-question i {
    transform: rotate(180deg);
}

.faq-adobe-answer {
    max-height: 0;
    padding: 0 2rem;
    color: var(--text-secondary);
    line-height: 1.7;
    transition: all 0.3s ease;
    overflow: hidden;
}

.faq-adobe-toggle:checked + .faq-adobe-question + .faq-adobe-answer {
    max-height: 200px;
    padding: 0 2rem 1.5rem;
}

/* ===== CTA ===== */
.cta-adobe-section {
    padding: 6rem 0;
    background: linear-gradient(145deg, var(--bg-card), var(--bg-dark));
    position: relative;
    overflow: hidden;
    text-align: center;
}

.cta-adobe-section::before {
    content: '';
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(248, 190, 20, 0.08), transparent 70%);
    border-radius: 50%;
}

.cta-adobe-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

.cta-adobe-content h2 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.cta-adobe-content p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
}

.cta-adobe-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
    .software-grid,
    .course-grid,
    .instructors-grid,
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .path-timeline {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .work-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .adobe-hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .adobe-hero-description {
        margin-left: auto;
        margin-right: auto;
    }
    
    .adobe-hero-stats {
        justify-content: center;
    }
    
    .adobe-hero-cta {
        justify-content: center;
    }
    
    .adobe-hero-visual {
        display: none;
    }
    
    .outcomes-grid,
    .certification-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .outcomes-left {
        text-align: center;
    }
    
    .outcome-stats {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .software-grid,
    .course-grid,
    .instructors-grid,
    .pricing-grid,
    .path-timeline,
    .work-grid {
        grid-template-columns: 1fr;
    }
    
    .adobe-hero-title {
        font-size: 2.8rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .software-card,
    .pricing-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .pricing-card.popular {
        transform: scale(1);
    }
    
    .cta-adobe-buttons {
        flex-direction: column;
    }
    
    .btn-large {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .adobe-hero-title {
        font-size: 2.2rem;
    }
    
    .adobe-hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-stat-divider {
        display: none;
    }
    
    .outcome-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .faq-adobe-question {
        padding: 1.2rem 1.5rem;
        font-size: 0.95rem;
    }
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
    .software-icon,
    .hero-orb,
    .course-card-adobe,
    .software-card,
    .instructor-card,
    .pricing-card,
    .btn,
    .btn-enroll,
    .work-item img,
    .faq-adobe-question i {
        animation: none;
        transition: none;
    }
    
    .course-card-adobe:hover,
    .software-card:hover,
    .instructor-card:hover,
    .pricing-card:hover {
        transform: translateY(-5px);
    }
}

/* ===== HOMEPAGE REDESIGN ===== */
/* Dark Theme with Gold Accents */

:root {
    --gold: #f8be14;
    --gold-dark: #e5ae12;
    --gold-light: #fad257;
    --gold-pale: #fce9aa;
    
    --bg-dark: #0a0a0a;
    --bg-card: #141414;
    --bg-elevated: #1a1a1a;
    --bg-light: #1e1e1e;
    
    --text-primary: #ffffff;
    --text-secondary: #b3b3b3;
    --text-tertiary: #999999;
    
    --border-light: rgba(255, 255, 255, 0.05);
    --border-gold: rgba(248, 190, 20, 0.2);
    
    --shadow-sm: 0 5px 15px rgba(0, 0, 0, 0.2);
    --shadow-md: 0 10px 25px -5px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 20px 40px -10px rgba(0, 0, 0, 0.4);
    --shadow-gold: 0 10px 25px -5px rgba(248, 190, 20, 0.2);
}

/* ===== GLOBAL ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: var(--bg-dark);
    color: var(--text-primary);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ===== SECTION HEADERS ===== */
.section-header {
    margin-bottom: 3rem;
}

.section-header.centered {
    text-align: center;
}

.section-subtitle {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1.3;
    letter-spacing: -0.02em;
}

.gold-text {
    color: var(--gold);
}

.gold-gradient {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2.2rem;
    border-radius: 60px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--gold);
    color: var(--bg-dark);
    box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
    background: var(--gold-dark);
    transform: translateY(-3px);
    box-shadow: 0 20px 30px -8px rgba(248, 190, 20, 0.4);
}

.btn-primary i {
    transition: transform 0.3s ease;
}

.btn-primary:hover i {
    transform: translateX(5px);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--border-light);
}

.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-3px);
}

.btn-outline-light {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-outline-light:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-3px);
}

.btn-large {
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
}

.btn-text {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.btn-text i {
    transition: transform 0.3s ease;
}

.btn-text:hover {
    color: var(--gold);
}

.btn-text:hover i {
    transform: translateX(5px);
}

/* ===== HERO SECTION ===== */
.hero-home {
    background: linear-gradient(145deg, var(--bg-dark) 0%, var(--bg-card) 100%);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
    min-height: 650px;
    display: flex;
    align-items: center;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 5;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(248, 190, 20, 0.1);
    border: 1px solid var(--border-gold);
    border-radius: 60px;
    padding: 0.6rem 1.2rem;
    margin-bottom: 2rem;
    color: var(--gold);
    font-weight: 600;
    font-size: 0.9rem;
    backdrop-filter: blur(5px);
}

.hero-badge i {
    font-size: 1rem;
}

.hero-title {
    font-size: 3.8rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 550px;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 1.2;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, var(--border-light), transparent);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    height: 450px;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    background: var(--gold);
    filter: blur(60px);
    opacity: 0.15;
    animation: floatShape 12s ease-in-out infinite;
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    bottom: 20%;
    left: 0;
    background: var(--gold-light);
    opacity: 0.1;
    animation-delay: 3s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    top: 40%;
    left: 20%;
    background: var(--gold-pale);
    opacity: 0.12;
    animation-delay: 6s;
}

.floating-icon {
    position: absolute;
    width: 70px;
    height: 70px;
    background: rgba(20, 20, 20, 0.9);
    backdrop-filter: blur(5px);
    border: 1px solid var(--border-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    animation: floatIcon 8s ease-in-out infinite;
}

.floating-icon i {
    font-size: 2rem;
    color: var(--gold);
}

.icon-1 {
    top: 20%;
    right: 20%;
    animation-delay: 0s;
}

.icon-2 {
    bottom: 30%;
    left: 10%;
    animation-delay: 2s;
}

.icon-3 {
    top: 50%;
    right: 40%;
    animation-delay: 4s;
}

.icon-4 {
    top: 60%;
    left: 20%;
    animation-delay: 6s;
}

@keyframes floatShape {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(-20px, 20px) scale(1.1); }
    66% { transform: translate(20px, -15px) scale(0.95); }
}

@keyframes floatIcon {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-15px) rotate(5deg); }
    75% { transform: translateY(10px) rotate(-3deg); }
}

/* ===== TRUSTED SECTION ===== */
.trusted-section {
    padding: 3rem 0;
    background: var(--bg-card);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.trusted-title {
    text-align: center;
    color: var(--text-tertiary);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 2rem;
}

.trusted-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.logo-item {
    color: var(--text-tertiary);
    font-size: 1.3rem;
    font-weight: 600;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.logo-item:hover {
    color: var(--gold);
    opacity: 1;
    transform: scale(1.1);
}

/* ===== ACHIEVEMENTS SECTION ===== */
.achievements-section {
    padding: 4rem 0;
    background: var(--bg-dark);
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.achievement-card {
    background: var(--bg-card);
    border-radius: 24px;
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.achievement-card:hover {
    transform: translateY(-5px);
    border-color: var(--border-gold);
    box-shadow: var(--shadow-gold);
}

.achievement-icon {
    width: 60px;
    height: 60px;
    background: rgba(248, 190, 20, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.achievement-icon i {
    font-size: 1.8rem;
    color: var(--gold);
}

.achievement-content {
    display: flex;
    flex-direction: column;
}

.achievement-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 1.2;
}

.achievement-label {
    font-size: 0.9rem;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== SERVICES SECTION ===== */
.services-section {
    padding: 5rem 0;
    background: var(--bg-card);
}

.services-grid-new {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.service-card-new {
    background: var(--bg-dark);
    border-radius: 24px;
    padding: 2.5rem 2rem;
    border: 1px solid var(--border-light);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-card-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: left;
}

.service-card-new:hover {
    transform: translateY(-10px);
    border-color: var(--border-gold);
    box-shadow: var(--shadow-lg), var(--shadow-gold);
}

.service-card-new:hover::before {
    transform: scaleX(1);
}

.service-icon-wrapper {
    width: 80px;
    height: 80px;
    background: rgba(248, 190, 20, 0.1);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.service-card-new:hover .service-icon-wrapper {
    background: var(--gold);
    transform: scale(1.1);
}

.service-icon-wrapper i {
    font-size: 2.5rem;
    color: var(--gold);
    transition: all 0.3s ease;
}

.service-card-new:hover .service-icon-wrapper i {
    color: var(--bg-dark);
}

.service-card-new h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.service-card-new p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-link {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.service-link i {
    transition: transform 0.3s ease;
}

.service-link:hover {
    color: var(--gold);
}

.service-link:hover i {
    transform: translateX(5px);
}

/* ===== WHY CHOOSE SECTION ===== */
.why-choose-section {
    padding: 5rem 0;
    background: var(--bg-dark);
}

.why-choose-grid-new {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.why-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 2rem 0;
}

.why-feature {
    display: flex;
    gap: 1.2rem;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: rgba(248, 190, 20, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon i {
    font-size: 1.3rem;
    color: var(--gold);
}

.feature-content h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.3rem;
}

.feature-content p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.why-highlight-card {
    background: linear-gradient(145deg, var(--bg-card), var(--bg-elevated));
    border-radius: 24px;
    padding: 2rem;
    margin-bottom: 2rem;
    border: 1px solid var(--border-gold);
    position: relative;
}

.highlight-text {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.6;
    font-style: italic;
}

.highlight-author {
    position: absolute;
    bottom: -15px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-dark);
}

.why-description {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2rem;
}

/* ===== PORTFOLIO SECTION ===== */
.portfolio-section-new {
    padding: 5rem 0;
    background: var(--bg-card);
}

.portfolio-grid-new {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.portfolio-item-new {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
}

.portfolio-item-new.large {
    grid-column: span 2;
    grid-row: span 2;
    aspect-ratio: 16/9;
}

.portfolio-item-new img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.portfolio-item-new:hover img {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    display: flex;
    align-items: flex-end;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portfolio-item-new:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-info {
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.portfolio-item-new:hover .portfolio-info {
    transform: translateY(0);
}

.portfolio-category {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.portfolio-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.portfolio-info p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.portfolio-link {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.portfolio-link i {
    transition: transform 0.3s ease;
}

.portfolio-link:hover {
    color: var(--gold);
}

.portfolio-link:hover i {
    transform: translateX(5px);
}

.portfolio-cta {
    text-align: center;
    margin-top: 3rem;
}

/* ===== COURSES PREVIEW ===== */
.courses-preview-section {
    padding: 5rem 0;
    background: var(--bg-dark);
}

.courses-preview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.course-preview-card {
    background: var(--bg-card);
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--border-light);
    transition: all 0.4s ease;
}

.course-preview-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-gold);
    box-shadow: var(--shadow-lg);
}

.course-preview-image {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.course-preview-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.course-preview-card:hover .course-preview-image img {
    transform: scale(1.1);
}

.course-preview-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--gold);
    color: var(--bg-dark);
    padding: 0.3rem 1rem;
    border-radius: 60px;
    font-weight: 700;
    font-size: 0.7rem;
    text-transform: uppercase;
}

.course-preview-content {
    padding: 1.5rem;
}

.course-preview-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.8rem;
    line-height: 1.4;
}

.course-preview-content p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.course-preview-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    color: var(--text-tertiary);
}

.course-preview-meta i {
    color: var(--gold);
    margin-right: 0.3rem;
}

.course-preview-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border-light);
    padding-top: 1rem;
}

.course-preview-price {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--gold);
}

.courses-preview-cta {
    text-align: center;
    margin-top: 3rem;
}

/* ===== TESTIMONIALS NEW ===== */
.testimonials-section-new {
    padding: 5rem 0;
    background: var(--bg-card);
}

.testimonials-grid-new {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.testimonial-card-new {
    background: var(--bg-dark);
    border-radius: 24px;
    padding: 2.5rem 2rem;
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.testimonial-card-new:hover {
    border-color: var(--border-gold);
    transform: translateY(-5px);
    box-shadow: var(--shadow-gold);
}

.testimonial-rating {
    margin-bottom: 1.2rem;
}

.testimonial-rating i {
    color: var(--gold);
    font-size: 1rem;
    margin-right: 0.2rem;
}

.testimonial-card-new p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--gold);
}

.testimonial-author h5 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.2rem;
}

.testimonial-author span {
    font-size: 0.85rem;
    color: var(--text-tertiary);
}

/* ===== QUOTE SECTION NEW ===== */
.quote-section-new {
    padding: 4rem 0;
    background: linear-gradient(145deg, var(--bg-card), var(--bg-dark));
}

.quote-card {
    background: var(--bg-elevated);
    border-radius: 48px;
    padding: 4rem;
    border: 1px solid var(--border-gold);
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.quote-content {
    max-width: 700px;
    margin: 0 auto;
}

.quote-content h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.quote-content p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
}

.quote-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* ===== BLOG PREVIEW ===== */
.blog-preview-section {
    padding: 5rem 0;
    background: var(--bg-dark);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.blog-card {
    background: var(--bg-card);
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--border-light);
    transition: all 0.4s ease;
}

.blog-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-gold);
    box-shadow: var(--shadow-gold);
}

.blog-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--gold);
    color: var(--bg-dark);
    padding: 0.3rem 1rem;
    border-radius: 60px;
    font-weight: 600;
    font-size: 0.7rem;
    text-transform: uppercase;
}

.blog-content {
    padding: 1.5rem;
}

.blog-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.8rem;
    line-height: 1.4;
}

.blog-content p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.blog-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.2rem;
    font-size: 0.85rem;
    color: var(--text-tertiary);
}

.blog-meta i {
    margin-right: 0.3rem;
    color: var(--gold);
}

.blog-link {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-link i {
    transition: transform 0.3s ease;
}

.blog-link:hover {
    color: var(--gold);
}

.blog-link:hover i {
    transform: translateX(5px);
}

.blog-cta {
    text-align: center;
    margin-top: 3rem;
}

/* ===== CTA HOME SECTION ===== */
.cta-home-section {
    padding: 6rem 0;
    background: linear-gradient(145deg, var(--bg-card), var(--bg-dark));
    position: relative;
    overflow: hidden;
    text-align: center;
}

.cta-home-section::before {
    content: '';
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(248, 190, 20, 0.08), transparent 70%);
    border-radius: 50%;
}

.cta-home-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

.cta-home-content h2 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.cta-home-content p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
}

.cta-home-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
    .services-grid-new,
    .courses-preview-grid,
    .blog-grid,
    .testimonials-grid-new,
    .portfolio-grid-new {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .achievements-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-visual {
        display: none;
    }
    
    .why-choose-grid-new {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .section-title {
        font-size: 2.4rem;
    }
}

@media (max-width: 768px) {
    .services-grid-new,
    .courses-preview-grid,
    .blog-grid,
    .testimonials-grid-new,
    .portfolio-grid-new,
    .achievements-grid {
        grid-template-columns: 1fr;
    }
    
    .portfolio-item-new.large {
        grid-column: span 1;
        grid-row: span 1;
    }
    
    .quote-card {
        padding: 3rem 2rem;
    }
    
    .quote-content h2 {
        font-size: 2.2rem;
    }
    
    .cta-home-buttons {
        flex-direction: column;
    }
    
    .btn-large {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .stat-divider {
        display: none;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .trusted-logos {
        gap: 2rem;
    }
    
    .logo-item {
        font-size: 1rem;
    }
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
    .floating-icon,
    .hero-shape,
    .service-card-new,
    .portfolio-item-new img,
    .course-preview-card,
    .blog-card,
    .testimonial-card-new,
    .btn,
    .service-link i,
    .portfolio-link i,
    .blog-link i {
        animation: none;
        transition: none;
    }
}
/* ===== BLOG PAGE STYLES ===== */
/* Dark Theme with Gold Accents */

:root {
    --gold: #f8be14;
    --gold-dark: #e5ae12;
    --gold-light: #fad257;
    --gold-pale: #fce9aa;
    
    --bg-dark: #0a0a0a;
    --bg-card: #141414;
    --bg-elevated: #1a1a1a;
    --bg-light: #1e1e1e;
    
    --text-primary: #ffffff;
    --text-secondary: #b3b3b3;
    --text-tertiary: #999999;
    
    --border-light: rgba(255, 255, 255, 0.05);
    --border-gold: rgba(248, 190, 20, 0.2);
    
    --shadow-sm: 0 5px 15px rgba(0, 0, 0, 0.2);
    --shadow-md: 0 10px 25px -5px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 20px 40px -10px rgba(0, 0, 0, 0.4);
    --shadow-gold: 0 10px 25px -5px rgba(248, 190, 20, 0.2);
}

/* ===== GLOBAL ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: var(--bg-dark);
    color: var(--text-primary);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ===== SECTION HEADERS ===== */
.section-header {
    margin-bottom: 3rem;
}

.section-header.centered {
    text-align: center;
}

.section-subtitle {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1.3;
    letter-spacing: -0.02em;
}

.gold-text {
    color: var(--gold);
}

.gold-gradient {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2.2rem;
    border-radius: 60px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--gold);
    color: var(--bg-dark);
    box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
    background: var(--gold-dark);
    transform: translateY(-3px);
    box-shadow: 0 20px 30px -8px rgba(248, 190, 20, 0.4);
}

.btn-primary i {
    transition: transform 0.3s ease;
}

.btn-primary:hover i {
    transform: translateX(5px);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--border-light);
}

.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-3px);
}

.btn-outline-light {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-outline-light:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-3px);
}

.btn-large {
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
}

/* ===== BLOG HERO SECTION ===== */
.blog-hero {
    background: linear-gradient(145deg, var(--bg-dark) 0%, var(--bg-card) 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
    min-height: 500px;
    display: flex;
    align-items: center;
}

.blog-hero .container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 5;
}

.blog-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(248, 190, 20, 0.1);
    border: 1px solid var(--border-gold);
    border-radius: 60px;
    padding: 0.6rem 1.2rem;
    margin-bottom: 2rem;
    color: var(--gold);
    font-weight: 600;
    font-size: 0.9rem;
    backdrop-filter: blur(5px);
}

.blog-hero-title {
    font-size: 3.8rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.blog-hero-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 550px;
}

/* Search Form */
.blog-search {
    max-width: 450px;
}

.search-form {
    display: flex;
    position: relative;
}

.search-input {
    width: 100%;
    padding: 1.2rem 1.5rem;
    padding-right: 5rem;
    background: var(--bg-elevated);
    border: 1px solid var(--border-light);
    border-radius: 60px;
    color: var(--text-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.search-input:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(248, 190, 20, 0.1);
    background: var(--bg-card);
}

.search-input::placeholder {
    color: var(--text-tertiary);
}

.search-btn {
    position: absolute;
    right: 5px;
    top: 5px;
    bottom: 5px;
    width: 50px;
    background: var(--gold);
    border: none;
    border-radius: 50px;
    color: var(--bg-dark);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-btn:hover {
    background: var(--gold-dark);
    transform: scale(1.05);
}

/* Hero Visual */
.blog-hero-visual {
    position: relative;
    height: 350px;
}

.blog-orb {
    position: absolute;
    border-radius: 50%;
    background: var(--gold);
    filter: blur(60px);
    opacity: 0.15;
    animation: floatOrb 12s ease-in-out infinite;
}

.orb-1 {
    width: 250px;
    height: 250px;
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.orb-2 {
    width: 200px;
    height: 200px;
    bottom: 10%;
    left: 0;
    background: var(--gold-light);
    opacity: 0.1;
    animation-delay: 3s;
}

.orb-3 {
    width: 150px;
    height: 150px;
    top: 30%;
    left: 20%;
    background: var(--gold-pale);
    opacity: 0.12;
    animation-delay: 6s;
}

.blog-floating-icon {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(20, 20, 20, 0.9);
    backdrop-filter: blur(5px);
    border: 1px solid var(--border-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    animation: floatIcon 8s ease-in-out infinite;
}

.blog-floating-icon i {
    font-size: 1.8rem;
    color: var(--gold);
}

.icon-1 {
    top: 15%;
    right: 20%;
    animation-delay: 0s;
}

.icon-2 {
    bottom: 20%;
    left: 15%;
    animation-delay: 2s;
}

.icon-3 {
    top: 50%;
    right: 30%;
    animation-delay: 4s;
}

@keyframes floatOrb {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(-20px, 20px) scale(1.1); }
    66% { transform: translate(20px, -15px) scale(0.95); }
}

@keyframes floatIcon {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-15px) rotate(5deg); }
    75% { transform: translateY(10px) rotate(-3deg); }
}

/* ===== FEATURED POST ===== */
.featured-post-section {
    padding: 5rem 0;
    background: var(--bg-card);
}

.featured-post-card {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    background: var(--bg-dark);
    border-radius: 32px;
    overflow: hidden;
    border: 1px solid var(--border-gold);
    box-shadow: var(--shadow-lg);
}

.featured-post-image {
    position: relative;
    height: 100%;
    min-height: 400px;
    overflow: hidden;
}

.featured-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.featured-post-card:hover .featured-post-image img {
    transform: scale(1.05);
}

.featured-post-category {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    background: var(--gold);
    color: var(--bg-dark);
    padding: 0.5rem 1.5rem;
    border-radius: 60px;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
}

.featured-post-content {
    padding: 3rem 3rem 3rem 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.featured-post-meta {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-tertiary);
    font-size: 0.9rem;
    flex-wrap: wrap;
}

.featured-post-meta i {
    color: var(--gold);
    margin-right: 0.3rem;
}

.featured-post-content h3 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.2rem;
    line-height: 1.4;
}

.featured-post-excerpt {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.featured-post-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.featured-post-share {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.featured-post-share span {
    color: var(--text-tertiary);
    font-size: 0.9rem;
}

.featured-post-share a {
    color: var(--text-secondary);
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.featured-post-share a:hover {
    color: var(--gold);
    transform: translateY(-3px);
}

/* ===== CATEGORY FILTER ===== */
.category-filter-section {
    padding: 2rem 0;
    background: var(--bg-dark);
    border-bottom: 1px solid var(--border-light);
    position: sticky;
    top: 80px;
    z-index: 90;
    backdrop-filter: blur(10px);
    background: rgba(10, 10, 10, 0.95);
}

.category-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.category-tab {
    padding: 0.8rem 2rem;
    background: transparent;
    border: 2px solid var(--border-light);
    border-radius: 60px;
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.category-tab:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.category-tab.active {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--bg-dark);
}

/* ===== BLOG GRID ===== */
.blog-grid-section {
    padding: 5rem 0;
    background: var(--bg-dark);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

/* Blog Post Card */
.blog-post {
    background: var(--bg-card);
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--border-light);
    transition: all 0.4s ease;
}

.blog-post:hover {
    transform: translateY(-8px);
    border-color: var(--border-gold);
    box-shadow: var(--shadow-lg);
}

.post-media {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.post-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.blog-post:hover .post-media img {
    transform: scale(1.1);
}

.post-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--gold);
    color: var(--bg-dark);
    padding: 0.3rem 1rem;
    border-radius: 60px;
    font-weight: 600;
    font-size: 0.7rem;
    text-transform: uppercase;
    z-index: 2;
}

.post-trending {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 59, 59, 0.9);
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 60px;
    font-weight: 600;
    font-size: 0.7rem;
    z-index: 2;
}

.post-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--gold);
    color: var(--bg-dark);
    padding: 0.3rem 1rem;
    border-radius: 60px;
    font-weight: 700;
    font-size: 0.7rem;
    z-index: 2;
}

.post-content {
    padding: 1.8rem 1.5rem;
}

.post-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    color: var(--text-tertiary);
}

.post-meta i {
    color: var(--gold);
    margin-right: 0.3rem;
}

.post-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.8rem;
    line-height: 1.5;
}

.post-excerpt {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.2rem;
}

.post-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border-light);
    padding-top: 1rem;
}

.post-link {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.post-link i {
    transition: transform 0.3s ease;
}

.post-link:hover {
    color: var(--gold);
}

.post-link:hover i {
    transform: translateX(5px);
}

.post-read-time {
    font-size: 0.8rem;
    color: var(--text-tertiary);
}

/* Load More Button */
.load-more-container {
    text-align: center;
    margin-top: 2rem;
}

/* ===== POPULAR POSTS SECTION ===== */
.popular-posts-section {
    padding: 5rem 0;
    background: var(--bg-card);
}

.popular-posts-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.popular-post-card {
    display: flex;
    align-items: center;
    gap: 2rem;
    background: var(--bg-dark);
    border-radius: 16px;
    padding: 1.5rem;
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.popular-post-card:hover {
    border-color: var(--border-gold);
    transform: translateX(10px);
    box-shadow: var(--shadow-gold);
}

.popular-post-rank {
    width: 50px;
    height: 50px;
    background: rgba(248, 190, 20, 0.1);
    border: 2px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--gold);
    flex-shrink: 0;
}

.popular-post-content {
    flex: 1;
}

.popular-post-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.popular-post-content h3 a {
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.popular-post-content h3 a:hover {
    color: var(--gold);
}

.popular-post-meta {
    display: flex;
    gap: 1.5rem;
    font-size: 0.85rem;
    color: var(--text-tertiary);
}

.popular-post-meta i {
    color: var(--gold);
    margin-right: 0.3rem;
}

/* ===== NEWSLETTER SECTION ===== */
.newsletter-section {
    padding: 5rem 0;
    background: linear-gradient(145deg, var(--bg-dark), var(--bg-card));
}

.newsletter-card {
    background: var(--bg-elevated);
    border-radius: 48px;
    padding: 4rem;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    align-items: center;
    border: 1px solid var(--border-gold);
    box-shadow: var(--shadow-lg);
}

.newsletter-subtitle {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.newsletter-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.newsletter-description {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.newsletter-form-large {
    width: 100%;
}

.newsletter-input-group {
    display: flex;
    gap: 1rem;
    margin-bottom: 0.8rem;
}

.newsletter-input-field {
    flex: 1;
    padding: 1rem 1.5rem;
    background: var(--bg-dark);
    border: 1px solid var(--border-light);
    border-radius: 60px;
    color: var(--text-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.newsletter-input-field:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(248, 190, 20, 0.1);
}

.newsletter-disclaimer {
    font-size: 0.8rem;
    color: var(--text-tertiary);
}

.newsletter-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.newsletter-icon {
    width: 150px;
    height: 150px;
    background: rgba(248, 190, 20, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: float 4s ease-in-out infinite;
}

.newsletter-icon i {
    font-size: 5rem;
    color: var(--gold);
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* ===== TOPICS SECTION ===== */
.topics-section {
    padding: 5rem 0;
    background: var(--bg-dark);
}

.topics-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.topic-card {
    background: var(--bg-card);
    border-radius: 24px;
    padding: 2rem 1.5rem;
    text-align: center;
    text-decoration: none;
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.topic-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-gold);
    box-shadow: var(--shadow-gold);
}

.topic-icon {
    width: 60px;
    height: 60px;
    background: rgba(248, 190, 20, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
    transition: all 0.3s ease;
}

.topic-card:hover .topic-icon {
    background: var(--gold);
}

.topic-icon i {
    font-size: 2rem;
    color: var(--gold);
    transition: all 0.3s ease;
}

.topic-card:hover .topic-icon i {
    color: var(--bg-dark);
}

.topic-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.3rem;
}

.topic-count {
    font-size: 0.8rem;
    color: var(--text-tertiary);
}

/* ===== AUTHORS SECTION ===== */
.authors-section {
    padding: 5rem 0;
    background: var(--bg-card);
}

.authors-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.author-card {
    background: var(--bg-dark);
    border-radius: 24px;
    padding: 2rem;
    text-align: center;
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.author-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-gold);
    box-shadow: var(--shadow-gold);
}

.author-image {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--gold);
}

.author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.3rem;
}

.author-title {
    font-size: 0.9rem;
    color: var(--gold);
    margin-bottom: 0.8rem;
}

.author-bio {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.2rem;
}

.author-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.author-social a {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.author-social a:hover {
    background: var(--gold);
    color: var(--bg-dark);
    transform: translateY(-3px);
}

/* ===== CTA SECTION ===== */
.cta-blog-section {
    padding: 6rem 0;
    background: linear-gradient(145deg, var(--bg-card), var(--bg-dark));
    position: relative;
    overflow: hidden;
    text-align: center;
}

.cta-blog-section::before {
    content: '';
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(248, 190, 20, 0.08), transparent 70%);
    border-radius: 50%;
}

.cta-blog-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

.cta-blog-content h2 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.cta-blog-content p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
}

.cta-blog-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* ===== FILTER ANIMATIONS ===== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.blog-post {
    animation: fadeIn 0.5s ease forwards;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
    .blog-grid,
    .topics-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .authors-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .blog-hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .blog-hero-description {
        margin-left: auto;
        margin-right: auto;
    }
    
    .blog-search {
        margin: 0 auto;
    }
    
    .blog-hero-visual {
        display: none;
    }
    
    .featured-post-card {
        grid-template-columns: 1fr;
    }
    
    .featured-post-content {
        padding: 2rem;
    }
    
    .newsletter-card {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .newsletter-input-group {
        flex-direction: column;
    }
    
    .topics-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.2rem;
    }
    
    .blog-hero-title {
        font-size: 2.8rem;
    }
    
    .blog-grid,
    .authors-grid {
        grid-template-columns: 1fr;
    }
    
    .topics-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .featured-post-footer {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .category-tabs {
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
        padding-bottom: 1rem;
    }
    
    .category-tab {
        flex-shrink: 0;
    }
    
    .popular-post-card {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-blog-buttons {
        flex-direction: column;
    }
    
    .btn-large {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .blog-hero-title {
        font-size: 2.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .featured-post-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .topics-grid {
        grid-template-columns: 1fr;
    }
    
    .newsletter-card {
        padding: 2rem;
    }
    
    .newsletter-title {
        font-size: 2rem;
    }
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
    .blog-orb,
    .blog-floating-icon,
    .blog-post,
    .featured-post-image img,
    .post-media img,
    .topic-card,
    .author-card,
    .popular-post-card,
    .btn,
    .newsletter-icon {
        animation: none;
        transition: none;
    }
    
    .blog-post:hover {
        transform: translateY(-5px);
    }
}
/* ===== FIXED HEADER STYLES ===== */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(248, 190, 20, 0.1);
    transition: all 0.3s ease;
}

.site-header.scrolled {
    background: rgba(5, 5, 5, 0.98);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    gap: 2rem;
}

/* ===== LOGO AREA ===== */
.logo-area {
    position: relative;
    flex-shrink: 0;
}

.logo-link {
    display: block;
    text-decoration: none;
    color: inherit;
    position: relative;
    z-index: 2;
}

.dynamic-logo {
    display: inline-flex;
    align-items: center;
    font-size: 2rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.03em;
    line-height: 1.2;
    margin: 0;
    padding: 0;
}

.logo-char {
    display: inline-block;
    transition: all 0.3s ease;
    animation: logoFloat 4s ease-in-out infinite;
    animation-delay: calc(var(--char-index) * 0.08s);
}

.logo-space {
    width: 0.35rem;
    display: inline-block;
}

@keyframes logoFloat {
    0%, 100% { transform: translateY(0); color: #ffffff; }
    20% { transform: translateY(-4px); color: #f8be14; }
    40% { transform: translateY(0); color: #ffffff; }
}

.tagline {
    font-size: 0.8rem;
    color: #b3b3b3;
    margin-top: 0.25rem;
    margin-left: 0.25rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* ===== NAVIGATION MENU ===== */
.main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: inline-block;
    text-decoration: none;
    color: #e0e0e0;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    padding: 0.5rem 0;
    position: relative;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #f8be14;
    transition: width 0.3s ease;
    border-radius: 2px;
}

.nav-link:hover,
.nav-link.active {
    color: #f8be14;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* ===== HEADER ACTIONS (BUTTONS) ===== */
.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

.pill-btn {
    padding: 0.6rem 1.5rem;
    border-radius: 60px;
    font-weight: 600;
    color: #ffffff;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.1);
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    line-height: 1.2;
    min-width: 120px;
    justify-content: center;
}

.pill-btn i {
    color: #f8be14;
    transition: transform 0.3s ease;
}

.pill-btn:hover {
    border-color: #f8be14;
    color: #f8be14;
    transform: translateY(-2px);
}

.pill-btn.primary {
    background: #f8be14;
    border: none;
    color: #0a0a0a;
}

.pill-btn.primary i {
    color: #0a0a0a;
}

.pill-btn.primary:hover {
    background: #e5ae12;
}

/* Dynamic Button Effect */
.dynamic-btn {
    position: relative;
    overflow: hidden;
}

.dynamic-btn .btn-text {
    display: inline-block;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.dynamic-btn .btn-hover-text {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, 200%);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
    white-space: nowrap;
    font-weight: 600;
    width: 100%;
    text-align: center;
}

.dynamic-btn:hover .btn-text {
    transform: translateY(-200%);
    opacity: 0;
}

.dynamic-btn:hover .btn-hover-text {
    transform: translate(-50%, -50%);
    opacity: 1;
}

/* ===== MOBILE MENU BUTTON ===== */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.mobile-menu-btn:hover {
    background: rgba(255, 255, 255, 0.05);
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: #ffffff;
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .header-wrapper {
        gap: 1rem;
    }
    
    .nav-menu {
        gap: 1.5rem;
    }
    
    .nav-link {
        font-size: 0.85rem;
    }
    
    .dynamic-logo {
        font-size: 1.8rem;
    }
    
    .pill-btn {
        padding: 0.5rem 1.2rem;
        min-width: 100px;
    }
}

@media (max-width: 768px) {
    .header-wrapper {
        flex-wrap: wrap;
        padding: 0.8rem 0;
    }
    
    .logo-area {
        flex: 1;
    }
    
    .mobile-menu-btn {
        display: flex;
        order: 2;
    }
    
    .main-nav {
        order: 3;
        width: 100%;
        flex: 0 0 100%;
    }
    
    .nav-menu {
        display: none;
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        padding: 1.5rem 0;
        gap: 1rem;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-item {
        width: 100%;
    }
    
    .nav-link {
        display: block;
        width: 100%;
        padding: 0.75rem 0;
        font-size: 1rem;
    }
    
    .header-actions {
        order: 1;
        margin-left: auto;
    }
    
    .dynamic-logo {
        font-size: 1.5rem;
    }
    
    .tagline {
        font-size: 0.75rem;
        white-space: normal;
    }
}

@media (max-width: 576px) {
    .header-actions {
        gap: 0.5rem;
    }
    
    .pill-btn {
        padding: 0.5rem 1rem;
        min-width: 90px;
        font-size: 0.8rem;
    }
    
    .dynamic-logo {
        font-size: 1.3rem;
    }
}

/* ===== PORTFOLIO HERO - MODERN INTERACTIVE ===== */

.portfolio-hero-modern {
    position: relative;
    padding: 6rem 0 8rem;
    background: linear-gradient(135deg, #0a0a0a 0%, #141414 100%);
    overflow: hidden;
    min-height: 700px;
    display: flex;
    align-items: center;
}

/* ===== BACKGROUND ELEMENTS ===== */
.hero-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.backdrop-gradient {
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(248, 190, 20, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: rotateSlow 40s linear infinite;
}

.backdrop-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: particleFloat 20s linear infinite;
}

.backdrop-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    transform: perspective(500px) rotateX(10deg);
    transform-origin: top;
}

@keyframes rotateSlow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes particleFloat {
    from { transform: translateY(0); }
    to { transform: translateY(-50px); }
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 10;
    width: 100%;
}

.hero-layout {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}

/* ===== LEFT CONTENT ===== */
.hero-main {
    max-width: 600px;
}

/* Breadcrumb */
.hero-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.breadcrumb-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #999999;
    text-decoration: none;
    transition: color 0.3s ease;
    padding: 0.3rem 0.8rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 60px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.breadcrumb-link:hover {
    color: #f8be14;
    border-color: rgba(248, 190, 20, 0.3);
}

.breadcrumb-link i {
    font-size: 0.85rem;
}

.hero-breadcrumb i {
    color: #666666;
    font-size: 0.7rem;
}

.breadcrumb-current {
    color: #f8be14;
    font-weight: 500;
    padding: 0.3rem 0.8rem;
    background: rgba(248, 190, 20, 0.1);
    border-radius: 60px;
    border: 1px solid rgba(248, 190, 20, 0.2);
}

/* Badge */
.hero-badge-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(248, 190, 20, 0.1);
    border: 1px solid rgba(248, 190, 20, 0.3);
    border-radius: 60px;
    padding: 0.7rem 1.5rem;
    color: #f8be14;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    backdrop-filter: blur(5px);
    position: relative;
    z-index: 2;
}

.hero-badge i {
    font-size: 1rem;
    animation: sparkle 2s infinite;
}

@keyframes sparkle {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.2); }
}

.hero-badge-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(248, 190, 20, 0.3) 0%, transparent 70%);
    border-radius: 60px;
    filter: blur(10px);
    animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.1); }
}

/* Title */
.hero-title {
    margin-bottom: 1.5rem;
}

.title-line {
    display: block;
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.title-gradient {
    display: block;
    font-size: 4.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #f8be14, #fad257, #f8be14);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1.1;
    position: relative;
}

.title-gradient::after {
    content: '';
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 100%;
    height: 20px;
    background: rgba(248, 190, 20, 0.1);
    filter: blur(10px);
    z-index: -1;
}

/* Description */
.hero-description {
    font-size: 1.2rem;
    color: #b3b3b3;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 500px;
    position: relative;
}

.hero-description::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #f8be14, transparent);
    border-radius: 3px;
}

/* Stats Grid */
.hero-stats-grid {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
    background: rgba(255, 255, 255, 0.02);
    padding: 1.5rem 2rem;
    border-radius: 60px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.stat-item {
    display: flex;
    flex-direction: column;
    min-width: 100px;
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: #f8be14;
    line-height: 1.2;
    text-shadow: 0 0 20px rgba(248, 190, 20, 0.3);
}

.stat-label {
    font-size: 0.85rem;
    color: #999999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.1), transparent);
}

/* CTA Group */
.hero-cta-group {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    flex-wrap: wrap;
}

.cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: #f8be14;
    color: #0a0a0a;
    padding: 1rem 2.2rem;
    border-radius: 60px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    box-shadow: 0 8px 20px -5px rgba(248, 190, 20, 0.3);
}

.cta-primary i {
    transition: transform 0.3s ease;
}

.cta-primary:hover {
    background: #e5ae12;
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 30px -5px rgba(248, 190, 20, 0.4);
}

.cta-primary:hover i {
    transform: translateX(5px);
}

.cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: transparent;
    color: #ffffff;
    padding: 0.5rem 1.5rem 0.5rem 0.5rem;
    border-radius: 60px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.cta-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(248, 190, 20, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.cta-icon i {
    color: #f8be14;
    font-size: 1rem;
}

.cta-secondary:hover {
    border-color: #f8be14;
    transform: translateY(-3px);
}

.cta-secondary:hover .cta-icon {
    background: #f8be14;
}

.cta-secondary:hover .cta-icon i {
    color: #0a0a0a;
}

/* ===== RIGHT VISUAL ===== */
.hero-visual {
    position: relative;
    height: 500px;
}

.showcase-container {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Floating Project Cards */
.floating-card {
    position: absolute;
    width: 200px;
    animation: floatCard 8s ease-in-out infinite;
    animation-delay: var(--delay);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.floating-card:hover {
    transform: scale(1.1) translateY(-10px) !important;
    z-index: 20;
}

.card-content {
    background: rgba(20, 20, 20, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

.floating-card:hover .card-content {
    border-color: rgba(248, 190, 20, 0.5);
    box-shadow: 0 25px 50px -10px rgba(248, 190, 20, 0.3);
}

.card-preview {
    height: 120px;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}

.floating-card:hover .card-preview {
    transform: scale(1.1);
}

.card-info {
    padding: 1rem;
}

.card-category {
    display: block;
    font-size: 0.7rem;
    color: #f8be14;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.3rem;
}

.card-info h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
}

/* Card Positions */
.card-1 {
    top: 5%;
    left: 10%;
    animation-delay: 0s;
}

.card-2 {
    top: 20%;
    right: 5%;
    animation-delay: 0.2s;
}

.card-3 {
    bottom: 25%;
    left: 5%;
    animation-delay: 0.4s;
}

.card-4 {
    bottom: 10%;
    right: 15%;
    animation-delay: 0.6s;
}

@keyframes floatCard {
    0%, 100% {
        transform: translateY(0) translateX(0);
    }
    25% {
        transform: translateY(-15px) translateX(8px);
    }
    50% {
        transform: translateY(-25px) translateX(-8px);
    }
    75% {
        transform: translateY(-10px) translateX(5px);
    }
}

/* Visual Orbs */
.visual-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.15;
    animation: orbPulse 12s ease-in-out infinite;
    pointer-events: none;
    z-index: 5;
}

.orb-1 {
    width: 300px;
    height: 300px;
    background: #f8be14;
    top: 10%;
    right: 0;
    animation-delay: 0s;
}

.orb-2 {
    width: 250px;
    height: 250px;
    background: #fad257;
    bottom: 15%;
    left: 5%;
    opacity: 0.1;
    animation-delay: 3s;
}

.orb-3 {
    width: 200px;
    height: 200px;
    background: #fce9aa;
    top: 40%;
    left: 20%;
    opacity: 0.12;
    animation-delay: 6s;
}

@keyframes orbPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.15;
    }
    50% {
        transform: scale(1.3);
        opacity: 0.2;
    }
}

/* Decorative Dots */
.visual-dots {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 8;
}

.visual-dots span {
    position: absolute;
    width: 8px;
    height: 8px;
    background: #f8be14;
    border-radius: 50%;
    opacity: 0.2;
    box-shadow: 0 0 15px #f8be14;
    animation: dotFloat 5s ease-in-out infinite;
}

.visual-dots span:nth-child(1) { top: 15%; right: 25%; animation-delay: 0s; }
.visual-dots span:nth-child(2) { bottom: 30%; left: 15%; width: 12px; height: 12px; animation-delay: 1s; }
.visual-dots span:nth-child(3) { top: 60%; right: 35%; animation-delay: 2s; }
.visual-dots span:nth-child(4) { bottom: 45%; right: 20%; width: 10px; height: 10px; animation-delay: 3s; }
.visual-dots span:nth-child(5) { top: 25%; left: 20%; animation-delay: 4s; }

@keyframes dotFloat {
    0%, 100% {
        transform: translateY(0) translateX(0);
        opacity: 0.2;
    }
    50% {
        transform: translateY(-20px) translateX(10px);
        opacity: 0.4;
    }
}

/* Decorative Lines */
.visual-lines {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 6;
}

.visual-lines .line {
    position: absolute;
    width: 2px;
    height: 100px;
    background: linear-gradient(to bottom, transparent, rgba(248, 190, 20, 0.2), transparent);
    transform-origin: top;
    animation: lineWave 8s ease-in-out infinite;
}

.visual-lines .line:nth-child(1) {
    top: 20%;
    left: 10%;
    transform: rotate(30deg);
    animation-delay: 0s;
}

.visual-lines .line:nth-child(2) {
    top: 50%;
    right: 15%;
    transform: rotate(-20deg);
    animation-delay: 2s;
}

.visual-lines .line:nth-child(3) {
    bottom: 30%;
    left: 25%;
    transform: rotate(45deg);
    animation-delay: 4s;
}

@keyframes lineWave {
    0%, 100% {
        transform: rotate(30deg) scaleY(1);
        opacity: 0.3;
    }
    50% {
        transform: rotate(30deg) scaleY(1.5);
        opacity: 0.6;
    }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: #999999;
    font-size: 0.9rem;
    animation: bounce 2.5s infinite;
    z-index: 20;
}

.scroll-indicator i {
    font-size: 1rem;
    color: #f8be14;
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(10px);
    }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
    .title-line {
        font-size: 3rem;
    }
    
    .title-gradient {
        font-size: 4rem;
    }
}

@media (max-width: 992px) {
    .hero-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-main {
        max-width: 100%;
        order: 2;
    }
    
    .hero-breadcrumb {
        justify-content: center;
    }
    
    .hero-description::before {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .hero-stats-grid {
        justify-content: center;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-cta-group {
        justify-content: center;
    }
    
    .hero-visual {
        height: 450px;
        order: 1;
    }
    
    .floating-card {
        width: 160px;
    }
}

@media (max-width: 768px) {
    .portfolio-hero-modern {
        padding: 4rem 0 6rem;
    }
    
    .title-line {
        font-size: 2.5rem;
    }
    
    .title-gradient {
        font-size: 3.5rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .hero-stats-grid {
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem;
    }
    
    .stat-divider {
        display: none;
    }
    
    .hero-cta-group {
        flex-direction: column;
        max-width: 350px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .cta-primary, .cta-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .hero-visual {
        height: 400px;
    }
    
    .floating-card {
        width: 140px;
    }
    
    .card-1 { left: 5%; }
    .card-2 { right: 0; }
    .card-3 { left: 0; }
    .card-4 { right: 5%; }
}

@media (max-width: 576px) {
    .title-line {
        font-size: 2rem;
    }
    
    .title-gradient {
        font-size: 2.8rem;
    }
    
    .hero-visual {
        height: 350px;
    }
    
    .floating-card {
        width: 120px;
    }
    
    .card-preview {
        height: 80px;
    }
    
    .card-info {
        padding: 0.8rem;
    }
    
    .card-info h4 {
        font-size: 0.9rem;
    }
    
    .orb-1 {
        width: 200px;
        height: 200px;
    }
    
    .orb-2 {
        width: 150px;
        height: 150px;
    }
}

@media (max-width: 480px) {
    .hero-visual {
        height: 300px;
    }
    
    .floating-card {
        width: 100px;
    }
    
    .card-info {
        padding: 0.5rem;
    }
    
    .card-category {
        font-size: 0.6rem;
    }
    
    .card-info h4 {
        font-size: 0.8rem;
    }
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
    .floating-card,
    .visual-orb,
    .visual-dots span,
    .visual-lines .line,
    .backdrop-gradient,
    .backdrop-particles,
    .hero-badge-glow,
    .hero-badge i,
    .scroll-indicator,
    .cta-primary,
    .cta-secondary {
        animation: none !important;
        transition: none !important;
    }
    
    .floating-card:hover {
        transform: scale(1.05) translateY(-5px) !important;
    }
    
    .cta-primary:hover,
    .cta-secondary:hover {
        transform: translateY(-2px);
    }
}
