/* ==========================================================================
   Kolkata VIP Bouncer Services — Stylesheet
   ========================================================================== */

:root {
  --gold: #C9A84C;
  --gold-light: #E8C96A;
  --gold-dark: #8A6E2A;
  --black: #0A0A0A;
  --dark: #111111;
  --dark-2: #1A1A1A;
  --dark-3: #222222;
  --white: #F5F0E8;
  --grey: #888888;
  --red: #C0392B;
  --whatsapp: #25D366;
  --transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Barlow', sans-serif;
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; }

/* SCROLLBAR */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--gold); }

/* ICONS (inline SVG helper) */
.icon { width: 1em; height: 1em; display: inline-block; vertical-align: -0.15em; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.icon-lg { width: 1.4em; height: 1.4em; }

/* LOADER */
#loader {
  position: fixed; inset: 0; background: var(--black);
  display: flex; align-items: center; justify-content: center;
  z-index: 9999; transition: opacity 0.6s ease, visibility 0.6s ease;
}
#loader.hidden { opacity: 0; visibility: hidden; }
.loader-inner { text-align: center; }
.loader-logo {
  width: 90px; height: 90px; border-radius: 50%;
  border: 2px solid var(--gold);
  animation: loaderPulse 1.4s ease-in-out infinite;
  margin: 0 auto 20px; overflow: hidden;
}
.loader-logo img { width: 100%; height: 100%; object-fit: cover; }
.loader-bar { width: 200px; height: 2px; background: var(--dark-3); margin: 0 auto; border-radius: 2px; overflow: hidden; }
.loader-bar-fill { height: 100%; background: var(--gold); animation: loaderBar 1.8s ease forwards; }
@keyframes loaderPulse { 0%,100% { box-shadow: 0 0 0 0 rgba(201,168,76,0.5); } 50% { box-shadow: 0 0 0 15px rgba(201,168,76,0); } }
@keyframes loaderBar { from { width: 0; } to { width: 100%; } }

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 18px 48px;
  display: flex; align-items: center; justify-content: space-between;
  transition: var(--transition);
}
nav.scrolled {
  background: rgba(10,10,10,0.96);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(201,168,76,0.15);
  padding: 12px 48px;
}
.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-logo img { width: 48px; height: 48px; border-radius: 50%; border: 1.5px solid var(--gold); transition: var(--transition); }
.nav-logo:hover img { transform: rotate(8deg); }
.nav-brand { font-family: 'Bebas Neue', sans-serif; font-size: 1.3rem; letter-spacing: 2px; color: var(--white); line-height: 1.1; }
.nav-brand span { color: var(--gold); display: block; font-size: 0.7rem; letter-spacing: 4px; font-family: 'Barlow Condensed', sans-serif; }
.nav-links { display: flex; align-items: center; gap: 36px; list-style: none; }
.nav-links a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.9rem; font-weight: 600; letter-spacing: 2px;
  color: var(--grey); text-decoration: none; text-transform: uppercase;
  transition: var(--transition); position: relative;
}
.nav-links a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 1px; background: var(--gold); transition: var(--transition); }
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--gold); }
.nav-cta { background: var(--gold); color: var(--black) !important; padding: 10px 24px; border-radius: 2px; font-weight: 700 !important; letter-spacing: 2px !important; transition: var(--transition) !important; }
.nav-cta:hover { background: var(--gold-light) !important; transform: translateY(-2px); }
.nav-cta::after { display: none !important; }

/* HAMBURGER */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; border: none; background: none; }
.hamburger span { display: block; width: 26px; height: 2px; background: var(--gold); transition: var(--transition); }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* MOBILE NAV */
.mobile-nav { display: none; position: fixed; inset: 0; background: rgba(10,10,10,0.98); z-index: 999; flex-direction: column; align-items: center; justify-content: center; gap: 32px; }
.mobile-nav.open { display: flex; }
.mobile-nav a { font-family: 'Bebas Neue', sans-serif; font-size: 2.2rem; letter-spacing: 4px; color: var(--white); text-decoration: none; transition: var(--transition); }
.mobile-nav a:hover { color: var(--gold); }

