/* ========================================
   DARK LUXURY THEME v5.0 - Mobile Optimized
   Finance | Real Estate | Power | Sophistication
   Last Updated: 2025-12-16
   
   Phase 1 Enhancements:
   - Impact by Numbers Dashboard
   - Download Resume Buttons
   - Comprehensive SEO Meta Tags
   - FAQ Section with Accordion
   - Image Lazy Loading
   
   Phase 2 Enhancements (Mobile Optimization):
   - Touch Targets 48x48px minimum
   - Enhanced Mobile Typography
   - Responsive Mobile Layouts
   - Mobile Navigation Improvements
   - Performance Optimizations
   - Accessibility Enhancements
======================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Dark Luxury Color Palette */
    --primary-black: #0a0a0a;
    --rich-black: #121212;
    --charcoal: #1a1a1a;
    --slate: #2a2a2a;
    
    --gold: #d4af37;
    --gold-light: #f4d03f;
    --gold-dark: #b8941e;
    --champagne: #f7e7ce;
    
    --luxury-blue: #0f1c2e;
    --deep-blue: #1a2332;
    --midnight: #0d1b2a;
    
    --silver: #c0c0c0;
    --platinum: #e5e4e2;
    
    --accent-red: #8b0000;
    --accent-emerald: #046307;
    
    --text-white: #ffffff;
    --text-light: #e8e8e8;
    --text-muted: #a8a8a8;
    --text-dark-muted: #6a6a6a;
    
    /* Typography - Luxury Fonts */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'Playfair Display', Georgia, serif;
    --font-mono: 'Courier New', monospace;
    
    /* Spacing */
    --section-padding: 120px;
    --section-padding-mobile: 70px;
    
    /* Transitions */
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s ease;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.4);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.5);
    --shadow-lg: 0 12px 32px rgba(0, 0, 0, 0.6);
    --shadow-xl: 0 24px 48px rgba(0, 0, 0, 0.7);
    --shadow-gold: 0 8px 32px rgba(212, 175, 55, 0.3);
}

body {
    font-family: var(--font-primary);
    color: var(--text-light);
    line-height: 1.7;
    font-size: 16px;
    background-color: var(--primary-black);
    overflow-x: hidden;
    font-weight: 300;
    letter-spacing: 0.3px;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

/* ========================================
   NAVIGATION - SLEEK & MODERN
======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    z-index: 1000;
    transition: var(--transition-smooth);
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.8);
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
}

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

.logo-image {
    height: 62.5px;
    width: auto;
    display: block;
    transition: var(--transition-smooth);
    mix-blend-mode: lighten;
    filter: brightness(1.1);
}

.logo-image:hover {
    transform: scale(1.08);
    filter: brightness(1.3);
}

.logo-text {
    font-family: var(--font-display);
    font-size: 22px;
    color: var(--text-white);
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo h2 {
    font-family: var(--font-display);
    font-size: 26px;
    color: var(--text-white);
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.nav-link {
    color: var(--text-light);
    font-weight: 400;
    font-size: 14px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    position: relative;
    padding: 8px 0;
    transition: var(--transition-smooth);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: linear-gradient(to right, var(--gold), var(--gold-light));
    transition: width 0.3s ease;
}

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

.nav-link:hover,
.nav-link.active {
    color: var(--gold);
}

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

.mobile-menu-toggle span {
    width: 28px;
    height: 2px;
    background: var(--gold);
    transition: var(--transition-smooth);
}

/* ========================================
   HERO SECTION - POWERFUL & DRAMATIC
======================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f1c2e 100%);
    position: relative;
    overflow: hidden;
    padding-top: 100px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background-image: url('../images/logo.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.03;
    z-index: 1;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(15, 28, 46, 0.5) 0%, transparent 50%);
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(212, 175, 55, 0.03) 2px,
            rgba(212, 175, 55, 0.03) 4px
        );
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(10, 10, 10, 0.4) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: var(--text-white);
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(52px, 9vw, 88px);
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.1;
    letter-spacing: 3px;
    text-transform: uppercase;
    background: linear-gradient(135deg, var(--text-white) 0%, var(--gold) 50%, var(--gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 80px rgba(212, 175, 55, 0.5);
}

.hero-subtitle {
    font-size: clamp(24px, 4vw, 36px);
    margin-bottom: 15px;
    font-weight: 300;
    color: var(--gold);
    letter-spacing: 4px;
    text-transform: uppercase;
    font-style: normal;
}

.hero-tagline {
    font-size: clamp(16px, 2.5vw, 22px);
    margin-bottom: 40px;
    font-weight: 300;
    color: var(--text-muted);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero-badges {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.badge {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(212, 175, 55, 0.05));
    backdrop-filter: blur(10px);
    padding: 12px 28px;
    border-radius: 0;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 1px solid rgba(212, 175, 55, 0.3);
    transition: var(--transition-smooth);
}

.badge:hover {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.3), rgba(212, 175, 55, 0.1));
    border-color: var(--gold);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

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

.btn {
    padding: 18px 45px;
    border-radius: 0;
    font-weight: 500;
    font-size: 13px;
    cursor: pointer;
    border: none;
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

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

.btn-primary {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    color: var(--primary-black);
    border: 1px solid var(--gold);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
}

.btn-secondary {
    background: transparent;
    color: var(--text-white);
    border: 1px solid var(--text-white);
}

.btn-secondary:hover {
    background: var(--text-white);
    color: var(--primary-black);
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(255, 255, 255, 0.2);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    color: var(--gold);
    font-size: 28px;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-12px);
    }
    60% {
        transform: translateX(-50%) translateY(-6px);
    }
}

/* ========================================
   SECTION HEADERS - ELEGANT & REFINED
======================================== */
.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(40px, 6vw, 56px);
    color: var(--text-white);
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.title-underline {
    width: 120px;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
    margin: 0 auto 25px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 300;
}

.subsection-title {
    font-family: var(--font-display);
    font-size: 36px;
    color: var(--text-white);
    margin-bottom: 40px;
    margin-top: 80px;
    font-weight: 600;
    letter-spacing: 2px;
}

/* ========================================
   ABOUT SECTION - SOPHISTICATED STORY
======================================== */
.about-section {
    padding: var(--section-padding) 0;
    background: linear-gradient(180deg, var(--primary-black) 0%, var(--rich-black) 100%);
    position: relative;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
}

.about-section::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -200px;
    transform: translateY(-50%) rotate(15deg);
    width: 600px;
    height: 600px;
    background-image: url('../images/logo.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.02;
    z-index: 0;
    pointer-events: none;
}

.about-content {
    display: grid;
    grid-template-columns: 450px 1fr;
    gap: 80px;
    align-items: start;
    position: relative;
    z-index: 1;
}

.profile-card {
    background: linear-gradient(135deg, var(--charcoal), var(--luxury-blue));
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 40px;
    position: sticky;
    top: 120px;
    box-shadow: var(--shadow-xl);
}

.profile-placeholder {
    width: 250px;
    height: 250px;
    border: 3px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    background: linear-gradient(135deg, var(--midnight), var(--deep-blue));
    color: var(--gold);
    font-size: 140px;
    box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.5), var(--shadow-gold);
}

