/* ========================================
   Creative Arts Dental - Combined Stylesheet
   Generated: Security hardening pass
   ======================================== */

/* Cloudflare Turnstile overlay fix */
   <style>
body { -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; }
input, textarea { -webkit-user-select: text; -moz-user-select: text; user-select: text; }
img { pointer-events: none; -webkit-user-drag: none; user-drag: none; }


/* ========================================
   Main site styles (extracted from index.html)
   ======================================== */
    <style>
        /* ===== RESET & BASE ===== */
        *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
        
        :root {
            --bg-primary: #000000;
            --bg-secondary: #000000;
            --bg-card: #1a1a1a;
            --bg-card-hover: #222222;
            --text-primary: #ffffff;
            --text-secondary: #b0b0b0;
            --text-muted: #707070;
            --accent: #c9a96e;
            --accent-light: #dfc08a;
            --accent-dark: #a8884d;
            --border: #2a2a2a;
            --gradient: linear-gradient(135deg, #c9a96e 0%, #e8d5a8 100%);
        }

        html { scroll-behavior: smooth; }
        
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
            background: var(--bg-primary);
            color: var(--text-primary);
            line-height: 1.6;
            overflow-x: hidden;
        }

        a { color: inherit; text-decoration: none; }
        img { max-width: 100%; display: block; }
        button { cursor: pointer; border: none; background: none; color: inherit; font-family: inherit; }

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

        /* ===== NAVIGATION ===== */
        .nav {
            position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
            background: #000000;
            backdrop-filter: blur(20px);
            border-bottom: 0.25px solid rgba(201, 169, 110, 0.15);
            transition: all 0.3s ease;
        }
        .nav-inner {
            display: flex; align-items: center; justify-content: space-between;
            padding: 16px 24px; max-width: 1200px; margin: 0 auto;
        }
        /* Mobile two-row nav wrapper — hidden on desktop */
        .nav-mobile-row {
            display: none !important;
        }
        .nav-top {
            display: flex; align-items: center; justify-content: space-between;
            width: 100%;
        }
        .nav-bottom {
            display: flex; align-items: center; justify-content: space-between;
            width: 100%;
            margin-top: 8px;
        }
        .nav-logo {
            font-size: 1.5rem; font-weight: 700; letter-spacing: 2px;
            background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
        }
        .nav-links { 
            display: flex; 
            gap: 20px; 
            list-style: none; 
        }
         /* Mobile overlay sidebar — hidden on desktop */
        .nav-links-mobile {
            position: fixed;
            top: 0;
            right: -100%;
            width: 280px;
            height: 100vh;
            background: var(--bg-secondary);
            flex-direction: column;
            padding: 80px 30px 30px;
            gap: 0;
            transition: right 0.3s ease;
            border-left: 1px solid var(--border);
            z-index: 1002;
            overflow-y: auto;
            list-style: none;
            display: none;
        }
        .nav-links-mobile.open {
            display: flex !important;
            right: 0;
        }
        .nav-links a {
            font-size: 0.9rem; font-weight: 500; letter-spacing: 1px;
            text-transform: uppercase; color: var(--text-secondary);
            transition: color 0.3s; position: relative;
        }
        .nav-links a::after {
            content: ''; position: absolute; bottom: -4px; left: 0;
            width: 0; height: 2px; background: var(--accent);
            transition: width 0.3s;
        }
        .nav-links a:hover { color: var(--accent); }
        .nav-links a:hover::after { width: 100%; }
        .nav-links a.active { color: var(--accent); }
        .nav-links a.active::after { width: 100%; }

        .nav-right {
            display: flex; align-items: center; gap: 16px;
        }
        .nav-social { display: flex; gap: 12px; }
        .nav-social a {
            width: 36px; height: 36px; border-radius: 50%;
            background: var(--bg-card); border: 1px solid var(--border);
            display: flex; align-items: center; justify-content: center;
            transition: 0.3s; font-size: 0.8rem;
        }
        .nav-social a:hover { background: var(--accent); color: #0a0a0a; border-color: var(--accent); }

        /* ===== HAMBURGER MENU ===== */
         .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            padding: 8px;
            z-index: 1001;
        }
        .hamburger span {
            width: 24px;
            height: 2px;
            background: var(--text-primary);
            transition: 0.3s;
            border-radius: 2px;
        }
        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }
        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }
        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -5px);
        }

        /* ===== HERO SLIDER ===== */
        .hero {
            position: relative; height: 80vh; min-height: 480px;
            display: flex; align-items: center; overflow: hidden;
            padding-top: 80px;
            /* Prevent height jitter when slides change */
            contain: strict;
        }
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 150px;
            background: linear-gradient(to bottom, #000000, transparent);
            z-index: 5;
            pointer-events: none;
        }
        .hero-slide {
            position: absolute; inset: 0; opacity: 0;
            transition: opacity 1s ease;
        }
        .hero-slide.active { opacity: 1; }
        .hero-slide-bg {
            position: absolute; inset: 0;
            background-size: cover; background-position: center;
        }
         .hero-slide:nth-child(1) .hero-slide-bg {
            background: #000000;
        }
        .hero-slide:nth-child(2) .hero-slide-bg {
            background: #000000;
        }
        .hero-slide:nth-child(3) .hero-slide-bg {
            background: #000000;
        }
        .hero-content {
            position: absolute; z-index: 6; max-width: 700px;
            margin: 0 auto; text-align: center;
            display: flex; flex-direction: column; align-items: center;
            padding-top: 80px;
            top: 0; left: 0; right: 0; bottom: 0;
            justify-content: center;
        }
        .hero-logo {
            width: min(310px, 40vw); height: auto; margin-bottom: 20px;
        }
        .hero-label {
            font-size: 0.85rem; letter-spacing: 3px; text-transform: uppercase;
            color: var(--accent); margin-bottom: 12px; font-weight: 600;
        }
        .hero-title {
            font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 700;
            line-height: 1.1; margin-bottom: 18px;
        }
        .hero-title span {
            background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
        }
        .hero-desc {
            font-size: 1rem; color: var(--text-secondary);
            margin-bottom: 28px; line-height: 1.6;
        }
        .hero-btn {
            display: inline-block; padding: 16px 40px;
            background: var(--gradient); color: #0a0a0a;
            font-weight: 600; font-size: 0.95rem; letter-spacing: 1px;
            text-transform: uppercase; border-radius: 4px;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .hero-btn:hover {
            transform: translateY(-2px); box-shadow: 0 10px 40px rgba(201, 169, 110, 0.3);
        }

        /* ===== SECTION COMMON ===== */
        .section { padding: 80px 0; }
        .section-label {
            font-size: 0.8rem; letter-spacing: 4px; text-transform: uppercase;
            color: var(--accent); margin-bottom: 12px; font-weight: 600;
        }
        .section-title {
            font-size: clamp(2rem, 4vw, 3rem); font-weight: 700;
            margin-bottom: 16px; line-height: 1.2;
        }
        .section-subtitle {
            font-size: 1rem; color: var(--text-secondary);
            max-width: 600px; margin-bottom: 60px;
        }
        .section-header { text-align: center; margin-bottom: 60px; }
        .section-header .section-subtitle { margin-left: auto; margin-right: auto; }

        /* ===== SERVICES ===== */
        .services {
            scroll-margin-top: 50px; background: var(--bg-secondary); }
        .services-grid {
            display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
            .service-card {
            background: var(--bg-card); border: 1px solid var(--border);
            border-radius: 8px;
            position: relative; overflow: hidden;
            min-height: 300px;
            display: flex;
            align-items: flex-end;
            justify-content: center;
            transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
        }
        .service-card::before {
            content: ''; position: absolute; top: 0; left: 0; right: 0;
            height: 3px; background: var(--gradient); opacity: 0;
            transition: opacity 0.3s; z-index: 5;
        }
        .service-card::after {
            content: ''; position: absolute; inset: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.3) 50%, transparent 100%);
            z-index: 2;
        }
        .service-card:hover {
            transform: translateY(-5px); border-color: var(--accent-dark);
            box-shadow: 0 20px 60px rgba(0,0,0,0.3);
        }
        .service-card:hover::before { opacity: 1; }
        /* Background image pseudo-element — zoomed by default, smooth zoom out on hover */
        .service-card .bg-image {
            position: absolute; inset: 0; z-index: 0;
            background-size: cover; background-position: center; background-repeat: no-repeat;
            transform: scale(1.4);
            transition: transform 0.6s ease;
        }
        .service-card:hover .bg-image {
            transform: scale(1.0);
        }
        .service-icon {
            width: 60px; height: 60px; border-radius: 12px;
            background: rgba(201, 169, 110, 0.1);
            display: flex; align-items: center; justify-content: center;
            margin-bottom: 24px; font-size: 1.5rem;
        }
        .service-card h3 {
            font-size: 1.3rem;
            color: var(--accent);
            text-align: center;
            position: absolute;
            bottom: 20px;
            left: 0;
            right: 0;
            width: 100%;
            z-index: 3;
        }
        .service-card p { color: var(--text-secondary); font-size: 0.95rem; line-height: 1.7; }
        .service-link {
            display: inline-block; margin-top: 20px; color: var(--accent);
            font-weight: 600; font-size: 0.9rem; letter-spacing: 1px;
            text-transform: uppercase; transition: 0.3s;
        }
        .service-link:hover { color: var(--accent-light); }

        /* ===== STATS ===== */
        .stats { background: var(--bg-primary); scroll-margin-top: 50px; }
        .stats-grid {
            display: grid; grid-template-columns: repeat(3, 1fr);
            gap: 40px; text-align: center;
        }
        .stat-item { padding: 40px 20px; }
        .stat-number {
            font-size: 3.5rem; font-weight: 700;
            background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
            margin-bottom: 8px;
        }
        .stat-label { font-size: 1rem; color: var(--text-secondary); }

        /* ===== TEAM ===== */
        .team {
            scroll-margin-top: 50px; background: var(--bg-secondary); }
        .team-carousel { position: relative; overflow: hidden; }
        .team-track {
            display: flex; gap: 30px; transition: transform 0.5s ease;
        }
        .team-card {
            min-width: 280px; background: var(--bg-card);
            border: 1px solid var(--border); border-radius: 8px;
            overflow: hidden; text-align: center; flex-shrink: 0;
        }
        .team-name {
            padding: 20px; font-size: 1.1rem; font-weight: 600;
            letter-spacing: 1px;
        }

         /* ===== PORTFOLIO / LUCRARI ===== */
        .portfolio {
            scroll-margin-top: 50px; background: var(--bg-primary); }
        .portfolio-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
            gap: 8px;
        }
        .portfolio-grid.fixed-container {
            width: 100%;
            max-width: 1200px;
            min-width: 0;
            margin: 0 auto;
            padding: 0;
            grid-template-columns: repeat(12, 1fr);
            grid-template-rows: repeat(6, minmax(0, 1fr));
            gap: 8px;
        }
        .portfolio-grid.fixed-container > * {
            min-width: 0;
        }
        .portfolio-tile {
            position: relative;
            border-radius: 4px;
            overflow: hidden;
            cursor: pointer;
            aspect-ratio: 1/1;
            transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                        box-shadow 0.35s ease;
            box-shadow: 0 2px 8px rgba(0,0,0,0.4);
            background: var(--bg-card);
            border: 1px solid rgba(201, 169, 110, 0.3);
        }
        .portfolio-tile:hover {
            transform: translateY(-6px) scale(1.02);
            box-shadow: 0 12px 32px rgba(0,0,0,0.6);
            border-color: var(--accent);
            z-index: 10;
        }
        .portfolio-tile img {
            width: 100%; height: 100%; object-fit: cover;
            transition: transform 0.5s ease;
            display: block;
        }
        .portfolio-tile:hover img {
            transform: scale(1.05);
        }
        /* Accent tiles (2x2 = 4x size) get a subtle gold border */
        .portfolio-tile.accent {
            box-shadow: 0 0 0 2px rgba(201, 169, 110, 0.4), 0 2px 8px rgba(0,0,0,0.4);
        }
        .portfolio-tile.accent:hover {
            box-shadow: 0 0 0 2px var(--accent), 0 12px 32px rgba(0,0,0,0.6);
        }

        /* ===== LIGHTBOX ===== */
        .lightbox-overlay {
            position: fixed; inset: 0; z-index: 3000;
            background: rgba(0, 0, 0, 0.95);
            display: none; align-items: center; justify-content: center;
            flex-direction: column;
        }
        .lightbox-overlay.active { display: flex; }
        .lightbox-container {
            position: relative;
            width: 100%; height: 100%;
            display: flex; align-items: center; justify-content: center;
        }
        .lightbox-img {
            max-width: 92vw; max-height: 85vh;
            object-fit: contain;
            border-radius: 4px;
            transition: opacity 0.25s ease;
        }
        .lightbox-counter {
            position: absolute; bottom: 24px; left: 50%;
            transform: translateX(-50%);
            font-size: 0.85rem; color: var(--text-muted);
            letter-spacing: 1px;
        }
        .lightbox-close {
            position: absolute; top: 20px; right: 24px;
            width: 44px; height: 44px; border-radius: 50%;
            background: rgba(255,255,255,0.08);
            border: 1px solid rgba(255,255,255,0.15);
            color: #fff; font-size: 1.4rem;
            display: flex; align-items: center; justify-content: center;
            cursor: pointer; transition: 0.3s;
            z-index: 10;
        }
        .lightbox-close:hover { background: var(--accent); color: #0a0a0a; border-color: var(--accent); }
        .lightbox-nav {
            position: absolute; top: 50%; transform: translateY(-50%);
            width: 52px; height: 52px; border-radius: 50%;
            background: rgba(255,255,255,0.06);
            border: 1px solid rgba(255,255,255,0.12);
            color: #fff; font-size: 1.3rem;
            display: flex; align-items: center; justify-content: center;
            cursor: pointer; transition: 0.3s;
            z-index: 10;
        }
        .lightbox-nav:hover { background: var(--accent); color: #0a0a0a; border-color: var(--accent); }
        .lightbox-prev { left: 20px; }
        .lightbox-next { right: 20px; }

        /* ===== TESTIMONIALS ===== */
        .testimonials { background: var(--bg-secondary); scroll-margin-top: 50px; }
        .testimonial-slider { position: relative; max-width: 800px; margin: 0 auto; min-height: 560px; }
        .testimonial-slide {
            display: none; text-align: center; padding: 40px 20px;
        }
        .testimonial-slide.active { display: block; }
        .testimonial-stars { color: var(--accent); font-size: 1.2rem; margin-bottom: 24px; letter-spacing: 4px; }
        .testimonial-text {
            font-size: 1.15rem; font-style: italic; color: var(--text-secondary);
            line-height: 1.8; margin-bottom: 30px;
        }
        .testimonial-author { font-weight: 600; color: var(--text-primary); }
        .testimonial-role { font-size: 0.9rem; color: var(--text-muted); margin-top: 4px; }
        .testimonial-dots {
            display: flex; justify-content: center; gap: 10px; margin-top: 30px;
        }
        .testimonial-dot {
            width: 10px; height: 10px; border-radius: 50%;
            border: 2px solid var(--accent); background: transparent;
            cursor: pointer; transition: 0.3s;
        }
        .testimonial-dot.active { background: var(--accent); }

        /* ===== CONTACT ===== */
        .contact {
            scroll-margin-top: 50px; background: var(--bg-primary); }
        .contact-grid {
            display: grid; grid-template-columns: 1fr 1fr;
            gap: 60px; align-items: center;
        }
        .contact-info-item {
            display: flex; gap: 16px; margin-bottom: 30px;
            align-items: flex-start;
        }
        .contact-icon {
            width: 50px; height: 50px; border-radius: 12px;
            background: rgba(201, 169, 110, 0.1);
            display: flex; align-items: center; justify-content: center;
            flex-shrink: 0; font-size: 1.2rem;
        }
        .contact-info-item h4 { font-size: 1rem; margin-bottom: 4px; }
        .contact-info-item p { color: var(--text-secondary); font-size: 0.95rem; }
        .contact-form-side {
            display: flex; flex-direction: column;
        }
        .contact-bottom-col {
            display: flex;
            flex-direction: column;
            gap: 24px;
            margin-top: 40px;
            text-align: left;
        }
        .contact-bottom-item {
            display: flex; flex-direction: column; align-items: center; gap: 12px;
        }
        .contact-bottom-icon {
            font-size: 2rem;
        }
        .contact-bottom-item strong {
            color: var(--accent); font-size: 1rem;
        }
        .contact-bottom-item p {
            color: var(--text-secondary); font-size: 0.95rem;
            margin: 0;
        }
        /* Contact bottom links hover - golden accent */
        .contact .contact-bottom-item a {
            transition: color 0.3s ease;
        }
        .contact .contact-bottom-item a:hover {
            color: var(--accent) !important;
        }
        .form-inline-info {
            display: flex;
            align-items: center;
            gap: 6px;
            margin-top: 6px;
            font-size: 0.85rem;
            color: var(--text-secondary);
        }
        .copy-btn {
            cursor: pointer;
            opacity: 0.6;
            transition: opacity 0.3s, transform 0.2s, background-color 0.2s;
            display: inline-flex;
            align-items: center;
            padding: 2px;
            border-radius: 3px;
        }
        .copy-btn:hover {
            opacity: 1;
            transform: scale(1.1);
        }
        .copy-btn.copied {
            opacity: 1;
            color: #27ae60;
            animation: copy-pulse 1.5s ease-out forwards;
        }
        .copy-btn.failed {
            opacity: 1;
            color: #e74c3c;
            animation: copy-pulse 1.5s ease-out forwards;
        }
        @keyframes copy-pulse {
            0% { transform: scale(1); }
            20% { transform: scale(1.3); }
            100% { transform: scale(1); }
        }
        .copy-toast {
            position: fixed;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%) translateY(20px);
            background: rgba(0,0,0,0.9);
            color: var(--accent);
            padding: 12px 24px;
            border-radius: 8px;
            border: 1px solid var(--border);
            font-size: 0.9rem;
            z-index: 9999;
            opacity: 0;
            transition: opacity 0.3s, transform 0.3s;
            pointer-events: none;
        }
        .copy-toast.show {
            opacity: 1;
            transform: translateX(-50%) translateY(0);
        }

        .copy-tooltip {
            position: absolute;
            top: -30px;
            left: 50%;
            transform: translateX(-50%);
            background: rgba(0,0,0,0.9);
            color: var(--accent);
            padding: 4px 10px;
            border-radius: 4px;
            font-size: 0.75rem;
            white-space: nowrap;
            z-index: 9999;
            pointer-events: none;
            opacity: 0;
            transition: opacity 0.2s;
        }
        .copy-tooltip.show {
            opacity: 1;
        }
        .contact-form { display: flex; flex-direction: column; gap: 20px; }
        .form-group { display: flex; flex-direction: column; gap: 6px; }
        .form-group label { font-size: 0.85rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: var(--text-secondary); }
        .form-group input, .form-group textarea {
            padding: 14px 18px; background: var(--bg-card);
            border: 1px solid var(--border); border-radius: 6px;
            color: var(--text-primary); font-size: 1rem;
            font-family: inherit; transition: border-color 0.3s;
        }
        .form-group input:focus, .form-group textarea:focus {
            outline: none; border-color: var(--accent);
        }
        .form-group textarea { resize: vertical; min-height: 120px; }
        .form-submit {
            padding: 16px 40px; background: var(--gradient);
            color: #0a0a0a; font-weight: 600; font-size: 0.95rem;
            letter-spacing: 1px; text-transform: uppercase;
            border-radius: 6px; border: none; cursor: pointer;
            transition: transform 0.3s, box-shadow 0.3s;
            align-self: flex-start;
        }
        .form-submit:hover {
            transform: translateY(-2px); box-shadow: 0 10px 40px rgba(201, 169, 110, 0.3);
 }

 /* Disabled form submit */
 .form-submit.disabled {
  opacity: 0.4;
  pointer-events: none;
  cursor: default;
 }
 /* Required field error state */
 .form-group.has-error input,
 .form-group.has-error textarea {
  border-color: #e74c3c !important;
  box-shadow: 0 0 0 1px rgba(231, 76, 60, 0.2);
 }
 .form-group.has-error label {
  color: #e74c3c !important;
 }

 /* ===== FOOTER ===== */
        .footer {
            background: var(--bg-secondary); border-top: 1px solid var(--border);
            padding: 60px 0 30px;
        }
        .footer-grid {
            display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 40px; margin-bottom: 40px;
        }
        .footer-brand { text-align: center; }
        .footer-brand .nav-logo { font-size: 1.8rem; margin-bottom: 16px; display: inline-block; }
        .footer-brand p { color: var(--text-secondary); font-size: 0.95rem; line-height: 1.7; }
        .footer h4 { font-size: 0.85rem; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 20px; color: var(--accent); }
        .footer-links { list-style: none; }
        .footer-links li { margin-bottom: 10px; }
        .footer-links a { color: var(--text-secondary); font-size: 0.95rem; transition: color 0.3s; }
        .footer-links a:hover { color: var(--accent); }
        .footer-contact-link {
            color: var(--accent);
            font-size: 0.95rem;
            text-decoration: none;
            transition: color 0.3s;
        }
        .footer-contact-link:hover {
            color: var(--accent-light);
        }
        .footer-social { display: flex; gap: 12px; margin-top: 20px; justify-content: center; }
        .footer-social a {
            width: 40px; height: 40px; border-radius: 50%;
            background: var(--bg-card); border: 1px solid var(--border);
            display: flex; align-items: center; justify-content: center;
            transition: 0.3s; font-size: 0.9rem;
        }
        .footer-social a:hover { background: var(--accent); color: #0a0a0a; border-color: var(--accent); }
        .footer-bottom {
            border-top: 1px solid var(--border); padding-top: 30px;
            text-align: center; color: var(--text-muted); font-size: 0.9rem;
        }

        /* ===== RESPONSIBLE — TABLET ===== */
        @media (max-width: 968px) {
            .stats-grid { grid-template-columns: 1fr; gap: 20px; }
            .contact-grid { grid-template-columns: 1fr; }
            .footer-grid { grid-template-columns: 1fr 1fr; }
        }

        /* Desktop: horizontal contact items */
        @media (min-width: 969px) {
            .contact-bottom-col {
                display: grid;
                grid-template-columns: repeat(3, 1fr);
                gap: 40px;
                margin-top: 60px;
                text-align: center;
            }
            /* Tighten anchor scroll gap on desktop only */
            .services, .stats, .team, .portfolio, .testimonials, .contact {
                scroll-margin-top: 10px;
            }
        }

        /* ===== ANIMATIONS ===== */
        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .animate { opacity: 0; transform: translateY(30px); transition: opacity 0.6s, transform 0.6s; }
        .animate.visible { opacity: 1; transform: translateY(0); }

        /* ===== MODAL ===== */
        .modal-overlay {
            position: fixed; inset: 0; z-index: 2000;
            background: rgba(0,0,0,0.85);
            backdrop-filter: blur(10px);
            display: none; align-items: center; justify-content: center;
            padding: 40px;
        }
        .modal-overlay.active { display: flex; }
        .modal-box {
            background: var(--bg-secondary);
            border: 1px solid var(--border);
            border-radius: 12px;
            max-width: 900px; width: 100%;
            max-height: 90vh; overflow-y: auto;
            position: relative;
        }
        .modal-close {
            position: sticky; top: 16px;
            float: right; margin-right: 16px;
            width: 40px; height: 40px; border-radius: 50%;
            background: var(--bg-card); border: 1px solid var(--border);
            color: var(--text-primary); font-size: 1.2rem;
            display: flex; align-items: center; justify-content: center;
            cursor: pointer; transition: 0.3s; z-index: 10;
        }
        .modal-close:hover { background: var(--accent); color: #0a0a0a; }
        .modal-header {
            padding: 40px 40px 20px;
        }
        .modal-header .section-label { margin-bottom: 12px; }
        .modal-header h2 {
            font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 700;
            background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
            margin-bottom: 8px;
        }
        .modal-body {
            padding: 20px 40px 40px;
        }
        .modal-intro {
            font-size: 1.05rem; color: var(--text-secondary);
            line-height: 1.8; margin-bottom: 30px;
            border-left: 3px solid var(--accent); padding-left: 16px;
        }
        .modal-gallery {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 12px;
            margin-bottom: 30px;
        }
        .modal-gallery-item {
            aspect-ratio: 4/3;
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 8px;
            overflow: hidden;
            position: relative;
        }
        .modal-gallery-item img {
            width: 100%; height: 100%; object-fit: cover;
        }
        .modal-gallery-placeholder {
            width: 100%; height: 100%;
            display: flex; align-items: center; justify-content: center;
            color: var(--text-muted); font-size: 0.8rem;
            text-align: center; padding: 10px;
        }
        .modal-equipment {
            display: grid; gap: 16px;
        }
        .modal-equip-item {
            display: flex; gap: 16px; align-items: flex-start;
            background: var(--bg-card); border: 1px solid var(--border);
            border-radius: 8px; padding: 20px;
        }
        .modal-equip-icon {
            width: 44px; height: 44px; border-radius: 10px;
            background: rgba(201,169,110,0.1); flex-shrink: 0;
            display: flex; align-items: center; justify-content: center;
            font-size: 1.2rem;
        }
        .modal-equip-text h4 {
            font-size: 1rem; margin-bottom: 4px; color: var(--accent-light);
        }
        .modal-equip-text p {
            font-size: 0.95rem; color: var(--text-secondary); line-height: 1.6;
        }
        .modal-conclusion {
            margin-top: 30px; padding-top: 24px;
            border-top: 1px solid var(--border);
            font-size: 1.05rem; color: var(--text-secondary);
            line-height: 1.8; font-style: italic;
        }

        @media (max-width: 768px) {
            .modal-overlay { padding: 16px; }
            .modal-header, .modal-body { padding-left: 24px; padding-right: 24px; }
            .modal-gallery { grid-template-columns: repeat(2, 1fr); }
            .lightbox-nav { width: 40px; height: 40px; font-size: 1rem; }
            .lightbox-prev { left: 10px; }
            .lightbox-next { right: 10px; }
        }
        @media (max-width: 480px) {
            .modal-gallery { grid-template-columns: 1fr; }
        }

         /* ===== RESPONSIVE — MOBILE ===== */
        @media (max-width: 768px) {
            /* Desktop nav row hidden, mobile row shown */
            .nav-desktop-row {
            display: flex !important;
        }
        .nav-desktop-row {
                display: none !important;
            }
            .nav-mobile-row {
                display: flex !important;
                flex-direction: column;
            }
            /* Mobile nav: two-row layout + menu overlay */
            .nav {
                min-height: auto;
                padding: 0;
            }
            .nav-inner {
                padding: 12px 16px;
            }
            /* Mobile two-row nav */
            .nav-mobile-row .nav-top {
                align-items: center;
                justify-content: space-between;
                padding: 0;
            }
            .nav-mobile-row .nav-logo {
                font-size: 1.1rem;
                letter-spacing: 1px;
            }
            .nav-mobile-row .nav-bottom {
                align-items: center;
                justify-content: space-between;
                padding: 0;
                margin-top: 0;
            }
            /* Hamburger in mobile nav bottom row */
            .nav-mobile-row .hamburger {
                display: flex;
            }
            /* Social icons in mobile nav bottom row */
            .nav-mobile-row .nav-social {
                display: flex;
                gap: 12px;
                margin-top: 0;
                padding-top: 0;
                border-top: none;
            }
            .nav-mobile-row .nav-social a {
                width: 36px;
                height: 36px;
                font-size: 0.8rem;
                border-radius: 50%;
                background: var(--bg-card);
                border: 1px solid var(--border);
                display: flex;
                align-items: center;
                justify-content: center;
                transition: 0.3s;
            }
            .nav-mobile-row .nav-social a:hover {
                background: var(--accent);
                color: #0a0a0a;
                border-color: var(--accent);
            }
            .hamburger {
                display: flex;
            }
            /* Mobile nav-links: full-height overlay */
             /* Mobile nav-links: full-height overlay */
             .nav-links-mobile {
                position: fixed;
                top: 0;
                right: -100%;
                width: 280px;
                height: 100vh;
                background: #000000;
                flex-direction: column;
                padding: 80px 30px 30px;
                gap: 0;
                transition: right 0.3s ease;
                border-left: 1px solid var(--border);
                z-index: 1000;
                overflow-y: auto;
                display: flex !important;
            }
            .nav-links-mobile.open {
                right: 0;
            }
            .nav-links-mobile a {
                display: block;
                padding: 14px 0;
                font-size: 1rem;
                border-bottom: 1px solid var(--border);
            }
            .nav-links-mobile a::after {
                display: none;
            }
            .nav-social {
                margin-top: 20px;
                padding-top: 20px;
                border-top: 1px solid var(--border);
            }
            .nav-social a {
                width: 44px;
                height: 44px;
                font-size: 0.9rem;
            }
            .hero {
                min-height: 380px;
                padding-top: 90px;
            }
            .hero-logo {
                width: 300px;
                margin-bottom: 14px;
            }
            .hero-title {
                font-size: 1.6rem;
            }
            .hero-desc {
                font-size: 0.95rem;
                margin-bottom: 24px;
            }
            .hero-btn {
                padding: 14px 32px;
                font-size: 0.85rem;
            }
            .section {
                padding: 60px 0;
            }
            .section-header {
                margin-bottom: 40px;
            }
            .section-subtitle {
                font-size: 0.95rem;
                margin-bottom: 40px;
            }
            .services-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            .service-card {
                padding: 30px 24px;
            }
            .service-slideshow {
                margin-bottom: 16px;
            }
            .service-slideshow-slide .slide-label {
                font-size: 0.75rem;
                padding: 8px 12px;
            }
            .stats-grid {
                grid-template-columns: 1fr;
                gap: 16px;
            }
            .stat-item {
                padding: 24px 16px;
            }
            .stat-number {
                font-size: 2.5rem;
            }
            .team-carousel {
                overflow: visible;
            }
            .team-track {
                flex-direction: column;
                align-items: center;
                overflow: visible;
            }
            .team-card {
                min-width: 100%;
                max-width: 320px;
            }

            .portfolio-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 6px;
            }
            .portfolio-tile-overlay {
                padding: 6px;
            }
            .portfolio-tile-overlay span {
                font-size: 0.6rem;
            }
            .testimonial-text {
                font-size: 1rem;
            }
            .contact-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            .contact-form {
                gap: 16px;
            }
            .form-group input,
            .form-group textarea {
                padding: 12px 16px;
                font-size: 16px; /* prevents iOS zoom on focus */
            }
            .form-submit {
                width: 100%;
                text-align: center;
                padding: 16px 24px;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            .footer-social {
                margin-top: 16px;
            }
            .footer-bottom {
                padding-top: 20px;
            }
            /* Touch-friendly tap targets */
            .service-link,
            .form-submit,
            .hero-btn {
                min-height: 44px;
                min-width: 44px;
            }
        
            /* Turnstile mobile: stack vertically for render width */
            .cf-turnstile-wrapper,
            .cf-turnstile {
                min-width: 280px;
            }
            .cf-turnstile iframe {
                max-width: 100%;
            }
            /* Stack turnstile above submit button on mobile */
            div[style*="margin-top: 20px; display: flex"][style*="justify-content: center"] {
                flex-direction: column;
                gap: 16px;
            }}
        @media (max-width: 480px) {
            .container {
                padding: 0 16px;
            }
            .nav-inner {
                padding: 12px 16px;
            }
            .hero-logo {
                width: 216px;
                margin-top: 20px;
            }
            .hero-title {
                font-size: 1.75rem;
            }
            .section-title {
                font-size: 1.75rem;
            }
            .portfolio-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 4px;
            }
        }

        /* ===== SERVICE SLIDESHOW ===== */
        .service-slideshow {
            width: 100%;
            aspect-ratio: 16/9;
            border-radius: 8px;
            overflow: hidden;
            margin-bottom: 20px;
            position: relative;
            background: var(--bg-primary);
        }
        .service-slideshow-track {
            display: flex;
            width: 100%;
            height: 100%;
            transition: transform 1s cubic-bezier(0.4, 0, 0.2, 1);
        }
        .service-slideshow-slide {
            min-width: 100%;
            height: 100%;
            position: relative;
        }
        .service-slideshow-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .service-slideshow-slide .slide-label {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 12px 16px;
            background: linear-gradient(to top, rgba(10,10,10,0.9), transparent);
            color: var(--accent-light);
            font-size: 0.85rem;
            font-weight: 600;
            letter-spacing: 1px;
        }
        .service-slideshow-dots {
            position: absolute;
            bottom: 8px;
            right: 12px;
            display: flex;
            gap: 6px;
        }
        .service-slideshow-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: rgba(255,255,255,0.3);
            transition: 0.3s;
        }
        .service-slideshow-dot.active {
            background: var(--accent);
        }

        /* ===== SERVICE MODALS ===== */
        .service-modal-overlay {
            position: fixed; inset: 0; z-index: 2000;
            background: rgba(0,0,0,0.9);
            backdrop-filter: blur(10px);
            display: none; align-items: center; justify-content: center;
            padding: 20px;
        }
        .service-modal-overlay.active { display: flex; }
        .service-modal-box {
            background: var(--bg-secondary);
            border: 1px solid var(--border);
            border-radius: 12px;
            max-width: 900px; width: 100%;
            max-height: 90vh; overflow-y: auto;
            position: relative;
        }
        .service-modal-close {
            position: sticky; top: 16px;
            float: right; margin: 16px 16px 0 0;
            width: 40px; height: 40px; border-radius: 50%;
            background: var(--bg-card); border: 1px solid var(--border);
            color: var(--text-primary); font-size: 1.2rem;
            display: flex; align-items: center; justify-content: center;
            cursor: pointer; transition: 0.3s; z-index: 10;
        }
        .service-modal-close:hover { background: var(--accent); color: #0a0a0a; }
        .service-modal-header {
            padding: 32px 40px 16px;
        }
        .service-modal-header h2 {
            font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 700;
            background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
            margin: 0;
        }
        .service-modal-body {
            padding: 16px 40px 40px;
            text-align: center;
        }
        .service-modal-header {
            padding: 32px 40px 16px;
            text-align: center;
        }
        .service-modal-text {
            font-size: 1.05rem; color: var(--text-secondary);
            line-height: 1.8; margin-bottom: 30px;
            text-align: center;
        }
        .service-modal-image {
            border-radius: 8px; overflow: hidden;
            border: 1px solid var(--border);
        }
        .service-modal-image img {
            width: 100%; height: auto; display: block;
        }

        /* ===== RESPONSIVE — SERVICE CARDS ===== */
        .service-card.clickable {
            cursor: pointer;
        }
        .service-card.clickable::before {
            content: ''; position: absolute; top: 0; left: 0; right: 0;
            height: 3px; background: var(--gradient); opacity: 0;
            transition: opacity 0.3s; z-index: 5;
        }
        .service-card.clickable:hover::before { opacity: 1; }
    
        .privacy-link {
            color: var(--accent);
            text-decoration: underline;
            cursor: pointer;
            font-weight: 500;
        }
        .privacy-link:hover {
            opacity: 0.8;
        }
        .privacy-modal-overlay {
            display: none;
            position: fixed;
            top: 0; left: 0; right: 0; bottom: 0;
            background: rgba(0,0,0,0.85);
            z-index: 2000;
            justify-content: center;
            align-items: flex-start;
            padding: 60px 20px;
            overflow-y: auto;
        }
        .privacy-modal-overlay.active {
            display: flex;
        }
        .privacy-modal-content {
            background: #0a0a0a;
            border: 1px solid var(--border);
            border-radius: 12px;
            padding: 40px;
            max-width: 800px;
            width: 100%;
            position: relative;
            color: var(--text-primary);
        }
        .privacy-modal-close {
            position: absolute;
            top: 15px;
            right: 20px;
            background: none;
            border: none;
            color: var(--text-muted);
            font-size: 1.5rem;
            cursor: pointer;
            transition: color 0.2s;
        }
        .privacy-modal-close:hover {
            color: var(--text-primary);
        }
        .privacy-modal-content h2 {
            color: var(--accent);
            font-size: 1.4rem;
            margin-bottom: 20px;
            border-bottom: 1px solid var(--border);
            padding-bottom: 10px;
        }
        .privacy-modal-content h3 {
            color: var(--accent);
            font-size: 1.1rem;
            margin: 20px 0 10px 0;
        }
        .privacy-modal-content p, .privacy-modal-content li {
            font-size: 0.9rem;
            line-height: 1.7;
            color: var(--text-secondary);
        }
        .privacy-modal-content ul {
            margin-left: 20px;
            margin-bottom: 15px;
        }

        /* ===== COOKIE BANNER ===== */
        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(26, 26, 26, 0.97);
            backdrop-filter: blur(12px);
            border-top: 1px solid var(--accent-dark);
            padding: 16px 24px;
            z-index: 10001;
            box-shadow: 0 -4px 20px rgba(0,0,0,0.5);
            transform: translateY(100%);
            transition: transform 0.4s ease;
        }
        .cookie-banner.visible {
            transform: translateY(0);
        }
        .cookie-banner.hidden {
            display: none;
        }
        .cookie-banner-inner {
            max-width: 1100px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
            flex-wrap: wrap;
        }
        .cookie-banner p {
            margin: 0;
            font-size: 0.85rem;
            color: var(--text-secondary);
            line-height: 1.5;
            flex: 1;
            min-width: 200px;
        }
        .cookie-banner a {
            color: var(--accent);
            text-decoration: underline;
        }
        .cookie-banner a:hover {
            color: var(--text-primary);
        }
        .cookie-accept-btn {
            background: var(--accent);
            color: #0a0a0a;
            border: none;
            padding: 10px 28px;
            border-radius: 8px;
            font-size: 0.85rem;
            font-weight: 600;
            cursor: pointer;
            transition: 0.3s;
            white-space: nowrap;
        }
        .cookie-accept-btn:hover {
            background: var(--accent-light);
        }

        

