@charset "UTF-8";
/* Butik Marka CSS - Elegant & Minimal */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Modern Luxury Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes countUp {
    from { opacity: 0; transform: scale(0.5); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.05); }
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-50px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes scaleIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out forwards;
}

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

.float {
    animation: float 3s ease-in-out infinite;
}

.pulse {
    animation: pulse 2s ease-in-out infinite;
}
/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

/* Root Variables - 2025 Premium Modern */
:root {
    /* Colors - Premium Palette */
    --primary-color: #0a0a0a;
    --primary-light: #1a1a1a;
    --accent-gold: #d4af37;
    --accent-gold-dark: #b8941f;
    --accent-gold-light: #f0d98d;
    --accent-platinum: #e5e4e2;
    --text-primary: #0a0a0a;
    --text-secondary: #3a3a3a;
    --text-light: #6a6a6a;
    --bg-primary: #ffffff;
    --bg-secondary: #fafafa;
    --bg-light: #f5f5f5;
    --bg-dark: #0f0f0f;
    --bg-cream: #fdf8f3;
    --border-color: #e0e0e0;
    --border-gold: rgba(212, 175, 55, 0.3);
    
    /* Modern Mesh Gradients - 2025 Trends */
    --gradient-gold: linear-gradient(135deg, #d4af37 0%, #f0d98d 100%);
    --gradient-dark: linear-gradient(135deg, #0a0a0a 0%, #2a2a2a 100%);
    --gradient-overlay: linear-gradient(180deg, rgba(10,10,10,0.7) 0%, rgba(10,10,10,0.3) 100%);
    --gradient-glass: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
    --gradient-mesh-1: radial-gradient(at 40% 20%, rgba(212, 175, 55, 0.15) 0px, transparent 50%),
                       radial-gradient(at 80% 0%, rgba(229, 228, 226, 0.2) 0px, transparent 50%),
                       radial-gradient(at 0% 50%, rgba(212, 175, 55, 0.08) 0px, transparent 50%);
    --gradient-mesh-2: radial-gradient(at 20% 80%, rgba(212, 175, 55, 0.12) 0px, transparent 50%),
                       radial-gradient(at 90% 40%, rgba(229, 228, 226, 0.15) 0px, transparent 50%),
                       radial-gradient(at 50% 100%, rgba(212, 175, 55, 0.06) 0px, transparent 50%);
    
    /* Premium Shadows */
    --shadow-subtle: 0 4px 12px rgba(0,0,0,0.06);
    --shadow-elegant: 0 12px 32px rgba(0,0,0,0.12);
    --shadow-gold: 0 8px 24px rgba(212, 175, 55, 0.15);
    --shadow-3d: 0 20px 60px rgba(0,0,0,0.15), 0 8px 24px rgba(0,0,0,0.1);
    --shadow-glow: 0 0 40px rgba(212, 175, 55, 0.3);
    --shadow-float: 0 30px 60px rgba(0,0,0,0.08), 0 10px 30px rgba(0,0,0,0.05);
    
    /* Smooth Transitions */
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    --border-radius: 0;
    --border-radius-modern: 24px;
    --border-radius-large: 32px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.7;
    color: var(--text-primary);
    background: var(--bg-primary);
    margin: 0;
    padding: 0;
    font-size: 16px;
    overflow-x: hidden;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Scroll Progress Bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: var(--gradient-gold);
    z-index: 10000;
    transition: width 0.1s ease;
    box-shadow: 0 2px 10px rgba(212, 175, 55, 0.5);
}

/* Floating Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 50px;
    height: 50px;
    background: var(--gradient-gold);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-gold);
    z-index: 1000;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: var(--shadow-3d);
}

.back-to-top::before {
    content: '↑';
    font-size: 24px;
    color: white;
    font-weight: bold;
}

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

/* Elegant Typography - Balanced */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', 'Georgia', serif;
    font-weight: 400;
    line-height: 1.2;
    margin: 0;
    color: var(--primary-color);
    letter-spacing: 0.5px;
}

/* Header - Minimal & Elegant */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    transition: var(--transition);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.99);
    box-shadow: var(--shadow-subtle);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    padding: 0.8rem 40px;
    min-height: 80px;
}

