/* ===================================
   Lumina AI - Professional Dark Gold Theme
   =================================== */

/* CSS Variables */
:root {
    /* Backgrounds */
    --bg-primary: #0a0a0a;
    --bg-secondary: #0f0f0f;
    --bg-tertiary: #141414;
    --bg-card: #1a1a1a;
    --bg-card-hover: #1f1f1f;

    /* Gold Palette */
    --gold-primary: #D4AF37;
    --gold-light: #F4E4BC;
    --gold-dark: #B8941F;
    --gold-muted: rgba(212, 175, 55, 0.15);
    --gold-gradient: linear-gradient(135deg, #D4AF37 0%, #F4E4BC 50%, #D4AF37 100%);

    /* Text Colors */
    --text-primary: #FFFFFF;
    --text-secondary: #A0A0A0;
    --text-muted: #666666;

    /* Borders */
    --border-primary: rgba(212, 175, 55, 0.2);
    --border-light: rgba(255, 255, 255, 0.08);

    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --section-padding: 120px;
    --container-max: 1200px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.3s ease;
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.5);
    --shadow-gold: 0 8px 30px rgba(212, 175, 55, 0.15);
}

/* Reset */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-primary);
    color: var(--text-secondary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--text-primary);
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.25rem, 2vw, 1.5rem);
}

p {
    color: var(--text-secondary);
}

a {
    color: var(--gold-primary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--gold-light);
}

/* Container */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

/* Utility */
.text-gradient {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===================================
   Navigation
   =================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-light);
    transition: all var(--transition-medium);
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.95);
    box-shadow: var(--shadow-md);
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 90px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-img {
    height: 130px;
    width: auto;
    object-fit: contain;
    border-radius: 4px;
    transition: transform 0.3s ease;
    transform: scale(1.2);
    transform-origin: left center;
}

.nav-logo:hover .logo-img {
    transform: scale(1.3);
}

.logo-text {
    font-family: 'Inter', sans-serif;
    font-size: 1.6rem;
    font-weight: 300;
    color: #3d3d3d;
    letter-spacing: 0.02em;
    text-transform: lowercase;
}

.logo-t {
    position: relative;
    display: inline-block;
}

.logo-t::after {
    content: '';
    position: absolute;
    top: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-bottom: 5px solid #3d3d3d;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-link {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    transition: color var(--transition-fast);
}

.nav-link:hover {
    color: var(--text-primary);
}

.nav-cta {
    padding: 12px 28px;
    background: transparent;
    border: 1px solid var(--gold-primary);
    color: var(--gold-primary) !important;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 6px;
    transition: all var(--transition-medium);
}

.nav-cta:hover {
    background: var(--gold-primary);
    color: var(--bg-primary) !important;
    box-shadow: var(--shadow-gold);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: all var(--transition-fast);
}

/* ===================================
   Buttons
   =================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all var(--transition-medium);
    text-decoration: none;
    border: none;
}

.btn-primary {
    background: var(--gold-gradient);
    color: var(--bg-primary);
    box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(212, 175, 55, 0.25);
    color: var(--bg-primary);
}

.btn-secondary {
    background: transparent;
    border: 1px solid var(--border-primary);
    color: var(--text-primary);
}

.btn-secondary:hover {
    background: var(--gold-muted);
    border-color: var(--gold-primary);
    color: var(--gold-primary);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* ===================================
   Hero Section
   =================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 140px 0 100px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 50% at 50% -20%, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 80% 60%, rgba(212, 175, 55, 0.05) 0%, transparent 40%);
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: linear-gradient(to bottom, transparent, black 20%, black 80%, transparent);
}

.hero .container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-content {
    max-width: 600px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--gold-muted);
    border: 1px solid var(--border-primary);
    border-radius: 100px;
    font-size: 0.8rem;
    color: var(--gold-light);
    margin-bottom: 32px;
}

.hero-badge svg {
    stroke: var(--gold-primary);
    width: 14px;
    height: 14px;
}

.hero-title {
    margin-bottom: 24px;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 520px;
}

.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 64px;
}

.hero-metrics {
    display: flex;
    align-items: center;
    gap: 32px;
}

.metric {
    display: flex;
    flex-direction: column;
}

.metric-value {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1;
}

.metric-suffix {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 600;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.metric-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.metric-divider {
    width: 1px;
    height: 48px;
    background: var(--border-light);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

/* Hero Showcase - Professional Layout */
.hero-showcase {
    position: relative;
    width: 100%;
    max-width: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Main Image Frame - Portrait Rectangle */
.showcase-frame {
    position: relative;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    z-index: 2;
    box-shadow:
        0 0 0 3px rgba(212, 175, 55, 0.25),
        0 0 0 6px rgba(212, 175, 55, 0.08),
        0 30px 80px rgba(0, 0, 0, 0.5),
        0 0 100px rgba(212, 175, 55, 0.15);
}

.showcase-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.8s cubic-bezier(0.2, 0, 0.2, 1);
}

