/* =============================================
   Naples Outdoor Kitchens & Renovations
   Main Stylesheet
   ============================================= */

/* --- Google Fonts & Variables --- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --primary: #b8860b;
  --primary-dark: #8b6508;
  --primary-light: #d4a017;
  --dark: #0d0d0d;
  --dark-2: #1a1a1a;
  --dark-3: #242424;
  --dark-4: #2e2e2e;
  --text-light: #f5f0e8;
  --text-muted: #a89880;
  --text-gray: #ccbbaa;
  --white: #ffffff;
  --border: rgba(184, 134, 11, 0.3);
  --gradient: linear-gradient(135deg, #b8860b 0%, #d4a017 50%, #b8860b 100%);
  --shadow: 0 8px 40px rgba(0,0,0,0.5);
  --shadow-sm: 0 4px 16px rgba(0,0,0,0.3);
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--dark);
  color: var(--text-light);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary-light); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--white); }
ul { list-style: none; }
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  line-height: 1.25;
  color: var(--white);
}

/* --- Utility Classes --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.section-pad { padding: 90px 0; }
.section-pad-sm { padding: 60px 0; }
.text-center { text-align: center; }
.text-gold { color: var(--primary-light); }
.bg-dark-2 { background: var(--dark-2); }
.bg-dark-3 { background: var(--dark-3); }
.gold-divider {
  width: 70px;
  height: 3px;
  background: var(--gradient);
  margin: 16px auto 32px;
  border-radius: 2px;
}
.gold-divider.left { margin-left: 0; }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 4px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  text-transform: uppercase;
}
.btn-gold {
  background: var(--gradient);
  color: var(--dark);
  border-color: var(--primary);
}
.btn-gold:hover {
  background: var(--primary-dark);
  color: var(--white);
  box-shadow: 0 6px 24px rgba(184,134,11,0.4);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--primary-light);
  border-color: var(--primary-light);
}
.btn-outline:hover {
  background: var(--primary);
  color: var(--dark);
  box-shadow: 0 6px 24px rgba(184,134,11,0.3);
}
.btn-white {
  background: var(--white);
  color: var(--dark);
  border-color: var(--white);
}
.btn-white:hover {
  background: var(--primary-light);
  border-color: var(--primary-light);
  transform: translateY(-2px);
}

/* =============================================
   HEADER / NAVIGATION
   ============================================= */
#top-bar {
  background: var(--dark-3);
  border-bottom: 1px solid var(--border);
  padding: 8px 0;
  font-size: 0.82rem;
}
.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.top-bar-info { display: flex; gap: 24px; align-items: center; flex-wrap: wrap; }
.top-bar-info a, .top-bar-hours {
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}
.top-bar-info a:hover { color: var(--primary-light); }
.top-bar-info i, .top-bar-hours i { color: var(--primary); font-size: 0.8rem; }
.top-bar-social { display: flex; gap: 12px; align-items: center; }
.top-bar-social a {
  color: var(--text-muted);
  font-size: 0.9rem;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--border);
  transition: var(--transition);
}
.top-bar-social a:hover {
  background: var(--primary);
  color: var(--dark);
  border-color: var(--primary);
}

#header {
  background: rgba(13,13,13,0.97);
  backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