.logo h1 {
    color: var(--primary-color);
    font-size: 1.6rem;
    font-weight: 300;
    margin: 0;
    letter-spacing: 4px;
    text-transform: uppercase;
    position: relative;
}

.logo h1::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 25px;
    height: 1px;
    background: var(--accent-gold);
}

.tagline {
    font-size: 0.7rem;
    color: var(--text-light);
    font-weight: 300;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 2px;
    font-family: 'Inter', sans-serif;
}

.nav {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.nav ul {
    display: flex;
    list-style: none;
    gap: 3rem;
}

/* Language Selector */
.language-selector {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.lang-btn {
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 400;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Inter', sans-serif;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 0.5rem;
}

.lang-btn.active {
    color: var(--accent-gold);
    font-weight: 500;
}

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

.lang-divider {
    color: var(--border-color);
    font-size: 0.8rem;
    opacity: 0.5;
}

.nav a {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 400;
    font-size: 1.05rem;
    letter-spacing: 1px;
    transition: var(--transition);
    position: relative;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
}

.nav a:hover {
    color: var(--accent-gold);
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1px;
    background: var(--accent-gold);
    transition: var(--transition);
}

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

/* Hero Section - Modern Premium Light */
.hero {
    min-height: 100vh;
    background: 
        linear-gradient(135deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.88) 100%),
        url('https://images.unsplash.com/photo-1519167758481-83f29da8c4b0?w=1920&q=80') center/cover no-repeat fixed;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 10rem 2rem 8rem;
    position: relative;
    overflow: hidden;
}

/* Premium Gradient Overlay */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 40% 40%, rgba(212, 175, 55, 0.08) 0%, transparent 60%);
    z-index: 1;
    pointer-events: none; /* allow clicks to pass to buttons */
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><defs><pattern id="luxury-pattern" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M20,0 L40,20 L20,40 L0,20 Z" fill="none" stroke="%23c9a96e" stroke-width="0.5" opacity="0.15"/></pattern></defs><rect width="200" height="200" fill="url(%23luxury-pattern)"/></svg>') repeat;
    animation: float 20s ease-in-out infinite;
    z-index: 0;
    pointer-events: none; /* do not block clicks */
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-20px, -20px) rotate(1deg); }
}

.hero-badge {
    position: relative;
    z-index: 3;
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeInDown 1s ease-out 0.5s forwards;
}

.hero-badge span {
    display: inline-block;
    padding: 0.5rem 2rem;
    background: rgba(212, 175, 55, 0.12);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.4);
    color: var(--accent-gold-dark);
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
}

.hero-content {
    max-width: 1000px;
    position: relative;
    z-index: 2; /* above overlay */
}

.hero h1 {
    font-size: 5rem;
    font-weight: 300;
    margin-bottom: 2rem;
    color: var(--primary-color);
    letter-spacing: 8px;
    line-height: 1.1;
    margin-bottom: 2.5rem;
    color: var(--accent-gold);
    font-style: italic;
    letter-spacing: 1px;
    font-family: 'Playfair Display', serif;
    opacity: 0;
    animation: fadeInUp 1s ease-out 1.1s forwards;
}

.hero-description {
    font-size: 1.5rem;
    margin-bottom: 4rem;
    color: #3a3a3a;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    opacity: 0;
    animation: fadeInUp 1s ease-out 1.4s forwards;
    letter-spacing: 0.5px;
}

.hero-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
    margin-bottom: 6rem;
    opacity: 0;
    animation: fadeInUp 1s ease-out 1.7s forwards;
    position: relative;
    z-index: 5; /* above overlays */
    pointer-events: auto;
}

.hero-buttons .btn {
    position: relative;
    z-index: 6;
    pointer-events: auto;
}

/* Premium Stats Section - Modern Glass */
.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    margin-top: 5rem;
    padding: 3.5rem 3rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: var(--border-radius-large);
    position: relative;
    z-index: 3;
    opacity: 0;
    animation: fadeInUp 1s ease-out 2s forwards;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: var(--shadow-float);
}

.hero-stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    border-radius: var(--border-radius-large);
    pointer-events: none;
}