.showcase-frame:hover .showcase-image {
    transform: scale(1.05);
}

.showcase-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(212, 175, 55, 0.05) 0%,
            transparent 15%,
            transparent 85%,
            rgba(10, 10, 10, 0.2) 100%);
    pointer-events: none;
}

/* Floating 3D Elements */
.floating-3d {
    position: absolute;
    animation: floatElement 6s ease-in-out infinite;
    filter: drop-shadow(0 8px 20px rgba(212, 175, 55, 0.4));
    z-index: 3;
}

.diamond-float {
    width: 100px;
    height: 100px;
    top: -5%;
    right: 5%;
    animation-delay: 0s;
}

.ring-float {
    width: 85px;
    height: 85px;
    bottom: 5%;
    left: -5%;
    animation-delay: 2s;
}

.chart-float {
    width: 120px;
    height: 85px;
    bottom: 0;
    right: -5%;
    animation-delay: 4s;
}

@keyframes floatElement {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

/* Glowing Orbs */
.glow-orb {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.8) 0%, rgba(212, 175, 55, 0) 70%);
    animation: pulseOrb 4s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

.orb-1 {
    width: 24px;
    height: 24px;
    top: 10%;
    left: 15%;
    animation-delay: 0s;
}

.orb-2 {
    width: 16px;
    height: 16px;
    top: 30%;
    right: 10%;
    animation-delay: 1.5s;
}

.orb-3 {
    width: 20px;
    height: 20px;
    bottom: 15%;
    right: 20%;
    animation-delay: 3s;
}

@keyframes pulseOrb {

    0%,
    100% {
        opacity: 0.3;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.8);
    }
}

/* Floating Stat Badge */
.hero-stat-badge {
    position: absolute;
    bottom: 60px;
    left: -40px;
    background: var(--bg-card);
    border: 1px solid var(--border-primary);
    border-radius: 16px;
    padding: 16px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: var(--shadow-lg);
    animation: pulse-badge 3s ease-in-out infinite;
    z-index: 20;
}

@keyframes pulse-badge {

    0%,
    100% {
        transform: translateY(0);
        box-shadow: var(--shadow-lg);
    }

    50% {
        transform: translateY(-5px);
        box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5), 0 0 30px rgba(212, 175, 55, 0.15);
    }
}

.hero-stat-badge .badge-number {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.hero-stat-badge .badge-text {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 4px;
}

/* ===================================
   Clients Bar
   =================================== */
.clients-bar {
    padding: 48px 0;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    background: var(--bg-secondary);
}

.clients-label {
    text-align: center;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-primary);
    margin-bottom: 24px;
}

.clients-logos {
    display: flex;
    gap: 32px;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 8px;
    /* For scrollbar spacing if needed */
    justify-content: flex-start;
    /* Align start if overflowing */
}

/* Ensure container centers it if not overflowing */
@media (min-width: 1024px) {
    .clients-logos {
        justify-content: center;
    }
}

.client-logo {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--text-primary);
    opacity: 1;
    transition: all var(--transition-fast);
}

.client-logo:hover {
    color: var(--gold-primary);
    transform: translateY(-2px);
}



/* ===================================
   Sections
   =================================== */
.section {
    padding: var(--section-padding) 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 80px;
}

