/* ============================================
   REAL BRAND - Main Stylesheet (DanAds Inspired)
   ============================================ */

/* CSS Variables */
:root {
    --color-black: #000000;
    --color-dark: #696969;
    --color-white: #ffffff;
    --color-gray-100: #f8f9fa;
    --color-gray-200: #e9ecef;
    --color-gray-300: #dee2e6;
    --color-gray-400: #ced4da;
    --color-gray-500: #adb5bd;
    --color-gray-600: #808080;
    --color-gray-700: #696969;
    --color-gray-800: #808080;
    --color-gray-900: #696969;
    
    /* Accent colors - Grey Palette */
    --color-silver: #c0c0c0;
    --color-silver-light: #d3d3d3;
    --color-accent: #a9a9a9;
    --color-dim-grey: #696969;
    --color-grey: #808080;
    --color-dark-grey: #a9a9a9;
    --color-light-grey: #d3d3d3;
    
    --font-family: 'Inter', sans-serif;
    
    --container-max-width: 1280px;
    --container-padding: 2rem;
    
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 20px 50px rgba(0, 0, 0, 0.2);
    
    --radius-sm: 0.75rem;
    --radius-md: 1.25rem;
    --radius-lg: 2rem;
    --radius-xl: 3rem;
    --radius-full: 100px;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: var(--font-family);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-gray-700);
    background-color: var(--color-white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

ul { list-style: none; }

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

.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-black);
    letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.75rem, 5vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: 1.25rem; }

p { color: var(--color-gray-600); line-height: 1.8; }

