/* ── KUDLA SIGN – MAIN CSS ── */
:root {
  --red: #D62828; --red-dark: #9B1515; --red-light: #FF3B3B;
  --black: #0A0A0A; --dark: #141414; --dark2: #1E1E1E; --gray: #2A2A2A;
  --white: #FFFFFF; --muted: rgba(255,255,255,0.55);
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'Montserrat', sans-serif;
}
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { background: var(--black); color: var(--white); font-family: var(--font-body); overflow-x: hidden; }
::-webkit-scrollbar { width: 5px; } ::-webkit-scrollbar-track { background: var(--dark); } ::-webkit-scrollbar-thumb { background: var(--red); border-radius: 3px; }
a { color: var(--red); } a:hover { color: var(--red-light); }
img { max-width: 100%; }
.section-pad { padding: 90px 0; }
.bg-dark-custom { background: var(--dark); }
.bg-black-custom { background: var(--black); }
.text-muted-custom { color: var(--muted); font-size: 15px; line-height: 1.8; }
.mt-6 { margin-top: 5rem; }

/* ── NAV ── */
#mainNav { background: rgba(10,10,10,0.92); backdrop-filter: blur(12px); border-bottom: 1px solid rgba(214,40,40,0.2); padding: 14px 0; transition: padding 0.3s; }
#mainNav.scrolled { padding: 8px 0; }
.brand-logo-wrap { display: flex; align-items: center; gap: 12px; }
.brand-logo-mark { width: 44px; height: 44px; background: radial-gradient(circle at 40% 40%, #2a2a2a, #0a0a0a); border-radius: 50%; display: flex; align-items: center; justify-content: center; border: 2px solid var(--red); flex-shrink: 0; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name { font-family: var(--font-display); font-size: 20px; letter-spacing: 3px; color: white; }
.brand-tagline { font-size: 9px; color: var(--red); letter-spacing: 2.5px; text-transform: uppercase; }
.navbar-nav .nav-link { color: rgba(255,255,255,0.75) !important; font-size: 11px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; padding: 8px 12px !important; transition: color 0.2s; position: relative; }
.navbar-nav .nav-link::after { content: ''; position: absolute; bottom: 0; left: 12px; right: 12px; height: 2px; background: var(--red); transform: scaleX(0); transition: transform 0.3s; }
.navbar-nav .nav-link:hover { color: white !important; }
.navbar-nav .nav-link:hover::after, .navbar-nav .nav-link.active::after { transform: scaleX(1); }
.navbar-nav .nav-link.active { color: white !important; }
.dropdown-menu-dark { background: #111 !important; border: 1px solid var(--gray) !important; }
.dropdown-item { font-size: 12px; color: rgba(255,255,255,0.7) !important; padding: 8px 16px !important; }
.dropdown-item:hover { background: rgba(214,40,40,0.1) !important; color: white !important; }
.toggler-icon { display: flex; flex-direction: column; gap: 5px; cursor: pointer; }
.toggler-icon span { display: block; width: 22px; height: 2px; background: white; border-radius: 2px; }
.navbar-toggler { border: none !important; padding: 4px; }
.navbar-toggler:focus { box-shadow: none; }

/* ── HERO ── */
.hero-section { min-height: 100vh; position: relative; display: flex; align-items: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background-image: url('https://images.unsplash.com/photo-1557804506-669a67965ba0?w=1600&q=80'); background-size: cover; background-position: center; filter: brightness(0.18); animation: slowZoom 20s ease-in-out infinite alternate; }
@keyframes slowZoom { from { transform: scale(1.0); } to { transform: scale(1.08); } }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(214,40,40,0.12) 0%, transparent 50%, rgba(0,0,0,0.5) 100%); }
.hero-eyebrow { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; }
.eyebrow-line { width: 50px; height: 2px; background: var(--red); }
.hero-eyebrow span { font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--red); font-weight: 600; }
.hero-title { font-family: var(--font-display); font-size: clamp(60px, 10vw, 120px); line-height: 0.92; letter-spacing: 2px; margin-bottom: 16px; }
.title-outline { -webkit-text-stroke: 2px var(--white); color: transparent; }
.hero-subtitle { font-size: 16px; color: rgba(255,255,255,0.55); letter-spacing: 4px; margin-bottom: 28px; font-style: italic; }
.hero-locations { display: flex; flex-wrap: wrap; gap: 20px; margin-bottom: 40px; }
.hero-locations span { display: flex; align-items: center; gap: 8px; font-size: 12px; color: rgba(255,255,255,0.55); letter-spacing: 1px; }
.loc-dot { width: 6px; height: 6px; background: var(--red); border-radius: 50%; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-scroll-indicator { position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%); display: flex; align-items: center; gap: 12px; color: rgba(255,255,255,0.3); font-size: 10px; letter-spacing: 3px; text-transform: uppercase; animation: scrollBounce 2s ease infinite; }
.scroll-line { width: 40px; height: 1px; background: rgba(255,255,255,0.25); }
@keyframes scrollBounce { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(6px); } }