.section-tag {
    display: inline-block;
    padding: 6px 16px;
    background: var(--gold-muted);
    border: 1px solid var(--border-primary);
    border-radius: 100px;
    font-size: 0.75rem;
    color: var(--gold-primary);
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.section-title {
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ===================================
   About Section
   =================================== */
.about {
    background: var(--bg-secondary);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: start;
}

.about-content .section-tag {
    margin-bottom: 16px;
}

.about-content .section-title {
    margin-bottom: 24px;
}

.about-text {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-features {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.feature-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold-muted);
    border: 1px solid var(--border-primary);
    border-radius: 12px;
    flex-shrink: 0;
}

.feature-icon svg {
    stroke: var(--gold-primary);
}

.feature h4 {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.feature p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.about-visual {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.visual-card {
    padding: 32px;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    transition: all var(--transition-medium);
}

.visual-card:hover {
    border-color: var(--border-primary);
    transform: translateX(8px);
}

.card-stat .stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: 8px;
}

.card-stat .stat-text {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* ===================================
   Services Section
   =================================== */
.services {
    background: var(--bg-primary);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.service-card {
    position: relative;
    padding: 48px 36px;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 20px;
    transition: all var(--transition-medium);
}

.service-card:hover {
    border-color: var(--gold-primary);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px -5px rgba(212, 175, 55, 0.15), 0 0 20px rgba(212, 175, 55, 0.1);
}

.service-card.featured {
    border-color: var(--gold-primary);
    background: linear-gradient(180deg, rgba(212, 175, 55, 0.05) 0%, var(--bg-card) 100%);
}

.service-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 20px;
    background: var(--gold-gradient);
    color: var(--bg-primary);
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.service-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--bg-tertiary);
    position: absolute;
    top: 24px;
    right: 24px;
}

.service-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold-muted);
    border: 1px solid var(--border-primary);
    border-radius: 16px;
    margin-bottom: 24px;
}

.service-icon svg {
    stroke: var(--gold-primary);
}

.service-title {
    font-family: var(--font-body);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.service-desc {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 24px;
}

.service-list {
    list-style: none;
}

.service-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.service-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    background: var(--gold-primary);
    border-radius: 50%;
}

/* ===================================
   Results Section
   =================================== */
.results {
    background: var(--bg-secondary);
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.result-card {
    padding: 40px;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 20px;
    transition: all var(--transition-medium);
}

.result-card:hover {
    border-color: var(--gold-primary);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px -5px rgba(212, 175, 55, 0.15), 0 0 20px rgba(212, 175, 55, 0.1);
}

.result-header {
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border-light);
}

.result-industry {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gold-primary);
    margin-bottom: 8px;
    display: block;
}

.result-brand {
    font-size: 1.5rem;
    font-weight: 600;
}

.result-challenge,
.result-solution {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 16px;
}

.result-challenge strong,
.result-solution strong {
    color: var(--text-primary);
}

.result-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--border-light);
}

.result-metric {
    text-align: center;
}

.result-metric .metric-number {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: 4px;
}

.result-metric .metric-text {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ===================================
   Process Section
   =================================== */
.process {
    background: var(--bg-primary);
}

.process-timeline {
    max-width: 700px;
    margin: 0 auto 60px;
}

.process-step {
    display: flex;
    gap: 32px;
    margin-bottom: 48px;
}

.process-step:last-child {
    margin-bottom: 0;
}

.step-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
}

.step-number {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold-muted);
    border: 2px solid var(--gold-primary);
    border-radius: 50%;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gold-primary);
}

.step-line {
    width: 2px;
    flex: 1;
    min-height: 60px;
    background: linear-gradient(to bottom, var(--gold-primary), transparent);
    margin-top: 16px;
}

.step-content h3 {
    font-family: var(--font-body);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    padding-top: 12px;
}

.step-content p {
    font-size: 0.95rem;
    line-height: 1.7;
}

.process-cta {
    text-align: center;
}

/* ===================================
   FAQ Section
   =================================== */
.faq {
    background: var(--bg-secondary);
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border-light);
}

.faq-item:first-child {
    border-top: 1px solid var(--border-light);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    padding: 28px 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
}

.faq-question span {
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-primary);
    transition: color var(--transition-fast);
}

.faq-question:hover span {
    color: var(--gold-primary);
}

.faq-icon {
    stroke: var(--text-muted);
    transition: all var(--transition-fast);
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    stroke: var(--gold-primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-medium);
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding-bottom: 28px;
    font-size: 0.95rem;
    line-height: 1.8;
}

/* ===================================
   Contact Section
   =================================== */