/* Gradient Text */
.gradient-text {
    background: linear-gradient(135deg, var(--color-white) 0%, var(--color-silver-light) 50%, var(--color-silver) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-text-dark {
    background: linear-gradient(135deg, var(--color-black) 0%, var(--color-gray-800) 50%, var(--color-gray-600) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    font-family: var(--font-family);
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all var(--transition-normal);
    border: none;
}

.btn::after {
    content: '→';
    font-size: 1.1rem;
    transition: transform var(--transition-normal);
}

.btn:hover::after { transform: translateX(4px); }

.btn-primary {
    background: linear-gradient(135deg, var(--color-black) 0%, var(--color-gray-800) 100%);
    color: var(--color-white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }

.btn-gold {
    background: linear-gradient(135deg, var(--color-gray-800) 0%, var(--color-gray-600) 100%);
    color: var(--color-white);
    box-shadow: var(--shadow-md);
}

.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3); }

.btn-outline {
    background: transparent;
    color: var(--color-white);
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-outline:hover { background: rgba(255, 255, 255, 0.1); border-color: rgba(255, 255, 255, 0.5); }

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: #000000;
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: box-shadow 0.3s ease;
    will-change: box-shadow;
}

.navbar.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--color-black);
    letter-spacing: -0.03em;
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo img {
    height: 45px;
    width: auto;
    display: block;
}

.nav-menu { 
    display: flex; 
    align-items: center; 
    gap: 2.5rem;
    margin: 0 auto;
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    padding: 0.625rem 1.5rem;
    background: linear-gradient(135deg, var(--color-gray-800) 0%, var(--color-gray-600) 100%);
    color: var(--color-white);
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: var(--radius-full);
    transition: all var(--transition-normal);
    flex-shrink: 0;
}

.nav-menu a {
    font-weight: 500;
    color: #d3d3d3;
    position: relative;
    padding: 0.5rem 0;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #c0c0c0, #ffffff);
    transition: var(--transition-normal);
}

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

.nav-cta {
    display: inline-flex;
    align-items: center;
    padding: 0.625rem 1.5rem;
    background: linear-gradient(135deg, var(--color-gray-800) 0%, var(--color-gray-600) 100%);
    color: var(--color-white);
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: var(--radius-full);
    margin-left: 1.5rem;
    transition: all var(--transition-normal);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

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

.nav-toggle span {
    display: block;
    width: 25px;
    height: 2.5px;
    background-color: #ffffff;
    transition: var(--transition-fast);
    border-radius: 2px;
}

/* Sections */
.section { padding: 7rem 0; }

.section-dark {
    background-color: var(--color-gray-700);
    color: var(--color-white);
    position: relative;
    overflow: hidden;
}

.section-dark::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at top right, rgba(192, 192, 192, 0.15) 0%, transparent 50%),
                radial-gradient(ellipse at bottom left, rgba(192, 192, 192, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.section-dark h2, .section-dark h3 { color: var(--color-white); }
.section-dark p { color: var(--color-gray-400); }

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

.section-tag {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: rgba(192, 192, 192, 0.1);
    color: var(--color-gray-600);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.25rem;
}

.section-tag.light { background: rgba(255, 255, 255, 0.1); color: var(--color-silver-light); }

.section-title { margin-bottom: 1rem; }
.section-subtitle { font-size: 1.25rem; color: var(--color-gray-500); }
.section-cta { text-align: center; margin-top: 3.5rem; }

/* Static Hero Section - Optimized */
.hero-static {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 80px;
    content-visibility: visible;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image: url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #696969;
}

.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(105, 105, 105, 0.7) 0%, rgba(128, 128, 128, 0.7) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.hero-tag {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: rgba(192, 192, 192, 0.15);
    border: 1px solid rgba(192, 192, 192, 0.3);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-silver-light);
    margin-bottom: 2rem;
}

.hero-headline {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--color-white);
}

.hero-subheadline {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.55);
    letter-spacing: 0.02em;
    margin-bottom: 2.5rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.text-accent {
    background: linear-gradient(90deg, #ffb6c1 0%, #e6e6fa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: color-pairs 18s ease-in-out infinite;
    animation-fill-mode: both;
}

@keyframes color-pairs {
    0%, 16.66% {
        background: linear-gradient(90deg, #ffb6c1 0%, #e6e6fa 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
    16.67%, 33.33% {
        background: linear-gradient(90deg, #f4a460 0%, #98fb98 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
    33.34%, 50% {
        background: linear-gradient(90deg, #87ceeb 0%, #dda0dd 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
    50.01%, 66.66% {
        background: linear-gradient(90deg, #f0e68c 0%, #ffa07a 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
    66.67%, 83.33% {
        background: linear-gradient(90deg, #ffc0cb 0%, #afeeee 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
    83.34%, 100% {
        background: linear-gradient(90deg, #dda0dd 0%, #ffe4b5 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
}

.hero-ctas {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Stats Bar */
.stats-bar {
    background-color: #696969;
    padding: 3rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.stat-item {
    padding: 1rem;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-white);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--color-gray-400);
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
    .stat-number { font-size: 2rem; }
    .hero-static { min-height: auto; padding: 6rem 0 4rem; }
    .hero-subheadline { font-size: 1.1rem; }
}

@media (max-width: 480px) {
    .stats-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
    .stat-number { font-size: 1.75rem; }
    .hero-headline { font-size: 2rem; }
}

/* Client Logos Section - Clean Static */
.logos-section { 
    padding: 5rem 0; 
    background-color: #fafafa;
    /* Don't use content-visibility for above-fold content */
    content-visibility: visible;
}

.logos-header {
    text-align: center;
    margin-bottom: 3rem;
}

.logos-header-text {
    font-size: 0.875rem;
    font-weight: 500;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

.logos-divider {
    width: 60px;
    height: 1px;
    background: #ccc;
    margin: 1.5rem auto 0;
}

.logos-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
}

.logo-item-static {
    flex: 1;
    min-width: 120px;
    max-width: 180px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: grayscale(100%) opacity(0.6);
    transition: all var(--transition-normal);
}

.logo-item-static:hover {
    filter: grayscale(0%) opacity(1);
}

.logo-item-static img {
    max-width: 100%;
    max-height: 40px;
    object-fit: contain;
}

.logo-item-static span {
    font-size: 0.875rem;
    font-weight: 700;
    color: #999;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* Responsive for logos */
@media (max-width: 1024px) {
    .logos-grid { 
        gap: 2rem; 
        justify-content: center;
    }
    .logo-item-static { 
        min-width: 100px; 
        max-width: 140px; 
    }
}

@media (max-width: 768px) {
    .logos-section { padding: 3rem 0; }
    .logos-grid { gap: 1.5rem; }
    .logo-item-static { 
        min-width: 80px; 
        max-width: 120px;
        height: 50px;
    }
    .logo-item-static span { font-size: 0.75rem; }
}

/* Featured Work - Ultra Minimal */
.work-minimal {
    display: flex;
    flex-direction: column;
}

.work-minimal-item {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    padding: 2.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.work-minimal-item:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.work-minimal-item:hover {
    border-color: rgba(255, 255, 255, 0.2);
    padding-left: 1rem;
    margin-left: -1rem;
}

.work-minimal-item:hover::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 1px;
    background: rgba(255, 255, 255, 0.3);
}

.work-minimal-number {
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--color-gray-500);
    width: 60px;
    letter-spacing: 0.05em;
}

.work-minimal-title {
    font-size: 2rem;
    font-weight: 300;
    color: var(--color-white);
    letter-spacing: -0.02em;
    flex: 1;
    transition: color 0.3s ease;
}

.work-minimal-item:hover .work-minimal-title {
    color: var(--color-silver-light);
}

.work-minimal-result {
    font-size: 0.875rem;
    color: var(--color-gray-500);
    text-align: right;
    transition: color 0.3s ease;
}

.work-minimal-item:hover .work-minimal-result {
    color: var(--color-white);
}

@media (max-width: 768px) {
    .work-minimal-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
        padding: 2rem 0;
    }
    
    .work-minimal-number {
        font-size: 0.75rem;
        width: auto;
    }
    
    .work-minimal-title {
        font-size: 1.5rem;
    }
    
    .work-minimal-result {
        text-align: left;
        font-size: 0.875rem;
    }
}

/* Services Preview - Minimal Design */
.services-grid-minimal {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.service-item-minimal {
    background: rgba(0, 0, 0, 0.4);
    padding: 3rem 2rem;
    text-align: left;
    transition: background-color 0.3s ease;
    position: relative;
    overflow: hidden;
    /* Optimize for animations */
    will-change: background-color;
}

.service-item-minimal:hover {
    background: rgba(255, 255, 255, 0.05);
    will-change: auto;
}

.service-item-minimal .service-number {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-gray-500);
    margin-bottom: 0.75rem;
    letter-spacing: 0.1em;
}

.service-item-minimal h3 {
    color: var(--color-white);
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
    letter-spacing: -0.02em;
}

@media (max-width: 1024px) {
    .services-grid-minimal { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .services-grid-minimal { grid-template-columns: 1fr; }
    .service-item-minimal { padding: 2rem 1.5rem; }
    .service-item-minimal h3 { font-size: 1.25rem; }
}

/* Services List (Services Page) - Elegant Single Column */
.services-list-section {
    padding: 5rem 0;
}

.services-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.service-item {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 2rem;
    padding: 3rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all var(--transition-normal);
}

.service-item:first-child {
    padding-top: 0;
}

.service-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.service-number {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-silver);
    letter-spacing: 0.1em;
    min-width: 40px;
    padding-top: 0.5rem;
}

.service-content h3 {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
    text-transform: none;
}

.service-content p {
    color: var(--color-gray-400);
    font-size: 1rem;
    line-height: 1.8;
    margin: 0;
}

.service-item:hover .service-content h3 {
    color: var(--color-silver-light);
}

/* Process Section - Fixed Styles */
.process-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.process-step {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    text-align: center;
    min-width: 200px;
    max-width: 260px;
    flex: 1;
    transition: all var(--transition-normal);
}

.process-step:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(192, 192, 192, 0.3);
    transform: translateY(-5px);
}

.step-number {
    font-size: 0.875rem;
    font-weight: 800;
    color: var(--color-silver);
    margin-bottom: 1rem;
}

.step-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 1.25rem;
    color: var(--color-silver-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-icon svg {
    width: 100%;
    height: 100%;
}

.process-step h3 {
    color: var(--color-white);
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.process-step p {
    color: var(--color-gray-400);
    font-size: 0.9rem;
    line-height: 1.6;
}

.process-arrow {
    color: rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
}

.process-arrow svg {
    width: 24px;
    height: 24px;
}

@media (max-width: 768px) {
    .service-item {
        flex-direction: column;
        gap: 0.75rem;
        padding: 2rem 0;
    }
    
    .service-number {
        padding-top: 0;
    }
    
    .service-content h3 {
        font-size: 1.5rem;
    }
}

/* Legacy grid styles (kept for backward compatibility) */
.services-detail-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.service-detail-box:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    max-width: 600px;
    justify-self: center;
}

.service-detail-box {
    background: var(--color-black);
    border: 2px solid var(--color-white);
    padding: 2rem;
    transition: all var(--transition-normal);
}

.service-detail-box.light {
    background: var(--color-white);
    border: 2px solid var(--color-black);
}

.service-detail-box h3 {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--color-white);
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

.service-detail-box.light h3 {
    color: var(--color-black);
}

.service-detail-box h3 span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--color-gray-400);
    margin-left: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.service-detail-box.light h3 span {
    color: var(--color-gray-600);
}

.service-detail-box p {
    color: var(--color-gray-300);
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

.service-detail-box.light p {
    color: var(--color-gray-700);
}

/* Legacy list styles (kept for backward compatibility) */
.service-detail-box ul {
    list-style: disc;
    padding-left: 1.25rem;
    margin: 0;
}

.service-detail-box li {
    color: var(--color-gray-300);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.service-detail-box.light li {
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.process-step {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    text-align: center;
    min-width: 200px;
    max-width: 260px;
    flex: 1;
    transition: all var(--transition-normal);
}

.process-step:hover { background: rgba(255, 255, 255, 0.08); border-color: rgba(192, 192, 192, 0.3); transform: translateY(-5px); }

.step-number { font-size: 0.875rem; font-weight: 800; color: var(--color-silver); margin-bottom: 1rem; }

.step-icon { width: 50px; height: 50px; margin: 0 auto 1.25rem; color: var(--color-silver-light); }
.step-icon svg { width: 100%; height: 100%; }

.process-step h3 { color: var(--color-white); font-size: 1.25rem; margin-bottom: 0.75rem; }
.process-step p { color: var(--color-gray-400); font-size: 0.9rem; line-height: 1.6; }

.process-arrow { color: rgba(255, 255, 255, 0.3); display: flex; align-items: center; }
.process-arrow svg { width: 24px; height: 24px; }

/* Value Proposition Section */
.value-proposition-section {
    background: linear-gradient(135deg, #696969 0%, #808080 100%) !important;
    padding: 6rem 0;
    position: relative;
}

.value-proposition-section .section-header {
    margin-bottom: 4rem;
}

.value-proposition-content {
    max-width: 1000px;
    margin: 0 auto;
}

.value-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.value-intro p {
    color: var(--color-gray-300);
    font-size: 1.25rem;
    line-height: 1.8;
}

.value-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.value-feature-item {
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.02);
    transition: all var(--transition-normal);
}

.value-feature-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.value-feature-icon {
    width: 32px !important;
    height: 32px !important;
    margin-bottom: 1rem !important;
    color: var(--color-silver);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.value-feature-icon svg {
    width: 32px !important;
    height: 32px !important;
    max-width: 32px !important;
    max-height: 32px !important;
}

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

.value-feature-item p {
    color: var(--color-gray-400);
    font-size: 0.95rem;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .value-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .value-feature-item {
        padding: 1.5rem;
    }
    
    .value-intro p {
        font-size: 1.1rem;
    }
}

/* Philosophy Section */
.philosophy-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.philosophy-item {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 2rem;
    align-items: start;
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.02);
    transition: all var(--transition-normal);
}

.philosophy-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.25);
}

.philosophy-item h3 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-white);
    letter-spacing: -0.03em;
    line-height: 1;
    margin: 0;
}

.philosophy-item p {
    color: var(--color-gray-400);
    font-size: 1.1rem;
    line-height: 1.7;
    margin: 0;
    padding-left: 2rem;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
}

@media (max-width: 768px) {
    .philosophy-item {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1.5rem;
    }
    
    .philosophy-item h3 {
        font-size: 2rem;
    }
    
    .philosophy-item p {
        padding-left: 0;
        padding-top: 1rem;
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
        font-size: 1rem;
    }
}

/* Testimonials Section - Compact */
.testimonials-section { padding: 4rem 0; background-color: var(--color-white); }

.testimonials-slider {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.testimonials-track {
    position: relative;
    overflow: hidden;
    min-height: 280px;
}

.testimonial-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    will-change: opacity, transform;
}

.testimonial-slide.active {
    opacity: 1;
    transform: translateX(0);
    position: relative;
}

.testimonial-card {
    text-align: center;
    padding: 1.5rem;
}

.quote-mark {
    font-size: 3.5rem;
    font-family: Georgia, serif;
    color: var(--color-gray-400);
    line-height: 1;
    margin-bottom: 0.25rem;
    opacity: 0.4;
    display: block;
}

.testimonial-text {
    font-size: 1.15rem;
    font-style: italic;
    color: var(--color-gray-700);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.testimonial-author { 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    gap: 0.875rem; 
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-gray-800) 0%, var(--color-gray-600) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-weight: 700;
    font-size: 0.95rem;
}

.author-info { text-align: left; }
.author-info h4 { font-size: 1rem; margin-bottom: 0.125rem; color: var(--color-black); }
.author-info span { color: var(--color-gray-500); font-size: 0.85rem; }

/* Testimonial Controls */
.testimonial-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    margin-top: 1.5rem;
}

.testimonial-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--color-white);
    border: 1.5px solid var(--color-gray-200);
    color: var(--color-gray-600);
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-btn:hover {
    background: var(--color-black);
    border-color: var(--color-black);
    color: var(--color-white);
    transform: scale(1.05);
}

.testimonial-btn svg { width: 16px; height: 16px; }

.testimonial-dots { display: flex; gap: 0.5rem; }

.testimonial-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-gray-300);
    cursor: pointer;
    transition: all 0.2s ease;
}

.testimonial-dots .dot.active { 
    background: var(--color-gray-600); 
    width: 24px; 
    border-radius: var(--radius-full); 
}

.testimonial-dots .dot:hover { background: var(--color-gray-400); }

/* Responsive */
@media (max-width: 768px) {
    .testimonials-section { padding: 3rem 0; }
    .testimonials-track { min-height: 320px; }
    .testimonial-text { font-size: 1rem; line-height: 1.6; }
    .quote-mark { font-size: 3rem; }
    .testimonial-card { padding: 1rem; }
    .author-avatar { width: 45px; height: 45px; font-size: 0.875rem; }
}

/* CTA Section - Compact & Centered */
.cta-section-large {
    background: var(--color-gray-700);

    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.cta-section-large::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at top right, rgba(192, 192, 192, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.cta-box {
    text-align: center;
    max-width: 550px;
    margin: 0 auto;
    padding: 2.5rem 2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    backdrop-filter: blur(10px);
}

.cta-box h2 { 
    color: var(--color-white); 
    margin-bottom: 0.75rem; 
    font-size: 2rem; 
    line-height: 1.2;
}

.cta-box p { 
    color: var(--color-gray-400); 
    margin-bottom: 1.5rem; 
    font-size: 1rem;
    line-height: 1.6;
}

.cta-box .btn {
    padding: 0.875rem 2rem;
    font-size: 0.95rem;
}

/* Original CTA Section (for other pages) */
.cta-section {
    background: linear-gradient(135deg, #696969 0%, #808080 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at top right, rgba(192, 192, 192, 0.2) 0%, transparent 50%);
    pointer-events: none;
}

.cta-content { text-align: center; max-width: 600px; margin: 0 auto; }

.cta-content h2 { color: var(--color-white); margin-bottom: 1rem; font-size: 2.5rem; }
.cta-content p { color: var(--color-gray-400); margin-bottom: 2rem; font-size: 1.125rem; }

/* Footer */
.footer { background: var(--color-gray-700); color: var(--color-white); padding: 5rem 0 2rem; }

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

.footer-brand h3 { color: var(--color-white); font-size: 1.5rem; margin-bottom: 1rem; }
.footer-brand p { color: var(--color-gray-400); margin-bottom: 1.5rem; }

.footer-logo {
    height: 40px;
    width: auto;
    margin-bottom: 1rem;
}

.footer h4 { color: var(--color-white); font-size: 1.125rem; margin-bottom: 1.5rem; }

.footer-links ul li { margin-bottom: 0.75rem; }
.footer-links a { color: var(--color-gray-400); }
.footer-links a:hover { color: var(--color-white); }

.footer-contact p { color: var(--color-gray-400); margin-bottom: 0.5rem; }

.social-links { display: flex; gap: 1rem; }

.social-links a {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-normal);
}

.social-links a:hover { background: var(--color-gray-600); transform: translateY(-3px); }

.social-links svg { width: 20px; height: 20px; }

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p { color: var(--color-gray-500); font-size: 0.9rem; }

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #696969 0%, #808080 100%);
    padding: 10rem 0 5rem;
    text-align: center;
    position: relative;
}

.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at top right, rgba(192, 192, 192, 0.2) 0%, transparent 50%);
    pointer-events: none;
}

.page-header h1 { color: var(--color-white); margin-bottom: 1rem; }
.page-header p { color: var(--color-gray-400); max-width: 600px; margin: 0 auto; font-size: 1.125rem; }

/* Portfolio Grid - Editorial Style */
.portfolio-grid { 
    display: grid; 
    grid-template-columns: repeat(2, 1fr); 
    gap: 2rem; 
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.02);
    transition: all var(--transition-normal);
    aspect-ratio: 4/3;
}

.portfolio-item:hover { 
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-4px);
}

.placeholder-image {
    width: 100%;
    height: 100%;
    filter: grayscale(100%) brightness(0.8) contrast(1.1);
    transition: all var(--transition-normal);
}

.portfolio-item:hover .placeholder-image {
    filter: grayscale(100%) brightness(0.6) contrast(1.2);
    transform: scale(1.02);
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.7) 40%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2.5rem;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.portfolio-item:hover .portfolio-overlay { opacity: 1; }

.portfolio-overlay h3 { 
    color: var(--color-white); 
    font-size: 1.75rem; 
    font-weight: 700;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

.portfolio-overlay p { 
    color: var(--color-gray-400); 
    font-size: 1rem;
    line-height: 1.6;
    max-width: 90%;
}

.portfolio-tag {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    padding: 0.5rem 1rem;
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--color-silver-light);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.portfolio-item:hover .portfolio-tag {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .portfolio-grid { grid-template-columns: 1fr; }
    .portfolio-overlay { padding: 1.5rem; }
    .portfolio-overlay h3 { font-size: 1.25rem; }
}

/* Team Grid */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }

.team-member {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--color-gray-200);
    transition: all var(--transition-normal);
}

.team-member:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl); }

.team-avatar {
    width: 100%;
    height: 280px;
    background: linear-gradient(135deg, var(--color-gray-200) 0%, var(--color-gray-300) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gray-500);
    font-size: 3rem;
    font-weight: 700;
}

.team-info { padding: 1.75rem; }
.team-info h3 { font-size: 1.25rem; margin-bottom: 0.25rem; }
.team-info p { color: var(--color-gray-600); font-size: 0.9rem; margin-bottom: 0.75rem; font-weight: 500; }
.team-info span { color: var(--color-gray-500); font-size: 0.85rem; }

/* Contact Page */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }

.contact-info h3 { font-size: 1.5rem; margin-bottom: 1.5rem; }

.contact-item { display: flex; gap: 1rem; margin-bottom: 1.5rem; }
.contact-item svg { width: 24px; height: 24px; color: var(--color-gray-600); flex-shrink: 0; }

.contact-item h4 { font-size: 1rem; margin-bottom: 0.25rem; }
.contact-item p { color: var(--color-gray-600); }

.contact-form {
    background: var(--color-white);
    padding: 2.5rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--color-gray-200);
}

.form-group { margin-bottom: 1.5rem; }

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--color-gray-700);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 1.5px solid var(--color-gray-200);
    border-radius: var(--radius-md);
    font-family: var(--font-family);
    font-size: 1rem;
    transition: all var(--transition-fast);
    background: var(--color-gray-100);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-gray-600);
    background: var(--color-white);
}

.form-group textarea { min-height: 150px; resize: vertical; }

/* Responsive */
@media (max-width: 1024px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: var(--color-white);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        box-shadow: var(--shadow-lg);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition-normal);
    }
    
    .nav-menu.active { transform: translateY(0); opacity: 1; visibility: visible; }
    .nav-toggle { display: flex; }
    .nav-cta { display: none; }
    
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .services-showcase { grid-template-columns: repeat(2, 1fr); }
    .services-featured-grid { grid-template-columns: repeat(2, 1fr); }
    .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-grid { grid-template-columns: 1fr; }
    .work-item-large { grid-template-columns: 1fr; }
    .work-item-large.reverse { direction: ltr; }
    .footer-content { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .services-showcase { grid-template-columns: 1fr; }
    .services-featured-grid { grid-template-columns: 1fr; }
    .portfolio-grid { grid-template-columns: 1fr; }
    .team-grid { grid-template-columns: 1fr; }
    .footer-content { grid-template-columns: 1fr; text-align: center; }
    .social-links { justify-content: center; }
    .process-steps { flex-direction: column; }
    .process-arrow { transform: rotate(90deg); }
}