#header.scrolled {
  box-shadow: 0 4px 30px rgba(0,0,0,0.6);
}
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  gap: 24px;
}
.logo img {
  height: 55px;
  width: auto;
  filter: brightness(1.1);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-menu > li { position: relative; }
.nav-menu > li > a {
  display: block;
  padding: 8px 14px;
  color: var(--text-light);
  font-weight: 500;
  font-size: 0.88rem;
  letter-spacing: 0.3px;
  border-radius: 4px;
  text-transform: uppercase;
  transition: var(--transition);
}
.nav-menu > li > a:hover,
.nav-menu > li > a.active {
  color: var(--primary-light);
  background: rgba(184,134,11,0.1);
}
.nav-menu .has-dropdown > a::after {
  content: '\f078';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 0.65rem;
  margin-left: 5px;
  color: var(--primary);
}

/* Dropdown */
.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: 6px;
  min-width: 260px;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: var(--transition);
  z-index: 200;
}
.dropdown li a {
  display: block;
  padding: 11px 20px;
  color: var(--text-gray);
  font-size: 0.87rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: var(--transition);
}
.dropdown li:last-child a { border-bottom: none; }
.dropdown li a:hover {
  color: var(--primary-light);
  background: rgba(184,134,11,0.1);
  padding-left: 28px;
}
.has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-cta {
  padding: 10px 22px !important;
  background: var(--gradient) !important;
  color: var(--dark) !important;
  border-radius: 4px !important;
  font-weight: 700 !important;
}
.nav-cta:hover {
  background: var(--primary-dark) !important;
  color: var(--white) !important;
  box-shadow: 0 4px 16px rgba(184,134,11,0.4);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  padding: 5px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--primary-light);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =============================================
   HERO SECTION
   ============================================= */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--dark);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?w=1920&q=80');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: brightness(0.3);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.85) 0%, rgba(13,13,13,0.5) 60%, rgba(0,0,0,0.7) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(184,134,11,0.15);
  border: 1px solid var(--border);
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 0.82rem;
  color: var(--primary-light);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 24px;
  color: var(--white);
}
.hero h1 span { color: var(--primary-light); }
.hero p {
  font-size: 1.1rem;
  color: var(--text-gray);
  margin-bottom: 36px;
  max-width: 600px;
  line-height: 1.8;
}
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-features {
  display: flex;
  gap: 32px;
  margin-top: 52px;
  flex-wrap: wrap;
}
.hero-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-muted);
  font-size: 0.88rem;
}
.hero-feature i {
  color: var(--primary);
  font-size: 1rem;
}
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}
.hero-scroll i { font-size: 1.2rem; color: var(--primary); }
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-8px); }
}

/* =============================================
   STATS BAR
   ============================================= */
.stats-bar {
  background: var(--dark-3);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 32px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
}
.stat-item {
  background: var(--dark-3);
  padding: 28px 24px;
  text-align: center;
}
.stat-item .number {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--primary-light);
  display: block;
  line-height: 1;
  margin-bottom: 6px;
}
.stat-item .label {
  font-size: 0.82rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* =============================================
   SECTION HEADERS
   ============================================= */
.section-header { margin-bottom: 56px; }
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary-light);
  font-size: 0.82rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 12px;
}
.section-label::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--gradient);
  border-radius: 2px;
}
.section-header h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 16px;
}
.section-header p {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 620px;
  line-height: 1.8;
}
.section-header.center p { margin: 0 auto; }

/* =============================================
   SERVICES GRID
   ============================================= */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2px;
  background: var(--border);
}
.service-card {
  background: var(--dark-2);
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient);
  transform: scaleX(0);
  transition: var(--transition);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover { background: var(--dark-3); transform: translateY(-4px); }
.service-icon {
  width: 60px;
  height: 60px;
  background: rgba(184,134,11,0.1);
  border: 1px solid var(--border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: var(--transition);
}
.service-icon i {
  font-size: 1.5rem;
  color: var(--primary-light);
}
.service-card:hover .service-icon {
  background: var(--primary);
  border-color: var(--primary);
}
.service-card:hover .service-icon i { color: var(--dark); }
.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: 14px;
  color: var(--white);
}
.service-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 20px;
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--primary-light);
  font-size: 0.88rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.service-link i { font-size: 0.75rem; transition: var(--transition); }
.service-link:hover i { transform: translateX(4px); }

/* Services Page Grid */
.services-page-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}
.service-page-card {
  background: var(--dark-2);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  transition: var(--transition);
}
.service-page-card:hover {
  border-color: var(--primary);
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.4);
}
.service-page-card-img {
  height: 220px;
  overflow: hidden;
  background: var(--dark-3);
}
.service-page-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}
.service-page-card:hover .service-page-card-img img {
  transform: scale(1.06);
}
.service-page-card-body { padding: 28px; }
.service-page-card-body h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
}
.service-page-card-body p {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-bottom: 18px;
  line-height: 1.7;
}

/* =============================================
   WHY CHOOSE US
   ============================================= */
.why-us-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
}
.why-card {
  padding: 32px 28px;
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 8px;
  transition: var(--transition);
  position: relative;
}
.why-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 8px;
  border: 1px solid var(--primary);
  opacity: 0;
  transition: var(--transition);
}
.why-card:hover::after { opacity: 1; }
.why-card:hover { transform: translateY(-4px); }
.why-num {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: rgba(184,134,11,0.15);
  line-height: 1;
  margin-bottom: 12px;
}
.why-card h4 {
  font-size: 1.05rem;
  margin-bottom: 10px;
  color: var(--white);
}
.why-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* =============================================
   ABOUT / CTA SECTIONS
   ============================================= */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.about-split.reverse { direction: rtl; }