.stat-item {
    text-align: center;
    padding: 1.5rem 2rem;
    flex: 1;
}

.stat-number {
    display: block;
    font-size: 3.5rem;
    font-weight: 300;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    font-family: 'Playfair Display', serif;
    line-height: 1;
    position: relative;
    direction: ltr;
    unicode-bidi: isolate;
    font-variant-numeric: lining-nums tabular-nums;
    font-feature-settings: "lnum" 1, "tnum" 1;
}

.stat-plus {
    font-size: 2rem;
    color: var(--accent-gold);
    font-weight: 300;
}

.stat-label {
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-family: 'Inter', sans-serif;
}

.stat-description {
    font-size: 0.85rem;
    color: var(--text-light);
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-style: italic;
}

.stat-divider {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, transparent, var(--accent-gold), transparent);
    opacity: 0.5;
}

/* Hero Scroll Indicator */
.hero-scroll {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 3;
    opacity: 0;
    animation: fadeIn 1s ease-out 2.5s forwards;
}

.hero h1 {
    font-size: 7rem;
    font-weight: 200;
    margin-bottom: 2rem;
    line-height: 1.1;
    letter-spacing: -2px;
    color: #0a0a0a;
    position: relative;
    z-index: 3;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.8s forwards;
    max-width: 1100px;
}

.hero-scroll span {
    display: block;
    font-size: 0.8rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    font-family: 'Inter', sans-serif;
}

.scroll-indicator {
    width: 2px;
    height: 30px;
    background: var(--accent-gold);
    margin: 0 auto;
    position: relative;
    opacity: 0.7;
}

.scroll-indicator::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 3px solid transparent;
    border-right: 3px solid transparent;
    border-top: 6px solid var(--accent-gold);
    animation: bounce 2s infinite;
}

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

/* Animation Keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Modern Luxury Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 0;
    text-decoration: none;
    font-weight: 300;
    font-size: 0.9rem;
    transition: var(--transition);
    border: 1px solid transparent;
    cursor: pointer;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: 'Inter', sans-serif;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    z-index: -1;
}

.btn:hover::before {
    width: 300%;
    height: 300%;
}

.btn-primary {
    background: var(--gradient-gold);
    color: var(--primary-color);
    border: 2px solid var(--accent-gold);
    font-weight: 500;
    letter-spacing: 2px;
    box-shadow: var(--shadow-subtle);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
    border-color: var(--accent-gold-light);
}

.btn-primary:active {
    transform: translateY(-1px);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 1px solid var(--border-color);
    backdrop-filter: blur(10px);
}

.btn-secondary::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: var(--gradient-gold);
    transition: height 0.3s ease;
    z-index: -1;
}

.btn-secondary:hover::after {
    height: 100%;
}

.btn-secondary:hover {
    color: white;
    border-color: var(--accent-gold);
}

/* Services Section - 2025 Premium Modern */
.services {
    padding: 10rem 0;
    background: linear-gradient(to bottom, #ffffff 0%, #fdf8f3 100%);
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 30%, rgba(212, 175, 55, 0.06) 0%, transparent 60%);
    pointer-events: none;
}

.services::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
}

.section-header {
    text-align: center;
    margin-bottom: 6rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.section-header::after {
    content: '';
    position: absolute;
    bottom: -2rem;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
}

.section-header h2 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-weight: 200;
    font-size: 4rem;
    letter-spacing: -1.5px;
}

.section-header p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.8;
    font-weight: 300;
    letter-spacing: 0.3px;
}

/* Services Grid - Simple 3 Column Layout */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.service-card {
    background: 
        linear-gradient(135deg, rgba(255,255,255,0.98) 0%, rgba(253,248,243,0.95) 100%);
    backdrop-filter: blur(20px);
    padding: 3.5rem 3rem;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: var(--border-radius-large);
    position: relative;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: var(--shadow-float);
    transform-style: preserve-3d;
    perspective: 1000px;
}

/* Removed asymmetric layout - now simple 3 column grid */

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-glass);
    opacity: 0;
    transition: var(--transition);
    z-index: 0;
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transition: var(--transition-slow);
    z-index: 1;
}