@media (max-width: 480px) {
    .stats-grid { grid-template-columns: 1fr; }
    .hero-title-large { font-size: 2.5rem; }
    .hero-description { font-size: 1rem; }
    .section { padding: 4rem 0; }
    .contact-form { padding: 1.5rem; }
}

/* Scroll Animations - Optimized */
.reveal-text, .reveal-card { 
    opacity: 0; 
    transform: translateY(20px); 
    transition: opacity 0.4s ease-out, transform 0.4s ease-out;
    will-change: opacity, transform;
}
.reveal-text.visible, .reveal-card.visible { 
    opacity: 1; 
    transform: translateY(0);
    will-change: auto;
}

/* Content visibility for off-screen sections */
.section {
    content-visibility: auto;
    contain-intrinsic-size: 0 500px;
}

/* About Page - Belief Section */
.belief-header {
    text-align: center;
}

.belief-title {
    font-size: 5rem;
    font-weight: 800;
    color: var(--color-white);
    letter-spacing: 0.15em;
    margin-bottom: 0.5rem;
}

.belief-subtitle {
    font-size: 1rem;
    color: var(--color-gray-400);
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .belief-title {
        font-size: 3rem;
    }
}

.belief-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.belief-item {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 2rem;
    align-items: start;
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.02);
    transition: all var(--transition-normal);
}

