/* ========================================
   TATTOO STUDIO - MAIN STYLESHEET
   Modern, Fast, SEO-friendly, Mobile-first
   ======================================== */

:root {
    --primary: #c8a45a;
    --primary-light: #e8d48b;
    --primary-dark: #a07d3a;
    --bg-dark: #0a0a0a;
    --bg-card: #111111;
    --bg-card-hover: #1a1a1a;
    --bg-section: #0d0d0d;
    --text-white: #ffffff;
    --text-light: #e0e0e0;
    --text-muted: #888888;
    --text-dark: #666666;
    --border: #222222;
    --border-light: #333333;
    --success: #4caf50;
    --danger: #f44336;
    --warning: #ff9800;
    --radius: 12px;
    --radius-sm: 8px;
    --radius-lg: 20px;
    --shadow: 0 4px 20px rgba(0,0,0,.3);
    --shadow-lg: 0 10px 40px rgba(0,0,0,.5);
    --transition: all .3s ease;
    --font-body: 'Inter', system-ui, -apple-system, sans-serif;
    --font-heading: 'Playfair Display', Georgia, serif;
    --container: 1200px;
    --nav-height: 80px;
}

/* Reset */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: var(--font-body);
    background: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
a { color: var(--primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--primary-light); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
h1,h2,h3,h4,h5,h6 { font-family: var(--font-heading); color: var(--text-white); line-height: 1.2; }

/* Container */
.container { max-width: var(--container); margin: 0 auto; padding: 0 20px; width: 100%; }

/* Buttons */
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 12px 28px; border: none; border-radius: var(--radius-sm);
    font-family: var(--font-body); font-weight: 600; font-size: 14px;
    cursor: pointer; transition: var(--transition);
    text-transform: uppercase; letter-spacing: 1px; text-decoration: none;
    white-space: nowrap;
}
.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #000;
}
.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(200,164,90,.3);
}
.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}
.btn-outline:hover {
    background: var(--primary);
    color: #000;
}
.btn-ghost {
    background: transparent;
    color: var(--text-muted);
    border: 1px solid var(--border-light);
}
.btn-ghost:hover { color: var(--primary); border-color: var(--primary); }
.btn-sm { padding: 8px 18px; font-size: 13px; }
.btn-lg { padding: 16px 36px; font-size: 16px; }

/* ========== NAVBAR ========== */
.navbar {
    position: absolute; top: 0; left: 0; right: 0; z-index: 1000;
    background: rgba(10,10,10,.95);
    border-bottom: 1px solid rgba(255,255,255,.05);
    height: var(--nav-height);
    transition: var(--transition);
}
.navbar .container {
    display: flex; align-items: center; justify-content: space-between;
    height: 100%;
}
.nav-logo { display: flex; align-items: center; gap: 10px; }
.logo-text {
    font-family: var(--font-heading);
    font-size: 22px; font-weight: 700;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text; color: transparent;
}
.nav-menu {
    display: flex; gap: 6px; align-items: center;
}
.nav-link {
    padding: 8px 16px; color: var(--text-light); font-size: 13px;
    font-weight: 500; text-transform: uppercase; letter-spacing: .5px;
    border-radius: var(--radius-sm); transition: var(--transition);
    position: relative;
}
.nav-link:hover, .nav-link.active {
    color: var(--primary);
}
.nav-link.active::after {
    content: ''; position: absolute; bottom: 0; left: 50%;
    transform: translateX(-50%); width: 20px; height: 2px;
    background: var(--primary); border-radius: 1px;
}
.nav-actions { display: flex; align-items: center; gap: 12px; }
.lang-switch {
    display: flex; align-items: center; gap: 6px;
    padding: 6px 12px; border-radius: var(--radius-sm);
    background: rgba(255,255,255,.05); color: var(--text-light);
    font-size: 13px; font-weight: 500;
    border: 1px solid var(--border);
}
.lang-switch:hover { border-color: var(--primary); color: var(--primary); }
.lang-flag { font-size: 18px; }
.lang-name { font-size: 12px; }
.nav-cta { font-size: 12px; padding: 8px 16px; }

