/* ==========================================
   AM CRAFTS - PREMIUM STYLES
   ========================================== */

:root {
    --gold: #d4a017;
    --gold-light: #f0c040;
    --gold-dark: #a07810;
    --dark: #0a0a0a;
    --dark-2: #1a1a1a;
    --dark-3: #2a2a2a;
    --gray: #6b7280;
    --light: #f8f9fa;
    --white: #ffffff;
    --gradient-gold: linear-gradient(135deg, #d4a017 0%, #f0c040 50%, #d4a017 100%);
    --gradient-dark: linear-gradient(135deg, #0a0a0a 0%, #2a2a2a 100%);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.2);
    --shadow-gold: 0 10px 30px rgba(212, 160, 23, 0.3);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --radius: 12px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--dark);
    background: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
}

::selection {
    background: var(--gold);
    color: var(--dark);
}

/* Scrollbar */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--gradient-gold); border-radius: 10px; }

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.text-gold {
    color: var(--gold);
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ==========================================
   TOP BAR
   ========================================== */
.top-bar {
    background: var(--dark);
    color: var(--white);
    padding: 10px 0;
    font-size: 13px;
    border-bottom: 1px solid rgba(212, 160, 23, 0.2);
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left {
    display: flex;
    gap: 24px;
    align-items: center;
    flex-wrap: wrap;
}

.top-bar-left span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-bar-left i {
    color: var(--gold);
}

.top-bar-right {
    display: flex;
    gap: 12px;
}

.top-bar-right a {
    color: var(--white);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition);
    font-size: 12px;
}

.top-bar-right a:hover {
    background: var(--gold);
    color: var(--dark);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .hide-mobile { display: none; }
    .top-bar { font-size: 12px; }
    .top-bar-left { gap: 12px; }
}

/* ==========================================
   HEADER & NAVIGATION
   ========================================== */
.header {
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-md);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    gap: 24px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--dark);
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-gold);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    font-size: 24px;
    box-shadow: var(--shadow-gold);
    transition: var(--transition);
}

.logo:hover .logo-icon {
    transform: rotate(-10deg) scale(1.05);
}

.logo-text h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 26px;
    letter-spacing: 2px;
    line-height: 1;
    color: var(--dark);
}

.logo-text span {
    font-size: 10px;
    letter-spacing: 4px;
    color: var(--gold);
    font-weight: 600;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 4px;
}

.nav-menu a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    font-size: 15px;
    padding: 10px 18px;
    border-radius: 8px;
    transition: var(--transition);
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--gold);
    background: rgba(212, 160, 23, 0.08);
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
}

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

.menu-toggle span {
    width: 26px;
    height: 3px;
    background: var(--dark);
    border-radius: 3px;
    transition: var(--transition);
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}
.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

@media (max-width: 968px) {
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--white);
        padding: 80px 24px 24px;
        box-shadow: var(--shadow-lg);
        transition: var(--transition);
        z-index: 999;
    }
    .nav.active { right: 0; }
    .nav-menu {
        flex-direction: column;
        gap: 8px;
    }
    .nav-menu a {
        display: block;
        padding: 14px 16px;
        font-size: 16px;
    }
    .menu-toggle { display: flex; z-index: 1001; }
    .nav-cta { display: none; }
}

/* ==========================================
   BUTTONS
   ========================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.btn-primary {
    background: var(--gradient-gold);
    color: var(--dark);
    box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 160, 23, 0.5);
}

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

.btn-outline:hover {
    background: var(--white);
    color: var(--dark);
    transform: translateY(-3px);
}

.btn-dark {
    background: var(--dark);
    color: var(--white);
}

.btn-dark:hover {
    background: var(--gold);
    color: var(--dark);
    transform: translateY(-3px);
}

.btn-large {
    padding: 16px 36px;
    font-size: 16px;
}

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

/* ==========================================
   HERO SECTION
   ========================================== */
.hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    color: var(--white);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: var(--gradient-dark);
    background-image:
        radial-gradient(circle at 20% 50%, rgba(212, 160, 23, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(212, 160, 23, 0.1) 0%, transparent 50%),
        linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { background-position: 0 0, 0 0; }
    100% { background-position: 50px 50px, 50px 50px; }
}

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

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 80px 24px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 24px;
    background: rgba(212, 160, 23, 0.15);
    border: 1px solid rgba(212, 160, 23, 0.4);
    border-radius: 50px;
    color: var(--gold);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(60px, 10vw, 140px);
    font-weight: 400;
    line-height: 0.95;
    margin-bottom: 24px;
    letter-spacing: 2px;
}