.belief-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.25);
}

.belief-item h3 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-white);
    letter-spacing: 0.05em;
    line-height: 1;
    margin: 0;
}

.belief-item p {
    color: var(--color-gray-300);
    font-size: 1.15rem;
    line-height: 1.7;
    margin: 0;
    padding-left: 2rem;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.belief-item ul {
    list-style: disc;
    padding-left: 2.5rem;
    margin: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.belief-item li {
    color: var(--color-gray-300);
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 0.25rem;
}

/* CEO Section */
.ceo-section {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 4rem;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.ceo-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.ceo-quote {
    color: var(--color-gray-300);
    font-size: 1.25rem;
    line-height: 1.8;
    font-style: italic;
    margin: 0;
}

.ceo-signature {
    margin-top: 1rem;
}

.ceo-name {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2rem;
    font-style: italic;
    color: var(--color-white);
    margin: 0;
}

.ceo-title {
    font-size: 1.25rem;
    color: var(--color-gray-400);
    margin: 0.5rem 0 0 0;
    letter-spacing: 0.1em;
}

.ceo-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.ceo-photo {
    width: 300px;
    height: 400px;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    filter: grayscale(100%);
}

@media (max-width: 1024px) {
    .ceo-photo { width: 250px; height: 350px; }
}

@media (max-width: 768px) {
    .ceo-photo { width: 200px; height: 280px; }
}

@media (max-width: 1024px) {
    .belief-logo .logo-mark,
    .belief-logo .logo-text { font-size: 3rem; }
    .belief-logo .logo-divider { height: 45px; }
    
    .ceo-section {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .ceo-image { order: -1; }
    .ceo-placeholder { width: 250px; height: 300px; }
}

@media (max-width: 768px) {
    .belief-item {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1.5rem;
    }
    
    .belief-item h3 { font-size: 2rem; }
    .belief-item p { 
        padding-left: 0; 
        border-left: none; 
        border-top: 1px solid rgba(255, 255, 255, 0.2);
        padding-top: 1rem;
        font-size: 1rem;
    }
    .belief-item ul {
        padding-left: 1.5rem;
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
        padding-top: 1rem;
    }
    
    .belief-logo .logo-mark,
    .belief-logo .logo-text { font-size: 2.5rem; }
    .belief-logo .logo-divider { height: 40px; }
    
    .ceo-quote { font-size: 1.1rem; }
    .ceo-name { font-size: 1.75rem; }
}

/* ============================================
   MODERN CONTACT PAGE - Premium Design
   ============================================ */

/* Hero Contact Section */
.contact-hero {
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 20% 80%, rgba(192, 192, 192, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(192, 192, 192, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.contact-hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0 4rem;
}

.contact-hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: var(--color-white);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.contact-hero-subtitle {
    font-size: 1.25rem;
    color: var(--color-gray-400);
    margin-bottom: 3rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

/* Hero Stats */
.contact-hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

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

.hero-stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-white);
    line-height: 1;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--color-white) 0%, var(--color-silver) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-stat-label {
    font-size: 0.875rem;
    color: var(--color-gray-400);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
}

.hero-stat-divider {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.3), transparent);
}

/* Contact Wrapper - Overlapping Design */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 0;
    background: var(--color-white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    min-height: 600px;
}

/* Contact Info Panel */
.contact-info-panel {
    background: linear-gradient(135deg, #f8f9fa 0%, #f1f3f5 100%);
    padding: 3rem 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.info-cards-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-card {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.5rem;
    background: var(--color-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-gray-200);
    transition: all var(--transition-normal);
}

.info-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-gray-300);
}

.info-card-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: var(--color-black);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    transition: all var(--transition-normal);
}

.info-card-icon svg {
    width: 22px;
    height: 22px;
}

.info-card:hover .info-card-icon {
    background: var(--color-gray-800);
    transform: scale(1.05);
}

.info-card-content h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-black);
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
}

