/* ============================================
   BOLD CITY CABLING - MODERN LANDING PAGE
   ============================================ */

/* CSS Variables */
:root {
  --primary-color: #0066ff;
  --primary-dark: #0052cc;
  --secondary-color: #ff6b35;
  --accent-color: #00d4ff;
  --text-dark: #1a1a1a;
  --text-light: #666666;
  --text-white: #ffffff;
  --bg-light: #f8f9fa;
  --bg-white: #ffffff;
  --border-color: #e0e0e0;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
  --gradient-primary: linear-gradient(135deg, #0066ff 0%, #0052cc 100%);
  --gradient-hero: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 50%, #2a2f4a 100%);
  --gradient-accent: linear-gradient(135deg, #00d4ff 0%, #0066ff 50%, #ff6b35 100%);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

html {
  scroll-behavior: smooth;
  width: 100%;
  overflow-x: hidden;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--bg-white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  width: 100%;
  margin: 0;
  padding: 0;
  font-size: 1.2rem;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-dark);
}

h1 { font-size: clamp(2.4rem, 6vw, 4.2rem); }
h2 { font-size: clamp(2.1rem, 4.8vw, 3rem); }
h3 { font-size: clamp(1.8rem, 3.6vw, 2.4rem); }
h4 { font-size: clamp(1.5rem, 3vw, 1.8rem); }

p {
  margin-bottom: 1.2rem;
  color: var(--text-light);
  font-size: 1.2rem;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Container */
.container {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 40px;
  width: 100%;
  box-sizing: border-box;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(248, 250, 252, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  z-index: 1000;
  transition: var(--transition);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  min-height: 70px;
  display: flex;
  align-items: center;
}

.navbar.scrolled {
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
  background: rgba(244, 247, 252, 0.98);
}

.nav-container {
  max-width: 100%;
  width: 100%;
  margin: 0 auto;
  padding: 1rem 40px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  box-sizing: border-box;
  gap: 2rem;
  min-height: 130px;
  position: relative;
}

.nav-container > * {
  flex-shrink: 0;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--text-dark);
  flex: 0 0 auto;
  flex-shrink: 0;
  max-height: 60px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  padding-left: 0;
  z-index: 10;
}

.nav-menu {
  flex: 1 1 auto;
  justify-content: flex-end;
}

.nav-logo a {
  display: flex;
  align-items: center;
  transition: var(--transition);
  text-decoration: none;
}

.nav-logo a:hover {
  opacity: 0.8;
}

.logo-img {
  height: 100px;
  width: auto;
  max-height: none;
  object-fit: contain;
  display: block;
  transition: var(--transition);
  filter: drop-shadow(0 2px 8px rgba(0, 102, 255, 0.2));
  transform-origin: center center;
}

.logo-img:hover {
  filter: drop-shadow(0 4px 16px rgba(0, 102, 255, 0.4));
}

.logo-text {
  display: none; /* Hide text since logo image contains the text */
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 1.5rem;
  align-items: center;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}

.nav-menu li {
  margin: 0;
  padding: 0;
}

.nav-link {
  font-weight: 500;
  color: var(--text-dark);
  position: relative;
  padding: 0.6rem 0.9rem;
  white-space: nowrap;
  font-size: 1.2rem;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: var(--transition);
}

.nav-link:hover {
  color: var(--primary-color);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-cta {
  background: var(--gradient-primary);
  color: var(--text-white);
  padding: 0.9rem 1.8rem;
  border-radius: 9.6px;
  font-weight: 600;
  white-space: nowrap;
  font-size: 1.2rem;
}

.nav-cta::after {
  display: none;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
  position: relative;
}

.nav-toggle span {
  width: 25px;
  height: 3px;
  background: var(--text-dark);
  border-radius: 3px;
  transition: var(--transition);
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--text-white);
  padding: 120px 20px 80px;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-hero);
  z-index: -1;
}

.hero-background::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(0, 102, 255, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255, 107, 53, 0.1) 0%, transparent 50%);
  animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.8; }
}

.hero-content {
  max-width: 100%;
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  animation: fadeInUp 1s ease-out;
  padding: 0 40px;
  box-sizing: border-box;
  text-align: center;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes logoFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px);
  }
}