.contact {
    background: var(--bg-primary);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-content .section-tag {
    margin-bottom: 16px;
}

.contact-content .section-title {
    margin-bottom: 20px;
}

.contact-text {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 32px;
}

.contact-benefits {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.benefit svg {
    stroke: var(--gold-primary);
    flex-shrink: 0;
}

.contact-info {
    margin-top: 32px;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--text-secondary);
    transition: color var(--transition-fast);
}

.contact-link:hover {
    color: var(--gold-primary);
}

.contact-link svg {
    stroke: currentColor;
}

/* Contact Form */
.contact-form-wrapper {
    position: relative;
    min-height: 520px;
}

.contact-form {
    padding: 40px;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 20px;
}

.form-title {
    font-family: var(--font-body);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 32px;
    text-align: center;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-light);
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-primary);
    transition: all var(--transition-fast);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold-primary);
    box-shadow: 0 0 0 3px var(--gold-muted);
}

.form-group select {
    cursor: pointer;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-note {
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 16px;
}

.form-success {
    display: none;
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(212, 175, 55, 0.03) 0%, var(--bg-card) 100%);
    border: 1px solid var(--gold-primary);
    border-radius: 20px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 50px 40px;
    min-height: 480px;
    opacity: 0;
    transform: scale(0.9);
    overflow: auto;
}

