/* CSS Variables */
:root {
  --primary: #E89B20;
  --primary-dark: #C78200;
  --primary-light: #F5B642;
  --black: #1a1a1a;
  --dark-gray: #333;
  --gray: #666;
  --light-gray: #f5f5f5;
  --white: #fff;
  --shadow: 0 2px 10px rgba(0,0,0,0.1);
  --shadow-lg: 0 4px 20px rgba(0,0,0,0.15);
  --radius: 8px;
  --radius-lg: 12px;
  --transition: all 0.3s ease;
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--dark-gray);
  background: var(--white);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Bebas Neue', Impact, sans-serif;
  font-weight: 400;
  line-height: 1.2;
  color: var(--black);
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
}

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

/* Top Bar */
.top-bar {
  background: var(--black);
  color: var(--white);
  padding: 10px 20px;
}

.top-bar-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
  gap: 20px;
}

.quality-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

.quality-badge .stars {
  color: var(--primary);
  font-size: 14px;
}

.quality-text {
  font-weight: 600;
  font-size: 14px;
}

.top-bar-info {
  display: flex;
  align-items: center;
  gap: 25px;
  flex-wrap: wrap;
}

.top-bar-info span {
  font-size: 13px;
  opacity: 0.9;
}

.top-phone {
  color: var(--white);
  font-weight: 600;
  white-space: nowrap;
}

.close-bar {
  background: none;
  border: none;
  color: var(--white);
  font-size: 24px;
  cursor: pointer;
  padding: 5px;
  line-height: 1;
}

/* Header */
.header {
  background: var(--white);
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
  max-width: 1400px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-icon {
  width: 50px;
  height: 50px;
  background: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px;
  border-radius: 8px;
  transform: rotate(-5deg);
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-main {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  color: var(--black);
  letter-spacing: 1px;
}

.logo-sub {
  font-size: 11px;
  color: var(--gray);
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* Navigation */
.main-nav {
  display: flex;
  align-items: center;
  gap: 5px;
}

.nav-item {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 10px 15px;
  border-radius: var(--radius);
  font-weight: 500;
  color: var(--dark-gray);
  background: none;
  border: none;
  cursor: pointer;
  font-size: 15px;
  font-family: inherit;
}

.nav-item:hover {
  background: var(--light-gray);
}

.nav-item.active {
  background: rgba(232, 155, 32, 0.1);
  color: var(--primary);
}

.nav-icon {
  font-size: 14px;
}

.arrow {
  font-size: 10px;
  opacity: 0.7;
}

.nav-dropdown {
  position: relative;
}

.dropdown-content {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius);
  min-width: 180px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  z-index: 100;
}

.nav-dropdown:hover .dropdown-content {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-content a {
  display: block;
  padding: 12px 20px;
  color: var(--dark-gray);
}

.dropdown-content a:hover {
  background: var(--light-gray);
  color: var(--primary);
}

/* Header CTA */
.header-cta {
  display: flex;
  align-items: center;
  gap: 15px;
}

.btn-book {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border: 2px solid var(--primary);
  border-radius: var(--radius);
  font-weight: 600;
  color: var(--primary);
}

.btn-book:hover {
  background: var(--primary);
  color: var(--white);
}

.btn-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: var(--primary);
  border-radius: var(--radius);
  font-weight: 600;
  color: var(--white);
}

.btn-phone:hover {
  background: var(--primary-dark);
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
  background: none;
  border: none;
  cursor: pointer;
}

.mobile-menu-btn span {
  display: block;
  width: 25px;
  height: 3px;
  background: var(--dark-gray);
  border-radius: 2px;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--light-gray) 0%, var(--white) 100%);
  padding: 80px 20px;
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 42px;
  margin-bottom: 30px;
  letter-spacing: 1px;
}

.hero p {
  margin-bottom: 20px;
  color: var(--gray);
  font-size: 16px;
  line-height: 1.8;
}

.hero p a {
  color: var(--primary);
  font-weight: 600;
}

.hero p a:hover {
  text-decoration: underline;
}

/* Trust Stats */
.trust-stats {
  display: flex;
  gap: 40px;
  margin: 30px 0 40px;
  padding: 25px 0;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  flex-wrap: wrap;
}

.stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 42px;
  color: var(--primary);
  line-height: 1;
}

.stat-label {
  font-size: 14px;
  color: var(--gray);
  font-weight: 500;
}

/* Main CTA Link */
.main-cta {
  display: inline-block;
  background: var(--primary);
  color: var(--white) !important;
  padding: 15px 30px;
  border-radius: var(--radius);
  font-weight: 600;
  margin-top: 10px;
}

.main-cta:hover {
  background: var(--primary-dark);
  text-decoration: none !important;
}

/* Certifications Section */
.certifications-section {
  padding: 60px 20px;
  background: var(--white);
  text-align: center;
  border-bottom: 1px solid #eee;
}

.certifications-section h2 {
  font-size: 36px;
  margin-bottom: 15px;
}

.cert-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.cert-item {
  padding: 25px 15px;
  background: var(--light-gray);
  border-radius: var(--radius);
  text-align: center;
}

.cert-badge {
  font-size: 36px;
  margin-bottom: 10px;
}

.cert-item h4 {
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 5px;
}

.cert-item p {
  font-size: 12px;
  color: var(--gray);
}

/* Services Section */
.services-section {
  padding: 80px 20px;
  background: var(--white);
  text-align: center;
}

.services-section h2 {
  font-size: 48px;
  margin-bottom: 15px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 50px;
}

.service-card {
  display: block;
  background: var(--light-gray);
  border-radius: var(--radius-lg);
  padding: 30px;
  text-align: left;
  transition: var(--transition);
  border: 2px solid transparent;
}

.service-card:hover {
  border-color: var(--primary);
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.service-icon {
  font-size: 40px;
  margin-bottom: 15px;
}

.service-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px;
  margin-bottom: 10px;
  color: var(--black);
}

.service-card p {
  color: var(--gray);
  font-size: 15px;
  margin-bottom: 15px;
}

.service-link {
  color: var(--primary);
  font-weight: 600;
  font-size: 14px;
}

.services-cta {
  margin-top: 40px;
}

.btn-primary {
  display: inline-block;
  background: var(--primary);
  color: var(--white);
  padding: 15px 30px;
  border-radius: var(--radius);
  font-weight: 600;
  transition: var(--transition);
}

.btn-primary:hover {
  background: var(--primary-dark);
}

/* FAQ Section */
.faq-section {
  padding: 80px 20px;
  background: var(--light-gray);
}

.faq-section h2 {
  font-size: 42px;
  margin-bottom: 15px;
  text-align: center;
}

.faq-section .section-subtitle {
  text-align: center;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  margin-top: 50px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 25px;
  box-shadow: var(--shadow);
}

.faq-item h3 {
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 15px;
}

.faq-item p {
  color: var(--gray);
  font-size: 15px;
  line-height: 1.7;
}

.faq-item a {
  color: var(--primary);
  font-weight: 600;
}

.faq-cta {
  text-align: center;
  margin-top: 40px;
}

.faq-cta a {
  color: var(--primary);
  font-weight: 600;
  font-size: 18px;
}

.faq-cta a:hover {
  text-decoration: underline;
}

/* Service Page Styles */
.service-hero {
  background: linear-gradient(135deg, var(--light-gray) 0%, var(--white) 100%);
  padding: 80px 20px;
  text-align: center;
}

.service-hero h1 {
  font-size: 52px;
  margin-bottom: 20px;
}

.hero-subtitle {
  max-width: 700px;
  margin: 0 auto 30px;
  font-size: 18px;
  color: var(--gray);
}

/* Expertise Section */
.expertise-section {
  padding: 80px 20px;
  background: var(--white);
}

.expertise-section h2 {
  font-size: 42px;
  text-align: center;
  margin-bottom: 50px;
}

.expertise-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 50px;
  max-width: 1100px;
  margin: 0 auto;
}

.expertise-text p {
  margin-bottom: 20px;
  color: var(--gray);
  line-height: 1.8;
}

.expertise-text h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  margin: 30px 0 15px;
  color: var(--black);
}

.expertise-text a {
  color: var(--primary);
  font-weight: 600;
}