/* Mobile Toggle */
.nav-toggle {
    display: none; flex-direction: column; gap: 5px;
    background: none; border: none; cursor: pointer; padding: 5px;
}
.nav-toggle span {
    width: 24px; height: 2px; background: var(--text-white);
    transition: var(--transition); border-radius: 1px;
}
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ========== HERO ========== */
.hero {
    min-height: 100vh;
    display: flex; align-items: center;
    position: relative;
    background: var(--bg-dark);
    overflow: hidden;
    padding-top: calc(var(--nav-height) + 20px);
}
.hero-bg {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(10,10,10,.9), rgba(10,10,10,.7)),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="%23c8a45a" stroke-width="0.3" opacity="0.1"/></svg>');
    background-size: cover;
}
.hero-pattern {
    position: absolute; inset: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(200,164,90,.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(200,164,90,.05) 0%, transparent 40%),
        radial-gradient(circle at 60% 80%, rgba(200,164,90,.03) 0%, transparent 50%);
}
.hero .container {
    position: relative; z-index: 2;
    display: flex; align-items: center; gap: 60px;
}
.hero-content { flex: 1; max-width: 600px; }
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 6px 16px; background: rgba(200,164,90,.1);
    border: 1px solid rgba(200,164,90,.2);
    border-radius: 50px; color: var(--primary);
    font-size: 13px; font-weight: 500; margin-bottom: 20px;
}
.hero-badge i { font-size: 10px; }
.hero h1 {
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 700; line-height: 1.1;
    margin-bottom: 20px;
}
.hero h1 span {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text; color: transparent;
}
.hero-desc {
    font-size: 18px; color: var(--text-muted);
    margin-bottom: 30px; max-width: 500px;
}
.hero-buttons { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-stats {
    display: flex; gap: 30px; margin-top: 40px;
    padding-top: 30px; border-top: 1px solid var(--border);
}
.hero-stat h2 {
    font-size: 32px; font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text; color: transparent;
    font-family: var(--font-heading); margin: 0;
}
.hero-stat p { font-size: 13px; color: var(--text-muted); margin-top: 4px; }
.hero-visual {
    flex: 1; display: flex; justify-content: center; position: relative;
}
.hero-image-wrapper {
    width: 450px; height: 550px;
    border-radius: var(--radius-lg);
    overflow: hidden; position: relative;
    border: 2px solid rgba(200,164,90,.2);
}
.hero-image-wrapper img {
    width: 100%; height: 100%; object-fit: cover;
}
.hero-float {
    position: absolute; padding: 10px 14px;
    background: rgba(17,17,17,.92);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    display: flex; align-items: center; gap: 8px;
    max-width: 240px; z-index: 2;
    white-space: nowrap; overflow: hidden;
}
.hero-float.top-right {
    top: 20px; right: -10px;
}
.hero-float.bottom-left {
    bottom: 40px; left: -10px;
}
.hero-float i { color: var(--primary); font-size: 16px; flex-shrink: 0; }
.hero-float span { font-size: 11px; color: var(--text-light); font-weight: 500; line-height: 1.3; text-overflow: ellipsis; overflow: hidden; }

/* ========== SECTIONS ========== */
.section {
    padding: 100px 0;
    position: relative;
}
.section-alt { background: var(--bg-section); }
.section-title {
    text-align: center; margin-bottom: 60px;
}
.section-title h2 {
    font-size: clamp(28px, 4vw, 42px);
    margin-bottom: 15px;
}
.section-title h2 span {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text; color: transparent;
}
.section-title p {
    color: var(--text-muted); font-size: 16px; max-width: 600px; margin: 0 auto;
}
.section-line {
    width: 60px; height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    margin: 15px auto 0; border-radius: 2px;
}

/* ========== SERVICES ========== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 30px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    transform: scaleX(0);
    transition: transform .3s ease;
}
.service-card:hover {
    transform: translateY(-5px);
    border-color: rgba(200,164,90,.3);
    box-shadow: 0 10px 30px rgba(0,0,0,.3);
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
    width: 60px; height: 60px;
    background: rgba(200,164,90,.1);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px;
    color: var(--primary); font-size: 22px;
    transition: var(--transition);
}
.service-card:hover .service-icon {
    background: var(--primary);
    color: #000;
    transform: scale(1.1);
}
.service-card h3 {
    font-family: var(--font-body);
    font-size: 16px; font-weight: 700;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: .5px;
}
.service-card p {
    font-size: 14px; color: var(--text-muted);
    line-height: 1.7;
}

/* ========== CATEGORIES ========== */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.category-card {
    position: relative;
    height: 280px;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    border: 1px solid var(--border);
}
.category-card img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}
.category-card:hover img { transform: scale(1.1); }
.category-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.8) 0%, rgba(0,0,0,.2) 100%);
    display: flex; flex-direction: column;
    justify-content: flex-end; padding: 24px;
    transition: var(--transition);
}
.category-card:hover .category-overlay {
    background: linear-gradient(to top, rgba(200,164,90,.3) 0%, rgba(0,0,0,.3) 100%);
}
.category-overlay h3 {
    font-family: var(--font-body);
    font-size: 18px; font-weight: 700;
    text-transform: uppercase; margin-bottom: 8px;
}
.category-overlay a {
    font-size: 13px; color: var(--primary);
    font-weight: 500; display: inline-flex; align-items: center; gap: 5px;
}