@keyframes heroLogoEntrance {
  0% {
    opacity: 0;
    transform: translateY(-20px);
    filter: drop-shadow(0 0 0 rgba(0, 102, 255, 0));
  }
  60% {
    opacity: 1;
    transform: translateY(3px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
    filter: drop-shadow(0 8px 32px rgba(0, 102, 255, 0.3));
  }
}

@keyframes heroLogoFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-logo {
  height: auto;
  max-height: 600px;
  width: 800px;
  max-width: 800px;
  object-fit: contain;
  display: block;
  margin: 0 auto 1.5rem;
  animation: heroLogoEntrance 1.2s ease-out, heroLogoFloat 4s ease-in-out 1.2s infinite;
  filter: drop-shadow(0 8px 32px rgba(0, 102, 255, 0.3));
  transition: var(--transition);
  transform-origin: center center;
}

.hero-logo-subtitle {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
  margin: 0 auto 1.5rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.service-areas-hero {
  text-align: center;
  margin: 2rem auto 3rem;
  max-width: 100%;
  padding: 0 40px;
}

.service-areas-intro {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1rem;
  font-weight: 600;
}

.service-areas-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}

.service-areas-list span {
  display: inline-block;
  padding: 0.5rem 1.2rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.95rem;
  font-weight: 500;
  transition: var(--transition);
}

.service-areas-list span:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.hero-logo:hover {
  filter: drop-shadow(0 12px 48px rgba(0, 102, 255, 0.5));
}

.hero-badge {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 2rem;
  animation: fadeIn 1.2s ease-out;
}

.hero-title {
  font-size: clamp(2.4rem, 5.4vw, 3.9rem);
  font-weight: 800;
  margin-bottom: 1.8rem;
  line-height: 1.1;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
  letter-spacing: -0.02em;
  color: var(--text-white);
}

.highlight {
  background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(1.32rem, 2.4vw, 1.68rem);
  margin-bottom: 3.6rem;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.8;
  font-weight: 400;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 40px;
}

.hero-stats-box {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.05) 100%);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 32px;
  padding: 2.5rem 3rem;
  margin: 2rem auto 3rem;
  max-width: 1400px;
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  position: relative;
}

.hero-stats-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
}

.hero-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.stat {
  text-align: center;
  flex: 0 0 auto;
}

.stat-number {
  font-size: 2.4rem;
  font-weight: 800;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.3rem;
  line-height: 1;
}

.stat-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 1.2px;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-10px); }
}

.scroll-indicator {
  width: 2px;
  height: 30px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 2px;
}

/* Buttons */
.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 1.2rem 3rem;
  font-weight: 600;
  font-size: 1.32rem;
  border-radius: 14.4px;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  text-align: center;
  text-decoration: none;
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--text-white);
  box-shadow: 0 4px 20px rgba(0, 102, 255, 0.3);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(0, 102, 255, 0.4);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  color: var(--text-white);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
}

.btn-full {
  width: 100%;
}

/* Section Styles */
section {
  padding: 96px 24px;
  width: 100%;
  box-sizing: border-box;
}

.section-header {
  text-align: center;
  max-width: 100%;
  margin: 0 auto 4.8rem;
  padding: 0 40px;
}

.section-header h2 {
  margin-bottom: 1.2rem;
}

.section-badge {
  display: inline-block;
  padding: 0.72rem 2.1rem;
  background: linear-gradient(135deg, rgba(0, 102, 255, 0.1) 0%, rgba(0, 212, 255, 0.1) 100%);
  color: var(--primary-color);
  border-radius: 50px;
  font-size: 1.02rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  margin-bottom: 1.8rem;
  border: 1px solid rgba(0, 102, 255, 0.2);
}

.section-description {
  font-size: 1.32rem;
  color: var(--text-light);
  margin-top: 1.2rem;
}

.lead-text {
  font-size: 1.44rem;
  color: var(--text-dark);
  margin-bottom: 2.4rem;
}

/* Services Section */
.services {
  background: var(--bg-white);
  width: 100%;
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3.2rem;
  margin-top: 4rem;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 0 40px;
}

.service-card {
  background: var(--bg-white);
  padding: 4rem 3.2rem;
  border-radius: 28px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04), 0 8px 32px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(250, 252, 255, 1) 100%);
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--accent-color));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(0, 102, 255, 0.03) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.service-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 8px 32px rgba(0, 102, 255, 0.12), 0 16px 64px rgba(0, 0, 0, 0.08);
  border-color: rgba(0, 102, 255, 0.1);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover::after {
  opacity: 1;
}

.service-icon {
  font-size: 4.8rem;
  margin-bottom: 2.4rem;
  display: block;
  line-height: 1;
  filter: drop-shadow(0 4px 12px rgba(0, 102, 255, 0.15));
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateY(0);
}