.hero-subtitle {
    font-size: clamp(16px, 2vw, 20px);
    max-width: 700px;
    margin: 0 auto 40px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 40px;
}

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

.stat-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 56px;
    color: var(--gold);
    line-height: 1;
}

.stat-label {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 4px;
}

.stat-divider {
    width: 1px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
}

@media (max-width: 768px) {
    .stat-divider { display: none; }
    .hero-stats { gap: 30px; }
    .stat-number { font-size: 42px; }
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 11px;
    letter-spacing: 3px;
    z-index: 2;
}

.scroll-indicator span {
    display: block;
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 20px;
    margin: 0 auto 8px;
    position: relative;
}

.scroll-indicator span::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--gold);
    border-radius: 2px;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% { opacity: 1; top: 8px; }
    100% { opacity: 0; top: 24px; }
}

/* Animations */
.animate-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s forwards;
}

.animate-in.delay-1 { animation-delay: 0.2s; }
.animate-in.delay-2 { animation-delay: 0.4s; }
.animate-in.delay-3 { animation-delay: 0.6s; }
.animate-in.delay-4 { animation-delay: 0.8s; }

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

/* ==========================================
   HERO SLIDER / CAROUSEL
   ========================================== */
.hero-slider {
    position: relative;
    width: 100%;
    height: 80vh;
    min-height: 600px;
    overflow: hidden;
    background: var(--dark);
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease;
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    z-index: 2;
}

.hero-slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.7), rgba(0,0,0,0.4));
}

.hero-slide-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--white);
}

.hero-slide-content h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(48px, 7vw, 88px);
    font-weight: 400;
    margin-bottom: 20px;
    line-height: 1;
    letter-spacing: 2px;
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.8s ease 0.3s;
}

.hero-slide-content p {
    font-size: clamp(15px, 2vw, 18px);
    margin-bottom: 32px;
    max-width: 600px;
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.8s ease 0.5s;
}

.hero-slide-content .btn {
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.8s ease 0.7s;
}

.hero-slide.active .hero-slide-content h2,
.hero-slide.active .hero-slide-content p,
.hero-slide.active .hero-slide-content .btn {
    transform: translateY(0);
    opacity: 1;
}

.slider-prev,
.slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    border: 2px solid rgba(255,255,255,0.3);
    color: var(--white);
    cursor: pointer;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.slider-prev { left: 24px; }
.slider-next { right: 24px; }

.slider-prev:hover,
.slider-next:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--dark);
    transform: translateY(-50%) scale(1.1);
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 5;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.slider-dot.active {
    background: var(--gold);
    width: 30px;
    border-radius: 5px;
}

@media (max-width: 768px) {
    .hero-slider { height: 70vh; min-height: 500px; }
    .slider-prev, .slider-next { width: 40px; height: 40px; font-size: 14px; }
    .slider-prev { left: 12px; }
    .slider-next { right: 12px; }
}

/* ==========================================
   MARQUEE
   ========================================== */
.marquee {
    background: var(--gradient-gold);
    color: var(--dark);
    padding: 16px 0;
    overflow: hidden;
    position: relative;
    border-top: 1px solid var(--gold-dark);
    border-bottom: 1px solid var(--gold-dark);
}

.marquee-track {
    display: flex;
    gap: 60px;
    white-space: nowrap;
    animation: marquee 30s linear infinite;
}

.marquee-track span {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 14px;
    letter-spacing: 2px;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ==========================================
   VIDEO GALLERY
   ========================================== */
.video-gallery-section {
    padding: 100px 0;
    background: var(--dark);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.video-gallery-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(212, 160, 23, 0.1), transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(212, 160, 23, 0.08), transparent 50%);
}

.video-gallery-section .section-header { position: relative; z-index: 1; }
.video-gallery-section .section-title { color: var(--white); }
.video-gallery-section .section-desc { color: rgba(255, 255, 255, 0.7); }

.video-carousel-wrap {
    position: relative;
    margin: 40px auto 0;
    max-width: 1400px;
    padding: 0 60px;
    z-index: 1;
}

.video-carousel {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: calc(33.333% - 16px);
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 10px 0;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.video-carousel::-webkit-scrollbar { display: none; }

.video-card {
    scroll-snap-align: start;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.video-prev,
.video-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    cursor: pointer;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.video-prev { left: 0; }
.video-next { right: 0; }

.video-prev:hover,
.video-next:hover {
    background: var(--gradient-gold);
    border-color: var(--gold);
    color: var(--dark);
    transform: translateY(-50%) scale(1.1);
}

.video-prev:disabled,
.video-next:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    transform: translateY(-50%);
}

.video-dots {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-top: 24px;
}

.video-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
}