.profile-image {
    width: 320px;
    height: 400px;
    margin: 0 auto 30px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--midnight), var(--deep-blue));
}

.profile-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 3px solid var(--gold);
    z-index: 2;
    pointer-events: none;
    box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.3), 0 0 30px rgba(212, 175, 55, 0.4);
}

.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 15%;
    display: block;
    filter: brightness(1.05) contrast(1.1);
}

.profile-info h3 {
    font-family: var(--font-display);
    font-size: 28px;
    color: var(--text-white);
    margin-bottom: 10px;
    letter-spacing: 1px;
    text-align: center;
}

.profile-info .tagline {
    font-style: italic;
    color: var(--gold);
    font-size: 14px;
    margin-bottom: 20px;
    font-weight: 400;
    letter-spacing: 1px;
    text-align: center;
}

.location, .origin {
    color: var(--text-muted);
    font-size: 13px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.social-links {
    display: flex;
    gap: 18px;
    justify-content: center;
    margin-top: 30px;
}

.social-links a {
    width: 50px;
    height: 50px;
    border: 1px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: var(--transition-smooth);
    color: var(--gold);
    background: rgba(212, 175, 55, 0.05);
}

.social-links a:hover {
    background: var(--gold);
    color: var(--primary-black);
    transform: translateY(-5px);
    box-shadow: var(--shadow-gold);
}

.profile-download {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    display: flex;
    justify-content: center;
}

.btn-download {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    color: var(--primary-black);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-download i {
    font-size: 16px;
}

.btn-download:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
}

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

.btn-outline:hover {
    background: var(--gold);
    color: var(--primary-black);
}

.about-text {
    font-size: 17px;
    line-height: 1.9;
    font-weight: 300;
}

.about-heading {
    font-family: var(--font-display);
    font-size: 38px;
    color: var(--gold);
    margin-bottom: 30px;
    font-weight: 700;
    letter-spacing: 2px;
}

.about-text .lead {
    font-size: 21px;
    font-weight: 300;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.8;
    padding-left: 25px;
    border-left: 2px solid var(--gold);
    font-style: italic;
}

.about-text p {
    margin-bottom: 25px;
    color: var(--text-muted);
}

.about-text h4 {
    font-size: 24px;
    color: var(--text-white);
    margin-top: 50px;
    margin-bottom: 25px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.about-text h4 i {
    color: var(--gold);
    font-size: 26px;
}

.about-text h5 {
    font-size: 19px;
    color: var(--gold);
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 600;
    letter-spacing: 1px;
}

.what-i-do,
.my-journey,
.heart-work,
.my-approach,
.beyond-resume {
    margin-bottom: 45px;
}

.expertise-area {
    margin-bottom: 30px;
    padding: 30px;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.8), rgba(42, 42, 42, 0.6));
    border-left: 2px solid var(--gold);
    box-shadow: var(--shadow-md);
}

.entrepreneurship-list {
    list-style: none;
    padding-left: 0;
    margin-top: 20px;
}

.entrepreneurship-list li {
    padding-left: 35px;
    position: relative;
    margin-bottom: 15px;
    color: var(--text-muted);
    line-height: 1.8;
}

.entrepreneurship-list li::before {
    content: '◆';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-size: 12px;
}

.entrepreneurship-list li strong {
    color: var(--text-white);
    font-weight: 500;
}

.heart-work {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(15, 28, 46, 0.3));
    padding: 35px;
    border-left: 3px solid var(--gold);
    box-shadow: var(--shadow-lg);
}

.heart-work em {
    color: var(--gold);
    font-weight: 500;
    font-style: italic;
}

.role-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin: 30px 0;
}

.role-badge-item {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.8), rgba(15, 28, 46, 0.6));
    color: var(--text-light);
    padding: 12px 20px;
    font-size: 13px;
    font-weight: 400;
    border: 1px solid rgba(212, 175, 55, 0.3);
    transition: var(--transition-smooth);
    letter-spacing: 0.5px;
}

.role-badge-item:hover {
    border-color: var(--gold);
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    color: var(--primary-black);
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
}