/* PAGE HERO (for about/contact sub-pages) */
.page-hero {
  min-height: 46vh; display: flex; align-items: center; position: relative;
  background: var(--dark); padding: 140px 0 60px; overflow: hidden;
}
.page-hero-bg { position: absolute; inset: 0; background: radial-gradient(ellipse 60% 80% at 70% 20%, rgba(201,168,76,0.08) 0%, transparent 70%); }
.page-hero .container { position: relative; z-index: 1; }
.breadcrumb { font-family: 'Barlow Condensed', sans-serif; letter-spacing: 2px; color: var(--grey); font-size: 0.85rem; margin-top: 16px; }
.breadcrumb a { color: var(--gold); text-decoration: none; }

/* HERO */
.hero { min-height: 100vh; position: relative; display: flex; align-items: center; background: var(--black); overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background: radial-gradient(ellipse 60% 80% at 70% 50%, rgba(201,168,76,0.06) 0%, transparent 70%), radial-gradient(ellipse 40% 60% at 20% 80%, rgba(192,57,43,0.04) 0%, transparent 60%); }
.hero-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px); background-size: 60px 60px; mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%); }
.hero-content { position: relative; z-index: 1; max-width: 1300px; margin: 0 auto; padding: 120px 48px 80px; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.hero-text .tag { display: inline-flex; align-items: center; gap: 8px; font-family: 'Barlow Condensed', sans-serif; font-size: 0.75rem; letter-spacing: 4px; font-weight: 700; color: var(--gold); text-transform: uppercase; margin-bottom: 24px; padding: 6px 16px; border: 1px solid rgba(201,168,76,0.3); border-radius: 2px; }
.hero-text .tag::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); animation: blink 1.5s ease-in-out infinite; }
@keyframes blink { 0%,100%{opacity:1;} 50%{opacity:0.3;} }
.hero-title { font-family: 'Bebas Neue', sans-serif; font-size: clamp(3.5rem, 7vw, 6rem); line-height: 0.9; letter-spacing: 2px; margin-bottom: 28px; }
.hero-title em { color: var(--gold); font-style: normal; }
.hero-subtitle { font-size: 1.05rem; color: var(--grey); line-height: 1.7; margin-bottom: 40px; max-width: 500px; font-weight: 300; }
.hero-ctas { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; margin-bottom: 48px; }
.btn-primary { display: inline-flex; align-items: center; gap: 10px; background: var(--gold); color: var(--black); font-family: 'Barlow Condensed', sans-serif; font-size: 0.9rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; padding: 14px 32px; text-decoration: none; border-radius: 2px; transition: var(--transition); border: none; cursor: pointer; }
.btn-primary:hover { background: var(--gold-light); transform: translateY(-3px); box-shadow: 0 12px 30px rgba(201,168,76,0.3); }
.btn-outline { display: inline-flex; align-items: center; gap: 10px; border: 1px solid rgba(201,168,76,0.5); color: var(--gold); font-family: 'Barlow Condensed', sans-serif; font-size: 0.9rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; padding: 14px 32px; text-decoration: none; border-radius: 2px; transition: var(--transition); background: transparent; cursor: pointer; }
.btn-outline:hover { background: rgba(201,168,76,0.1); border-color: var(--gold); transform: translateY(-3px); }
.hero-stats { display: flex; gap: 32px; }
.hero-stat-num { font-family: 'Bebas Neue', sans-serif; font-size: 2.2rem; color: var(--gold); letter-spacing: 2px; }
.hero-stat-label { font-size: 0.75rem; color: var(--grey); letter-spacing: 2px; text-transform: uppercase; font-family: 'Barlow Condensed', sans-serif; }
.hero-visual { display: flex; justify-content: center; align-items: center; position: relative; }
.logo-ring { position: relative; width: 380px; height: 380px; display: flex; align-items: center; justify-content: center; }
.logo-ring-outer { position: absolute; inset: 0; border-radius: 50%; border: 1px solid rgba(201,168,76,0.2); animation: ringRotate 20s linear infinite; }
.logo-ring-outer::before, .logo-ring-outer::after { content: ''; position: absolute; width: 8px; height: 8px; border-radius: 50%; background: var(--gold); }
.logo-ring-outer::before { top: -4px; left: 50%; transform: translateX(-50%); }
.logo-ring-outer::after { bottom: -4px; left: 50%; transform: translateX(-50%); }
.logo-ring-inner { position: absolute; inset: 20px; border-radius: 50%; border: 1px solid rgba(201,168,76,0.1); animation: ringRotate 12s linear infinite reverse; }
@keyframes ringRotate { from{transform:rotate(0deg);} to{transform:rotate(360deg);} }
.logo-main { width: 260px; height: 260px; border-radius: 50%; border: 3px solid var(--gold); box-shadow: 0 0 60px rgba(201,168,76,0.2), 0 0 120px rgba(201,168,76,0.08); overflow: hidden; position: relative; z-index: 1; animation: logoFloat 4s ease-in-out infinite; }
.logo-main img { width: 100%; height: 100%; object-fit: cover; }
@keyframes logoFloat { 0%,100%{transform:translateY(0);} 50%{transform:translateY(-12px);} }
.corner-badge { position: absolute; font-family: 'Barlow Condensed', sans-serif; font-size: 0.65rem; letter-spacing: 2px; color: var(--gold-dark); text-transform: uppercase; font-weight: 700; }
.corner-badge.tl { top: 30px; left: 30px; }
.corner-badge.tr { top: 30px; right: 30px; text-align: right; }
.corner-badge.bl { bottom: 30px; left: 30px; }
.corner-badge.br { bottom: 30px; right: 30px; text-align: right; }