.video-dot.active {
    background: var(--gold);
    border-color: var(--gold);
    width: 32px;
    border-radius: 5px;
}

/* TABLET: 2 columns */
@media (max-width: 1024px) {
    .video-carousel { grid-auto-columns: calc(50% - 12px); }
    .video-carousel-wrap { padding: 0 50px; }
}

/* MOBILE: 1 column with peek */
@media (max-width: 640px) {
    .video-gallery-section { padding: 60px 0; }
    .video-carousel {
        grid-auto-columns: calc(85% - 12px);
        gap: 16px;
        padding-left: 24px;
        padding-right: 24px;
    }
    .video-carousel-wrap { padding: 0; }
    .video-prev, .video-next {
        width: 42px;
        height: 42px;
        font-size: 14px;
        top: auto;
        bottom: -10px;
        transform: none;
    }
    .video-prev:hover, .video-next:hover { transform: scale(1.1); }
    .video-prev { left: calc(50% - 60px); }
    .video-next { right: calc(50% - 60px); }
    .video-dots { margin-top: 60px; }
}

.video-card:hover {
    transform: translateY(-8px);
    background: rgba(212, 160, 23, 0.08);
    border-color: var(--gold);
}

.video-thumb {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #000;
}

.video-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.video-card:hover .video-thumb img {
    transform: scale(1.05);
}

.video-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(255, 0, 0, 0.9);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    padding-left: 4px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
}

.video-card:hover .video-play {
    background: var(--gold);
    color: var(--dark);
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 12px 30px rgba(212, 160, 23, 0.5);
}

.video-cat {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 6px 14px;
    background: var(--gradient-gold);
    color: var(--dark);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 20px;
    z-index: 2;
}

.video-info {
    padding: 20px;
}

.video-info h4 {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: 16px;
    color: var(--white);
    margin-bottom: 8px;
    letter-spacing: -0.3px;
}

.video-info p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    line-height: 1.6;
}

/* Video Modal */
.video-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-modal.open {
    display: flex;
    opacity: 1;
}

.video-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    cursor: pointer;
    backdrop-filter: blur(10px);
}

.video-modal-close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    cursor: pointer;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.video-modal-close:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--dark);
    transform: scale(1.1);
}

.video-modal-content {
    position: relative;
    width: 90%;
    max-width: 1100px;
    z-index: 2;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.video-modal.open .video-modal-content {
    transform: scale(1);
}

.video-modal-iframe-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
}

.video-modal-iframe-wrap iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

body.video-modal-open { overflow: hidden; }

@media (max-width: 768px) {
    .video-modal-close { top: 16px; right: 16px; width: 40px; height: 40px; font-size: 14px; }
}

/* ==========================================
   FOUNDER / CERTIFICATES SECTION
   ========================================== */
.founder-section {
    padding: 100px 0;
    background: var(--light);
    position: relative;
    overflow: hidden;
}

.founder-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: var(--gradient-gold);
    opacity: 0.04;
    border-radius: 50%;
    filter: blur(80px);
}

.founder-grid {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 60px;
    align-items: flex-start;
    position: relative;
}

.founder-image {
    position: relative;
    aspect-ratio: 1;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: var(--dark);
}

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

.founder-placeholder {
    width: 100%;
    height: 100%;
    background: var(--gradient-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 100px;
}

.founder-experience-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--gradient-gold);
    color: var(--dark);
    padding: 14px 18px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(212, 160, 23, 0.5);
    z-index: 3;
}

.founder-experience-badge span {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 32px;
    line-height: 1;
    display: block;
    letter-spacing: 1px;
}