/* ── STATS BAND ── */
.stats-band { background: var(--red); padding: 24px 0; }
.stat-item { padding: 12px 20px; border-right: 1px solid rgba(255,255,255,0.2); }
.stat-item:last-child { border-right: none; }
.stat-num { font-family: var(--font-display); font-size: 40px; line-height: 1; color: white; }
.stat-label { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.75); margin-top: 2px; }

/* ── SECTION LABELS ── */
.section-label { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.label-line { width: 40px; height: 2px; background: var(--red); flex-shrink: 0; }
.section-label span { font-size: 10px; letter-spacing: 4px; text-transform: uppercase; color: var(--red); font-weight: 700; }
.section-title { font-family: var(--font-display); font-size: clamp(36px, 5.5vw, 68px); line-height: 1; letter-spacing: 2px; margin-bottom: 16px; }

/* ── ABOUT IMAGES ── */
.about-img-stack { position: relative; height: 460px; }
.about-img-stack .img-main { position: absolute; top: 0; left: 0; width: 78%; height: 80%; object-fit: cover; border-radius: 4px; border: 3px solid var(--red); }
.about-img-stack .img-accent { position: absolute; bottom: 0; right: 0; width: 55%; height: 48%; object-fit: cover; border-radius: 4px; border: 6px solid var(--black); }
.years-badge { position: absolute; bottom: 44px; left: 44px; background: var(--red); padding: 16px 20px; border-radius: 4px; z-index: 2; font-size: 12px; color: rgba(255,255,255,0.8); letter-spacing: 1px; }
.years-badge span { font-family: var(--font-display); font-size: 44px; line-height: 1; color: white; display: block; }
.feature-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.feat-item { display: flex; align-items: center; gap: 8px; font-size: 12px; color: rgba(255,255,255,0.7); }

/* ── SERVICE CARDS ── */
.service-card-link { text-decoration: none !important; display: block; }
.service-card { position: relative; overflow: hidden; border-radius: 4px; background: var(--dark2); transition: transform 0.3s; cursor: pointer; }
.service-card:hover { transform: translateY(-4px); }
.service-card-img { width: 100%; height: 240px; object-fit: cover; filter: brightness(0.4); transition: filter 0.5s, transform 0.5s; }
.service-card:hover .service-card-img { filter: brightness(0.25); transform: scale(1.05); }
.service-card-img-placeholder { width: 100%; height: 240px; background: linear-gradient(135deg, #1a1a1a, #2a0000); display: flex; align-items: center; justify-content: center; }
.service-card-body { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end; padding: 24px; background: linear-gradient(0deg, rgba(0,0,0,0.85) 0%, transparent 55%); }
.service-num { font-size: 11px; letter-spacing: 3px; color: var(--red); margin-bottom: 4px; font-weight: 700; }
.service-card-title { font-family: var(--font-display); font-size: 26px; letter-spacing: 2px; color: white; line-height: 1; margin-bottom: 6px; }
.service-card-desc { font-size: 12px; color: rgba(255,255,255,0); line-height: 1.6; transition: color 0.4s; max-width: 280px; }
.service-card:hover .service-card-desc { color: rgba(255,255,255,0.7); }
.service-arrow { position: absolute; top: 20px; right: 20px; width: 34px; height: 34px; border: 1px solid var(--red); display: flex; align-items: center; justify-content: center; color: var(--red); opacity: 0; transition: opacity 0.3s; border-radius: 2px; }
.service-card:hover .service-arrow { opacity: 1; }

/* ── PROCESS ── */
.process-step { text-align: center; padding: 20px; }
.step-circle { width: 90px; height: 90px; border-radius: 50%; border: 2px solid var(--red); display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; font-family: var(--font-display); font-size: 28px; color: var(--red); background: var(--dark); transition: all 0.3s; position: relative; z-index: 1; }
.process-step:hover .step-circle { background: var(--red); color: white; }
.step-icon { font-size: 24px; margin-bottom: 10px; color: rgba(255,255,255,0.3); }
.step-title { font-family: var(--font-display); font-size: 20px; letter-spacing: 2px; margin-bottom: 8px; }
.step-desc { font-size: 13px; color: var(--muted); line-height: 1.7; }

/* ── GALLERY ── */
.gallery-masonry { display: grid; grid-template-columns: repeat(4, 1fr); grid-template-rows: repeat(2, 200px); gap: 4px; }
.gallery-item { overflow: hidden; position: relative; }
.gallery-item.wide { grid-column: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.7); transition: transform 0.5s, filter 0.5s; }
.gallery-item:hover img { transform: scale(1.06); filter: brightness(0.9); }
.gallery-hover { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; background: rgba(214,40,40,0.5); opacity: 0; transition: opacity 0.3s; color: white; font-size: 13px; font-weight: 600; }
.gallery-item:hover .gallery-hover { opacity: 1; }
.gallery-hover i { font-size: 28px; }

/* Gallery filter page */
.gallery-filter { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; }
.filter-btn { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); color: rgba(255,255,255,0.6); padding: 8px 20px; border-radius: 50px; font-size: 12px; font-weight: 600; cursor: pointer; transition: all 0.3s; letter-spacing: 1px; }
.filter-btn:hover, .filter-btn.active { background: var(--red); border-color: var(--red); color: white; }
.gallery-grid-full { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 6px; }
.gallery-col { overflow: hidden; position: relative; }
.gallery-thumb { aspect-ratio: 4/3; position: relative; overflow: hidden; }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.75); transition: transform 0.5s, filter 0.4s; }
.gallery-col:hover .gallery-thumb img { transform: scale(1.05); filter: brightness(1); }
.gallery-col:hover .gallery-hover { opacity: 1; }