.info-card-content p {
    font-size: 0.95rem;
    color: var(--color-gray-600);
    line-height: 1.6;
    margin: 0;
}

/* Contact Form Panel */
.contact-form-panel {
    padding: 2.5rem;
    background: var(--color-white);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Modern Form - Clean & Simple */
.contact-form-modern .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin-bottom: 1.25rem;
}

.contact-form-modern .form-group {
    margin-bottom: 1.25rem;
}

.contact-form-modern .form-group:last-child {
    margin-bottom: 0;
}

.contact-form-modern label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-gray-700);
}

.contact-form-modern input,
.contact-form-modern textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1.5px solid var(--color-gray-200);
    border-radius: var(--radius-md);
    font-family: var(--font-family);
    font-size: 1rem;
    color: var(--color-gray-800);
    background: var(--color-white);
    transition: all var(--transition-fast);
}

.contact-form-modern input::placeholder,
.contact-form-modern textarea::placeholder {
    color: var(--color-gray-400);
}

.contact-form-modern input:focus,
.contact-form-modern textarea:focus {
    outline: none;
    border-color: var(--color-black);
    background: var(--color-white);
}

.contact-form-modern textarea {
    min-height: 120px;
    resize: vertical;
    line-height: 1.5;
}

/* Submit Button - Clean */
.btn-submit {
    width: 100%;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    background: var(--color-black);
    border: none;
    border-radius: var(--radius-md);
    color: var(--color-white);
    cursor: pointer;
    transition: all var(--transition-normal);
}