.expertise-text ul.content-list {
  list-style: none;
  margin: 20px 0;
}

.expertise-text ul.content-list li {
  padding: 8px 0;
  padding-left: 25px;
  position: relative;
  color: var(--gray);
}

.expertise-text ul.content-list li::before {
  content: "•";
  color: var(--primary);
  font-weight: bold;
  position: absolute;
  left: 0;
}

.expertise-certs {
  background: var(--light-gray);
  padding: 30px;
  border-radius: var(--radius-lg);
  height: fit-content;
}

.expertise-certs h4 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px;
  margin-bottom: 25px;
  text-align: center;
}

.cert-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cert-badge-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  background: var(--white);
  border-radius: var(--radius);
}

.cert-badge-item .cert-icon {
  font-size: 28px;
}

.cert-badge-item strong {
  display: block;
  font-size: 14px;
  color: var(--black);
}

.cert-badge-item span {
  font-size: 12px;
  color: var(--gray);
}

/* Services Detail Section */
.services-detail-section {
  padding: 80px 20px;
  background: var(--light-gray);
}

.services-detail-section h2 {
  font-size: 42px;
  text-align: center;
  margin-bottom: 15px;
}

.services-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 50px;
}

.service-detail-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow);
}

.service-icon-large {
  font-size: 48px;
  margin-bottom: 15px;
}

.service-detail-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px;
  margin-bottom: 15px;
}

.service-detail-card p {
  color: var(--gray);
  font-size: 15px;
  margin-bottom: 15px;
  line-height: 1.7;
}

.service-detail-card ul {
  list-style: none;
  margin-bottom: 20px;
}

.service-detail-card li {
  padding: 5px 0;
  padding-left: 20px;
  position: relative;
  color: var(--gray);
  font-size: 14px;
}

.service-detail-card li::before {
  content: "✓";
  color: var(--primary);
  position: absolute;
  left: 0;
  font-weight: bold;
}

.price-range {
  font-weight: 700;
  color: var(--primary);
  font-size: 16px;
}

/* Materials Section */
.materials-section {
  padding: 80px 20px;
  background: var(--white);
}

.materials-section h2 {
  font-size: 42px;
  text-align: center;
  margin-bottom: 15px;
}

.materials-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-top: 50px;
}

.material-card {
  background: var(--light-gray);
  border-radius: var(--radius-lg);
  padding: 25px;
}

.material-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px;
  margin-bottom: 15px;
}

.material-card p {
  color: var(--gray);
  font-size: 14px;
  margin-bottom: 15px;
}

.material-specs {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.material-specs span {
  font-size: 13px;
  color: var(--dark-gray);
}

/* Process Section */
.process-section {
  padding: 80px 20px;
  background: var(--white);
}

.process-section h2 {
  font-size: 42px;
  text-align: center;
  margin-bottom: 15px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  margin-top: 50px;
}

.process-step {
  text-align: center;
  padding: 20px;
}

.step-number {
  width: 50px;
  height: 50px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px;
  margin: 0 auto 15px;
}

.process-step h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  margin-bottom: 10px;
}

.process-step p {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.6;
}

/* Rebates Section */
.rebates-section {
  padding: 80px 20px;
  background: var(--primary);
  color: var(--white);
}

.rebates-section h2 {
  font-size: 42px;
  text-align: center;
  margin-bottom: 15px;
  color: var(--white);
}

.rebates-section .section-subtitle {
  color: rgba(255,255,255,0.9);
  text-align: center;
}

.rebate-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 50px;
}

.rebate-card {
  background: rgba(255,255,255,0.15);
  border-radius: var(--radius-lg);
  padding: 30px;
  text-align: center;
}

.rebate-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px;
  color: var(--white);
  margin-bottom: 15px;
}

.rebate-card p {
  color: rgba(255,255,255,0.9);
  margin-bottom: 20px;
  line-height: 1.7;
}

.btn-secondary {
  display: inline-block;
  background: var(--white);
  color: var(--primary);
  padding: 12px 25px;
  border-radius: var(--radius);
  font-weight: 600;
}

.btn-secondary:hover {
  background: var(--light-gray);
}

/* CTA Section */
.cta-section {
  padding: 80px 20px;
  background: var(--black);
  text-align: center;
}