/* ── TESTIMONIALS ── */
.testimonial-card { background: var(--dark2); border: 1px solid rgba(255,255,255,0.06); padding: 28px; border-radius: 4px; position: relative; transition: border-color 0.3s, transform 0.3s; display: flex; flex-direction: column; }
.testimonial-card:hover { border-color: var(--red); transform: translateY(-4px); }
.testi-stars { display: flex; gap: 3px; margin-bottom: 12px; font-size: 13px; }
.testi-text { font-size: 14px; line-height: 1.8; color: rgba(255,255,255,0.7); font-style: italic; margin-bottom: 20px; flex: 1; }
.testi-author { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.testi-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--red); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 16px; color: white; flex-shrink: 0; }
.testi-avatar-img { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; }
.testi-name { font-weight: 700; font-size: 13px; color: white; }
.testi-biz { font-size: 11px; color: rgba(255,255,255,0.4); }
.testi-location { font-size: 10px; color: rgba(255,255,255,0.3); margin-top: 2px; }

/* ── LOCATIONS ── */
.location-card { position: relative; overflow: hidden; border-radius: 4px; }
.location-img { width: 100%; height: 280px; object-fit: cover; filter: brightness(0.35); transition: filter 0.5s, transform 0.5s; }
.location-img-placeholder { width: 100%; height: 280px; background: linear-gradient(135deg, #1a1a1a, #2a0000); }
.location-card:hover .location-img { filter: brightness(0.25); transform: scale(1.04); }
.location-body { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end; padding: 28px; background: linear-gradient(0deg, rgba(0,0,0,0.9) 0%, transparent 50%); }
.location-city { font-family: var(--font-display); font-size: 36px; letter-spacing: 2px; line-height: 1; margin-bottom: 6px; }
.location-addr { font-size: 12px; color: rgba(255,255,255,0.55); line-height: 1.6; margin-bottom: 6px; }
.location-phone { font-size: 12px; color: var(--red); text-decoration: none; }
.location-line { width: 0; height: 3px; background: var(--red); margin-top: 12px; transition: width 0.5s; }
.location-card:hover .location-line { width: 50px; }

/* Locations detail page */
.location-detail-card { background: var(--dark2); border-radius: 4px; overflow: hidden; border: 1px solid rgba(255,255,255,0.06); }
.location-detail-img { width: 100%; height: 100%; min-height: 320px; object-fit: cover; }
.location-map { height: 100%; min-height: 320px; }
.location-map iframe { width: 100%; height: 100%; min-height: 320px; border: 0; }
.location-map-placeholder { width: 100%; height: 100%; min-height: 320px; background: #111; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; color: #333; font-size: 48px; }
.location-detail-body { padding: 40px; }
.location-city-large { font-family: var(--font-display); font-size: 52px; letter-spacing: 3px; line-height: 1; margin: 8px 0 20px; }
.location-detail-list { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 14px; }
.location-detail-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 14px; color: rgba(255,255,255,0.7); }
.location-detail-list li a { color: rgba(255,255,255,0.7); text-decoration: none; }
.location-detail-list li a:hover { color: var(--red); }

/* ── CTA SECTION ── */
.cta-section { background: var(--red); padding: 64px 60px; }
.cta-title { font-family: var(--font-display); font-size: clamp(30px, 5vw, 52px); letter-spacing: 2px; line-height: 1; color: white; }
.cta-title span { color: rgba(255,255,255,0.7); }
.cta-sub { font-size: 15px; color: rgba(255,255,255,0.75); margin-top: 8px; }
.cta-phone { font-family: var(--font-display); font-size: 32px; letter-spacing: 3px; color: rgba(255,255,255,0.85); text-decoration: none; display: inline-block; margin-bottom: 12px; }

/* ── PAGE HERO ── */
.page-hero { background: var(--dark); padding: 140px 0 60px; position: relative; overflow: hidden; border-bottom: 1px solid rgba(214,40,40,0.3); background-image: linear-gradient(135deg, rgba(214,40,40,0.08) 0%, transparent 60%); }
.page-hero-title { font-family: var(--font-display); font-size: clamp(40px, 7vw, 80px); letter-spacing: 3px; line-height: 1; margin-bottom: 12px; }
.breadcrumb { background: none; padding: 0; margin: 0; }
.breadcrumb-item, .breadcrumb-item a { font-size: 12px; color: rgba(255,255,255,0.4); text-decoration: none; letter-spacing: 1px; }
.breadcrumb-item.active { color: var(--red); }
.breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.2) !important; }