.personal-quote {
    background: linear-gradient(135deg, var(--luxury-blue), var(--midnight));
    color: var(--text-white);
    padding: 40px 45px;
    margin: 50px 0;
    position: relative;
    border: 1px solid rgba(212, 175, 55, 0.3);
    box-shadow: var(--shadow-xl);
}

.personal-quote::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
}

.personal-quote i {
    font-size: 40px;
    color: var(--gold);
    opacity: 0.3;
    position: absolute;
    top: 30px;
    left: 30px;
}

.personal-quote p {
    font-size: 22px;
    font-style: italic;
    line-height: 1.7;
    margin: 0 0 20px 0;
    color: var(--text-white);
    position: relative;
    z-index: 1;
    font-weight: 300;
}

.personal-quote cite {
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    color: var(--gold);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.languages {
    margin-top: 50px;
    padding: 35px;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.6), rgba(15, 28, 46, 0.4));
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: var(--shadow-md);
}

.languages h4 {
    font-size: 20px;
    color: var(--text-white);
    margin-bottom: 25px;
    margin-top: 0 !important;
    display: flex;
    align-items: center;
    gap: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.language-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.language-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: rgba(10, 10, 10, 0.6);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.language-name {
    font-weight: 500;
    color: var(--text-white);
    letter-spacing: 1px;
}

.language-level {
    font-size: 11px;
    color: var(--gold);
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* ========================================
   PROFESSIONAL SECTION - POWER & PRESTIGE
======================================== */
.professional-section {
    padding: var(--section-padding) 0;
    background: linear-gradient(180deg, var(--rich-black) 0%, var(--primary-black) 50%, var(--rich-black) 100%);
    position: relative;
}

.professional-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
}

.professional-section::after {
    content: '';
    position: absolute;
    bottom: 10%;
    left: -150px;
    transform: rotate(-10deg);
    width: 500px;
    height: 500px;
    background-image: url('../images/logo.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.025;
    z-index: 0;
    pointer-events: none;
}

.current-role {
    margin-bottom: 80px;
}

.role-card {
    background: linear-gradient(135deg, var(--charcoal), var(--luxury-blue));
    padding: 50px;
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(212, 175, 55, 0.2);
    position: relative;
    overflow: hidden;
}

.role-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, var(--gold), var(--gold-light));
}

.role-card.featured {
    border-color: rgba(212, 175, 55, 0.4);
}

.role-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-black);
    font-size: 32px;
    margin-bottom: 25px;
    box-shadow: var(--shadow-gold);
}

.role-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    color: var(--primary-black);
    padding: 8px 20px;
    font-size: 11px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.role-card h3 {
    font-family: var(--font-display);
    font-size: 32px;
    color: var(--text-white);
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.role-card .company {
    font-size: 20px;
    color: var(--gold);
    font-weight: 500;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    letter-spacing: 1px;
}

.role-card .duration {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.role-highlights {
    list-style: none;
    padding-left: 0;
}

.role-highlights li {
    padding-left: 35px;
    position: relative;
    margin-bottom: 18px;
    color: var(--text-muted);
    line-height: 1.8;
}

.role-highlights li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: bold;
    font-size: 20px;
}

/* Skills Grid - Luxury Cards */
.skills-section {
    margin: 80px 0;
}

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

.skill-card {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.8), rgba(15, 28, 46, 0.6));
    padding: 40px;
    transition: var(--transition-smooth);
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: var(--shadow-md);
    position: relative;
}

.skill-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(to right, var(--gold), transparent);
    opacity: 0;
    transition: var(--transition-smooth);
}

.skill-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--gold);
}

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

.skill-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-black);
    font-size: 28px;
    margin-bottom: 25px;
}

.skill-card h4 {
    font-size: 22px;
    color: var(--text-white);
    margin-bottom: 15px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.skill-card p {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.7;
}

/* Education Grid - Prestige */
.education-section {
    margin: 80px 0;
}

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

.education-card {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.8), rgba(15, 28, 46, 0.6));
    padding: 35px;
    border-left: 3px solid var(--gold);
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
}

.education-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-left-color: var(--gold-light);
}

.education-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-black);
    font-size: 24px;
    margin-bottom: 25px;
}

.education-card h4 {
    font-size: 19px;
    color: var(--text-white);
    margin-bottom: 12px;
    font-weight: 600;
}

.education-card .institution {
    color: var(--gold);
    font-weight: 500;
    font-size: 15px;
    margin-bottom: 10px;
}

.education-card .year {
    color: var(--text-muted);
    font-size: 13px;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.education-card .field {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.6;
}

/* Timeline - Sleek & Modern */
.timeline-section {
    margin: 80px 0;
}

.timeline {
    position: relative;
    padding-left: 50px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--gold), transparent);
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
    padding-left: 35px;
    display: flex;
    align-items: flex-start;
    gap: 25px;
}

.timeline-dot {
    position: absolute;
    left: -55px;
    top: 8px;
    width: 12px;
    height: 12px;
    background-color: var(--gold);
    border: 3px solid var(--primary-black);
    box-shadow: 0 0 0 4px var(--gold), var(--shadow-gold);
}

.timeline-date {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    color: var(--primary-black);
    padding: 6px 18px;
    font-size: 11px;
    font-weight: 600;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.timeline-content h4 {
    font-size: 22px;
    color: var(--text-white);
    margin-bottom: 8px;
    font-weight: 600;
}

.timeline-role {
    color: var(--text-muted);
    font-size: 15px;
}

/* Company Logos in Timeline - Uniform Sizing */
.company-logo-container {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.9), rgba(15, 28, 46, 0.7));
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 10px;
    transition: all 0.3s ease;
}