.founder-experience-badge small {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.founder-name {
    font-family: 'Inter', sans-serif;
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 900;
    color: var(--dark);
    margin-bottom: 4px;
    letter-spacing: -1px;
}

.founder-title {
    color: var(--gold);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.founder-bio {
    color: var(--gray);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 32px;
}

.certificates-list h4 {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: 18px;
    color: var(--dark);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.certificates-list h4 i { color: var(--gold); }

.cert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 14px;
}

.cert-card {
    background: var(--white);
    border-radius: 14px;
    padding: 14px;
    display: flex;
    gap: 12px;
    align-items: center;
    border: 2px solid var(--light);
    transition: var(--transition);
}

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

.cert-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: rgba(212, 160, 23, 0.1);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.cert-image {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
}

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

.cert-info { min-width: 0; flex: 1; }

.cert-info strong {
    display: block;
    color: var(--dark);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 2px;
}

.cert-info span {
    display: block;
    color: var(--gray);
    font-size: 12px;
    line-height: 1.3;
}

.cert-year {
    display: inline-block;
    margin-top: 4px;
    padding: 2px 8px;
    background: var(--gradient-gold);
    color: var(--dark);
    font-size: 10px;
    font-weight: 800;
    border-radius: 8px;
}

@media (max-width: 968px) {
    .founder-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .founder-image {
        max-width: 320px;
        margin: 0 auto;
    }
}

@media (max-width: 640px) {
    .founder-section { padding: 60px 0; }
    .cert-grid { grid-template-columns: 1fr; }
}

/* Logo image variant */
.logo-text-image {
    display: flex;
    align-items: center;
}

.logo-text-image img {
    display: block;
    max-height: 38px;
    width: auto;
}

/* ==========================================
   MOBILE APP-STYLE ENHANCEMENTS
   ========================================== */
@media (max-width: 768px) {
    /* App-style header — cleaner & smaller */
    .header {
        padding: 4px 0;
        backdrop-filter: blur(20px);
        background: rgba(255, 255, 255, 0.95);
    }

    .nav-container {
        padding: 10px 16px;
    }

    .logo-icon {
        width: 38px;
        height: 38px;
        font-size: 16px;
        border-radius: 10px;
    }

    .logo-text h1 {
        font-size: 18px;
        letter-spacing: 1px;
    }

    .logo-text span {
        font-size: 8px;
        letter-spacing: 2px;
    }

    /* Free Quote button cleaner on mobile */
    .nav-cta {
        padding: 8px 14px;
        font-size: 12px;
        border-radius: 50px;
    }

    /* App-style cards with bigger touch targets */
    .service-card,
    .gallery-card,
    .video-card,
    .testimonial-card,
    .why-card {
        border-radius: 18px;
        transition: transform 0.2s, box-shadow 0.2s;
    }

    .service-card:active,
    .gallery-card:active,
    .video-card:active {
        transform: scale(0.97);
    }

    /* App-style section padding */
    .services,
    .about-preview,
    .why-us,
    .testimonials,
    .contact-section,
    .video-gallery-section,
    .design-gallery,
    .before-after-section {
        padding: 50px 0;
    }

    /* Section titles tighter */
    .section-title {
        font-size: 28px !important;
        line-height: 1.1;
    }

    .section-tag {
        font-size: 10px;
        letter-spacing: 2px;
    }

    /* Hero more app-like */
    .hero-title {
        font-size: 52px !important;
        letter-spacing: 1px;
    }

    .hero-subtitle {
        font-size: 14px;
        padding: 0 8px;
    }

    .hero-buttons {
        gap: 10px;
    }

    .btn-large {
        padding: 14px 24px;
        font-size: 14px;
        border-radius: 50px;
    }

    /* Container tighter on mobile */
    .container {
        padding: 0 16px;
    }

    /* Contact cards bigger touch */
    .contact-card-big {
        padding: 24px 16px;
    }

    /* Form inputs app-style */
    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 15px;
        padding: 14px 16px;
        border-radius: 12px;
    }
}

/* ==========================================
   MOBILE APP-STYLE BOTTOM NAVIGATION
   ========================================== */
.bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
    z-index: 998;
    padding: 8px 4px calc(8px + env(safe-area-inset-bottom));
    justify-content: space-around;
    align-items: center;
}

.bn-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 8px 4px;
    text-decoration: none;
    color: var(--gray);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    transition: all 0.2s;
    position: relative;
    border-radius: 12px;
}

.bn-item i {
    font-size: 22px;
    transition: all 0.2s;
}

.bn-item span {
    font-size: 10px;
}

.bn-item:active {
    transform: scale(0.92);
}

.bn-item.active {
    color: var(--gold);
}

.bn-item.active i {
    transform: translateY(-2px);
}

.bn-item.active::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 28px;
    height: 3px;
    background: var(--gradient-gold);
    border-radius: 0 0 4px 4px;
}

/* WhatsApp item special styling */
.bn-item .fa-whatsapp {
    color: #25d366;
}

/* Center bigger item - "Gallery" highlighted */
.bn-center {
    transform: translateY(-12px);
}

.bn-center i {
    width: 50px;
    height: 50px;
    background: var(--gradient-gold);
    color: var(--dark) !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 6px 16px rgba(212, 160, 23, 0.4);
    margin-bottom: 2px;
}

.bn-center.active i {
    transform: scale(1.1);
}

.bn-center.active::before { display: none; }

@media (max-width: 768px) {
    .bottom-nav { display: flex; }

    /* Add padding so content not hidden behind bottom nav */
    body { padding-bottom: 80px; }

    /* Hide back-to-top on mobile (bottom nav takes priority) */
    .back-to-top { bottom: 90px; right: 16px; }

    /* WhatsApp float adjusted */
    .whatsapp-float {
        bottom: 95px;
        right: 16px;
        width: 52px;
        height: 52px;
        font-size: 24px;
    }
}