/* ── VIDEO CARDS ── */
.video-card { background: var(--dark2); border-radius: 4px; overflow: hidden; border: 1px solid rgba(255,255,255,0.06); transition: border-color 0.3s, transform 0.3s; }
.video-card:hover { border-color: var(--red); transform: translateY(-4px); }
.video-embed-wrap { position: relative; aspect-ratio: 16/9; overflow: hidden; background: #000; }
.video-embed-wrap iframe { width: 100%; height: 100%; border: 0; }
.video-lazy-thumb { width: 100%; height: 100%; position: relative; }
.video-lazy-thumb img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.6); }
.video-placeholder { width: 100%; height: 100%; background: #111; display: flex; align-items: center; justify-content: center; }
.video-play-btn { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-size: 56px; color: white; opacity: 0.9; transition: opacity 0.2s, transform 0.2s; }
.video-lazy-thumb:hover .video-play-btn { opacity: 1; transform: scale(1.1); }
.video-info { padding: 16px; }
.video-platform-badge { display: inline-block; padding: 2px 10px; border-radius: 20px; font-size: 10px; font-weight: 700; letter-spacing: 1px; margin-bottom: 8px; }
.video-platform-badge.youtube { background: rgba(255,0,0,0.15); color: #ff4444; }
.video-platform-badge.facebook { background: rgba(24,119,242,0.15); color: #4a9eff; }
.video-platform-badge.instagram { background: rgba(225,48,108,0.15); color: #e1306c; }
.video-title { font-size: 15px; font-weight: 700; color: white; margin-bottom: 4px; }
.video-desc { font-size: 12px; color: var(--muted); line-height: 1.6; }

/* ── CONTACT FORM ── */
.contact-form-card { background: var(--dark2); border: 1px solid rgba(255,255,255,0.06); border-radius: 4px; padding: 32px; }
.form-label-custom { font-size: 11px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,0.5); display: block; margin-bottom: 6px; }
.form-control-custom { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 4px; padding: 12px 14px; color: white; font-family: var(--font-body); font-size: 13px; width: 100%; transition: border-color 0.3s; outline: none; resize: none; }
.form-control-custom:focus { border-color: var(--red); background: rgba(255,255,255,0.07); color: white; }
.form-control-custom::placeholder { color: #444; }
.form-control-custom option { background: var(--dark2); }
.contact-info-list { display: flex; flex-direction: column; gap: 20px; }
.contact-info-item { display: flex; align-items: flex-start; gap: 14px; }
.ci-icon { width: 42px; height: 42px; background: var(--red); border-radius: 4px; display: flex; align-items: center; justify-content: center; font-size: 16px; color: white; flex-shrink: 0; }
.ci-label { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--red); margin-bottom: 2px; }
.ci-value { font-size: 13px; color: rgba(255,255,255,0.75); line-height: 1.6; }
.ci-value a { color: rgba(255,255,255,0.75); text-decoration: none; }
.ci-value a:hover { color: var(--red); }
.branch-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.06); border-radius: 4px; padding: 12px 14px; }
.map-container { border-radius: 4px; overflow: hidden; }
.map-container iframe { width: 100%; height: 400px; border: 0; display: block; }

/* ── WHY CARDS (About page) ── */
.why-card { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06); border-radius: 4px; padding: 24px; transition: border-color 0.3s; }
.why-card:hover { border-color: var(--red); }
.why-icon { font-size: 32px; margin-bottom: 10px; }
.why-card h5 { color: white; font-weight: 700; margin-bottom: 6px; }
.why-card p { font-size: 13px; color: var(--muted); margin: 0; }
.stat-box { background: rgba(214,40,40,0.1); border: 1px solid rgba(214,40,40,0.2); border-radius: 4px; padding: 16px; }
.stat-box-num { font-family: var(--font-display); font-size: 36px; color: var(--red); line-height: 1; }
.stat-box-label { font-size: 11px; color: var(--muted); margin-top: 4px; text-transform: uppercase; letter-spacing: 1px; }