.about-split.reverse > * { direction: ltr; }
.about-img-wrap {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}
.about-img-wrap::before {
  content: '';
  position: absolute;
  inset: -8px;
  border: 2px solid var(--primary);
  border-radius: 12px;
  z-index: -1;
  opacity: 0.5;
}
.about-img-wrap img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 8px;
}
.about-img-badge {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background: var(--gradient);
  color: var(--dark);
  padding: 16px 20px;
  border-radius: 8px;
  text-align: center;
  font-weight: 700;
}
.about-img-badge .num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  display: block;
  line-height: 1;
}
.about-img-badge .sub { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 1px; }

.checklist { display: flex; flex-direction: column; gap: 12px; margin: 28px 0 36px; }
.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text-gray);
}
.checklist li i {
  color: var(--primary-light);
  font-size: 0.9rem;
  margin-top: 3px;
  flex-shrink: 0;
}

/* CTA Banner */
.cta-banner {
  background: var(--dark-3);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 72px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(184,134,11,0.08) 0%, transparent 70%);
}
.cta-banner h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  margin-bottom: 16px;
  position: relative;
}
.cta-banner p {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto 36px;
  position: relative;
}
.cta-banner .btn-wrap {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

/* Process Steps */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2px;
  background: var(--border);
  border-radius: 8px;
  overflow: hidden;
}
.process-step {
  background: var(--dark-2);
  padding: 36px 24px;
  text-align: center;
  position: relative;
}
.process-step-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-light);
  display: block;
  margin-bottom: 14px;
  line-height: 1;
}
.process-step h4 { font-size: 1rem; margin-bottom: 10px; }
.process-step p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; }

/* =============================================
   PAGE HERO (inner pages)
   ============================================= */
.page-hero {
  background: var(--dark-2);
  padding: 80px 0 56px;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(184,134,11,0.06) 0%, transparent 60%);
}
.page-hero-content { position: relative; z-index: 1; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.breadcrumb a { color: var(--primary-light); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb i { font-size: 0.6rem; color: var(--text-muted); }
.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 16px;
}
.page-hero p {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 680px;
  line-height: 1.8;
}
.page-hero .cta-wrap {
  display: flex;
  gap: 16px;
  margin-top: 32px;
  flex-wrap: wrap;
}

/* Service Page Content */
.service-content-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 56px;
  align-items: start;
}
.service-main h2 {
  font-size: 1.7rem;
  margin: 36px 0 14px;
  color: var(--white);
}
.service-main h2:first-child { margin-top: 0; }
.service-main p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 18px;
  font-size: 0.98rem;
}
.service-main ul {
  list-style: none;
  margin-bottom: 24px;
}
.service-main ul li {
  padding: 8px 0;
  color: var(--text-gray);
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.95rem;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.service-main ul li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: var(--primary);
  font-size: 0.75rem;
  margin-top: 4px;
  flex-shrink: 0;
}
.service-main .service-img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  border-radius: 8px;
  margin: 28px 0;
  border: 1px solid var(--border);
}