.cta-section h2 {
  font-size: 42px;
  color: var(--white);
  margin-bottom: 15px;
}

.cta-section p {
  color: rgba(255,255,255,0.8);
  margin-bottom: 30px;
  font-size: 18px;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-secondary-large {
  display: inline-block;
  background: transparent;
  color: var(--white);
  padding: 18px 40px;
  border: 2px solid var(--white);
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 18px;
}

.btn-secondary-large:hover {
  background: var(--white);
  color: var(--black);
}

/* Service Page Responsive */
@media (max-width: 1024px) {
  .expertise-content {
    grid-template-columns: 1fr;
  }
  
  .services-detail-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .materials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .process-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .rebate-cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .service-hero h1 {
    font-size: 36px;
  }
  
  .expertise-section h2,
  .services-detail-section h2,
  .materials-section h2,
  .process-section h2,
  .rebates-section h2,
  .cta-section h2 {
    font-size: 32px;
  }
  
  .services-detail-grid,
  .materials-grid {
    grid-template-columns: 1fr;
  }
  
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}

/* Section Badges */
.section-badge {
  display: inline-block;
  padding: 8px 20px;
  background: var(--white);
  border: 1px solid #ddd;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  color: var(--dark-gray);
  margin-bottom: 20px;
}

/* Areas Section */
.areas-section {
  padding: 80px 20px;
  background: var(--light-gray);
  text-align: center;
}

.areas-section h2 {
  font-size: 48px;
  margin-bottom: 15px;
}

.section-subtitle {
  color: var(--gray);
  max-width: 600px;
  margin: 0 auto 40px;
}

.areas-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow);
  max-width: 900px;
  margin: 0 auto;
}

.areas-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 30px;
}

.area-tag {
  padding: 10px 20px;
  background: var(--white);
  border: 1px solid #ddd;
  border-radius: var(--radius);
  font-weight: 500;
  color: var(--dark-gray);
  transition: var(--transition);
}

.area-tag:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
}

.areas-note {
  color: var(--gray);
}

.areas-note a {
  color: var(--primary);
  font-weight: 600;
}

.areas-note a:hover {
  text-decoration: underline;
}

/* Testimonials Section */
.testimonials-section {
  padding: 80px 20px;
  background: var(--white);
  text-align: center;
}

.testimonials-section h2 {
  font-size: 48px;
  margin-bottom: 15px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow);
  text-align: left;
}

.testimonial-card .stars {
  color: var(--primary);
  font-size: 18px;
  margin-bottom: 20px;
}

.testimonial-text {
  font-style: italic;
  color: var(--gray);
  margin-bottom: 20px;
  line-height: 1.8;
}

.testimonial-divider {
  height: 1px;
  background: #eee;
  margin: 20px 0;
}

.testimonial-author strong {
  display: block;
  color: var(--black);
  margin-bottom: 5px;
}

.testimonial-author span {
  font-size: 14px;
  color: var(--gray);
}

/* Why Choose Us Section */
.why-section {
  padding: 80px 20px;
  background: var(--light-gray);
  text-align: center;
}

.why-section h2 {
  font-size: 48px;
  margin-bottom: 15px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.feature-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow);
  text-align: left;
}

.feature-icon {
  font-size: 40px;
  margin-bottom: 15px;
}

.feature-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px;
  margin-bottom: 10px;
}

.feature-card p {
  color: var(--gray);
  font-size: 15px;
}

/* Maps Section */
.maps-section {
  padding: 80px 20px;
  background: var(--white);
  text-align: center;
}

.maps-section h2 {
  font-size: 48px;
  margin-bottom: 15px;
}

.maps-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 50px;
}

.map-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  margin-bottom: 20px;
}

.map-embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.map-info {
  text-align: left;
  padding: 20px 0;
}

.map-info p {
  margin-bottom: 5px;
  color: var(--gray);
}

.map-info strong {
  color: var(--black);
}

.map-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
}

.map-rating .stars {
  color: var(--primary);
}

.map-rating a {
  color: #1a73e8;
}

/* Footer */
.footer {
  background: var(--black);
  color: var(--white);
  padding: 60px 20px 30px;
}