.company-logo-container:hover {
    border-color: rgba(212, 175, 55, 0.5);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.2);
}

.company-logo {
    /* Force uniform visual size regardless of aspect ratio */
    width: 60px !important;
    height: 60px !important;
    object-fit: contain !important;
    object-position: center !important;
    filter: brightness(1.1) contrast(1.1);
    transition: all 0.3s ease;
}

.company-logo-container:hover .company-logo {
    filter: brightness(1.2) contrast(1.2);
}

/* Company Header with Industry Badge */
.company-header {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 8px;
}

.company-header h4 {
    margin-bottom: 0;
}

.industry-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(212, 175, 55, 0.05));
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--gold);
    padding: 4px 12px;
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.industry-badge i {
    font-size: 12px;
}

.timeline-item:hover .industry-badge {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.25), rgba(212, 175, 55, 0.1));
    border-color: rgba(212, 175, 55, 0.5);
}

@media (max-width: 768px) {
    .timeline-item {
        flex-direction: column;
        gap: 15px;
    }
    
    .company-logo-container {
        width: 70px;
        height: 70px;
        padding: 8px;
    }
    
    .company-logo {
        width: 54px !important;
        height: 54px !important;
    }
    
    .company-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}

/* ========================================
   IMPACT BY NUMBERS SECTION
======================================== */
.impact-section {
    padding: var(--section-padding) 0;
    background: linear-gradient(135deg, var(--primary-black) 0%, var(--luxury-blue) 100%);
    position: relative;
    overflow: hidden;
}

.impact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
}

.impact-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 60px;
    position: relative;
    z-index: 1;
}

.impact-card {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.9), rgba(15, 28, 46, 0.7));
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.impact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(to right, var(--gold), var(--gold-light));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.impact-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2);
}

.impact-card:hover::before {
    transform: scaleX(1);
}

.impact-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(212, 175, 55, 0.05));
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--gold);
    transition: all 0.4s ease;
}

.impact-card:hover .impact-icon {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--primary-black);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

.impact-number {
    font-family: var(--font-display);
    font-size: clamp(48px, 8vw, 64px);
    font-weight: 800;
    color: var(--gold);
    margin-bottom: 10px;
    line-height: 1;
    text-shadow: 0 4px 8px rgba(212, 175, 55, 0.3);
}

.impact-label {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.impact-description {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

.impact-cta {
    text-align: center;
    margin-top: 80px;
    padding: 60px 30px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.08), rgba(212, 175, 55, 0.02));
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 0;
}

.impact-cta-text {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 30px;
    font-family: var(--font-display);
}

/* Responsive */
@media (max-width: 768px) {
    .impact-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }
    
    .impact-card {
        padding: 30px 20px;
    }
    
    .impact-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    .impact-number {
        font-size: 42px;
    }
    
    .impact-label {
        font-size: 16px;
    }
    
    .impact-cta {
        margin-top: 50px;
        padding: 40px 20px;
    }
    
    .impact-cta-text {
        font-size: 20px;
    }
}

/* ========================================
   FAQ SECTION
======================================== */
.faq-section {
    padding: var(--section-padding) 0;
    background: linear-gradient(180deg, var(--primary-black) 0%, var(--rich-black) 100%);
    position: relative;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
}

.faq-container {
    max-width: 900px;
    margin: 60px auto 0;
}

.faq-item {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.9), rgba(15, 28, 46, 0.7));
    border: 1px solid rgba(212, 175, 55, 0.2);
    margin-bottom: 20px;
    transition: all 0.3s ease;
    overflow: hidden;
}

.faq-item:hover {
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.1);
}

.faq-question {
    padding: 30px 40px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(212, 175, 55, 0.05);
}

.faq-question h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-white);
    margin: 0;
    flex: 1;
}

.faq-question i {
    color: var(--gold);
    font-size: 18px;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 40px;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    padding: 0 40px 30px;
}

.faq-answer p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 15px;
}

.faq-answer ul,
.faq-answer ol {
    color: var(--text-muted);
    line-height: 1.8;
    padding-left: 25px;
    margin-bottom: 15px;
}

.faq-answer li {
    margin-bottom: 10px;
}

.faq-answer strong {
    color: var(--gold);
    font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
    .faq-question {
        padding: 20px 25px;
    }
    
    .faq-question h3 {
        font-size: 18px;
    }
    
    .faq-answer {
        padding: 0 25px;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 25px 20px;
    }
}

/* ========================================
   VENTURES SECTION - EMPIRE BUILDING
======================================== */
.ventures-section {
    padding: var(--section-padding) 0;
    background: linear-gradient(180deg, var(--rich-black) 0%, var(--primary-black) 100%);
    position: relative;
}

.ventures-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
}

.ventures-section::after {
    content: '';
    position: absolute;
    top: 20%;
    right: -100px;
    transform: rotate(20deg);
    width: 550px;
    height: 550px;
    background-image: url('../images/logo.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.02;
    z-index: 0;
    pointer-events: none;
}

.venture-highlight {
    margin-bottom: 80px;
}

.venture-card {
    background: linear-gradient(135deg, var(--charcoal), var(--luxury-blue));
    padding: 50px;
    box-shadow: var(--shadow-xl);
    transition: var(--transition-smooth);
    margin-bottom: 35px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.venture-card:hover {
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.8), var(--shadow-gold);
    transform: translateY(-5px);
}

.venture-card.primary {
    border-color: rgba(212, 175, 55, 0.4);
    border-left: 4px solid var(--gold);
}

/* S Selvarajah Consulting Logo */
.consulting-logo-header {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
    padding: 30px 0;
    position: relative;
}

.consulting-logo-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
}