/* TICKER */
.ticker { background: var(--gold); padding: 12px 0; overflow: hidden; position: relative; }
.ticker-inner { display: flex; gap: 0; animation: tickerScroll 30s linear infinite; width: max-content; }
.ticker-item { font-family: 'Barlow Condensed', sans-serif; font-size: 0.85rem; font-weight: 700; letter-spacing: 3px; color: var(--black); text-transform: uppercase; padding: 0 40px; white-space: nowrap; }
.ticker-item::before { content: '\25C6'; margin-right: 40px; opacity: 0.4; }
@keyframes tickerScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* SECTIONS */
section { padding: 100px 0; }
.container { max-width: 1300px; margin: 0 auto; padding: 0 48px; }
.section-header { margin-bottom: 60px; }
.section-label { font-family: 'Barlow Condensed', sans-serif; font-size: 0.75rem; letter-spacing: 5px; color: var(--gold); text-transform: uppercase; font-weight: 700; margin-bottom: 12px; display: block; }
.section-title { font-family: 'Bebas Neue', sans-serif; font-size: clamp(2.5rem, 5vw, 4rem); letter-spacing: 2px; line-height: 0.95; }
.section-title em { color: var(--gold); font-style: normal; }
.section-desc { font-size: 1rem; color: var(--grey); max-width: 560px; line-height: 1.7; margin-top: 16px; font-weight: 300; }

/* IMAGE SLIDER */
.slider-section { background: var(--dark); }
.image-slider { position: relative; width: 100%; max-width: 1300px; margin: 0 auto; aspect-ratio: 16/7; border-radius: 8px; overflow: hidden; border: 1px solid rgba(201,168,76,0.15); box-shadow: 0 20px 60px rgba(0,0,0,0.5); background: var(--dark-2); }
.slider-track { position: relative; width: 100%; height: 100%; }
.slide { position: absolute; inset: 0; opacity: 0; transition: opacity 0.8s ease; }
.slide.active { opacity: 1; }
.slide img { width: 100%; height: 100%; object-fit: cover; }
.slide-overlay { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(0,0,0,0.6) 0%, transparent 40%); }
.slider-arrow { position: absolute; top: 50%; transform: translateY(-50%); width: 48px; height: 48px; border-radius: 50%; background: rgba(10,10,10,0.6); border: 1px solid rgba(201,168,76,0.4); color: var(--gold); display: flex; align-items: center; justify-content: center; cursor: pointer; z-index: 5; transition: var(--transition); }
.slider-arrow:hover { background: var(--gold); color: var(--black); }
.slider-arrow.prev { left: 16px; }
.slider-arrow.next { right: 16px; }
.slider-dots { position: absolute; bottom: 16px; left: 0; right: 0; display: flex; justify-content: center; gap: 8px; z-index: 5; flex-wrap: wrap; padding: 0 16px; }
.slider-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(245,240,232,0.4); cursor: pointer; transition: var(--transition); border: none; padding: 0; }
.slider-dot.active { background: var(--gold); width: 22px; border-radius: 4px; }