.service-card:hover .service-icon {
  transform: translateY(-4px) scale(1.05);
  filter: drop-shadow(0 8px 24px rgba(0, 102, 255, 0.25));
}

.service-icon-image {
  width: 96px;
  height: 96px;
  margin: 0 auto 2.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(0, 102, 255, 0.08) 0%, rgba(0, 212, 255, 0.08) 100%);
  box-shadow: 0 4px 16px rgba(0, 102, 255, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.5);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.service-card:hover .service-icon-image {
  transform: translateY(-6px) scale(1.08);
  box-shadow: 0 8px 32px rgba(0, 102, 255, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.fiber-light-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover .fiber-light-img {
  transform: scale(1.1);
}

.service-card h3 {
  font-size: 1.92rem;
  margin-bottom: 1.6rem;
  color: var(--text-dark);
  font-weight: 700;
  letter-spacing: -0.02em;
  transition: color 0.3s ease;
  position: relative;
  z-index: 1;
}

.service-card:hover h3 {
  color: var(--primary-color);
}

.service-card p {
  margin-bottom: 0;
  line-height: 1.75;
  font-size: 1.14rem;
  color: var(--text-light);
  position: relative;
  z-index: 1;
  flex-grow: 1;
}

.service-features {
  list-style: none;
  margin-top: 1.5rem;
}

.service-features li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: var(--text-light);
}

.service-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: 700;
}

/* Why Us Section */
.why-us {
  background: var(--bg-light);
  width: 100%;
}

.why-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  width: 100%;
}

.why-text h2 {
  margin-bottom: 1.5rem;
}

.features-list {
  margin-top: 2rem;
}

.feature-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
  align-items: flex-start;
}

.feature-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: var(--gradient-primary);
  color: var(--text-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
}