.consulting-logo {
    max-width: 270px !important;
    max-height: 189px !important;
    width: auto;
    height: auto;
    display: block;
    filter: drop-shadow(0 8px 24px rgba(212, 175, 55, 0.3));
    transition: all 0.4s ease;
}

.consulting-logo:hover {
    filter: drop-shadow(0 12px 32px rgba(212, 175, 55, 0.5)) brightness(1.1);
    transform: scale(1.03);
}

@media (max-width: 768px) {
    .consulting-logo {
        max-width: 216px !important;
        max-height: 149px !important;
    }
}

/* Selvarajah Surendran Holdings Logo */
.holdings-logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.8), rgba(15, 28, 46, 0.6));
    min-height: 200px;
}

.holdings-logo {
    max-width: 270px !important;
    max-height: 189px !important;
    width: auto;
    height: auto;
    display: block;
    filter: drop-shadow(0 8px 24px rgba(212, 175, 55, 0.3));
    transition: all 0.4s ease;
}

.holdings-logo:hover {
    filter: drop-shadow(0 12px 32px rgba(212, 175, 55, 0.5)) brightness(1.15);
    transform: scale(1.05);
}

/* Fair Priced Homes Logo */
.fairpriced-logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.8), rgba(15, 28, 46, 0.6));
    min-height: 200px;
}

.fairpriced-logo {
    max-width: 270px !important;
    max-height: 189px !important;
    width: auto;
    height: auto;
    display: block;
    filter: drop-shadow(0 8px 24px rgba(212, 175, 55, 0.3));
    transition: all 0.4s ease;
}

.fairpriced-logo:hover {
    filter: drop-shadow(0 12px 32px rgba(212, 175, 55, 0.5)) brightness(1.15);
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .holdings-logo,
    .fairpriced-logo {
        max-width: 216px !important;
        max-height: 149px !important;
    }
}

.venture-header {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    margin-bottom: 30px;
}

.venture-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-black);
    font-size: 32px;
    flex-shrink: 0;
}

.venture-card h3 {
    font-family: var(--font-display);
    font-size: 30px;
    color: var(--text-white);
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.venture-subtitle {
    font-size: 17px;
    color: var(--gold);
    font-weight: 500;
    margin-bottom: 10px;
}

.venture-date {
    color: var(--text-muted);
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 6px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.venture-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    color: var(--primary-black);
    padding: 7px 18px;
    font-size: 11px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.venture-description {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 30px;
}

.venture-role {
    font-size: 17px;
    color: var(--gold);
    font-weight: 500;
    margin-bottom: 10px;
}

.venture-location {
    color: var(--text-muted);
    font-size: 13px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 6px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.clients-section h4,
.venture-projects h4,
.focus-areas h4,
.mission h4 {
    font-size: 20px;
    color: var(--text-white);
    margin-bottom: 20px;
    margin-top: 30px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

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

.client-tag {
    background: rgba(212, 175, 55, 0.1);
    color: var(--text-light);
    padding: 10px 20px;
    font-size: 13px;
    font-weight: 400;
    border: 1px solid rgba(212, 175, 55, 0.3);
    transition: var(--transition-smooth);
}

.client-tag:hover {
    background: var(--gold);
    color: var(--primary-black);
    border-color: var(--gold);
}

.ventures-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 35px;
}

.venture-image {
    margin-bottom: 30px;
}

.image-placeholder {
    width: 100%;
    height: 250px;
    background: linear-gradient(135deg, var(--midnight), var(--deep-blue));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 70px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

/* IRDG Logo - Luxury Dark Theme Version */
.irdg-logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.8), rgba(15, 28, 46, 0.6));
    min-height: 200px;
}

.irdg-logo {
    max-width: 270px !important;
    max-height: 189px !important;
    width: auto;
    height: auto;
    display: block;
    filter: drop-shadow(0 8px 24px rgba(212, 175, 55, 0.3));
    transition: all 0.4s ease;
}

.irdg-logo:hover {
    filter: drop-shadow(0 12px 32px rgba(212, 175, 55, 0.5)) brightness(1.15);
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .irdg-logo {
        max-width: 216px !important;
        max-height: 149px !important;
    }
}

.venture-projects ul {
    list-style: none;
    padding-left: 0;
}

.venture-projects li {
    padding-left: 30px;
    position: relative;
    margin-bottom: 15px;
    color: var(--text-muted);
    line-height: 1.7;
}

.venture-projects li::before {
    content: '◆';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-size: 12px;
}

.venture-projects li strong {
    color: var(--text-white);
    font-weight: 500;
}

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

.tag {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.1));
    color: var(--text-light);
    padding: 10px 20px;
    font-size: 12px;
    font-weight: 400;
    border: 1px solid rgba(212, 175, 55, 0.3);
    transition: var(--transition-smooth);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.tag:hover {
    background: var(--gold);
    color: var(--primary-black);
    border-color: var(--gold);
}

.mission p {
    color: var(--text-muted);
    line-height: 1.8;
    font-style: italic;
}

/* Real Estate Showcase - Luxury Properties */
.realestate-showcase {
    margin-top: 80px;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 35px;
}

.project-card {
    background: linear-gradient(135deg, var(--charcoal), var(--luxury-blue));
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    transition: var(--transition-smooth);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.8), var(--shadow-gold);
    border-color: var(--gold);
}