/* ==========================================
   WHATSAPP BUTTON STYLE
   ========================================== */
.btn-whatsapp {
    background: #25d366;
    color: #fff !important;
}
.btn-whatsapp:hover {
    background: #1ebd5b;
    color: #fff;
    transform: translateY(-3px);
}

.service-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.service-wa {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition);
    font-size: 16px;
    flex-shrink: 0;
}

.service-wa:hover {
    background: #1ebd5b;
    transform: scale(1.1);
}

/* ==========================================
   BEFORE / AFTER SLIDER
   ========================================== */
.before-after-section {
    padding: 100px 0;
    background: var(--light);
}

.ba-slider {
    max-width: 900px;
    margin: 0 auto 60px;
}

.ba-slider:last-child { margin-bottom: 0; }

.ba-title {
    text-align: center;
    margin-bottom: 24px;
}

.ba-title h3 {
    font-family: 'Inter', sans-serif;
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: var(--dark);
    margin-bottom: 8px;
}

.ba-title p {
    color: var(--gray);
    font-size: 15px;
}

.ba-container {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    user-select: none;
    background: var(--dark);
}

.ba-after,
.ba-before {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.ba-before-wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    overflow: hidden;
}

.ba-before-wrap .ba-before {
    width: 200%;
    max-width: none;
}

.ba-divider {
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    background: var(--gold);
    transform: translateX(-50%);
    cursor: ew-resize;
    z-index: 3;
    box-shadow: 0 0 20px rgba(212, 160, 23, 0.5);
}

.ba-handle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-gold);
    border: 3px solid #fff;
    color: var(--dark);
    cursor: ew-resize;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.2s;
}

.ba-handle:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

.ba-label {
    position: absolute;
    top: 20px;
    padding: 6px 16px;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    border-radius: 20px;
    z-index: 2;
    backdrop-filter: blur(10px);
}

.ba-label-before { left: 20px; }
.ba-label-after { right: 20px; background: rgba(212, 160, 23, 0.9); color: var(--dark); }

/* ==========================================
   PROJECT MAP
   ========================================== */
.project-map-section {
    padding: 100px 0 0;
    background: var(--white);
}

.project-map {
    width: 100%;
    height: 500px;
    border-top: 4px solid var(--gold);
    border-bottom: 4px solid var(--gold);
    margin-top: 40px;
}

.leaflet-popup-content-wrapper {
    border-radius: 12px !important;
    padding: 6px !important;
}

.leaflet-popup-content {
    margin: 8px !important;
    font-family: 'Inter', sans-serif !important;
}

/* ==========================================
   PWA INSTALL PROMPT
   ========================================== */