.feature-content h4 {
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.feature-content p {
  color: var(--text-light);
  margin: 0;
}

.why-image {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  min-height: 450px;
}

.why-image-img {
  width: 100%;
  height: 100%;
  min-height: 450px;
  object-fit: cover;
  display: block;
  border-radius: 24px;
  transition: var(--transition);
}

.why-image:hover .why-image-img {
  transform: scale(1.05);
}

/* Service Areas Section */
.service-areas {
  background: var(--bg-white);
  width: 100%;
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.area-card {
  background: linear-gradient(135deg, var(--bg-white) 0%, var(--bg-light) 100%);
  padding: 1.75rem;
  border-radius: 16px;
  text-align: center;
  font-weight: 600;
  color: var(--text-dark);
  border: 2px solid var(--border-color);
  transition: var(--transition);
  font-size: 1.1rem;
}

.area-card:hover {
  border-color: var(--primary-color);
  background: var(--bg-white);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

/* Testimonials Section */
.testimonials {
  background: var(--bg-light);
  width: 100%;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.testimonial-card {
  background: var(--bg-white);
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--border-color);
  transition: var(--transition);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 1rem;
  left: 1.5rem;
  font-size: 4rem;
  color: var(--primary-color);
  opacity: 0.1;
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.testimonial-rating {
  color: #ffc107;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.testimonial-text {
  font-style: italic;
  color: var(--text-light);
  margin-bottom: 1.8rem;
  line-height: 1.8;
  font-size: 1.26rem;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.testimonial-author strong {
  color: var(--text-dark);
  font-size: 1.1rem;
}

.testimonial-author span {
  color: var(--text-light);
  font-size: 0.9rem;
}

/* FAQ Section */
.faq {
  background: var(--bg-white);
  width: 100%;
}

.faq-list {
  max-width: 1400px;
  margin: 3rem auto 0;
  padding: 0 40px;
}

.faq-item {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  margin-bottom: 1rem;
  overflow: hidden;
  transition: var(--transition);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.faq-item:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  border-color: var(--primary-color);
}

.faq-item.active {
  border-color: var(--primary-color);
  box-shadow: 0 4px 16px rgba(0, 102, 255, 0.15);
}

.faq-question {
  width: 100%;
  padding: 1.8rem;
  background: none;
  border: none;
  text-align: left;
  font-size: 1.32rem;
  font-weight: 600;
  color: var(--text-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.2rem;
  transition: var(--transition);
}

.faq-question:hover {
  color: var(--primary-color);
}

.faq-icon {
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--primary-color);
  transition: var(--transition);
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer p {
  padding: 0 1.8rem 1.8rem;
  color: var(--text-light);
  line-height: 1.7;
  font-size: 1.2rem;
}

/* Contact Section */
.contact {
  background: var(--bg-light);
  width: 100%;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  width: 100%;
}

.contact-details {
  margin-top: 2rem;
}

.contact-item {
  display: flex;
  gap: 1.25rem;
  margin-bottom: 2rem;
  align-items: flex-start;
  padding: 1.25rem;
  background: var(--bg-white);
  border-radius: 12px;
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

.contact-item:hover {
  box-shadow: var(--shadow-sm);
  border-color: var(--primary-color);
}

.contact-icon {
  font-size: 1.75rem;
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(0, 102, 255, 0.1) 0%, rgba(0, 212, 255, 0.1) 100%);
  border-radius: 12px;
}

.contact-item strong {
  display: block;
  color: var(--text-dark);
  margin-bottom: 0.25rem;
}

.contact-item a {
  color: var(--primary-color);
  font-weight: 500;
}

.service-area-select {
  display: block;
  width: 100%;
  padding: 0.5rem 0;
  border: none;
  background: none;
  color: var(--text-dark);
  font-size: 1rem;
  font-family: inherit;
  cursor: pointer;
  margin-top: 0.25rem;
}

.service-area-select:focus {
  outline: none;
  color: var(--primary-color);
}

.contact-item a:hover {
  text-decoration: underline;
}

.contact-form-container {
  background: var(--bg-white);
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--border-color);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-weight: 600;
  color: var(--text-dark);
  font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 1.2rem 1.5rem;
  border: 2px solid var(--border-color);
  border-radius: 14.4px;
  font-family: inherit;
  font-size: 1.2rem;
  transition: var(--transition);
  background: var(--bg-white);
  color: var(--text-dark);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #999;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 144px;
}

/* Footer */
.footer {
  background: var(--text-dark);
  color: var(--text-white);
  padding: 4rem 20px 2rem;
  width: 100%;
  box-sizing: border-box;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1rem;
}

.footer-logo-img {
  height: 80px;
  max-height: 80px;
  width: auto;
  max-width: 400px;
  object-fit: contain;
  display: block;
}

.footer-logo h3 {
  color: var(--text-white);
  font-size: 1.5rem;
}

.footer-section p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1rem;
}

.footer-section h4 {
  color: var(--text-white);
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.75rem;
}

.footer-section ul li a {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}

.footer-section ul li a:hover {
  color: var(--text-white);
  padding-left: 5px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.5rem;
}

.footer-seo {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

/* Responsive Design */
@media (max-width: 968px) {
  .nav-container {
    gap: 1rem;
  }

  .nav-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    width: 100%;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
    padding: 2rem 0;
    gap: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    max-height: calc(100vh - 70px);
    overflow-y: auto;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-menu li {
    width: 100%;
    padding: 0;
    margin: 0;
  }

  .nav-link {
    display: block;
    padding: 1rem 2rem;
    width: 100%;
    text-align: center;
  }

  .nav-cta {
    margin: 0.5rem 2rem;
    display: inline-block;
    width: auto;
  }

  .nav-toggle {
    display: flex;
  }

  .why-content,
  .contact-content {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    gap: 2rem;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .service-grid {
    flex-direction: column;
    align-items: center;
    gap: 1.6rem;
    padding: 0 20px;
  }
  
  .service-card {
    max-width: 100%;
  }
  
  .service-card {
    padding: 2.4rem 2rem;
  }
  
  .logo-img {
    height: 80px;
  }

  .hero-logo {
    width: 100%;
    max-width: 100%;
    max-height: 456px;
    margin: 0 auto 1.5rem;
    padding: 0 20px;
    box-sizing: border-box;
  }

  .hero-logo-subtitle {
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    margin-bottom: 1.5rem;
  }

  .nav-link,
  .nav-cta {
    font-size: 0.9rem;
  }

  section {
    padding: 60px 20px;
  }

  .hero {
    min-height: 90vh;
    padding: 100px 20px 60px;
  }

  .hero-cta {
    flex-direction: column;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .contact-form-container {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .stat-number {
    font-size: 2rem;
  }

  .service-card,
  .testimonial-card {
    padding: 1.5rem;
  }
}

/* Performance Optimizations */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Print Styles */
@media print {
  .navbar,
  .hero-cta,
  .contact-form-container,
  .footer {
    display: none;
  }
}