/* ── SERVICE SINGLE ── */
.sidebar-card { background: var(--dark2); border: 1px solid rgba(255,255,255,0.06); border-radius: 4px; padding: 22px; }
.sidebar-heading { font-size: 13px; font-weight: 700; color: var(--red); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 14px; }
.sidebar-links { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.sidebar-links a { font-size: 13px; color: rgba(255,255,255,0.6); text-decoration: none; display: flex; align-items: center; gap: 8px; padding: 6px 0; border-bottom: 1px solid rgba(255,255,255,0.04); transition: color 0.2s; }
.sidebar-links a:hover { color: var(--red); }
.service-features { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06); border-radius: 4px; padding: 20px; }
.page-content { color: rgba(255,255,255,0.75); font-size: 15px; line-height: 1.8; }
.page-content h2, .page-content h3 { color: white; font-family: var(--font-display); letter-spacing: 2px; margin: 24px 0 12px; }
.page-content ul, .page-content ol { padding-left: 20px; }
.page-content li { margin-bottom: 6px; }
.page-content a { color: var(--red); }

/* ── TEAM ── */
.team-card { background: var(--dark2); border: 1px solid rgba(255,255,255,0.06); border-radius: 4px; overflow: hidden; text-align: center; transition: border-color 0.3s; }
.team-card:hover { border-color: var(--red); }
.team-img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.team-avatar-placeholder { width: 100%; aspect-ratio: 1; background: linear-gradient(135deg, #2a2a2a, #1a0000); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 48px; color: var(--red); }
.team-body { padding: 16px; }
.team-name { font-weight: 700; color: white; font-size: 14px; margin-bottom: 4px; }
.team-role { font-size: 11px; color: var(--muted); margin: 0; }

/* ── FOOTER ── */
.site-footer { background: #0a0a0a; border-top: 1px solid rgba(255,255,255,0.06); }
.footer-top { padding: 72px 0 48px; }
.footer-desc { font-size: 13px; color: rgba(255,255,255,0.4); line-height: 1.8; max-width: 280px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 36px; height: 36px; border: 1px solid rgba(255,255,255,0.12); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.4); border-radius: 4px; font-size: 15px; transition: all 0.3s; text-decoration: none; }
.footer-social a:hover { border-color: var(--red); color: var(--red); }
.footer-heading { font-family: var(--font-display); font-size: 16px; letter-spacing: 3px; color: white; margin-bottom: 18px; }
.footer-links { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.footer-links a { font-size: 13px; color: rgba(255,255,255,0.4); text-decoration: none; transition: color 0.3s; display: flex; align-items: center; gap: 8px; }
.footer-links a::before { content: '—'; font-size: 10px; color: var(--red); }
.footer-links a:hover { color: white; }
.footer-contact-list { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.footer-contact-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; color: rgba(255,255,255,0.5); }
.footer-contact-list a { color: rgba(255,255,255,0.5); text-decoration: none; }
.footer-contact-list a:hover { color: var(--red); }
.footer-locations { display: flex; flex-wrap: wrap; gap: 6px; }
.location-pill { background: rgba(214,40,40,0.1); border: 1px solid rgba(214,40,40,0.2); color: var(--red); padding: 3px 10px; border-radius: 20px; font-size: 11px; font-weight: 600; letter-spacing: 1px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.05); padding: 24px 0; font-size: 12px; color: rgba(255,255,255,0.2); letter-spacing: 0.5px; }
.footer-bottom a { color: rgba(255,255,255,0.25); text-decoration: none; }
.footer-bottom a:hover { color: var(--red); }

/* ── WHATSAPP WIDGET ── */
.wa-widget { position: fixed; z-index: 9999; }
.wa-widget.bottom-right { bottom: 28px; right: 28px; }
.wa-widget.bottom-left { bottom: 28px; left: 28px; }
.wa-widget a { display: flex; align-items: center; justify-content: center; width: 56px; height: 56px; background: #25D366; border-radius: 50%; color: white; font-size: 26px; text-decoration: none; box-shadow: 0 4px 20px rgba(37,211,102,0.4); transition: transform 0.2s, box-shadow 0.2s; position: relative; animation: waPulse 3s infinite; }
.wa-widget a:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,0.6); color: white; }
@keyframes waPulse { 0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); } 50% { box-shadow: 0 4px 30px rgba(37,211,102,0.7); } }
.wa-tooltip { position: absolute; right: 66px; background: #111; color: white; padding: 6px 12px; border-radius: 4px; font-size: 12px; font-weight: 600; white-space: nowrap; opacity: 0; pointer-events: none; transition: opacity 0.2s; }
.wa-widget.bottom-left .wa-tooltip { right: auto; left: 66px; }
.wa-widget a:hover .wa-tooltip { opacity: 1; }

/* ── BACK TO TOP ── */
.back-to-top { position: fixed; bottom: 96px; right: 28px; width: 42px; height: 42px; background: rgba(214,40,40,0.85); color: white; border: none; border-radius: 4px; display: flex; align-items: center; justify-content: center; cursor: pointer; opacity: 0; pointer-events: none; transition: opacity 0.3s, transform 0.3s; z-index: 9998; font-size: 16px; }
.back-to-top.show { opacity: 1; pointer-events: auto; }
.back-to-top:hover { transform: translateY(-2px); background: var(--red); }

/* ── RESPONSIVE ── */
@media (max-width: 991px) {
  .hero-title { font-size: clamp(52px, 12vw, 90px); }
  .section-title { font-size: clamp(32px, 7vw, 54px); }
  .about-img-stack { height: 340px; }
  .gallery-masonry { grid-template-columns: repeat(2, 1fr); grid-template-rows: repeat(4, 160px); }
  .gallery-item.wide { grid-column: span 2; }
  .cta-section { padding: 48px 24px; }
}
@media (max-width: 767px) {
  .section-pad { padding: 60px 0; }
  .hero-title { font-size: clamp(48px, 14vw, 72px); }
  .stats-band .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 16px; }
  .about-img-stack { height: 280px; }
  .gallery-masonry { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gallery-item.wide { grid-column: span 2; }
  .location-detail-body { padding: 24px; }
  .location-city-large { font-size: 40px; }
  .back-to-top { right: 16px; bottom: 88px; }
  .wa-widget.bottom-right { bottom: 20px; right: 20px; }
  .footer-top { padding: 48px 0 32px; }
  .navbar-collapse { background: #141414; border-top: 1px solid #2a2a2a; padding: 16px; margin-top: 12px; border-radius: 4px; }
}