.project-status {
    padding: 15px 25px;
    font-weight: 700;
    font-size: 12px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.project-status.sold {
    background: linear-gradient(135deg, #046307, #057a09);
    color: var(--text-white);
}

.project-status.listed {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    color: var(--primary-black);
}

.project-details {
    padding: 30px;
}

.project-details h4 {
    font-size: 22px;
    color: var(--text-white);
    margin-bottom: 18px;
    font-weight: 600;
}

.project-price {
    font-size: 28px;
    color: var(--gold);
    font-weight: 700;
    margin-bottom: 20px;
    font-family: var(--font-display);
}

.project-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-bottom: 20px;
}

.project-specs span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.project-specs i {
    color: var(--gold);
}

.project-highlight {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.7;
}

/* ========================================
   LIFESTYLE SECTION - LUXURY LIVING
======================================== */
.lifestyle-section {
    padding: var(--section-padding) 0;
    background: linear-gradient(180deg, var(--primary-black) 0%, var(--rich-black) 100%);
    position: relative;
}

.lifestyle-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
}

.lifestyle-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 35px;
}

.lifestyle-card {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.8), rgba(15, 28, 46, 0.6));
    padding: 45px;
    box-shadow: var(--shadow-xl);
    transition: var(--transition-smooth);
    border-top: 2px solid var(--gold);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.lifestyle-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.8), var(--shadow-gold);
}

.lifestyle-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-black);
    font-size: 32px;
    margin-bottom: 30px;
}

.lifestyle-card h3 {
    font-family: var(--font-display);
    font-size: 26px;
    color: var(--text-white);
    margin-bottom: 20px;
}

.lifestyle-card p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 25px;
}

.lifestyle-highlight {
    background: rgba(212, 175, 55, 0.05);
    padding: 25px;
    border-left: 2px solid var(--gold);
    margin-top: 25px;
}

.lifestyle-highlight i {
    color: var(--gold);
    font-size: 20px;
    margin-bottom: 12px;
}

.lifestyle-highlight p {
    font-style: italic;
    color: var(--text-light);
    margin: 0;
}

.cuisine-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 25px;
}