/* ABOUT */
.about { background: var(--dark); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-left .section-header { margin-bottom: 32px; }
.about-features { display: flex; flex-direction: column; gap: 20px; margin-top: 32px; }
.about-feature { display: flex; gap: 16px; align-items: flex-start; padding: 20px; background: var(--dark-2); border: 1px solid rgba(201,168,76,0.08); border-radius: 4px; transition: var(--transition); }
.about-feature:hover { border-color: rgba(201,168,76,0.25); background: var(--dark-3); }
.about-feature-icon { width: 40px; height: 40px; border-radius: 2px; background: rgba(201,168,76,0.1); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; color: var(--gold); }
.about-feature h4 { font-family: 'Barlow Condensed', sans-serif; font-size: 0.9rem; font-weight: 700; letter-spacing: 1px; margin-bottom: 4px; color: var(--white); }
.about-feature p { font-size: 0.85rem; color: var(--grey); line-height: 1.5; }
.about-right { position: relative; }
.about-card-stack { position: relative; padding: 30px 0 30px 30px; }
.about-card { background: var(--dark-2); border: 1px solid rgba(201,168,76,0.12); border-radius: 6px; padding: 32px; position: relative; }
.about-card::before { content: ''; position: absolute; top: 0; left: 0; width: 3px; height: 100%; background: var(--gold); border-radius: 3px 0 0 3px; }
.about-card h3 { font-family: 'Bebas Neue', sans-serif; font-size: 1.6rem; letter-spacing: 2px; margin-bottom: 12px; color: var(--gold); }
.about-card p { font-size: 0.9rem; color: var(--grey); line-height: 1.7; margin-bottom: 20px; }
.about-decor { position: absolute; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; }
.about-decor::before { content: ''; position: absolute; top: 10px; left: 10px; right: -10px; bottom: -10px; border: 1px solid rgba(201,168,76,0.08); border-radius: 6px; }

/* LEADERSHIP / OWNER */
.leadership { background: var(--black); }
.owner-grid { display: grid; grid-template-columns: 320px 1fr; gap: 60px; align-items: center; background: var(--dark-2); border: 1px solid rgba(201,168,76,0.1); border-radius: 8px; padding: 48px; }
.owner-photo { border-radius: 6px; overflow: hidden; border: 2px solid var(--gold); aspect-ratio: 4/5; }
.owner-photo img { width: 100%; height: 100%; object-fit: cover; }
.owner-info h3 { font-family: 'Bebas Neue', sans-serif; font-size: 2rem; letter-spacing: 2px; color: var(--gold); margin-bottom: 4px; }
.owner-info .role { font-family: 'Barlow Condensed', sans-serif; letter-spacing: 2px; text-transform: uppercase; color: var(--grey); font-size: 0.85rem; margin-bottom: 20px; }
.owner-info p { color: var(--grey); line-height: 1.7; margin-bottom: 14px; }
.team-row { display: flex; gap: 24px; margin-top: 24px; flex-wrap: wrap; }
.team-member { flex: 1; min-width: 160px; background: var(--dark-3); padding: 18px; border-radius: 4px; text-align: center; border: 1px solid rgba(201,168,76,0.08); }
.team-member .avatar { width: 48px; height: 48px; border-radius: 50%; background: rgba(201,168,76,0.15); display: flex; align-items: center; justify-content: center; margin: 0 auto 10px; color: var(--gold); font-family: 'Bebas Neue', sans-serif; font-size: 1.1rem; }
.team-member h5 { font-family: 'Barlow Condensed', sans-serif; font-size: 0.85rem; font-weight: 700; letter-spacing: 1px; margin-bottom: 2px; }
.team-member p { font-size: 0.72rem; color: var(--gold); letter-spacing: 1px; font-family: 'Barlow Condensed', sans-serif; }

/* SERVICES */
.services { background: var(--black); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(201,168,76,0.08); border: 1px solid rgba(201,168,76,0.08); }
.service-card { background: var(--dark); padding: 40px 32px; position: relative; overflow: hidden; transition: var(--transition); cursor: default; }
.service-card::before { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: var(--transition); }
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover { background: var(--dark-2); }
.service-icon { margin-bottom: 20px; display: block; color: var(--gold); }
.service-icon .icon { width: 2.2rem; height: 2.2rem; }
.service-num { position: absolute; top: 24px; right: 24px; font-family: 'Bebas Neue', sans-serif; font-size: 1.4rem; color: rgba(201,168,76,0.2); }
.service-card h3 { font-family: 'Bebas Neue', sans-serif; font-size: 1.5rem; letter-spacing: 1px; margin-bottom: 12px; }
.service-card p { font-size: 0.85rem; color: var(--grey); line-height: 1.6; margin-bottom: 16px; }
.service-card ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.service-card ul li { font-size: 0.8rem; color: var(--grey); padding-left: 16px; position: relative; }
.service-card ul li::before { content: '\2013'; position: absolute; left: 0; color: var(--gold); }

/* COVERAGE */
.coverage { background: var(--dark); }
.coverage-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.location-list { display: flex; flex-direction: column; gap: 16px; margin-top: 32px; }
.location-item { display: flex; align-items: center; gap: 12px; font-size: 0.95rem; }
.location-item .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }
.coverage-map { background: var(--dark-2); border: 1px solid rgba(201,168,76,0.1); border-radius: 6px; padding: 40px; position: relative; overflow: hidden; min-height: 340px; display: flex; align-items: center; justify-content: center; }
.coverage-map-bg { position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 50%, rgba(201,168,76,0.05) 0%, transparent 70%); }
.coverage-points { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; position: relative; z-index: 1; width: 100%; }
.coverage-point { background: var(--dark-3); border: 1px solid rgba(201,168,76,0.1); border-radius: 4px; padding: 24px; transition: var(--transition); }
.coverage-point:hover { border-color: var(--gold); transform: translateY(-4px); }
.coverage-point h4 { font-family: 'Bebas Neue', sans-serif; font-size: 1.3rem; letter-spacing: 2px; color: var(--gold); margin-bottom: 6px; display: flex; align-items: center; gap: 8px; }
.coverage-point p { font-size: 0.8rem; color: var(--grey); line-height: 1.5; }