.service-card:hover {
    transform: translateY(-16px) scale(1.03);
    box-shadow: var(--shadow-float), 
                0 0 60px rgba(212, 175, 55, 0.15);
    border-color: var(--accent-gold);
    background: 
        linear-gradient(135deg, rgba(255,255,255,1) 0%, rgba(253,248,243,1) 100%);
}

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

.service-card:hover::after {
    transform: scaleX(1);
}

/* 3D Tilt Effect - will be added via JS */
.service-card.tilt {
    will-change: transform;
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    display: block;
    opacity: 0.8;
}

.service-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 300;
    font-size: 1.3rem;
    letter-spacing: 0.5px;
}

.service-card p {
    margin-bottom: 1.2rem;
    line-height: 1.6;
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 300;
    opacity: 0.85;
}

.service-features {
    list-style: none;
    padding: 0;
    text-align: left;
}

.service-features li {
    padding: 0.4rem 0;
    color: var(--text-light);
    position: relative;
    padding-left: 1.5rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 300;
    letter-spacing: 0.3px;
    line-height: 1.4;
    opacity: 0.8;
}

.service-features li::before {
    content: '·';
    position: absolute;
    left: 0.3rem;
    color: var(--accent-gold);
    font-weight: 300;
    font-size: 1.5em;
    opacity: 0.6;
}

/* About Section - Luxury with Team Background */
.about {
    padding: 10rem 0;
    background: linear-gradient(rgba(245, 245, 245, 0.95), rgba(245, 245, 245, 0.95)), 
                url('https://images.unsplash.com/photo-1556761175-b413da4baf72?w=1600&q=80') center/cover fixed;
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
}

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

.about h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 300;
}

.about h3 {
    color: var(--accent-gold);
    font-weight: 300;
    margin-bottom: 3rem;
    font-style: italic;
}

.about p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    text-align: left;
    line-height: 1.9;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.feature {
    text-align: center;
    padding: 2rem 1rem;
}

.feature h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 300;
}

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

/* Contact Section - 2025 Premium Modern */
.contact {
    padding: 10rem 0;
    background: linear-gradient(to bottom, #fdf8f3 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 70%, rgba(212, 175, 55, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: start;
    max-width: 1400px;
    margin: 0 auto;
}

.contact h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.contact-details {
    margin-top: 3rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 3rem;
    gap: 2rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.6);
    border-radius: var(--border-radius-modern);
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: var(--transition);
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateX(10px);
    box-shadow: var(--shadow-elegant);
}

.contact-icon {
    font-size: 2rem;
    margin-top: 0.3rem;
    color: var(--accent-gold);
    min-width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
}

.contact-item h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    font-family: 'Inter', sans-serif;
}

.contact-item p {
    color: var(--text-secondary);
    margin: 0;
    font-size: 1rem;
    line-height: 1.7;
}

.contact-cta {
    background: var(--bg-light);
    padding: 4rem 3rem;
    border: 2px solid var(--border-gold);
    text-align: center;
    box-shadow: var(--shadow-subtle);
}