/* ========== BRANCHES ========== */
.branches-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}
.branch-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
}
.branch-card:hover {
    transform: translateY(-5px);
    border-color: rgba(200,164,90,.3);
    box-shadow: var(--shadow-lg);
}
.branch-image {
    height: 200px; overflow: hidden;
    background: linear-gradient(135deg, #1a1a1a, #222);
    display: flex; align-items: center; justify-content: center;
}
.branch-image i { font-size: 48px; color: var(--primary); opacity: .3; }
.branch-image img { width: 100%; height: 100%; object-fit: cover; }
.branch-info { padding: 24px; }
.branch-info h3 {
    font-family: var(--font-body);
    font-size: 18px; font-weight: 700; margin-bottom: 12px;
}
.branch-info p {
    font-size: 14px; color: var(--text-muted); margin-bottom: 8px;
    display: flex; align-items: flex-start; gap: 8px;
}
.branch-info p i { color: var(--primary); margin-top: 3px; font-size: 13px; }

/* Branch Map */
#branches-map { z-index: 1; }
.branch-marker { background: none !important; border: none !important; }
.leaflet-popup-content-wrapper {
    background: #1a1a1a !important;
    color: #fff !important;
    border: 1px solid #333 !important;
    border-radius: 10px !important;
    box-shadow: 0 8px 24px rgba(0,0,0,.5) !important;
}
.leaflet-popup-tip { background: #1a1a1a !important; }
.leaflet-popup-close-button { color: #888 !important; }
.leaflet-popup-close-button:hover { color: #c8a45a !important; }
.leaflet-control-zoom a {
    background: #1a1a1a !important;
    color: #c8a45a !important;
    border-color: #333 !important;
}
.leaflet-control-zoom a:hover { background: #222 !important; }
.leaflet-control-attribution { background: rgba(0,0,0,.6) !important; color: #666 !important; font-size: 10px !important; }
.leaflet-control-attribution a { color: #888 !important; }

/* ========== ARTISTS ========== */
.artists-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.artist-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    text-align: center;
    transition: var(--transition);
}
.artist-card:hover {
    transform: translateY(-5px);
    border-color: rgba(200,164,90,.3);
}
.artist-image {
    height: 300px; overflow: hidden;
    background: linear-gradient(135deg, #1a1a1a, #222);
    display: flex; align-items: center; justify-content: center;
}
.artist-image i { font-size: 64px; color: var(--primary); opacity: .2; }
.artist-image img { width: 100%; height: 100%; object-fit: cover; }
.artist-info { padding: 24px; }
.artist-info h3 {
    font-family: var(--font-body);
    font-size: 18px; font-weight: 700; margin-bottom: 4px;
}
.artist-info .artist-title {
    font-size: 13px; color: var(--primary); font-weight: 500;
    margin-bottom: 12px;
}
.artist-info p {
    font-size: 14px; color: var(--text-muted); line-height: 1.7;
}

/* ========== STATS ========== */
.stats-section {
    background: linear-gradient(135deg, rgba(200,164,90,.08), rgba(200,164,90,.02));
    border-top: 1px solid rgba(200,164,90,.1);
    border-bottom: 1px solid rgba(200,164,90,.1);
    padding: 60px 0;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}
.stat-item h2 {
    font-size: 42px; font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text; color: transparent;
    margin-bottom: 8px;
}
.stat-item p {
    font-size: 14px; color: var(--text-muted);
    text-transform: uppercase; letter-spacing: 1px;
}

/* ========== CTA SECTION ========== */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute; inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="15" fill="none" stroke="black" stroke-width="0.3" opacity="0.1"/><circle cx="80" cy="80" r="20" fill="none" stroke="black" stroke-width="0.3" opacity="0.1"/></svg>');
}
.cta-section h2 {
    font-size: clamp(24px, 3vw, 36px);
    color: #000; margin-bottom: 20px;
    position: relative;
}
.cta-section .btn {
    background: #000; color: var(--primary);
    position: relative;
}
.cta-section .btn:hover {
    background: #111; transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0,0,0,.3);
}

/* ========== GALLERY ========== */
.gallery-filters {
    display: flex; gap: 10px; justify-content: center;
    margin-bottom: 40px; flex-wrap: wrap;
}
.filter-btn {
    padding: 8px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 50px;
    color: var(--text-muted);
    font-size: 14px; font-weight: 500;
    cursor: pointer; transition: var(--transition);
}
.filter-btn:hover, .filter-btn.active {
    background: var(--primary);
    color: #000;
    border-color: var(--primary);
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.gallery-item {
    position: relative;
    aspect-ratio: 1;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    border: 1px solid var(--border);
}
.gallery-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}
.gallery-item:hover img { transform: scale(1.1); }
.gallery-item-overlay {
    position: absolute; inset: 0;
    background: rgba(0,0,0,.6);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; transition: var(--transition);
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-overlay i {
    color: var(--primary); font-size: 28px;
}

/* ========== PIERCING PAGE ========== */
.page-hero {
    padding: 120px 0 80px;
    text-align: center;
    background: linear-gradient(to bottom, var(--bg-dark), var(--bg-section));
    position: relative;
}
.page-hero::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(circle at center, rgba(200,164,90,.05) 0%, transparent 70%);
}
.page-hero h1 {
    font-size: clamp(32px, 4vw, 52px);
    margin-bottom: 15px;
    position: relative;
}
.page-hero h1 span {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text; color: transparent;
}
.page-hero p {
    font-size: 18px; color: var(--text-muted);
    max-width: 700px; margin: 0 auto;
    position: relative;
}

.piercing-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.piercing-feature {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 30px;
    text-align: center;
    transition: var(--transition);
}
.piercing-feature:hover {
    border-color: rgba(200,164,90,.3);
    transform: translateY(-3px);
}
.piercing-feature .feature-icon {
    width: 70px; height: 70px;
    background: rgba(200,164,90,.1);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px; color: var(--primary);
}
.piercing-feature h3 {
    font-family: var(--font-body);
    font-size: 16px; font-weight: 700;
    margin-bottom: 12px;
}
.piercing-feature p {
    font-size: 14px; color: var(--text-muted);
}

/* Healing Steps */
.healing-steps {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}
.healing-step {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 30px;
    display: flex; gap: 20px;
    transition: var(--transition);
}
.healing-step:hover {
    border-color: rgba(200,164,90,.3);
}
.step-number {
    width: 50px; height: 50px;
    background: rgba(200,164,90,.1);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 20px; font-weight: 800;
    color: var(--primary);
    flex-shrink: 0;
}
.step-content h4 {
    font-family: var(--font-body);
    font-size: 15px; font-weight: 700;
    margin-bottom: 8px;
}
.step-content p {
    font-size: 14px; color: var(--text-muted);
    line-height: 1.7;
}

/* ========== ABOUT PAGE ========== */
.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.about-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 30px;
    text-align: center;
    transition: var(--transition);
}
.about-card:hover {
    border-color: rgba(200,164,90,.3);
    transform: translateY(-3px);
}
.about-card .about-icon {
    width: 60px; height: 60px;
    background: rgba(200,164,90,.1);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px; color: var(--primary);
}
.about-card h3 {
    font-family: var(--font-body);
    font-size: 15px; font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
}
.about-card p {
    font-size: 14px; color: var(--text-muted);
    line-height: 1.7;
}

/* About Content */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
}
.about-text h2 { margin-bottom: 20px; }
.about-text p {
    font-size: 16px; color: var(--text-muted);
    line-height: 1.8; margin-bottom: 20px;
}
.about-image {
    border-radius: var(--radius);
    overflow: hidden;
    height: 400px;
    background: linear-gradient(135deg, #1a1a1a, #222);
    display: flex; align-items: center; justify-content: center;
    border: 1px solid var(--border);
}
.about-image i { font-size: 80px; color: var(--primary); opacity: .2; }
.about-image img { width: 100%; height: 100%; object-fit: cover; }

/* ========== CONTACT ========== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}
.contact-form {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 30px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
    display: block; margin-bottom: 6px;
    color: var(--text-light); font-size: 14px; font-weight: 500;
}
.form-control {
    width: 100%; padding: 12px 16px;
    background: var(--bg-dark);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text-white);
    font-family: var(--font-body); font-size: 15px;
    outline: none; transition: var(--transition);
}
.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(200,164,90,.1);
}
textarea.form-control { min-height: 120px; resize: vertical; }
.contact-info-cards {
    display: flex; flex-direction: column; gap: 20px;
}
.contact-info-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    display: flex; align-items: center; gap: 16px;
    transition: var(--transition);
}
.contact-info-card:hover { border-color: rgba(200,164,90,.3); }
.contact-info-card .info-icon {
    width: 50px; height: 50px;
    background: rgba(200,164,90,.1);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--primary); font-size: 20px;
    flex-shrink: 0;
}
.contact-info-card h4 {
    font-family: var(--font-body);
    font-size: 14px; font-weight: 600;
    margin-bottom: 4px;
}
.contact-info-card p {
    font-size: 14px; color: var(--text-muted);
}

/* ========== COOKIE BANNER ========== */
.cookie-banner {
    position: fixed; bottom: 0; left: 0; right: 0;
    background: rgba(17,17,17,.95);
    backdrop-filter: blur(20px);
    border-top: 1px solid var(--border);
    padding: 20px;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform .5s ease;
}
.cookie-banner.show { transform: translateY(0); }
.cookie-content {
    max-width: var(--container);
    margin: 0 auto;
    display: flex; align-items: center;
    gap: 20px; flex-wrap: wrap;
}
.cookie-text {
    flex: 1; display: flex; align-items: center; gap: 12px;
}
.cookie-icon { color: var(--primary); font-size: 24px; }
.cookie-text p { font-size: 14px; color: var(--text-muted); }
.cookie-actions { display: flex; gap: 8px; }
.cookie-settings {
    max-width: var(--container); margin: 15px auto 0;
    padding-top: 15px; border-top: 1px solid var(--border);
}
.cookie-option {
    margin-bottom: 8px;
}
.cookie-option label {
    display: flex; align-items: center; gap: 8px;
    color: var(--text-muted); font-size: 14px; cursor: pointer;
}
.cookie-option input[type="checkbox"] { accent-color: var(--primary); }

/* ========== WHATSAPP & PHONE FLOAT ========== */
.whatsapp-float {
    position: fixed; bottom: 90px; right: 25px;
    width: 56px; height: 56px;
    background: #25d366;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    z-index: 999;
    box-shadow: 0 4px 15px rgba(37,211,102,.4);
    transition: var(--transition);
    animation: pulse 2s infinite;
}
.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37,211,102,.5);
}
.whatsapp-float i { color: #fff; font-size: 28px; }

.phone-float {
    position: fixed; bottom: 25px; right: 25px;
    width: 56px; height: 56px;
    background: var(--primary);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    z-index: 999;
    box-shadow: 0 4px 15px rgba(200,164,90,.4);
    transition: var(--transition);
}
.phone-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(200,164,90,.5);
}
.phone-float i { color: #000; font-size: 22px; }

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.08); }
    100% { transform: scale(1); }
}

/* ========== FOOTER ========== */
.footer {
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    padding: 60px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 40px;
}
.footer-logo {
    font-family: var(--font-heading);
    font-size: 24px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text; color: transparent;
    margin-bottom: 12px;
}
.footer-desc {
    font-size: 14px; color: var(--text-muted);
    line-height: 1.7; margin-bottom: 20px;
}
.footer-social {
    display: flex; gap: 10px;
}
.footer-social a {
    width: 40px; height: 40px;
    background: rgba(255,255,255,.05);
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--text-muted);
    transition: var(--transition);
}
.footer-social a:hover {
    background: var(--primary);
    color: #000;
    border-color: var(--primary);
}
.footer-col h4 {
    font-family: var(--font-body);
    font-size: 14px; font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    color: var(--primary);
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
    color: var(--text-muted); font-size: 14px;
    transition: var(--transition);
}
.footer-col ul li a:hover { color: var(--primary); padding-left: 5px; }
.footer-contact li {
    display: flex; align-items: flex-start; gap: 10px;
    color: var(--text-muted); font-size: 14px;
}
.footer-contact li i { color: var(--primary); margin-top: 3px; }
.footer-contact li a { color: var(--text-muted); }
.footer-contact li a:hover { color: var(--primary); }
.footer-bottom {
    border-top: 1px solid var(--border);
    padding: 20px 0;
    display: flex; justify-content: space-between;
    align-items: center; flex-wrap: wrap; gap: 10px;
}
.footer-bottom p { font-size: 13px; color: var(--text-muted); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 13px; color: var(--text-muted); }
.footer-bottom-links a:hover { color: var(--primary); }