/* MAP EMBED (contact page) */
.map-embed { border-radius: 6px; overflow: hidden; border: 1px solid rgba(201,168,76,0.1); min-height: 320px; }
.map-embed iframe { width: 100%; height: 100%; min-height: 320px; border: 0; filter: grayscale(0.3) invert(0.92) contrast(0.9); }

/* PROCESS */
.process { background: var(--black); }
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; margin-top: 60px; }
.process-steps::before { content: ''; position: absolute; top: 32px; left: calc(12.5% + 20px); right: calc(12.5% + 20px); height: 1px; background: rgba(201,168,76,0.2); }
.process-step { text-align: center; padding: 0 20px; position: relative; }
.step-num { width: 64px; height: 64px; border-radius: 50%; border: 1px solid rgba(201,168,76,0.3); display: flex; align-items: center; justify-content: center; margin: 0 auto 24px; font-family: 'Bebas Neue', sans-serif; font-size: 1.5rem; color: var(--gold); letter-spacing: 1px; background: var(--black); position: relative; z-index: 1; transition: var(--transition); }
.process-step:hover .step-num { background: var(--gold); color: var(--black); box-shadow: 0 0 30px rgba(201,168,76,0.4); }
.process-step h4 { font-family: 'Barlow Condensed', sans-serif; font-size: 0.9rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 8px; }
.process-step p { font-size: 0.82rem; color: var(--grey); line-height: 1.5; }