.pwa-install {
    position: fixed;
    bottom: 24px;
    left: 24px;
    right: 24px;
    max-width: 420px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border: 2px solid var(--gold);
    z-index: 998;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.pwa-install.show {
    opacity: 1;
    transform: translateY(0);
}

.pwa-install-content {
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.pwa-icon {
    width: 44px;
    height: 44px;
    background: var(--gradient-gold);
    border-radius: 12px;
    color: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.pwa-text {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.pwa-text strong {
    font-size: 14px;
    color: var(--dark);
}

.pwa-text span {
    font-size: 12px;
    color: var(--gray);
}

.pwa-dismiss {
    background: none;
    border: none;
    color: var(--gray);
    cursor: pointer;
    padding: 6px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
}

.pwa-dismiss:hover {
    background: var(--light);
}

/* ==========================================
   LIGHTBOX (Image Full View)
   ========================================== */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.open {
    display: flex;
    opacity: 1;
}

.lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    cursor: pointer;
    backdrop-filter: blur(8px);
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 88vh;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.lightbox.open .lightbox-content {
    transform: scale(1);
}

.lightbox-spinner {
    color: var(--gold);
    font-size: 40px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    display: none;
}

.lightbox.loading .lightbox-spinner {
    display: block;
}

.lightbox.loading .lightbox-image {
    opacity: 0;
}

.lightbox-image {
    max-width: 90vw;
    max-height: 80vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
    background: var(--dark);
    transition: opacity 0.3s ease;
}

.lightbox-caption {
    margin-top: 16px;
    text-align: center;
    color: var(--white);
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.lightbox-title {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
}

.lightbox-counter {
    font-size: 12px;
    color: var(--gold);
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 600;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    cursor: pointer;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.lightbox-close {
    top: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    font-size: 18px;
}

.lightbox-prev,
.lightbox-next {
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    font-size: 18px;
}

.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--dark);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-close:hover { transform: scale(1.1); }

@media (max-width: 768px) {
    .lightbox-close { top: 16px; right: 16px; width: 40px; height: 40px; font-size: 14px; }
    .lightbox-prev, .lightbox-next { width: 44px; height: 44px; font-size: 14px; }
    .lightbox-prev { left: 10px; }
    .lightbox-next { right: 10px; }
    .lightbox-image { max-height: 70vh; }
    .lightbox-title { font-size: 15px; }
}

body.lightbox-open { overflow: hidden; }

/* ==========================================
   DESIGN GALLERY CAROUSEL
   ========================================== */
.design-gallery {
    padding: 100px 0;
    background: var(--white);
    overflow: hidden;
}

.gallery-carousel-wrap {
    position: relative;
    margin: 0 auto;
    max-width: 1400px;
    padding: 0 60px;
}

.gallery-carousel {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: calc(25% - 18px);
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 10px 0 30px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.gallery-carousel::-webkit-scrollbar { display: none; }

.gallery-card {
    scroll-snap-align: start;
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    cursor: pointer;
}

.gallery-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.gallery-card-image {
    aspect-ratio: 1;
    overflow: hidden;
    position: relative;
    background: var(--light);
}

.gallery-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-card:hover .gallery-card-image img {
    transform: scale(1.08);
}

.gallery-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(212,160,23,0.4), rgba(0,0,0,0.5));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 32px;
    opacity: 0;
    transition: var(--transition);
}

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

.gallery-card-title {
    padding: 16px 18px;
    font-weight: 600;
    color: var(--dark);
    font-size: 15px;
    text-align: center;
    background: var(--white);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.gallery-prev,
.gallery-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid var(--light);
    color: var(--dark);
    cursor: pointer;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

.gallery-prev { left: 0; }
.gallery-next { right: 0; }

.gallery-prev:hover,
.gallery-next:hover {
    background: var(--gradient-gold);
    border-color: var(--gold);
    color: var(--dark);
    transform: translateY(-50%) scale(1.1);
}

.gallery-prev:disabled,
.gallery-next:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    transform: translateY(-50%);
}

.gallery-dots {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-top: 20px;
}

.gallery-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--light);
    border: 2px solid var(--light);
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
}

.gallery-dot.active {
    background: var(--gold);
    border-color: var(--gold);
    width: 32px;
    border-radius: 5px;
}

/* TABLET: 2 columns */
@media (max-width: 1024px) {
    .gallery-carousel {
        grid-auto-columns: calc(50% - 12px);
    }
    .gallery-carousel-wrap { padding: 0 50px; }
}

/* MOBILE: 1.3 column (peek next) */
@media (max-width: 640px) {
    .design-gallery { padding: 60px 0; }
    .gallery-carousel {
        grid-auto-columns: calc(75% - 12px);
        gap: 16px;
        padding-left: 24px;
        padding-right: 24px;
    }
    .gallery-carousel-wrap {
        padding: 0;
    }
    .gallery-prev, .gallery-next {
        width: 42px;
        height: 42px;
        font-size: 14px;
        top: auto;
        bottom: -10px;
        transform: none;
    }
    .gallery-prev:hover, .gallery-next:hover { transform: scale(1.1); }
    .gallery-prev { left: calc(50% - 60px); }
    .gallery-next { right: calc(50% - 60px); }
    .gallery-dots { margin-top: 50px; }
}

/* Very small mobile: 2 visible */
@media (max-width: 420px) {
    .gallery-carousel {
        grid-auto-columns: calc(85% - 12px);
    }
}

/* ==========================================
   ABOUT PREVIEW
   ========================================== */
.about-preview {
    padding: 100px 0;
    background: var(--light);
    position: relative;
    overflow: hidden;
}

.about-preview::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: var(--gradient-gold);
    opacity: 0.05;
    border-radius: 50%;
    filter: blur(80px);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

@media (max-width: 968px) {
    .about-grid { grid-template-columns: 1fr; gap: 60px; }
}

.about-visual {
    position: relative;
    height: 500px;
}

.about-image-stack {
    position: relative;
    width: 100%;
    height: 100%;
}

.image-card {
    position: absolute;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    background-size: cover;
    background-position: center;
    transition: var(--transition);
}

.image-card-1 {
    top: 0;
    left: 0;
    width: 70%;
    height: 75%;
    background: linear-gradient(135deg, #1a1a1a, #4a4a4a);
    background-image:
        linear-gradient(135deg, rgba(212, 160, 23, 0.3), transparent),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><rect fill="%23333" width="200" height="200"/><g fill="none" stroke="%23d4a017" stroke-width="2"><rect x="40" y="40" width="120" height="120"/><line x1="100" y1="40" x2="100" y2="160"/><line x1="40" y1="100" x2="160" y2="100"/><circle cx="100" cy="100" r="30" stroke-width="3"/></g></svg>');
    background-size: cover;
}

.image-card-2 {
    bottom: 0;
    right: 0;
    width: 60%;
    height: 60%;
    background: linear-gradient(135deg, #d4a017, #a07810);
    background-image:
        linear-gradient(135deg, rgba(0, 0, 0, 0.3), transparent),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><rect fill="%23a07810" width="200" height="200"/><g fill="none" stroke="%23fff" stroke-width="2"><path d="M20 180 L100 20 L180 180 Z"/><path d="M50 180 L100 80 L150 180"/></g></svg>');
    background-size: cover;
    border: 6px solid var(--white);
}

.image-card:hover {
    transform: translateY(-10px);
}

.experience-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: var(--dark);
    color: var(--white);
    padding: 24px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    z-index: 3;
    border: 3px solid var(--gold);
}

.exp-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 56px;
    color: var(--gold);
    line-height: 1;
    display: block;
}

.exp-label {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
}

/* Section Common */
.section-tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(212, 160, 23, 0.1);
    color: var(--gold);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.section-tag.light {
    background: rgba(212, 160, 23, 0.2);
}

.section-title {
    font-family: 'Inter', sans-serif;
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -1.5px;
    margin-bottom: 20px;
    color: var(--dark);
}

.section-title.light {
    color: var(--white);
}

.section-desc {
    color: var(--gray);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 24px;
}

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

.section-header .section-desc {
    margin: 0 auto;
}

.feature-list {
    list-style: none;
    margin: 24px 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    color: var(--dark);
    font-weight: 500;
}

.feature-list i {
    color: var(--gold);
    font-size: 18px;
}

/* ==========================================
   SERVICES
   ========================================== */
.services {
    padding: 100px 0;
    background: var(--white);
}

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

.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    border: 2px solid #f0f0f0;
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: var(--shadow-lg);
}

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

.service-icon {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    background: rgba(212, 160, 23, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 28px;
    margin-bottom: 24px;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--gradient-gold);
    color: var(--dark);
    transform: rotate(-8deg);
}

.service-card h3 {
    font-family: 'Inter', sans-serif;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.3px;
    margin-bottom: 12px;
    color: var(--dark);
}

.service-card p {
    color: var(--gray);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-link {
    color: var(--dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.service-link:hover {
    color: var(--gold);
    gap: 12px;
}

/* ==========================================
   WHY US
   ========================================== */
.why-us {
    padding: 100px 0;
    background: var(--dark);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.why-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(212, 160, 23, 0.1), transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(212, 160, 23, 0.08), transparent 50%);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
}

.why-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px 30px;
    border-radius: 20px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.why-card:hover {
    background: rgba(212, 160, 23, 0.1);
    border-color: var(--gold);
    transform: translateY(-10px);
}

.why-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 80px;
    color: rgba(212, 160, 23, 0.2);
    position: absolute;
    top: 10px;
    right: 20px;
    line-height: 1;
}

.why-icon {
    font-size: 40px;
    color: var(--gold);
    margin-bottom: 20px;
    display: block;
}

.why-card h3 {
    font-family: 'Inter', sans-serif;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.3px;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.why-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

/* ==========================================
   CTA BANNER
   ========================================== */
.cta-banner {
    padding: 80px 0;
    background: var(--gradient-gold);
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(0,0,0,0.1)"/></svg>');
    background-size: 30px 30px;
    opacity: 0.5;
}

.cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.cta-text h2 {
    color: var(--dark);
    font-family: 'Inter', sans-serif;
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 900;
    letter-spacing: -1px;
    line-height: 1.1;
    margin: 12px 0;
}

.cta-text .text-gold {
    color: var(--white);
    -webkit-text-fill-color: var(--white);
}

.cta-text p {
    color: rgba(0, 0, 0, 0.7);
    font-size: 16px;
}

.cta-banner .section-tag {
    background: rgba(0, 0, 0, 0.1);
    color: var(--dark);
}

.cta-banner .btn-primary {
    background: var(--dark);
    color: var(--white);
}

.cta-banner .btn-primary:hover {
    background: var(--white);
    color: var(--dark);
}

/* ==========================================
   TESTIMONIALS
   ========================================== */
.testimonials {
    padding: 100px 0;
    background: var(--light);
}

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

.testimonial-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    position: relative;
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.quote-icon {
    color: var(--gold);
    font-size: 32px;
    margin-bottom: 16px;
    opacity: 0.5;
}

.testimonial-text {
    color: var(--dark);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    font-weight: 800;
    font-size: 16px;
}

.testimonial-author h4 {
    font-size: 16px;
    color: var(--dark);
    margin-bottom: 2px;
}

.testimonial-author span {
    font-size: 13px;
    color: var(--gray);
}

.stars {
    color: var(--gold);
    font-size: 16px;
    letter-spacing: 4px;
}

/* ==========================================
   CONTACT
   ========================================== */
.contact-section {
    padding: 100px 0;
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

@media (max-width: 968px) {
    .contact-grid { grid-template-columns: 1fr; gap: 40px; }
}

.contact-items {
    margin-top: 30px;
}

.contact-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 16px 0;
    border-bottom: 1px solid #eee;
}

.contact-item:last-child { border-bottom: none; }

.contact-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: rgba(212, 160, 23, 0.1);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.contact-item h4 {
    font-size: 14px;
    color: var(--dark);
    margin-bottom: 4px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.contact-item p {
    color: var(--gray);
    font-size: 15px;
    line-height: 1.6;
}

.contact-form {
    background: var(--light);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
}

.contact-form h3 {
    font-family: 'Inter', sans-serif;
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -0.5px;
    margin-bottom: 24px;
    color: var(--dark);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

@media (max-width: 568px) {
    .form-row { grid-template-columns: 1fr; }
    .contact-form { padding: 24px; }
}

.form-group {
    position: relative;
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px 16px 6px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    background: var(--white);
    font-family: inherit;
    font-size: 14px;
    color: var(--dark);
    transition: var(--transition);
    outline: none;
    resize: vertical;
}

.form-group select {
    padding: 14px 16px;
    cursor: pointer;
}

.form-group textarea {
    padding-top: 18px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 4px rgba(212, 160, 23, 0.1);
}

.form-group label {
    position: absolute;
    top: 16px;
    left: 16px;
    color: var(--gray);
    font-size: 14px;
    pointer-events: none;
    transition: var(--transition);
    background: transparent;
}

.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group input:valid + label,
.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label {
    top: 2px;
    font-size: 11px;
    color: var(--gold);
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    placeholder-shown: ' ';
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    opacity: 0;
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 80px 0 0;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-gold);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 60px;
}

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

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

.footer-col p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    line-height: 1.7;
    margin: 16px 0;
}

.footer-logo .logo-text h1,
.footer-logo .logo-text span {
    color: var(--white);
}

.footer-logo .logo-text span {
    color: var(--gold);
}

.social-links {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.social-links a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition);
    font-size: 14px;
}

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

.footer-col h4 {
    font-size: 16px;
    color: var(--white);
    margin-bottom: 20px;
    font-weight: 700;
    position: relative;
    padding-bottom: 8px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--gold);
}

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

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
}