.cuisine-tag {
    background: rgba(212, 175, 55, 0.1);
    color: var(--text-light);
    padding: 10px 18px;
    font-size: 12px;
    font-weight: 400;
    border: 1px solid rgba(212, 175, 55, 0.3);
    transition: var(--transition-smooth);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.cuisine-tag:hover {
    background: var(--gold);
    color: var(--primary-black);
    border-color: var(--gold);
}

.community-involvement ul {
    list-style: none;
    padding-left: 0;
}

.community-involvement li {
    padding-left: 30px;
    position: relative;
    margin-bottom: 12px;
    color: var(--text-muted);
}

.community-involvement li::before {
    content: '◆';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-size: 12px;
}

.investment-stats {
    margin-top: 25px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    color: var(--text-muted);
}

.stat-item i {
    color: var(--gold);
    font-size: 20px;
}

.volunteer-history {
    margin-top: 25px;
}

.volunteer-item {
    background: rgba(26, 26, 26, 0.6);
    padding: 25px;
    margin-bottom: 18px;
    border-left: 2px solid var(--gold);
}

.volunteer-item h4 {
    font-size: 17px;
    color: var(--text-white);
    margin-bottom: 10px;
}

.volunteer-role {
    font-size: 14px;
    color: var(--gold);
    font-weight: 500;
    margin-bottom: 6px;
}

.volunteer-cause {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.lifestyle-card.philosophy {
    grid-column: span 1;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(15, 28, 46, 0.4));
    border-top-color: var(--gold-light);
}

.lifestyle-card.philosophy blockquote {
    font-size: 19px;
    line-height: 1.9;
    color: var(--text-light);
    font-style: italic;
    position: relative;
    padding-left: 25px;
    border-left: 3px solid var(--gold);
}

/* ========================================
   CONTACT SECTION - EXCLUSIVE ACCESS
======================================== */
.contact-section {
    padding: var(--section-padding) 0;
    background: linear-gradient(180deg, var(--rich-black) 0%, var(--primary-black) 100%);
    position: relative;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
}

.contact-section::after {
    content: '';
    position: absolute;
    bottom: 5%;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    height: 700px;
    background-image: url('../images/logo.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.015;
    z-index: 0;
    pointer-events: none;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.contact-info h3 {
    font-family: var(--font-display);
    font-size: 36px;
    color: var(--text-white);
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.contact-info > p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 20px;
}

.contact-emphasis {
    font-style: italic;
    color: var(--gold);
    font-weight: 500;
    font-size: 18px;
    margin-bottom: 45px !important;
}

.contact-details {
    margin-bottom: 50px;
}

.contact-item {
    display: flex;
    gap: 25px;
    margin-bottom: 35px;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-black);
    font-size: 24px;
    flex-shrink: 0;
}

.contact-text h4 {
    font-size: 19px;
    color: var(--text-white);
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.contact-text p {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 6px;
}

.contact-text .secondary {
    color: var(--text-dark-muted);
    font-size: 13px;
}

.social-connect h4 {
    font-size: 22px;
    color: var(--text-white);
    margin-bottom: 25px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.social-buttons {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.social-btn {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 18px 30px;
    font-weight: 500;
    color: var(--text-white);
    transition: var(--transition-smooth);
    border: 1px solid rgba(212, 175, 55, 0.3);
    background: rgba(26, 26, 26, 0.6);
    letter-spacing: 1px;
}

.social-btn:hover {
    transform: translateX(8px);
    border-color: var(--gold);
    background: rgba(212, 175, 55, 0.1);
    box-shadow: var(--shadow-md);
}

.social-btn i {
    font-size: 24px;
}

.social-btn.linkedin i {
    color: #0077b5;
}

.social-btn.instagram i {
    color: #e4405f;
}

.social-btn.facebook i {
    color: #1877f2;
}

/* Contact Form - Premium */
.contact-form-container {
    background: linear-gradient(135deg, var(--charcoal), var(--luxury-blue));
    padding: 50px;
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.contact-form h3 {
    font-family: var(--font-display);
    font-size: 32px;
    color: var(--text-white);
    margin-bottom: 35px;
    letter-spacing: 1px;
}

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

.form-group label {
    display: block;
    font-weight: 500;
    color: var(--text-white);
    margin-bottom: 10px;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    background: rgba(10, 10, 10, 0.6);
    color: var(--text-light);
    font-family: var(--font-primary);
    font-size: 15px;
    transition: var(--transition-smooth);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(10, 10, 10, 0.8);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form-group textarea {
    resize: vertical;
}

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

.form-message {
    margin-top: 25px;
    padding: 18px;
    display: none;
    font-weight: 500;
}

.form-message.success {
    background: rgba(4, 99, 7, 0.2);
    color: #0acc16;
    border: 1px solid #0acc16;
}

.form-message.error {
    background: rgba(139, 0, 0, 0.2);
    color: #ff4444;
    border: 1px solid #ff4444;
}

/* ========================================
   FOOTER - REFINED ELEGANCE
======================================== */
.footer {
    background: var(--primary-black);
    color: var(--text-muted);
    padding: 80px 0 40px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

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

.footer-section h3 {
    font-family: var(--font-display);
    font-size: 26px;
    margin-bottom: 20px;
    color: var(--gold);
    letter-spacing: 1px;
}

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--text-white);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.footer-section p {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 25px;
}

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

.footer-social a {
    width: 45px;
    height: 45px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: var(--transition-smooth);
    color: var(--gold);
}

.footer-social a:hover {
    background: var(--gold);
    color: var(--primary-black);
    transform: translateY(-5px);
    box-shadow: var(--shadow-gold);
}

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

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

.footer-links a {
    color: var(--text-muted);
    transition: var(--transition-smooth);
    letter-spacing: 0.5px;
}

.footer-links a:hover {
    color: var(--gold);
    padding-left: 8px;
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.footer-bottom p {
    color: var(--text-dark-muted);
    font-size: 13px;
    letter-spacing: 1px;
}

/* ========================================
   SCROLL TO TOP BUTTON - LUXE
======================================== */
.scroll-top-btn {
    position: fixed;
    bottom: 35px;
    right: 35px;
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    color: var(--primary-black);
    border: 1px solid var(--gold);
    font-size: 22px;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-gold);
    transition: var(--transition-smooth);
    z-index: 999;
}

.scroll-top-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(212, 175, 55, 0.5);
}

.scroll-top-btn.visible {
    display: flex;
}

/* ========================================
   RESPONSIVE DESIGN
======================================== */
@media (max-width: 1024px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .profile-card {
        position: static;
        max-width: 450px;
        margin: 0 auto;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 768px) {
    :root {
        --section-padding: 80px;
    }

    .container {
        padding: 0 20px;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        flex-direction: column;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        border-top: 1px solid rgba(212, 175, 55, 0.3);
        box-shadow: var(--shadow-lg);
        padding: 40px 20px;
        transition: var(--transition-smooth);
        gap: 25px;
    }

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

    .mobile-menu-toggle {
        display: flex;
    }

    .hero {
        min-height: 90vh;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }

    .btn {
        width: 100%;
    }

    .about-heading {
        font-size: 30px;
    }

    .about-text h4 {
        font-size: 22px;
    }

    .about-text h5 {
        font-size: 17px;
    }

    .expertise-area {
        padding: 20px;
    }

    .role-badges {
        gap: 10px;
    }

    .role-badge-item {
        font-size: 11px;
        padding: 10px 15px;
    }

    .personal-quote {
        padding: 25px 30px;
    }

    .personal-quote p {
        font-size: 19px;
    }

    .skills-grid,
    .education-grid,
    .ventures-grid,
    .lifestyle-grid,
    .projects-grid {
        grid-template-columns: 1fr;
    }

    .venture-header {
        flex-direction: column;
    }

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

    .timeline {
        padding-left: 35px;
    }

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

    .scroll-top-btn {
        bottom: 25px;
        right: 25px;
        width: 50px;
        height: 50px;
    }

    .role-card,
    .venture-card,
    .lifestyle-card,
    .contact-form-container {
        padding: 30px;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 20px;
    }

    .logo-image {
        height: 50px;
    }

    .logo-text {
        font-size: 18px;
    }

    .logo h2 {
        font-size: 22px;
    }

    .hero-title {
        font-size: 42px;
    }

    .hero-subtitle {
        font-size: 20px;
    }

    .badge {
        font-size: 10px;
        padding: 10px 18px;
    }

    .project-specs {
        flex-direction: column;
        gap: 10px;
    }
}

/* ========================================
   ENHANCED MOBILE OPTIMIZATIONS
======================================== */

/* Touch Target Optimization - Ensure minimum 44x44px */
@media (max-width: 768px) {
    /* Buttons - Enhanced Touch Targets */
    .btn {
        padding: 16px 32px;
        font-size: 14px;
        min-height: 48px;
        min-width: 120px;
        justify-content: center;
    }
    
    .btn-download {
        padding: 16px 24px;
        font-size: 15px;
        min-height: 48px;
    }
    
    /* Navigation Links - Larger Touch Areas */
    .nav-link {
        padding: 16px 20px;
        font-size: 16px;
        min-height: 48px;
        display: flex;
        align-items: center;
    }
    
    /* Social Media Icons - Bigger Touch Targets */
    .social-links a,
    .footer-social a {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }
    
    .social-btn {
        min-height: 52px;
        padding: 14px 24px;
        font-size: 15px;
    }
    
    /* FAQ Questions - Easy to Tap */
    .faq-question {
        padding: 24px 20px;
        min-height: 60px;
    }
    
    .faq-question h3 {
        font-size: 17px;
        line-height: 1.4;
    }
    
    /* Form Inputs - Comfortable Typing */
    input,
    textarea,
    select {
        padding: 16px;
        font-size: 16px; /* Prevents iOS zoom */
        min-height: 48px;
    }
    
    /* Impact Cards - Better Spacing */
    .impact-card {
        padding: 35px 25px;
        min-height: 280px;
    }
    
    .impact-icon {
        width: 70px;
        height: 70px;
        font-size: 28px;
        margin-bottom: 20px;
    }
    
    .impact-number {
        font-size: 46px;
        margin-bottom: 12px;
    }
    
    .impact-label {
        font-size: 17px;
        margin-bottom: 12px;
    }
    
    /* Hero Section - Mobile Optimized */
    .hero {
        min-height: 100vh;
        padding: 100px 0 60px;
    }
    
    .hero-title {
        font-size: 36px;
        margin-bottom: 20px;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 22px;
        margin-bottom: 25px;
    }
    
    .hero-tagline {
        font-size: 16px;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 15px;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 100%;
        justify-content: center;
    }
    
    /* Profile Card - Mobile Stacked */
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .profile-card {
        position: relative;
        top: 0;
    }
    
    .profile-image img {
        max-width: 250px;
        margin: 0 auto;
    }
    
    /* Typography - Better Readability */
    .section-title {
        font-size: 32px;
        margin-bottom: 16px;
    }
    
    .section-subtitle {
        font-size: 16px;
    }
    
    .subsection-title {
        font-size: 28px;
        margin-top: 50px;
        margin-bottom: 30px;
    }
    
    /* About Text - Comfortable Reading */
    .about-text {
        font-size: 16px;
        line-height: 1.7;
    }
    
    .about-text .lead {
        font-size: 18px;
        padding-left: 15px;
    }
    
    .about-text h4 {
        font-size: 22px;
        margin-top: 40px;
    }
    
    .about-text h5 {
        font-size: 18px;
    }
    
    /* Role Badges - Responsive Grid */
    .role-badges {
        gap: 10px;
    }
    
    .role-badge-item {
        font-size: 13px;
        padding: 10px 16px;
    }
    
    /* Skills Grid - Better Mobile Layout */
    .skills-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .skill-card {
        padding: 25px;
    }
    
    /* Timeline - Simplified Mobile View */
    .timeline-item {
        padding: 20px;
        gap: 15px;
    }
    
    .timeline-content h4 {
        font-size: 18px;
    }
    
    .timeline-role {
        font-size: 15px;
    }
    
    /* Venture Cards - Single Column */
    .ventures-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .venture-card {
        padding: 30px 20px;
    }
    
    /* Projects Grid - Single Column */
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    /* Contact Form - Full Width */
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-form-container {
        order: 2;
    }
    
    /* Footer - Stacked Layout */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .footer-section {
        text-align: center;
    }
    
    /* Scroll to Top Button */
    #scrollTopBtn {
        right: 20px;
        bottom: 20px;
        width: 48px;
        height: 48px;
        font-size: 18px;
    }
}

/* Extra Small Devices (< 480px) */
@media (max-width: 480px) {
    /* Even More Compact Spacing */
    .container {
        padding: 0 20px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .impact-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .impact-card {
        padding: 30px 20px;
        min-height: auto;
    }
    
    .impact-number {
        font-size: 40px;
    }
    
    /* Compact Navigation */
    .nav-menu {
        padding: 20px 0;
    }
    
    .nav-link {
        padding: 14px 20px;
        font-size: 15px;
    }
    
    /* Smaller Badges */
    .badge {
        font-size: 11px;
        padding: 8px 14px;
    }
    
    .hero-badges {
        gap: 8px;
    }
}

/* Landscape Mobile Devices */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 80px 0 40px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 20px;
    }
    
    .about-content {
        grid-template-columns: 300px 1fr;
        gap: 40px;
    }
}

/* ========================================
   MOBILE PERFORMANCE OPTIMIZATIONS
======================================== */

@media (max-width: 768px) {
    /* Reduce Animation Complexity on Mobile */
    * {
        animation-duration: 0.3s !important;
    }
    
    /* Simplify Transforms */
    .btn:hover,
    .skill-card:hover,
    .venture-card:hover {
        transform: translateY(-2px);
    }
    
    /* Disable Parallax Effects */
    .about-section::after,
    .ventures-section::after {
        display: none;
    }
    
    /* Optimize Shadows */
    .impact-card:hover,
    .skill-card:hover {
        box-shadow: 0 8px 20px rgba(212, 175, 55, 0.15);
    }
}

/* ========================================
   MOBILE ACCESSIBILITY ENHANCEMENTS
======================================== */

@media (max-width: 768px) {
    /* Improve Focus Indicators */
    *:focus {
        outline: 3px solid var(--gold);
        outline-offset: 3px;
    }
    
    /* Enhance Contrast for Readability */
    .text-muted {
        color: rgba(255, 255, 255, 0.8);
    }
    
    /* Larger Line Heights for Easy Reading */
    p {
        line-height: 1.7;
    }
}

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

.fade-in {
    animation: fadeInUp 0.8s ease-out;
}

/* ========================================
   ACCESSIBILITY
======================================== */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 3px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --primary-black: #000000;
        --text-white: #ffffff;
        --gold: #ffcc00;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}