/* STATS */
.stats-section { padding: 80px 0; background: var(--gold); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(0,0,0,0.1); }
.stat-item { text-align: center; padding: 40px 20px; background: var(--gold); transition: var(--transition); }
.stat-item:hover { background: var(--gold-light); }
.stat-item .num { font-family: 'Bebas Neue', sans-serif; font-size: 3.5rem; letter-spacing: 2px; color: var(--black); line-height: 1; }
.stat-item .label { font-family: 'Barlow Condensed', sans-serif; font-size: 0.8rem; font-weight: 700; letter-spacing: 3px; color: rgba(0,0,0,0.55); text-transform: uppercase; margin-top: 8px; }

/* TESTIMONIALS */
.testimonials { background: var(--dark); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card { background: var(--dark-2); border: 1px solid rgba(201,168,76,0.08); border-radius: 6px; padding: 32px; transition: var(--transition); position: relative; }
.testimonial-card::before { content: '\201C'; position: absolute; top: 16px; left: 28px; font-family: 'Bebas Neue', sans-serif; font-size: 6rem; color: rgba(201,168,76,0.08); line-height: 1; }
.testimonial-card:hover { border-color: rgba(201,168,76,0.25); transform: translateY(-6px); }
.testimonial-text { font-size: 0.9rem; color: var(--grey); line-height: 1.7; margin-bottom: 24px; position: relative; z-index: 1; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar { width: 44px; height: 44px; border-radius: 50%; background: rgba(201,168,76,0.15); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--gold); font-family: 'Bebas Neue', sans-serif; }
.testimonial-author h5 { font-family: 'Barlow Condensed', sans-serif; font-size: 0.9rem; font-weight: 700; letter-spacing: 1px; }
.testimonial-author p { font-size: 0.75rem; color: var(--gold); letter-spacing: 1px; }
.star-row { color: var(--gold); font-size: 0.8rem; margin-bottom: 12px; letter-spacing: 2px; }

/* WHY CHOOSE US */
.why { background: var(--black); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.why-list { display: flex; flex-direction: column; gap: 0; }
.why-item { display: flex; gap: 20px; padding: 24px 0; border-bottom: 1px solid rgba(201,168,76,0.06); transition: var(--transition); }
.why-item:last-child { border-bottom: none; }
.why-item:hover { padding-left: 8px; }
.why-icon { width: 48px; height: 48px; flex-shrink: 0; background: rgba(201,168,76,0.08); border-radius: 2px; display: flex; align-items: center; justify-content: center; color: var(--gold); }
.why-item h4 { font-family: 'Barlow Condensed', sans-serif; font-size: 1rem; font-weight: 700; letter-spacing: 1px; margin-bottom: 6px; }
.why-item p { font-size: 0.85rem; color: var(--grey); line-height: 1.6; }
.why-visual { position: relative; }
.why-card-main { background: var(--dark-2); border: 1px solid rgba(201,168,76,0.15); border-radius: 6px; padding: 40px; }
.why-card-main h3 { font-family: 'Bebas Neue', sans-serif; font-size: 2rem; letter-spacing: 2px; color: var(--gold); margin-bottom: 16px; }
.why-card-main p { font-size: 0.9rem; color: var(--grey); line-height: 1.7; margin-bottom: 24px; }
.cert-badges { display: flex; gap: 12px; flex-wrap: wrap; }
.cert-badge { padding: 6px 14px; border: 1px solid rgba(201,168,76,0.3); border-radius: 100px; font-family: 'Barlow Condensed', sans-serif; font-size: 0.7rem; font-weight: 700; letter-spacing: 2px; color: var(--gold); text-transform: uppercase; }
.corner-accent { position: absolute; width: 60px; height: 60px; }
.corner-accent.tr { top: -12px; right: -12px; border-top: 2px solid var(--gold); border-right: 2px solid var(--gold); }
.corner-accent.bl { bottom: -12px; left: -12px; border-bottom: 2px solid var(--gold); border-left: 2px solid var(--gold); }

/* BROCHURE / DOWNLOAD CTA */
.brochure-cta { background: var(--dark-2); border: 1px solid rgba(201,168,76,0.15); border-radius: 8px; padding: 40px; display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.brochure-cta-text h3 { font-family: 'Bebas Neue', sans-serif; font-size: 1.6rem; letter-spacing: 2px; color: var(--gold); margin-bottom: 6px; }
.brochure-cta-text p { color: var(--grey); font-size: 0.9rem; }
.btn-download { display: inline-flex; align-items: center; gap: 10px; background: var(--gold); color: var(--black); font-family: 'Barlow Condensed', sans-serif; font-size: 0.9rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; padding: 14px 28px; text-decoration: none; border-radius: 2px; transition: var(--transition); flex-shrink: 0; }
.btn-download:hover { background: var(--gold-light); transform: translateY(-3px); box-shadow: 0 12px 30px rgba(201,168,76,0.3); }

/* SOCIAL */
.social-section { background: var(--dark-2); padding: 48px 0; border-top: 1px solid rgba(201,168,76,0.06); border-bottom: 1px solid rgba(201,168,76,0.06); }
.social-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.social-text h3 { font-family: 'Bebas Neue', sans-serif; font-size: 1.5rem; letter-spacing: 2px; margin-bottom: 6px; }
.social-text p { color: var(--grey); font-size: 0.9rem; }
.social-links { display: flex; gap: 16px; }
.social-link { display: flex; align-items: center; gap: 10px; padding: 12px 22px; border: 1px solid rgba(201,168,76,0.25); border-radius: 100px; text-decoration: none; color: var(--white); font-family: 'Barlow Condensed', sans-serif; font-weight: 700; letter-spacing: 1px; font-size: 0.85rem; transition: var(--transition); }
.social-link:hover { border-color: var(--gold); color: var(--gold); }
.social-link.yt:hover { background: rgba(201,168,76,0.08); }

/* CONTACT */
.contact { background: var(--dark); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; }
.contact-items { display: flex; flex-direction: column; gap: 20px; margin-top: 32px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; padding: 20px; background: var(--dark-2); border: 1px solid rgba(201,168,76,0.08); border-radius: 4px; transition: var(--transition); text-decoration: none; }
.contact-item:hover { border-color: var(--gold); transform: translateX(6px); }
.contact-item-icon { width: 44px; height: 44px; border-radius: 2px; background: rgba(201,168,76,0.1); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--gold); }
.contact-item-text h5 { font-family: 'Barlow Condensed', sans-serif; font-size: 0.75rem; font-weight: 700; letter-spacing: 2px; color: var(--gold); text-transform: uppercase; margin-bottom: 4px; }
.contact-item-text p { font-size: 0.9rem; color: var(--white); font-weight: 400; }
.contact-form-wrap { background: var(--dark-2); border: 1px solid rgba(201,168,76,0.08); border-radius: 6px; padding: 40px; }
.contact-form-wrap h3 { font-family: 'Bebas Neue', sans-serif; font-size: 1.8rem; letter-spacing: 2px; margin-bottom: 28px; color: var(--gold); }
.form-group { margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group label { display: block; font-family: 'Barlow Condensed', sans-serif; font-size: 0.75rem; letter-spacing: 2px; text-transform: uppercase; color: var(--grey); margin-bottom: 8px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; background: var(--dark-3); border: 1px solid rgba(201,168,76,0.15);
  border-radius: 4px; padding: 12px 14px; color: var(--white); font-family: 'Barlow', sans-serif;
  font-size: 0.9rem; transition: var(--transition);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--gold); }
.form-group textarea { min-height: 100px; resize: vertical; }
.form-submit { width: 100%; justify-content: center; margin-top: 8px; }
.form-note { font-size: 0.78rem; color: var(--grey); margin-top: 12px; }

/* FOOTER */
footer { background: var(--dark-2); padding: 60px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand .logo-wrap { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-brand .logo-wrap img { width: 44px; height: 44px; border-radius: 50%; border: 1.5px solid var(--gold); }
.footer-brand .logo-wrap .brand { font-family: 'Bebas Neue', sans-serif; font-size: 1.1rem; letter-spacing: 2px; }
.footer-brand .logo-wrap .brand span { display: block; font-size: 0.65rem; color: var(--gold); letter-spacing: 3px; font-family: 'Barlow Condensed', sans-serif; }
.footer-brand p { font-size: 0.85rem; color: var(--grey); line-height: 1.6; max-width: 280px; }
.footer-col h4 { font-family: 'Barlow Condensed', sans-serif; font-size: 0.8rem; font-weight: 700; letter-spacing: 3px; color: var(--gold); text-transform: uppercase; margin-bottom: 16px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 0.85rem; color: var(--grey); text-decoration: none; transition: var(--transition); display: flex; align-items: center; gap: 8px; }
.footer-col ul li a:hover { color: var(--gold); padding-left: 4px; }
.footer-col ul li a::before { content: '\203A'; color: var(--gold-dark); }
.footer-brochure { margin-top: 20px; }
.footer-bottom { border-top: 1px solid rgba(201,168,76,0.06); padding-top: 28px; display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.footer-bottom p { font-size: 0.78rem; color: var(--grey); }
.footer-bottom p a { color: var(--gold); text-decoration: none; }

/* FLOATING CONTACT */
.floating-contact { position: fixed; bottom: 30px; right: 30px; z-index: 900; display: flex; flex-direction: column; gap: 12px; align-items: flex-end; }
.float-btn { display: flex; align-items: center; gap: 10px; padding: 12px 20px; border-radius: 100px; text-decoration: none; font-family: 'Barlow Condensed', sans-serif; font-size: 0.85rem; font-weight: 700; letter-spacing: 1px; transition: var(--transition); white-space: nowrap; box-shadow: 0 8px 24px rgba(0,0,0,0.4); }
.float-btn.call { background: var(--gold); color: var(--black); }
.float-btn.call:hover { transform: scale(1.05); background: var(--gold-light); }
.float-btn.email { background: var(--dark-2); color: var(--white); border: 1px solid rgba(201,168,76,0.2); }
.float-btn.email:hover { border-color: var(--gold); transform: scale(1.05); }

/* WHATSAPP FLOATING BUTTON */
.whatsapp-float {
  position: fixed; bottom: 30px; left: 30px; z-index: 900;
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--whatsapp); color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
  transition: var(--transition); text-decoration: none;
}
.whatsapp-float:hover { transform: scale(1.08); box-shadow: 0 10px 30px rgba(37,211,102,0.4); }
.whatsapp-float .icon { width: 28px; height: 28px; stroke: none; fill: currentColor; }

/* SCROLL TO TOP */
.scroll-top { position: fixed; bottom: 100px; left: 30px; z-index: 900; width: 44px; height: 44px; border-radius: 50%; background: var(--dark-2); border: 1px solid rgba(201,168,76,0.2); display: flex; align-items: center; justify-content: center; cursor: pointer; transition: var(--transition); opacity: 0; pointer-events: none; color: var(--gold); text-decoration: none; }
.scroll-top.visible { opacity: 1; pointer-events: all; }
.scroll-top:hover { background: var(--gold); color: var(--black); transform: translateY(-4px); }

/* REVEAL ANIMATION */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; gap: 60px; text-align: center; }
  .hero-subtitle { margin-left: auto; margin-right: auto; }
  .hero-ctas { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { order: -1; }
  .logo-ring { width: 280px; height: 280px; }
  .logo-main { width: 200px; height: 200px; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .coverage-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .process-steps::before { display: none; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .owner-grid { grid-template-columns: 1fr; text-align: center; }
  .owner-photo { max-width: 280px; margin: 0 auto; }
  .brochure-cta { justify-content: center; text-align: center; }
}
@media (max-width: 768px) {
  nav { padding: 16px 24px; }
  nav.scrolled { padding: 12px 24px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .container { padding: 0 24px; }
  section { padding: 70px 0; }
  .services-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .social-inner { flex-direction: column; text-align: center; }
  .social-links { justify-content: center; flex-wrap: wrap; }
  .floating-contact { bottom: 16px; right: 16px; }
  .float-btn { font-size: 0; padding: 14px; border-radius: 50%; }
  .float-btn span:not(.icon) { display: none; }
  .whatsapp-float { bottom: 16px; left: 16px; width: 50px; height: 50px; }
  .scroll-top { bottom: 78px; left: 16px; }
  .hero-content { padding: 100px 24px 60px; }
  .coverage-points { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .image-slider { aspect-ratio: 4/5; }
  .slider-arrow { width: 38px; height: 38px; }
}