/* Sidebar */
.sidebar { position: sticky; top: 90px; }
.sidebar-widget {
  background: var(--dark-2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 28px;
  margin-bottom: 24px;
}
.sidebar-widget h4 {
  font-size: 1.1rem;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
  color: var(--white);
}
.contact-widget-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.contact-widget-item:last-child { border-bottom: none; }
.contact-widget-icon {
  width: 36px;
  height: 36px;
  background: rgba(184,134,11,0.1);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-widget-icon i { color: var(--primary-light); font-size: 0.88rem; }
.contact-widget-text span { display: block; font-size: 0.78rem; color: var(--text-muted); margin-bottom: 2px; }
.contact-widget-text a, .contact-widget-text p {
  color: var(--text-gray);
  font-size: 0.9rem;
}
.contact-widget-text a:hover { color: var(--primary-light); }

.services-list a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 11px 14px;
  color: var(--text-gray);
  font-size: 0.9rem;
  border-radius: 5px;
  transition: var(--transition);
  margin-bottom: 4px;
  border: 1px solid transparent;
}
.services-list a:hover, .services-list a.active {
  background: rgba(184,134,11,0.1);
  border-color: var(--border);
  color: var(--primary-light);
  padding-left: 18px;
}
.services-list a i { font-size: 0.72rem; }

/* Quote Form in Sidebar */
.quote-form .form-group { margin-bottom: 14px; }
.quote-form input,
.quote-form textarea,
.quote-form select {
  width: 100%;
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 11px 14px;
  color: var(--text-light);
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  transition: var(--transition);
}
.quote-form input:focus,
.quote-form textarea:focus,
.quote-form select:focus {
  outline: none;
  border-color: var(--primary);
  background: var(--dark-2);
}
.quote-form input::placeholder,
.quote-form textarea::placeholder { color: var(--text-muted); }
.quote-form textarea { height: 90px; resize: vertical; }
.quote-form select option { background: var(--dark-3); }
.quote-form .btn { width: 100%; justify-content: center; margin-top: 4px; }

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}
.testimonial-card {
  background: var(--dark-2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 32px 28px;
  transition: var(--transition);
}
.testimonial-card:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
}
.testimonial-stars { color: var(--primary-light); margin-bottom: 16px; font-size: 0.9rem; letter-spacing: 2px; }
.testimonial-text {
  color: var(--text-gray);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(184,134,11,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--primary-light);
  font-weight: 700;
  flex-shrink: 0;
}
.testimonial-author-info .name { font-weight: 600; font-size: 0.95rem; color: var(--white); }
.testimonial-author-info .location { font-size: 0.8rem; color: var(--text-muted); }

/* =============================================
   CONTACT PAGE
   ============================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 56px;
  align-items: start;
}
.contact-form-wrap {
  background: var(--dark-2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 40px;
}
.contact-form-wrap h3 { margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-bottom: 7px;
  font-weight: 600;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 13px 16px;
  color: var(--text-light);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  transition: var(--transition);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(184,134,11,0.1);
}
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--text-muted); }
.form-group textarea { height: 140px; resize: vertical; }
.form-group select option { background: var(--dark-3); }

.contact-info-box {
  background: var(--dark-2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 36px;
  margin-bottom: 24px;
}
.contact-info-box h3 { margin-bottom: 24px; }
.info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.info-item:last-child { border-bottom: none; }
.info-icon {
  width: 44px;
  height: 44px;
  background: rgba(184,134,11,0.1);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.info-icon i { color: var(--primary-light); font-size: 1rem; }
.info-content h5 {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-bottom: 4px;
  font-family: 'Inter', sans-serif;
}
.info-content p, .info-content a {
  color: var(--text-gray);
  font-size: 0.95rem;
  font-family: 'Inter', sans-serif;
}
.info-content a:hover { color: var(--primary-light); }

.map-box {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border);
  height: 320px;
}
.map-box iframe {
  width: 100%;
  height: 100%;
  filter: grayscale(40%) brightness(0.85);
}

.hours-grid {
  display: grid;
  gap: 8px;
}
.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.88rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  color: var(--text-muted);
}
.hours-row:last-child { border-bottom: none; }
.hours-row .day { color: var(--text-gray); }
.hours-row .time { color: var(--primary-light); font-weight: 500; }

/* =============================================
   ABOUT PAGE
   ============================================= */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
}
.team-card {
  background: var(--dark-2);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  text-align: center;
  transition: var(--transition);
}
.team-card:hover { border-color: var(--primary); transform: translateY(-6px); }
.team-img {
  height: 260px;
  overflow: hidden;
  background: var(--dark-3);
}
.team-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}
.team-card:hover .team-img img { transform: scale(1.06); }
.team-card-body { padding: 24px; }
.team-card-body h4 { font-size: 1.05rem; margin-bottom: 4px; }
.team-card-body span { font-size: 0.85rem; color: var(--primary-light); display: block; margin-bottom: 12px; }
.team-card-body p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; }

/* Values Grid */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 28px;
}
.value-card {
  padding: 28px;
  background: var(--dark-2);
  border: 1px solid var(--border);
  border-radius: 8px;
  transition: var(--transition);
}
.value-card:hover { border-color: var(--primary); transform: translateY(-4px); }
.value-icon {
  width: 52px;
  height: 52px;
  background: rgba(184,134,11,0.1);
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: var(--transition);
}
.value-icon i { color: var(--primary-light); font-size: 1.3rem; }
.value-card:hover .value-icon { background: var(--primary); border-color: var(--primary); }
.value-card:hover .value-icon i { color: var(--dark); }
.value-card h4 { font-size: 1rem; margin-bottom: 10px; }
.value-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.65; }

