/* CSS Variables - Vibrant Creative Studio Theme */
/* Version: 2024-11-23-v5 - Extended color palette */

/* Performance optimizations */
* {
    box-sizing: border-box;
}

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

:root {
    /* Primary */
    --primary-color: #000000;
    --primary-dark: #000000;
    
    /* Accents - Main */
    --accent-orange: #FF6B35;
    --accent-purple: #9D4EDD;
    --accent-magenta: #FF006E;
    
    /* Accents - Extended */
    --accent-orange-light: #FF8C61;
    --accent-cyan: #00D9FF;
    --accent-teal: #06D6A0;
    
    /* Text */
    --text-primary: #FFFFFF;
    --text-secondary: #B8C5D6;
    --text-muted: #8B96A5;
    --text-disabled: #5A6270;
    
    /* Backgrounds */
    --bg-primary: #000000;
    --bg-secondary: #0a0a0a;
    --bg-elevated: #1a1a1a;
    --bg-input: #141414;
    --bg-hover: rgba(157, 78, 221, 0.1);
    
    /* States */
    --success: #06D6A0;
    --warning: #FFB800;
    --error: #FF4444;
    --info: #00D9FF;
    
    /* Borders */
    --border-color: rgba(157, 78, 221, 0.25);
    --border-subtle: rgba(255, 255, 255, 0.08);
    --border-medium: rgba(255, 255, 255, 0.15);
    --border-strong: rgba(255, 255, 255, 0.25);
}

/* ============================================================
   COOKIE CONSENT BANNER STYLES
   ============================================================ */

/* Cookie Banner Container */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: linear-gradient(135deg, rgba(10, 10, 20, 0.96) 0%, rgba(20, 10, 35, 0.96) 100%);
    border-top: 2px solid;
    border-image: linear-gradient(90deg, #FF6B35 0%, #9D4EDD 100%) 1;
    padding: 1.75rem;
    box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 107, 53, 0.2);
    backdrop-filter: blur(15px);
    animation: slideUp 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', sans-serif;
    will-change: transform;
}