.form-success.show {
    display: flex;
    animation: successReveal 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes successReveal {
    0% {
        opacity: 0;
        transform: scale(0.9);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.form-success .success-icon {
    margin-bottom: 28px;
    animation: iconPop 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s both;
}

@keyframes iconPop {
    0% {
        opacity: 0;
        transform: scale(0) rotate(-180deg);
    }

    100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

.form-success .success-icon svg {
    stroke: var(--gold-primary);
    filter: drop-shadow(0 0 12px rgba(212, 175, 55, 0.5));
    animation: iconGlow 2s ease-in-out infinite;
}

@keyframes iconGlow {

    0%,
    100% {
        filter: drop-shadow(0 0 12px rgba(212, 175, 55, 0.5));
    }

    50% {
        filter: drop-shadow(0 0 24px rgba(212, 175, 55, 0.8));
    }
}

.form-success h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 16px;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: textSlideUp 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.3s both;
}

@keyframes textSlideUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-success p {
    font-size: 1.05rem;
    line-height: 1.7;
    max-width: 340px;
    color: var(--text-secondary);
    animation: textSlideUp 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.45s both;
}

.form-success .success-detail {
    margin-top: 28px;
    padding: 16px 24px;
    background: var(--gold-muted);
    border: 1px solid var(--border-primary);
    border-radius: 12px;
    font-size: 0.9rem;
    color: var(--gold-light);
    animation: textSlideUp 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.6s both;
}

.form-success .success-detail svg {
    display: inline-block;
    vertical-align: middle;
    margin-right: 8px;
    stroke: var(--gold-primary);
}

/* ===================================
   Footer
   =================================== */
.footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-light);
    padding: 80px 0 40px;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 80px;
    margin-bottom: 60px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    margin-bottom: 16px;
}

.footer-tagline {
    font-size: 0.95rem;
    color: var(--text-secondary);
    max-width: 280px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-column h4 {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 12px;
}

.footer-column a {
    color: var(--text-secondary);
    font-size: 0.9rem;
    transition: color var(--transition-fast);
}

.footer-column a:hover {
    color: var(--gold-primary);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    border-top: 1px solid var(--border-light);
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.footer-social {
    display: flex;
    gap: 16px;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 10px;
    color: var(--text-secondary);
    transition: all var(--transition-fast);
}

.social-link:hover {
    background: var(--gold-muted);
    border-color: var(--gold-primary);
    color: var(--gold-primary);
}

/* ===================================
   Responsive Design
   =================================== */
@media (max-width: 1024px) {
    :root {
        --section-padding: 80px;
    }

    .hero .container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-visual {
        order: -1;
        max-width: 380px;
        margin: 0 auto;
    }

    .hero-showcase {
        max-width: 350px;
    }

    .floating-3d {
        display: none;
    }

    .glow-orb {
        display: none;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-metrics {
        justify-content: center;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .about-visual {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .visual-card {
        flex: 1;
        min-width: 200px;
    }

    .services-grid {
        grid-template-columns: 1fr 1fr;
    }

    .results-grid {
        grid-template-columns: 1fr;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 24px;
        gap: 0;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition-medium);
        border-bottom: 1px solid var(--border-light);
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-menu li {
        padding: 16px 0;
        border-bottom: 1px solid var(--border-light);
    }

    .nav-cta {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .hero-cta {
        flex-direction: column;
    }

    .hero-metrics {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }

    .metric-divider {
        display: none;
    }

    .clients-logos {
        gap: 32px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .result-metrics {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .process-step {
        gap: 20px;
    }

    .footer-links {
        grid-template-columns: 1fr 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 120px 0 60px;
    }

    .hero-badge {
        font-size: 0.7rem;
        padding: 6px 12px;
    }

    .about-visual {
        flex-direction: column;
    }

    .visual-card {
        min-width: auto;
    }

    .contact-form {
        padding: 28px;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }
}

/* ===================================
   Animations
   =================================== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===================================
   Portfolio Section
   =================================== */
.portfolio {
    background: var(--bg-primary);
    position: relative;
    overflow: hidden;
}

/* Add subtle ambient light */
.portfolio::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 10%, rgba(212, 175, 55, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.portfolio-grid {
    display: flex;
    flex-direction: column;
    gap: 120px;
}

.portfolio-block {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.portfolio-block.reverse {
    grid-template-columns: 0.9fr 1.1fr;
}

.portfolio-block.reverse .portfolio-content {
    order: 1;
}

.portfolio-block.reverse .portfolio-visual {
    order: 2;
}

/* Visual Side */
.portfolio-visual {
    position: relative;
    width: 100%;
}

.visual-frame {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-primary);
    box-shadow: var(--shadow-md);
    aspect-ratio: 4/3; /* Default aspect ratio */
}

.portfolio-block.reverse .visual-frame {
    aspect-ratio: 16/9; /* Widescreen for UI/System info */
}

.visual-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.2, 0, 0.2, 1);
    display: block;
}

.visual-frame:hover .visual-img {
    transform: scale(1.05); /* Zoom effect */
}

/* Glow border effect on hover */
.visual-frame::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid rgba(212, 175, 55, 0);
    transition: border-color 0.4s ease;
    pointer-events: none;
    border-radius: 12px;
}

.visual-frame:hover::after {
    border-color: rgba(212, 175, 55, 0.6);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.15);
}

.visual-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 60%, rgba(0,0,0,0.6));
    opacity: 0.8;
    transition: opacity 0.4s ease;
}

.visual-frame:hover .visual-overlay {
    opacity: 0.5;
}

/* Content Side */
.portfolio-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.client-badge {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--gold-primary);
    margin-bottom: 20px;
    padding-left: 12px;
    border-left: 2px solid var(--gold-primary);
}

.portfolio-title {
    font-size: 2.5rem; /* Larger display text */
    margin-bottom: 24px;
    font-weight: 500;
}

.portfolio-desc {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 32px;
    color: var(--text-secondary);
    max-width: 450px;
}

.portfolio-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 40px;
}

.tag {
    font-size: 0.8rem;
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.03);
    padding: 6px 12px;
    border-radius: 100px;
    border: 1px solid transparent;
    transition: all 0.2s ease;
}

.tag:hover {
    border-color: var(--gold-muted);
    color: var(--gold-light);
}

/* Magnetic Button (CSS Approx) */
.btn-magnetic {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 28px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-light);
    border-radius: 100px; /* Pill shape */
    color: var(--text-primary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.2, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn-magnetic::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gold-gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.btn-magnetic span,
.btn-magnetic svg {
    position: relative;
    z-index: 1;
    transition: transform 0.2s ease;
}

.btn-magnetic:hover {
    border-color: var(--gold-primary);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.btn-magnetic:hover span {
    color: var(--gold-light);
}

.btn-magnetic:hover svg {
    transform: translateX(4px);
    stroke: var(--gold-primary);
}

/* Responsive */
@media (max-width: 900px) {
    .portfolio-block,
    .portfolio-block.reverse {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .portfolio-block.reverse .portfolio-content {
        order: 2;
    }

    .portfolio-block.reverse .portfolio-visual {
        order: 1;
    }

    .portfolio-content {
        align-items: center;
    }

    .portfolio-desc {
        margin-left: auto;
        margin-right: auto;
    }

    .client-badge {
        padding-left: 0;
        border-left: none;
        border-bottom: 2px solid var(--gold-primary);
        padding-bottom: 4px;
    }
}