/* =============================================
   FOOTER
   ============================================= */
#footer {
  background: var(--dark-2);
  border-top: 1px solid var(--border);
}
.footer-main { padding: 72px 0 48px; }
.footer-grid {
  display: grid;
  grid-template-columns: 280px 1fr 1fr 1fr;
  gap: 48px;
}
.footer-brand .logo img {
  height: 50px;
  margin-bottom: 20px;
  filter: brightness(1.05);
}
.footer-brand p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 24px;
}
.footer-social { display: flex; gap: 10px; flex-wrap: wrap; }
.footer-social a {
  width: 38px;
  height: 38px;
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: var(--transition);
}
.footer-social a:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--dark);
}
.footer-col h5 {
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--primary-light);
  margin-bottom: 22px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
}
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  color: var(--text-muted);
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  gap: 7px;
  transition: var(--transition);
}
.footer-links a i { font-size: 0.65rem; color: var(--primary); }
.footer-links a:hover { color: var(--primary-light); padding-left: 4px; }

.footer-contact-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 16px;
}
.footer-contact-item i {
  color: var(--primary);
  font-size: 0.9rem;
  margin-top: 3px;
  flex-shrink: 0;
}
.footer-contact-item a, .footer-contact-item span {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.6;
}
.footer-contact-item a:hover { color: var(--primary-light); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 0.82rem; color: var(--text-muted); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a {
  font-size: 0.82rem;
  color: var(--text-muted);
}
.footer-bottom-links a:hover { color: var(--primary-light); }

/* =============================================
   UTILITY / MISC
   ============================================= */
.highlight-box {
  background: rgba(184,134,11,0.06);
  border-left: 3px solid var(--primary);
  padding: 20px 24px;
  border-radius: 0 6px 6px 0;
  margin: 28px 0;
}
.highlight-box p {
  color: var(--text-gray) !important;
  font-size: 1rem !important;
  font-style: italic;
  margin: 0 !important;
}

.badge {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(184,134,11,0.15);
  border: 1px solid var(--border);
  border-radius: 30px;
  font-size: 0.78rem;
  color: var(--primary-light);
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.alert-success {
  background: rgba(0, 200, 100, 0.1);
  border: 1px solid rgba(0, 200, 100, 0.3);
  color: #6fffaa;
  padding: 14px 18px;
  border-radius: 6px;
  font-size: 0.9rem;
  display: none;
  margin-top: 12px;
}

/* Image placeholders */
.img-placeholder {
  width: 100%;
  background: var(--dark-3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.85rem;
  border-radius: 8px;
}

/* Two column content */
.two-col-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .service-content-grid { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .about-split { grid-template-columns: 1fr; gap: 40px; }
  .about-split.reverse { direction: ltr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .two-col-content { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .section-pad { padding: 64px 0; }
  .nav-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(13,13,13,0.98);
    backdrop-filter: blur(16px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    z-index: 999;
    padding: 24px;
  }
  .nav-menu.open { display: flex; }
  .nav-menu > li > a {
    font-size: 1.05rem;
    padding: 12px 24px;
    text-align: center;
  }
  .dropdown {
    position: static;
    display: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: transparent;
    border: none;
    margin-top: 4px;
  }
  .has-dropdown.open .dropdown { display: block; }
  .hamburger { display: flex; z-index: 1000; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .form-row { grid-template-columns: 1fr; }
  .hero-features { gap: 20px; }
  .top-bar-info { font-size: 0.78rem; gap: 14px; }
  .top-bar-social { display: none; }
}

@media (max-width: 576px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .hero h1 { font-size: 2rem; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { text-align: center; justify-content: center; }
  .cta-banner .btn-wrap { flex-direction: column; align-items: center; }
  .contact-form-wrap { padding: 24px; }
  .services-grid { background: transparent; gap: 16px; }
  .service-card { border: 1px solid var(--border); border-radius: 8px; }
}

/* =============================================
   ANIMATIONS
   ============================================= */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}
.animate-in {
  animation: fadeInUp 0.6s ease-out forwards;
}
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