.footer-col ul a:hover {
    color: var(--gold);
    padding-left: 6px;
}

.footer-contact li {
    display: flex;
    gap: 10px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    line-height: 1.6;
}

.footer-contact i {
    color: var(--gold);
    margin-top: 4px;
    flex-shrink: 0;
}

.footer-bottom {
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
}

.footer-bottom i {
    color: #ff4757;
    margin: 0 4px;
}

/* ==========================================
   FLOATING ELEMENTS
   ========================================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    z-index: 999;
    animation: pulse 2s infinite;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

@keyframes pulse {
    0% { box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4), 0 0 0 20px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0); }
}

.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--dark);
    color: var(--white);
    border: 2px solid var(--gold);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 998;
    font-size: 16px;
}

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

.back-to-top:hover {
    background: var(--gold);
    color: var(--dark);
    transform: translateY(-3px);
}

/* ==========================================
   REVEAL ANIMATIONS
   ========================================== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.delay-1 { transition-delay: 0.1s; }
.reveal.delay-2 { transition-delay: 0.2s; }
.reveal.delay-3 { transition-delay: 0.3s; }

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================
   PAGE HEADER (for inner pages)
   ========================================== */
.page-header {
    padding: 100px 0 80px;
    background: var(--gradient-dark);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(212, 160, 23, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(212, 160, 23, 0.1) 0%, transparent 50%);
}

.page-header h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(56px, 8vw, 96px);
    font-weight: 400;
    letter-spacing: 3px;
    line-height: 1;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 10px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    position: relative;
    z-index: 1;
}

.breadcrumb a {
    color: var(--gold);
    text-decoration: none;
}

.breadcrumb a:hover {
    color: var(--white);
}

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 768px) {
    .about-preview,
    .services,
    .why-us,
    .testimonials,
    .contact-section {
        padding: 60px 0;
    }

    .about-visual {
        height: 400px;
    }

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

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