.contact-cta h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.contact-cta p {
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.contact-cta .btn {
    display: block;
    margin: 1.5rem 0;
}

/* Footer - Premium Modern Dark */
.footer {
    background: linear-gradient(to bottom, #0a0a0a 0%, #1a1a1a 100%);
    color: rgba(255, 255, 255, 0.8);
    padding: 6rem 0 2rem;
    border-top: 1px solid rgba(212, 175, 55, 0.3);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 0%, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.footer-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    position: relative;
    z-index: 1;
}

.footer-brand h3 {
    color: white;
    margin-bottom: 1rem;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
}

.footer-section h4 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    font-weight: 300;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: 'Inter', sans-serif;
}

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

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

.footer-section a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: var(--transition);
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
}

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

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.4);
    margin: 0;
    font-size: 0.85rem;
    font-family: 'Inter', sans-serif;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .header .container {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1rem 20px;
    }
    
    .nav {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .nav ul {
        gap: 2rem;
    }
    
    .hero {
        padding: 7rem 1rem 5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 2rem;
        padding: 2rem 1rem;
        margin-top: 3rem;
    }
    
    .stat-divider {
        width: 60px;
        height: 1px;
        background: linear-gradient(to right, transparent, var(--accent-gold), transparent);
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .services, .about, .contact {
        padding: 5rem 0;
    }
    
    .services-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem;
    }
    
    /* Reset bento grid on mobile */
    .service-card:nth-child(1),
    .service-card:nth-child(2),
    .service-card:nth-child(3),
    .service-card:nth-child(4) {
        grid-column: span 1 !important;
    }
    
    .hero h1 {
        font-size: 3rem !important;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-content {
        text-align: center;
        padding: 0 1rem;
    }
    
    .about-features {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .service-card, .contact-cta {
        padding: 2rem 1.5rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
}

/* Subtle animations */
.service-card, .feature, .contact-item {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease-out forwards;
}

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

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.3s; }
.service-card:nth-child(3) { animation-delay: 0.5s; }

/* ========================================
   PORTFOLIO / GALLERY SECTION
   ======================================== */

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius-large);
    cursor: pointer;
    aspect-ratio: 4/3;
    background: var(--bg-secondary);
    box-shadow: var(--shadow-subtle);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.portfolio-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-float);
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.portfolio-item:hover img {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(10, 10, 10, 0.95) 0%, transparent 100%);
    padding: 2rem;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.portfolio-item:hover .portfolio-overlay {
    transform: translateY(0);
}

.portfolio-overlay h3 {
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
    font-weight: 300;
}

.portfolio-overlay p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
}

.portfolio-category {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(212, 175, 55, 0.2);
    color: var(--accent-gold);
    font-size: 0.85rem;
    border-radius: 20px;
    margin-bottom: 0.5rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* Lightbox Modal */
.lightbox-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    animation: lightboxZoom 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes lightboxZoom {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.lightbox-content img {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: var(--border-radius-modern);
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.5);
}

.lightbox-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(10, 10, 10, 0.98) 0%, transparent 100%);
    padding: 2rem;
    border-radius: 0 0 var(--border-radius-modern) var(--border-radius-modern);
}

.lightbox-info h3 {
    color: var(--accent-gold);
    font-size: 2rem;
    margin-bottom: 0.5rem;
    font-weight: 300;
}

.lightbox-info p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.6;
}

.lightbox-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: rgba(212, 175, 55, 0.2);
    border: 2px solid var(--accent-gold);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--accent-gold);
    transition: all 0.3s;
    z-index: 10001;
}

.lightbox-close:hover {
    background: var(--accent-gold);
    color: var(--primary-color);
    transform: rotate(90deg);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(212, 175, 55, 0.2);
    border: 2px solid var(--accent-gold);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--accent-gold);
    transition: all 0.3s;
    z-index: 10001;
}

.lightbox-nav:hover {
    background: var(--accent-gold);
    color: var(--primary-color);
}

.lightbox-nav.prev {
    left: 2rem;
}

.lightbox-nav.next {
    right: 2rem;
}

/* Filter Buttons */
.portfolio-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.8rem 2rem;
    background: transparent;
    border: 2px solid var(--border-gold);
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 500;
    letter-spacing: 0.5px;
    border-radius: 30px;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--accent-gold);
    color: var(--primary-color);
    border-color: var(--accent-gold);
    transform: translateY(-2px);
    box-shadow: var(--shadow-elegant);
}

/* Empty State */
.portfolio-empty {
    text-align: center;
    padding: 6rem 2rem;
    color: var(--text-secondary);
}

.portfolio-empty svg {
    width: 100px;
    height: 100px;
    margin-bottom: 2rem;
    opacity: 0.3;
}

.portfolio-empty h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 300;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .lightbox-content {
        max-width: 95%;
    }
    
    .lightbox-info {
        padding: 1.5rem;
    }
    
    .lightbox-info h3 {
        font-size: 1.5rem;
    }
    
    .lightbox-nav {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    
    .lightbox-nav.prev {
        left: 1rem;
    }
    
    .lightbox-nav.next {
        right: 1rem;
    }
    
    .lightbox-close {
        width: 40px;
        height: 40px;
        font-size: 24px;
        top: 1rem;
        right: 1rem;
    }
}