.btn-submit:hover {
    background: var(--color-gray-800);
}

/* Responsive Contact Page */
@media (max-width: 1024px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .contact-info-panel {
        padding: 2.5rem;
    }
    
    .info-cards-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .contact-form-panel {
        padding: 2.5rem;
    }
}

@media (max-width: 768px) {
    .contact-hero-stats {
        gap: 1.5rem;
    }
    
    .hero-stat-number {
        font-size: 2rem;
    }
    
    .hero-stat-divider {
        display: none;
    }
    
    .info-cards-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form-modern .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .contact-info-panel,
    .contact-form-panel {
        padding: 2rem 1.5rem;
    }
    
    .form-header h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .info-card {
        padding: 1.25rem;
    }
    
    .info-card-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
    }
    
    .info-card-icon svg {
        width: 18px;
        height: 18px;
    }
}

/* Gallery Styles */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all var(--transition-normal);
}

.gallery-image {
    width: 100%;
    aspect-ratio: 4/3;
    background: var(--color-gray-800);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-normal);
}

.gallery-placeholder {
    font-size: 0.875rem;
    color: var(--color-gray-500);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.5) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    opacity: 0;
    transition: all var(--transition-normal);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay h4 {
    color: var(--color-white);
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.gallery-overlay p {
    color: var(--color-gray-400);
    font-size: 0.9rem;
    margin: 0;
}

@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    opacity: 0;
    transition: opacity 0.3s ease;
    cursor: pointer;
}

.lightbox.active {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.lightbox-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 3rem;
    color: var(--color-white);
    cursor: pointer;
    z-index: 2001;
    transition: all 0.2s ease;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(90deg);
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    position: relative;
    cursor: default;
}

.lightbox-image {
    width: 80vw;
    height: 80vh;
    background: var(--color-gray-800);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.lightbox-image span {
    font-size: 1.5rem;
    color: var(--color-gray-500);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

@media (max-width: 768px) {
    .lightbox-close {
        top: 1rem;
        right: 1rem;
        font-size: 2rem;
    }
    
    .lightbox-image {
        width: 95vw;
        height: 60vh;
    }
}