.footer-main-cta {
  text-align: center;
  padding: 40px;
  background: rgba(232, 155, 32, 0.1);
  border: 2px solid var(--primary);
  border-radius: var(--radius-lg);
  margin-bottom: 50px;
}

.footer-main-cta h3 {
  color: var(--white);
  font-size: 32px;
  margin-bottom: 10px;
}

.footer-main-cta p {
  color: rgba(255,255,255,0.8);
  margin-bottom: 20px;
}

.btn-primary-large {
  display: inline-block;
  background: var(--primary);
  color: var(--white);
  padding: 18px 40px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 18px;
  transition: var(--transition);
}

.btn-primary-large:hover {
  background: var(--primary-light);
  transform: scale(1.05);
}

.footer-official {
  margin-top: 15px;
}

.footer-official a {
  color: var(--primary) !important;
}

.footer-hours {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-hours p {
  font-size: 13px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.footer-logo .logo-icon {
  width: 40px;
  height: 40px;
  font-size: 24px;
}

.footer-logo .logo-main {
  font-size: 18px;
  color: var(--white);
}

.footer-logo .logo-sub {
  font-size: 10px;
  color: rgba(255,255,255,0.6);
}

.footer-col p {
  color: rgba(255,255,255,0.7);
  font-size: 14px;
}

.footer-col h4 {
  color: var(--white);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 10px;
}

.footer-col a {
  color: rgba(255,255,255,0.7);
  font-size: 14px;
}

.footer-col a:hover {
  color: var(--primary);
}

.contact-list li {
  display: flex;
  gap: 10px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom p {
  color: rgba(255,255,255,0.5);
  font-size: 14px;
}

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links a {
  color: rgba(255,255,255,0.5);
  font-size: 14px;
}

.footer-links a:hover {
  color: var(--white);
}

/* Chat Widget */
.chat-widget {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 1000;
}

.chat-bubble {
  background: var(--primary);
  color: var(--white);
  padding: 15px 20px;
  border-radius: var(--radius);
  margin-bottom: 10px;
  max-width: 220px;
  position: relative;
  box-shadow: var(--shadow-lg);
}

.chat-bubble::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 20px;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid var(--primary);
}

.chat-bubble span {
  font-size: 14px;
}

.chat-close {
  position: absolute;
  top: 5px;
  right: 10px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 18px;
  cursor: pointer;
}

.chat-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--primary);
  border: none;
  font-size: 24px;
  cursor: pointer;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
}

.chat-btn:hover {
  transform: scale(1.1);
}

/* Scroll to Top */
.scroll-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 45px;
  height: 45px;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 1000;
  box-shadow: var(--shadow);
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  background: var(--primary-dark);
}

/* Responsive */
@media (max-width: 1024px) {
  .top-bar-content {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .top-bar-info {
    gap: 15px;
    justify-content: center;
  }
  
  .main-nav {
    display: none;
  }
  
  .mobile-menu-btn {
    display: flex;
  }
  
  .cert-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .testimonials-grid,
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .faq-grid {
    grid-template-columns: 1fr;
  }
  
  .maps-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .top-bar {
    display: none;
  }
  
  .header-cta .btn-book {
    display: none;
  }
  
  .hero h1 {
    font-size: 32px;
  }
  
  .trust-stats {
    gap: 20px;
    justify-content: center;
  }
  
  .stat-number {
    font-size: 32px;
  }
  
  .cert-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .areas-section h2,
  .testimonials-section h2,
  .why-section h2,
  .maps-section h2,
  .services-section h2,
  .faq-section h2 {
    font-size: 36px;
  }
  
  .certifications-section h2 {
    font-size: 28px;
  }
  
  .footer-main-cta h3 {
    font-size: 26px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .header-content {
    padding: 10px 15px;
  }
  
  .logo-main {
    font-size: 18px;
  }
  
  .btn-phone {
    padding: 10px 15px;
    font-size: 14px;
  }
  
  .hero {
    padding: 50px 15px;
  }
  
  .areas-card {
    padding: 25px;
  }
  
  .area-tag {
    padding: 8px 15px;
    font-size: 14px;
  }
}