/* ========== 404 ========== */
.page-404 {
    min-height: 60vh;
    display: flex; align-items: center; justify-content: center;
    text-align: center; padding-top: 100px;
}
.page-404 h1 {
    font-size: 100px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text; color: transparent;
}
.page-404 h2 { margin-bottom: 15px; }
.page-404 p { color: var(--text-muted); margin-bottom: 30px; }

/* ========== LIGHTBOX ========== */
.lightbox {
    position: fixed; inset: 0;
    background: rgba(0,0,0,.95);
    z-index: 10000;
    display: none; align-items: center; justify-content: center;
    padding: 40px;
}
.lightbox.active { display: flex; }
.lightbox img {
    max-width: 90%; max-height: 85vh;
    border-radius: var(--radius);
    object-fit: contain;
}
.lightbox-close {
    position: absolute; top: 20px; right: 30px;
    background: none; border: none; color: #fff;
    font-size: 30px; cursor: pointer;
    width: 50px; height: 50px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}
.lightbox-close:hover { background: rgba(255,255,255,.1); }

/* ========== ALERT MESSAGE ========== */
.alert {
    padding: 14px 20px;
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
    font-size: 14px;
}
.alert-success {
    background: rgba(76,175,80,.1);
    border: 1px solid rgba(76,175,80,.3);
    color: #66bb6a;
}
.alert-error {
    background: rgba(244,67,54,.1);
    border: 1px solid rgba(244,67,54,.3);
    color: #ff6b6b;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .categories-grid { grid-template-columns: repeat(2, 1fr); }
    .artists-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid { grid-template-columns: repeat(3, 1fr); }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .hero .container { flex-direction: column; text-align: center; }
    .hero-content { max-width: 100%; }
    .hero-desc { margin: 0 auto 30px; }
    .hero-buttons { justify-content: center; }
    .hero-stats { justify-content: center; }
    .hero-visual { display: none; }
    .about-content { grid-template-columns: 1fr; }
    .healing-steps { grid-template-columns: 1fr; }
    .piercing-features { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    :root { --nav-height: 65px; }

    .nav-menu {
        position: fixed; top: var(--nav-height); left: 0; right: 0;
        background: rgba(10,10,10,.98);
        backdrop-filter: blur(20px);
        flex-direction: column; padding: 20px;
        transform: translateY(-150%);
        transition: transform .4s ease;
        border-bottom: 1px solid var(--border);
        gap: 0;
    }
    .nav-menu.active { transform: translateY(0); }
    .nav-link {
        padding: 14px 20px; width: 100%;
        border-bottom: 1px solid rgba(255,255,255,.03);
    }
    .nav-link.active::after { display: none; }
    .nav-toggle { display: flex; }
    .nav-cta { display: none; }
    .lang-name { display: none; }

    .services-grid { grid-template-columns: 1fr; }
    .categories-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .artists-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .about-grid { grid-template-columns: 1fr; }
    .piercing-features { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }

    .section { padding: 60px 0; }
    .section-title { margin-bottom: 40px; }

    .hero { min-height: 90vh; }
    .hero h1 { font-size: 32px; }
    .hero-desc { font-size: 16px; }
    .hero-stats { gap: 20px; flex-wrap: wrap; }

    .cookie-content { flex-direction: column; text-align: center; }
    .cookie-text { flex-direction: column; }
    .cookie-actions { width: 100%; justify-content: center; }

    .footer-bottom { flex-direction: column; text-align: center; }
    #branches-map { height: 320px !important; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 28px; }
    .hero-buttons { flex-direction: column; }
    .hero-buttons .btn { width: 100%; justify-content: center; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
    .stat-item h2 { font-size: 32px; }
}

/* ========== ANIMATIONS ========== */
.fade-in {
    opacity: 0; transform: translateY(30px);
    transition: opacity .6s ease, transform .6s ease;
}
.fade-in.visible {
    opacity: 1; transform: translateY(0);
}
.fade-in-left {
    opacity: 0; transform: translateX(-30px);
    transition: opacity .6s ease, transform .6s ease;
}
.fade-in-left.visible {
    opacity: 1; transform: translateX(0);
}
.fade-in-right {
    opacity: 0; transform: translateX(30px);
    transition: opacity .6s ease, transform .6s ease;
}
.fade-in-right.visible {
    opacity: 1; transform: translateX(0);
}
.scale-in {
    opacity: 0; transform: scale(.9);
    transition: opacity .5s ease, transform .5s ease;
}
.scale-in.visible {
    opacity: 1; transform: scale(1);
}

/* ========== LIGHTHOUSE 100 OPTIMIZATIONS ========== */
/* Focus visible for keyboard accessibility */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

/* Reduced motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    .fade-in, .fade-in-left, .fade-in-right, .scale-in {
        opacity: 1 !important;
        transform: none !important;
    }
}

/* Prevent CLS - aspect ratio for images */
img { height: auto; max-width: 100%; }
.gallery-item img { aspect-ratio: 1/1; object-fit: cover; width: 100%; height: 100%; }
.category-card img { aspect-ratio: 400/280; object-fit: cover; width: 100%; }
.branch-image img { aspect-ratio: 2/1; object-fit: cover; width: 100%; }
.hero-image-wrapper img { width: 100%; height: 100%; object-fit: cover; }

/* Contrast fixes for accessibility */
.alert { font-size: 15px; }
.form-control::placeholder { color: #999; }
.cookie-banner { font-size: 14px; }
.nav-link { font-size: 13px; font-weight: 600; }
.footer { color: var(--text-muted); }
.footer-bottom p, .footer-bottom-links a { color: var(--text-muted); }

/* Touch target size for mobile accessibility */
@media (max-width: 768px) {
    .nav-link { min-height: 44px; display: flex; align-items: center; }
    .btn { min-height: 44px; }
    .filter-btn { min-height: 44px; }
    .footer-social a { min-width: 44px; min-height: 44px; display: flex; align-items: center; justify-content: center; }
}