@keyframes slideUp {
    from {
        transform: translateY(120%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.cookie-text {
    flex: 1;
    min-width: 280px;
}

.cookie-text p {
    margin: 0.75rem 0;
    color: #D4D9E3;
    font-size: 0.975rem;
    line-height: 1.6;
    letter-spacing: 0.3px;
}

.cookie-text strong {
    background: linear-gradient(135deg, #FF6B35 0%, #FF8C61 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1.05rem;
}

.cookie-text p:first-child {
    margin-bottom: 0.5rem;
}

.cookie-buttons {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.cookie-btn {
    padding: 0.8rem 1.75rem;
    border: none;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    text-transform: uppercase;
    letter-spacing: 0.7px;
    font-family: inherit;
    white-space: nowrap;
}

.cookie-accept {
    background: linear-gradient(135deg, #FF6B35 0%, #FF8C61 100%);
    color: #FFFFFF;
    border: none;
    box-shadow: 0 4px 16px rgba(255, 107, 53, 0.35);
    position: relative;
    overflow: hidden;
    will-change: transform, box-shadow;
}

.cookie-accept::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;
}

.cookie-accept:hover {
    background: linear-gradient(135deg, #FF8C61 0%, #FF6B35 100%);
    box-shadow: 0 6px 24px rgba(255, 107, 53, 0.5);
    transform: translateY(-3px);
}

.cookie-accept:hover::before {
    left: 100%;
}

.cookie-accept:active {
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
}

.cookie-decline {
    background: rgba(255, 255, 255, 0.08);
    color: #D4D9E3;
    border: 1.5px solid rgba(255, 107, 53, 0.3);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    will-change: transform, box-shadow;
}

.cookie-decline:hover {
    background: rgba(157, 78, 221, 0.15);
    border-color: rgba(157, 78, 221, 0.6);
    color: #FFFFFF;
    box-shadow: 0 4px 16px rgba(157, 78, 221, 0.2);
    transform: translateY(-2px);
}

.cookie-decline:active {
    transform: translateY(0);
}

.cookie-link {
    color: #FF6B35;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    white-space: nowrap;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    padding-bottom: 2px;
    border-bottom: 2px solid transparent;
    will-change: color, border-color;
}

.cookie-link::after {
    content: '→';
    display: inline-block;
    margin-left: 0.4rem;
    transition: transform 0.3s ease;
}

.cookie-link:hover {
    color: #FF8C61;
    border-bottom-color: #FF6B35;
}

.cookie-link:hover::after {
    transform: translateX(3px);
}

@media (max-width: 900px) {
    .cookie-content {
        gap: 1.5rem;
    }
    
    .cookie-buttons {
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .cookie-banner {
        padding: 1.5rem 1.25rem;
    }
    
    .cookie-content {
        flex-direction: column;
        gap: 1.5rem;
        align-items: stretch;
    }
    
    .cookie-text {
        width: 100%;
    }
    
    .cookie-text strong {
        font-size: 1rem;
    }
    
    .cookie-text p {
        font-size: 0.9rem;
        margin: 0.5rem 0;
    }
    
    .cookie-buttons {
        width: 100%;
        justify-content: stretch;
        gap: 0.75rem;
        flex-direction: row;
    }
    
    .cookie-btn {
        flex: 1;
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
        min-width: unset;
        border-radius: 6px;
    }
    
    .cookie-link {
        order: 3;
        padding: 1rem;
        text-align: center;
        width: 100%;
        font-size: 0.85rem;
        white-space: normal;
        border-bottom: none;
        border-top: 1px solid rgba(255, 107, 53, 0.2);
        margin-top: 0.5rem;
        color: #FF6B35;
    }
    
    .cookie-link::after {
        margin-left: 0.25rem;
    }
}

@media (max-width: 540px) {
    .cookie-banner {
        padding: 1.25rem 1rem;
    }
    
    .cookie-content {
        gap: 1.25rem;
    }
    
    .cookie-text p {
        font-size: 0.85rem;
        margin: 0.4rem 0;
    }
    
    .cookie-text strong {
        font-size: 0.95rem;
        margin-bottom: 0.35rem;
    }
    
    .cookie-btn {
        padding: 0.7rem 0.85rem;
        font-size: 0.85rem;
        letter-spacing: 0.4px;
    }
    
    .cookie-buttons {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .cookie-accept,
    .cookie-decline {
        width: 100%;
        text-align: center;
    }
    
    .cookie-link {
        width: 100%;
        font-size: 0.8rem;
    }
}

.cookie-btn:focus,
.cookie-link:focus {
    outline: 2px solid #FF6B35;
    outline-offset: 3px;
}

.cookie-btn:focus {
    outline-offset: -2px;
}

.cookie-banner:focus-within {
    box-shadow: 0 -8px 32px rgba(255, 107, 53, 0.3), inset 0 1px 0 rgba(255, 107, 53, 0.3);
}

@media (prefers-reduced-motion: reduce) {
    .cookie-banner {
        animation: none;
    }
    
    .cookie-btn,
    .cookie-link,
    .cookie-accept::before {
        transition: none;
    }
}

@media print {
    .cookie-banner {
        display: none !important;
    }
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: #000000;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(157, 78, 221, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(255, 107, 53, 0.04) 0%, transparent 50%);
    background-attachment: fixed;
}

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

/* Navigation */
.navbar {
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.98) 0%, rgba(157, 78, 221, 0.08) 100%);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid rgba(255, 107, 53, 0.3);
    color: white;
    padding: 0.75rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 8px 32px rgba(157, 78, 221, 0.3), 0 2px 8px rgba(255, 107, 53, 0.15);
}

.navbar .container {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 2rem;
    flex-wrap: nowrap;
    position: relative;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
    min-width: 0;
}

.logo-link {
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
}

.logo-link:hover {
    transform: scale(1.05);
}

.logo img {
    height: 100px;
    width: auto;
    min-width: 80px;
    max-width: 300px;
    object-fit: contain;
    display: block;
}

.logo-text {
    background: linear-gradient(135deg, var(--accent-orange) 0%, var(--accent-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    letter-spacing: -0.5px;
    display: inline-block;
    white-space: nowrap;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    flex-wrap: nowrap;
    align-items: center;
    flex: 1;
    justify-content: center;
}

.nav-menu li {
    display: inline-block;
    white-space: nowrap;
}

.nav-menu a {
    color: #FFFFFF;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-orange), var(--accent-purple));
    transition: width 0.3s ease;
}

.nav-menu a:hover {
    color: var(--accent-orange);
    text-shadow: 0 0 10px rgba(255, 107, 53, 0.5);
}

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

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 10px;
    z-index: 102;
    position: relative;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 3px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Hero Section */
.hero {
    color: white;
    padding: 100px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-image: url('/.netlify/images?url=images/Black_texture_vol1%20(20).jpg&fm=webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 100vh;
}

/* Hero size variants */
.hero.services-hero,
.hero.about-hero,
.hero.contact-hero,
.hero.privacy-hero {
    min-height: 50vh;
    padding: 60px 20px;
}

.hero.portfolio-hero {
    min-height: 50vh;
    padding: 60px 20px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 0;
}

.hero .container {
    position: relative;
    z-index: 1;
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

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

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

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

.hero h2 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: bold;
    z-index: 2;
    position: relative;
    animation: slideInDown 1s ease-out;
    line-height: 1.2;
    background: linear-gradient(135deg, var(--accent-orange) 0%, var(--accent-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Reduce heading size on secondary pages */
.services-hero h2,
.about-hero h2,
.contact-hero h2,
.portfolio-hero h2,
.privacy-hero h2 {
    font-size: 1.75rem;
}

/* Hero-title class - match About page h1 size (3rem) */
.services-hero .hero-title,
.portfolio-hero .hero-title,
.privacy-hero .hero-title {
    font-size: 3rem;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.about-hero .hero-title,
.contact-hero .hero-title {
    font-size: 1.75rem;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    color: var(--text-secondary);
    z-index: 2;
    position: relative;
    animation: slideInUp 1s ease-out 0.2s both;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Reduce paragraph size on secondary pages */
.services-hero p,
.portfolio-hero p,
.privacy-hero p {
    font-size: 1.3rem;
}

.about-hero p,
.contact-hero p {
    font-size: 0.95rem;
}

/* Reduce hero-subtitle on secondary pages - match About paragraph size */
.services-hero .hero-subtitle,
.portfolio-hero .hero-subtitle,
.privacy-hero .hero-subtitle {
    font-size: 1.3rem;
}

.about-hero .hero-subtitle,
.contact-hero .hero-subtitle {
    font-size: 0.95rem;
}

.hero-ctas {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    z-index: 2;
    position: relative;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.4s both;
}

/* Reduce button size on secondary pages */
.services-hero .hero-ctas,
.about-hero .hero-ctas,
.contact-hero .hero-ctas,
.portfolio-hero .hero-ctas,
.privacy-hero .hero-ctas {
    gap: 0.75rem;
}

.services-hero .btn-primary,
.services-hero .btn-secondary,
.about-hero .btn-primary,
.about-hero .btn-secondary,
.contact-hero .btn-primary,
.contact-hero .btn-secondary,
.portfolio-hero .btn-primary,
.portfolio-hero .btn-secondary,
.privacy-hero .btn-primary,
.privacy-hero .btn-secondary {
    padding: 10px 20px;
    font-size: 0.9rem;
}

/* Button Styles */
.btn-primary {
    background: linear-gradient(135deg, var(--accent-orange) 0%, var(--accent-purple) 100%);
    color: #FFFFFF;
    padding: 14px 32px;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.4);
    position: relative;
    overflow: hidden;
    display: inline-block;
    text-decoration: none;
    will-change: transform, box-shadow;
}

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

.btn-primary:hover {
    box-shadow: 0 0 30px rgba(255, 107, 53, 0.8);
    transform: translateY(-2px);
}

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

/* Hidden button helper for buy/checkout CTAs */
.btn-hidden {
    display: none !important;
    pointer-events: none;
    visibility: hidden;
}

.btn-secondary {
    background: transparent;
    color: var(--accent-orange);
    padding: 14px 32px;
    border: 2px solid var(--accent-orange);
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: inline-block;
    text-decoration: none;
    will-change: background-color, color, box-shadow;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 107, 53, 0.2);
    transition: left 0.3s ease;
    z-index: -1;
}

.btn-secondary:hover {
    background: rgba(255, 107, 53, 0.2);
    color: white;
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.3);
}

/* Portfolio Section */
.portfolio-section {
    padding: 80px 20px;
    position: relative;
    background: var(--primary-color);
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    animation: fadeInUp 0.8s ease-out;
    width: 100%;
}

/* When .section-title is applied directly to h2/h3 elements */
h2.section-title,
h3.section-title {
    font-size: 1.75rem !important;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--accent-orange) 0%, var(--accent-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-title h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--accent-orange) 0%, var(--accent-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-title p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

/* Services Section */
.services-section {
    padding: 80px 20px;
    background: var(--primary-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.service-card {
    background: var(--bg-elevated);
    border: 1px solid var(--border-medium);
    border-radius: 8px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    will-change: transform, background, box-shadow;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(157, 78, 221, 0.15) 100%);
    transition: left 0.3s ease;
    z-index: 0;
}

.service-card:hover {
    border-color: var(--accent-purple);
    background: var(--bg-hover);
    box-shadow: 0 0 25px rgba(124, 58, 237, 0.2);
    transform: translateY(-10px);
}

.service-card:hover::before {
    left: 0;
}

.service-card > * {
    position: relative;
    z-index: 1;
}

.service-card h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--accent-orange);
}

.service-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.service-card a {
    color: var(--accent-orange);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
    display: inline-block;
    margin-top: 0.5rem;
}

.service-card a:hover {
    color: var(--accent-purple);
}

/* Why Choose Section */
.why-choose-section {
    padding: 80px 20px;
    position: relative;
    background: var(--primary-color);
}

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

.why-choose-card {
    background: var(--bg-elevated);
    border: 1px solid var(--border-medium);
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.why-choose-card:hover {
    border-color: var(--accent-orange);
    background: var(--bg-hover);
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.2);
}

.why-choose-card h4 {
    font-size: 1.3rem;
    color: var(--accent-orange);
    margin-bottom: 1rem;
}

.why-choose-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Portfolio Section */
.portfolio-section {
    padding: 80px 20px;
    position: relative;
    background: var(--primary-color);
}

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

.portfolio-card {
    background: var(--bg-elevated);
    border: 1px solid var(--border-medium);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    will-change: transform, box-shadow;
}

.portfolio-card::before {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(157, 78, 221, 0.1) 100%);
    transition: top 0.3s ease;
    z-index: 1;
}

.portfolio-card:hover {
    border-color: var(--accent-orange);
    background: var(--bg-hover);
    box-shadow: 0 0 30px rgba(255, 107, 53, 0.2);
    transform: translateY(-5px);
}

.portfolio-card:hover::before {
    top: 0;
}

.portfolio-image {
    width: 100%;
    height: 250px;
    background: linear-gradient(135deg, var(--accent-orange) 0%, var(--accent-purple) 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    transition: transform 0.3s ease;
}

.portfolio-card:hover .portfolio-image {
    transform: scale(1.05);
}

.portfolio-content {
    padding: 1.5rem;
    position: relative;
    z-index: 2;
}

.portfolio-tag {
    display: inline-block;
    color: var(--accent-orange);
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

.portfolio-card h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.portfolio-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Testimonials Section */
.testimonials,
.testimonials-section {
    padding: 80px 20px;
    position: relative;
    background: var(--primary-color);
}

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

.testimonial-card {
    background: var(--bg-elevated);
    border: 2px solid var(--border-medium);
    border-radius: 8px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 10px;
    font-size: 4rem;
    color: var(--accent-orange);
    opacity: 0.3;
}

.testimonial-card:hover {
    border-color: var(--accent-purple);
    background: var(--bg-hover);
    box-shadow: 0 0 25px rgba(124, 58, 237, 0.2);
    transform: translateY(-5px);
}

.stars {
    color: var(--accent-gold);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.testimonial-text,
.testimonial-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-style: italic;
    line-height: 1.6;
}

.testimonial-author {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.95rem;
}

.testimonial-author span {
    display: block;
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-top: 0.25rem;
}

.testimonial-title {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-top: 0.5rem;
}

/* CTA Section */
.cta-section {
    padding: 80px 20px;
    text-align: center;
    position: relative;
    background: var(--primary-color);
}

.cta-section h3 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--accent-orange) 0%, var(--accent-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-section p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

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

.cta-buttons .btn-primary,
.cta-buttons .btn-secondary {
    display: inline-block;
}

/* Footer */
footer {
    background: rgba(0, 0, 0, 0.95);
    border-top: 1px solid var(--border-color);
    color: var(--text-primary);
    padding: 4rem 20px 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

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

.footer-section h4 {
    color: var(--accent-orange);
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(255, 107, 53, 0.4);
}

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

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

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

.footer-section a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.social-links {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    flex-wrap: wrap;
}

.social-links .social-icon {
    width: 35px;
    height: 35px;
    border: 1px solid var(--accent-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-orange);
    font-size: 0.8rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-links .social-icon:hover {
    background: var(--accent-orange);
    color: var(--primary-color);
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 2rem;
    text-align: center;
    color: var(--text-secondary);
}

.social-icons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 1rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    border: 1px solid var(--accent-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-orange);
    transition: all 0.3s ease;
    cursor: pointer;
}

.social-icon:hover {
    background: var(--accent-orange);
    color: #FFFFFF;
    box-shadow: 0 0 15px rgba(255, 107, 53, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
        touch-action: manipulation;
    }

    .logo {
        display: none !important;
    }

    .logo-link {
        display: none !important;
    }

    .navbar {
        padding: 0.5rem 0;
    }

    .navbar .container {
        flex-wrap: nowrap;
        gap: 1rem;
    }

    .nav-menu {
        position: fixed;
        left: 0;
        top: -100vh;
        padding-top: 80px;
        flex-direction: column;
        background: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(10px);
        width: 100%;
        height: 100vh;
        text-align: center;
        transition: top 0.4s ease;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.5);
        gap: 1.5rem;
        z-index: 101;
        overflow-y: auto;
        display: flex;
    }

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

    .nav-menu li {
        width: 100%;
        padding: 1rem 0;
        display: block;
    }

    .nav-menu a {
        font-size: 1.2rem;
        display: block;
        width: 100%;
    }

    .hamburger {
        display: flex;
        flex-direction: column;
        cursor: pointer;
        order: 1;
    }

    .hamburger span {
        width: 25px;
        height: 3px;
        background-color: white;
        margin: 5px 0;
        transition: 0.3s;
        border-radius: 2px;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-8px, 8px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(45deg) translate(-7px, -7px);
    }

    .language-toggle {
        order: 2;
        margin-left: auto;
        margin-right: 0;
        flex-shrink: 0;
        gap: 0.3rem;
    }

    .lang-separator {
        font-size: 0.6rem;
    }

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

    .hero h2 {
        font-size: 2.2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .hero-ctas {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
    }

    .section-title h3 {
        font-size: 2rem;
    }

    .portfolio-grid,
    .services-grid,
    .why-choose-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .lang-btn {
        width: 27px;
        height: 27px;
        font-size: 1.2em;
    }
    
    .lang-icon {
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .footer-content {
        grid-template-columns: 1fr;
    }

    .navbar .container {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
}

/* Language Toggle Styles */
.language-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-left: auto;
    z-index: 101;
    flex-shrink: 0;
}

.lang-btn {
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
    letter-spacing: 0;
    border-radius: 3px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28.5px;
    height: 28.5px;
    font-size: 1.4em;
    line-height: 1;
}

.flag-icon {
    display: block;
    width: 18px;
    height: 18px;
    object-fit: contain;
}

.lang-btn i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.lang-btn:hover {
    border-color: var(--accent-orange);
}

.lang-btn.active {
    background-color: var(--accent-orange);
    border-color: var(--accent-orange);
}

.lang-icon {
    display: inline;
    font-size: 1em;
    line-height: 1;
}

.lang-separator {
    color: rgba(255, 255, 255, 0.2);
    font-size: 0.75rem;
}

/* ============================================================
   MERGED EXTRA STYLES - Portfolio & Services Pages
   ============================================================ */

/* Portfolio & Services Page Styles */
.services-hero,
.portfolio-hero,
.about-hero,
.contact-hero,
.privacy-hero {
    background-image: url('/.netlify/images?url=images/Black_texture_vol1%20(20).jpg&fm=webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--accent-orange) 0%, var(--accent-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: bold;
    animation: slideInDown 1s ease-out;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
    animation: slideInUp 1s ease-out 0.2s both;
}

/* Services Detailed Section */
.services-detailed {
    padding: 4rem 20px;
    background: #000000;
}

.service-detail {
    margin-bottom: 4rem;
    padding: 2rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
}

.service-header h3 {
    font-size: 2rem;
    color: #FFFFFF;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--accent-orange) 0%, var(--accent-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 1.5rem;
}

.pricing-tiers {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.tier {
    flex: 1;
    min-width: 180px;
    background: var(--primary-color);
    padding: 1.5rem;
    border-radius: 6px;
    border: 1px solid rgba(255, 107, 53, 0.15);
}

.tier h5 {
    color: var(--accent-orange);
    margin-bottom: 0.5rem;
}

.tier-price {
    font-size: 1.5rem;
    color: var(--accent-purple);
    font-weight: bold;
    margin: 0.5rem 0;
}

.tier ul {
    list-style: none;
    padding: 0;
}

.tier li {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0.3rem 0;
}

.divider {
    border: none;
    border-top: 1px solid var(--border-color);
    margin: 3rem 0;
}

/* Portfolio Full Section */
.portfolio-full {
    padding: 4rem 20px;
    background: #000000;
}

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

.portfolio-card-content {
    padding: 1.5rem;
}

.portfolio-card-content h4 {
    font-size: 1.4rem;
    color: #FFFFFF;
    margin-bottom: 0.5rem;
}

.project-category {
    color: var(--accent-orange);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    display: block;
}

.project-description {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.project-details {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.detail-tag {
    background: rgba(157, 78, 221, 0.15);
    color: var(--accent-purple);
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    font-size: 0.85rem;
    border: 1px solid rgba(157, 78, 221, 0.3);
}

/* Portfolio Filter Section */
.portfolio-filter-section {
    padding: 3rem 20px;
    background: var(--primary-color);
}

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

.filter-btn {
    background: var(--bg-secondary);
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    will-change: background, color, border-color;
}

.filter-btn:hover,
.filter-btn.active {
    background: linear-gradient(135deg, var(--accent-orange) 0%, var(--accent-purple) 100%);
    color: #FFFFFF;
    border-color: transparent;
}

/* Portfolio Showcase */
.portfolio-showcase {
    padding: 4rem 20px;
    background: var(--primary-color);
}

.portfolio-link {
    color: var(--accent-orange);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
    display: inline-block;
    margin-top: 1rem;
}

.portfolio-link:hover {
    color: var(--accent-purple);
}

/* Gradient backgrounds - Brand Colors Only */
.gradient-purple { background: linear-gradient(135deg, #9D4EDD 0%, #7C3AED 100%); }
.gradient-orange { background: linear-gradient(135deg, #FF6B35 0%, #FF4500 100%); }
.gradient-orange-purple { background: linear-gradient(135deg, #FF6B35 0%, #9D4EDD 100%); }
.gradient-purple-orange { background: linear-gradient(135deg, #9D4EDD 0%, #FF6B35 100%); }

/* Load More */
.load-more-section {
    text-align: center;
    padding: 3rem 20px;
    background: var(--primary-color);
}

.load-more-btn {
    background: linear-gradient(135deg, var(--accent-orange) 0%, var(--accent-purple) 100%);
    color: #FFFFFF;
    padding: 14px 40px;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.3);
    will-change: transform, box-shadow;
}

.load-more-btn:hover {
    box-shadow: 0 0 30px rgba(255, 107, 53, 0.6);
    transform: translateY(-2px);
}

/* Service Features Styling */
.service-features { margin-bottom: 1.5rem; }
.service-features h4 { color: var(--accent-orange); margin-bottom: 1rem; font-size: 1.1rem; }
.service-features ul { list-style: none; columns: 2; gap: 1rem; padding: 0; }
.service-features li { color: var(--text-secondary); padding-left: 1.5rem; position: relative; margin-bottom: 0.6rem; }
.service-features li::before { content: '✓'; position: absolute; left: 0; color: var(--accent-orange); font-weight: bold; }

.service-pricing { margin-top: 1.5rem; }
.service-pricing h4 { color: var(--accent-orange); margin-bottom: 1rem; font-size: 1.1rem; }

/* Process Section */
.process-section {
    padding: 4rem 20px;
    background: var(--primary-color);
}

.process-section h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, var(--accent-orange) 0%, var(--accent-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.process-step {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    will-change: transform, box-shadow, background;
}

.process-step:hover {
    border-color: var(--accent-orange);
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.2);
    transform: translateY(-5px);
}

.step-number { font-size: 3rem; font-weight: bold; color: var(--accent-purple); margin-bottom: 1rem; opacity: 0.6; }
.process-step h3 { color: var(--accent-orange); margin-bottom: 1rem; font-size: 1.5rem; }
.process-step p { color: var(--text-secondary); line-height: 1.6; }

/* FAQ Section */
.faq {
    padding: 4rem 20px;
    background: #000000;
}

.faq .section-title {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, var(--accent-orange) 0%, var(--accent-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-secondary);
    border: 1px solid rgba(255, 107, 53, 0.25);
    border-radius: 8px;
    padding: 2rem;
    transition: all 0.3s ease;
    will-change: transform, box-shadow, border-color;
}

.faq-item:hover {
    border-color: var(--accent-purple);
    box-shadow: 0 0 20px rgba(157, 78, 221, 0.2);
    transform: translateY(-5px);
}

.faq-item h4 {
    color: var(--accent-orange);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.faq-item p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Stats Section */
.stats {
    padding: 4rem 20px;
    background: #000000;
}

.stats .section-title {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, var(--accent-orange) 0%, var(--accent-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.stats .stat {
    background: var(--bg-secondary);
    border: 1px solid rgba(255, 107, 53, 0.25);
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.stats .stat:hover {
    border-color: var(--accent-orange);
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.15);
    transform: translateY(-5px);
}

.stats .stat h4 {
    font-size: 3rem;
    color: var(--accent-orange);
    margin-bottom: 0.5rem;
    font-weight: bold;
    background: linear-gradient(135deg, var(--accent-orange) 0%, var(--accent-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stats .stat p {
    color: var(--text-secondary);
    font-size: 1rem;
}

/* Responsive adjustments for merged content */
@media (max-width: 768px) {
    .service-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-features ul { columns: 1; }
    .pricing-tiers { flex-direction: column; }
    .tier { min-width: 100%; }

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

    .portfolio-grid-full {
        grid-template-columns: 1fr;
    }

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

    .process-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

/* Mobile Performance Optimization */
@media (max-width: 480px) {
    /* Reduce background image quality on very small screens */
    .hero,
    .services-hero,
    .portfolio-hero,
    .about-hero,
    .contact-hero {
        background-size: cover;
        background-position: center;
        /* Disable fixed attachment on mobile for better performance */
        background-attachment: scroll;
    }

    /* Reduce animation complexity on mobile */
    * {
        animation-duration: 0.3s;
        transition-duration: 0.2s;
    }

    /* Optimize font rendering on mobile */
    body {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        text-rendering: optimizeSpeed;
    }

    /* Optimize mobile hero image loading */
    .hero-bg-img,
    .about-bg-img,
    .services-bg-img,
    .contact-bg-img,
    .portfolio-bg-img {
        display: none !important;
        /* Used for fetchpriority early discovery */
        content-visibility: auto;
    }
}

/* ============================================================
   ABOUT PAGE STYLES - Story, Values, Team, Why Us Sections
   ============================================================ */

/* Story Section */
.story-section {
    padding: 4rem 20px;
    background: var(--primary-color);
}

.story-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.story-text h2 {
    font-size: 2.5rem;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--accent-orange) 0%, var(--accent-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.story-text p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* Story Stats */
.story-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.stat {
    padding: 2rem;
    background: rgba(157, 78, 221, 0.1);
    border-left: 4px solid var(--accent-orange);
    border-radius: 4px;
    text-align: center;
}

.stat h3 {
    font-size: 2.5rem;
    color: var(--accent-orange);
    margin: 0 0 0.5rem 0;
    font-weight: bold;
}

.stat p {
    color: var(--text-secondary);
    margin: 0;
    font-size: 0.95rem;
}

/* Values Section */
.values-section {
    padding: 4rem 20px;
    background: rgba(0, 0, 0, 0.5);
}

.values-section h2 {
    text-align: center;
    font-size: 2.8rem;
    color: var(--text-primary);
    margin-bottom: 3rem;
    background: linear-gradient(135deg, var(--accent-orange) 0%, var(--accent-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.value-card {
    padding: 2rem;
    background: linear-gradient(135deg, rgba(157, 78, 221, 0.1) 0%, rgba(255, 107, 53, 0.05) 100%);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-orange);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.15);
}

.value-icon {
    font-size: 2.5rem;
    color: var(--accent-orange);
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.value-card:hover .value-icon {
    color: var(--accent-purple);
}

.value-card h3 {
    font-size: 1.4rem;
    color: var(--text-primary);
    margin: 0 0 1rem 0;
}

.value-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

/* Team Section */
.team-section {
    padding: 4rem 20px;
    background: var(--primary-color);
}

.team-section h2 {
    text-align: center;
    font-size: 2.8rem;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--accent-orange) 0%, var(--accent-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.team-intro {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 3rem auto;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.team-member {
    text-align: center;
    padding: 2rem;
    background: rgba(157, 78, 221, 0.05);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.team-member:hover {
    border-color: var(--accent-orange);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.15);
}

.member-avatar {
    width: 180px;
    height: 180px;
    margin: 0 auto 1.5rem auto;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--accent-orange);
    transition: all 0.3s ease;
}

.team-member:hover .member-avatar {
    border-color: var(--accent-purple);
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.3);
}

.avatar-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h3 {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin: 1rem 0 0.5rem 0;
}

.team-member .role {
    font-size: 1rem;
    color: var(--accent-orange);
    font-weight: 600;
    margin: 0 0 1rem 0;
}

.team-member .bio {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0 0 1.5rem 0;
}

.member-social {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.member-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--accent-orange) 0%, var(--accent-purple) 100%);
    color: white;
    text-decoration: none;
    border-radius: 50%;
    font-weight: 600;
    transition: all 0.3s ease;
}

.member-social a:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

/* Why Us Section */
.why-us-section {
    padding: 4rem 20px;
    background: rgba(0, 0, 0, 0.5);
}

.why-us-section h2 {
    text-align: center;
    font-size: 2.8rem;
    color: var(--text-primary);
    margin-bottom: 3rem;
    background: linear-gradient(135deg, var(--accent-orange) 0%, var(--accent-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.why-item {
    padding: 2rem;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(157, 78, 221, 0.05) 100%);
    border: 1px solid rgba(157, 78, 221, 0.2);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.why-item:hover {
    transform: translateY(-5px);
    border-color: var(--accent-purple);
    box-shadow: 0 10px 30px rgba(157, 78, 221, 0.15);
}

.why-item h3 {
    font-size: 1.3rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.why-item p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

/* CTA Section */
.cta-final-section {
    padding: 4rem 20px;
    background: var(--primary-color);
    text-align: center;
}

.cta-final-section h2 {
    font-size: 2.5rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--accent-orange) 0%, var(--accent-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-final-section p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.cta-buttons a {
    padding: 14px 40px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.cta-buttons a:first-child {
    background: linear-gradient(135deg, var(--accent-orange) 0%, var(--accent-purple) 100%);
    color: white;
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.3);
}

.cta-buttons a:first-child:hover {
    box-shadow: 0 0 30px rgba(255, 107, 53, 0.6);
    transform: translateY(-2px);
}

.cta-buttons a:last-child {
    background: rgba(255, 107, 53, 0.1);
    color: var(--accent-orange);
    border: 2px solid var(--accent-orange);
}

.cta-buttons a:last-child:hover {
    background: var(--accent-orange);
    color: white;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .story-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .story-text h2 {
        font-size: 2rem;
    }

    .values-section h2,
    .team-section h2,
    .why-us-section h2 {
        font-size: 2rem;
    }

    .values-grid,
    .why-grid {
        grid-template-columns: 1fr;
    }

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

    .value-card,
    .why-item,
    .team-member {
        padding: 1.5rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons a {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .story-stats {
        grid-template-columns: 1fr;
    }

    .stat {
        padding: 1.5rem;
    }

    .story-text h2,
    .values-section h2,
    .team-section h2,
    .why-us-section h2 {
        font-size: 1.5rem;
    }

    .cta-final-section h2 {
        font-size: 1.5rem;
    }
}


