/* ===== RESET & BASE ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #F5A623;
  --primary-dark: #D4911E;
  --dark: #1A1A1A;
  --darker: #111111;
  --gray: #2A2A2A;
  --gray-light: #3A3A3A;
  --text: #F0F0F0;
  --text-muted: #B0B0B0;
  --white: #FFFFFF;
  --success: #4CAF50;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: var(--darker);
  color: var(--text);
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

ul { list-style: none; }

img {
  max-width: 100%;
  display: block;
}

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

/* ===== HEADER / NAV ===== */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(17, 17, 17, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--gray);
  transition: box-shadow 0.3s;
}

header.scrolled {
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

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

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

.logo-icon {
  width: 45px;
  height: 45px;
  background: var(--primary);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 18px;
  color: var(--dark);
}

.logo-text {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}

.logo-text span {
  color: var(--primary);
}

.nav-links {
  display: flex;
  gap: 30px;
  align-items: center;
}

.nav-links a {
  color: var(--text-muted);
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.3s;
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  background: var(--primary) !important;
  color: var(--dark) !important;
  padding: 10px 24px;
  border-radius: 6px;
  font-weight: 700 !important;
  transition: background 0.3s, transform 0.2s !important;
}

.nav-cta:hover {
  background: var(--primary-dark) !important;
  transform: translateY(-1px);
}

.nav-cta::after {
  display: none !important;
}

/* Mobile menu toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 5px;
}

.mobile-toggle span {
  display: block;
  width: 28px;
  height: 3px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}

.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background: linear-gradient(135deg, var(--darker) 0%, var(--dark) 100%);
  overflow: hidden;
  padding-top: 80px;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(245,166,35,0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-badge {
  display: inline-block;
  background: rgba(245,166,35,0.15);
  color: var(--primary);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 20px;
  border: 1px solid rgba(245,166,35,0.3);
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  color: var(--white);
}

.hero h1 span {
  color: var(--primary);
}

.hero p {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 35px;
  max-width: 500px;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: all 0.3s;
}

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

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(245,166,35,0.3);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--gray-light);
}

.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 50px;
}

.stat h3 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
}

.stat p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

.hero-visual {
  position: relative;
}

.hero-image-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--gray);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 1rem;
  border: 2px dashed var(--gray-light);
  text-align: center;
  padding: 20px;
}

.hero-image-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

.floating-card {
  position: absolute;
  bottom: -20px;
  left: -30px;
  background: var(--gray);
  border: 1px solid var(--gray-light);
  border-radius: 12px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

.floating-card .icon {
  width: 45px;
  height: 45px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.floating-card .info p {
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 0;
  color: var(--white);
}

.floating-card .info small {
  color: var(--text-muted);
  font-size: 0.8rem;
}

/* ===== SERVICES ===== */
.services {
  padding: 100px 0;
  background: var(--dark);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-tag {
  display: inline-block;
  background: rgba(245,166,35,0.15);
  color: var(--primary);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 15px;
  color: var(--white);
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* Services Accordion */
.services-accordion {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-accordion-item {
  background: var(--gray);
  border: 1px solid var(--gray-light);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.3s;
}

.service-accordion-item.active {
  border-color: var(--primary);
}

.service-accordion-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text);
  font-family: inherit;
  transition: background 0.2s;
}

.service-accordion-header:hover {
  background: rgba(245,166,35,0.05);
}

.service-header-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.service-icon {
  width: 50px;
  height: 50px;
  background: rgba(245,166,35,0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.service-header-text {
  text-align: left;
}

.service-header-text h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 2px;
}

.service-header-text p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
}

.accordion-chevron {
  font-size: 1.8rem;
  color: var(--text-muted);
  transition: transform 0.3s;
  flex-shrink: 0;
  line-height: 1;
}

.service-accordion-item.active .accordion-chevron {
  transform: rotate(90deg);
  color: var(--primary);
}

.service-accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.service-accordion-body > * {
  padding-left: 24px;
  padding-right: 24px;
}

.service-desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 16px;
  padding-top: 0;
  border-top: 1px solid var(--gray-light);
  padding-top: 20px;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.service-list li {
  border-bottom: 1px solid var(--gray-light);
}

.service-list li:last-child {
  border-bottom: none;
}

.service-list li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: color 0.2s;
}

.service-list li a::before {
  content: '\2713';
  color: var(--primary);
  font-weight: 700;
  margin-right: 10px;
  flex-shrink: 0;
}

.service-list li a::after {
  content: '\203A';
  color: var(--text-muted);
  font-size: 1.3rem;
  flex-shrink: 0;
  transition: color 0.2s;
}

.service-list li a:hover {
  color: var(--primary);
}

.service-list li a:hover::after {
  color: var(--primary);
}

.service-accordion-body .btn-sm {
  margin: 20px 24px 24px;
  padding: 12px 24px;
  font-size: 0.9rem;
  width: calc(100% - 48px);
  justify-content: center;
}

.service-accordion-body .btn-sm {
  padding-left: 0;
  padding-right: 0;
}

/* ===== WHY CHOOSE US ===== */
.why-us {
  padding: 100px 0;
  background: var(--darker);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.why-card {
  text-align: center;
  padding: 30px 20px;
}

.why-icon {
  width: 70px;
  height: 70px;
  background: rgba(245,166,35,0.1);
  border: 2px solid rgba(245,166,35,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 20px;
}

.why-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--white);
}

.why-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* ===== SERVICE AREAS ===== */
.service-areas {
  padding: 80px 0;
  background: var(--dark);
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
  margin-top: 40px;
}

.areas-region-title {
  color: var(--primary);
  font-size: 1.1rem;
  font-weight: 700;
  margin-top: 30px;
  margin-bottom: 15px;
}

.area-tag {
  background: var(--gray);
  border: 1px solid var(--gray-light);
  padding: 12px 20px;
  border-radius: 8px;
  text-align: center;
  font-weight: 500;
  color: var(--text-muted);
  transition: all 0.3s;
}

.area-tag:hover {
  border-color: var(--primary);
  color: var(--primary);
}

/* ===== GALLERY ===== */
.gallery {
  padding: 100px 0;
  background: var(--darker);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.gallery-item {
  aspect-ratio: 4/3;
  background: var(--gray);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--gray-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  position: relative;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
  color: var(--white);
  font-weight: 600;
}

.gallery-item:hover .overlay {
  opacity: 1;
}

/* ===== GALLERY TABS ===== */
.gallery-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.gallery-tab {
  padding: 10px 24px;
  border-radius: 50px;
  border: 1px solid var(--gray-light);
  background: transparent;
  color: var(--text-muted);
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.gallery-tab:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.gallery-tab.active {
  background: var(--primary);
  color: var(--dark);
  border-color: var(--primary);
}

/* Gallery Categories */
.gallery-category {
  margin-bottom: 40px;
}

.gallery-category.hidden {
  display: none;
}

.gallery-category-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(245,166,35,0.2);
}

.gallery-placeholder {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-style: italic;
}

/* ===== LIGHTBOX ===== */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.92);
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(5px);
}

.lightbox.active {
  display: flex;
}

.lightbox-content {
  max-width: 90vw;
  max-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 10px 50px rgba(0,0,0,0.5);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 25px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 2.5rem;
  cursor: pointer;
  z-index: 2001;
  line-height: 1;
  transition: color 0.3s;
}

.lightbox-close:hover {
  color: var(--primary);
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  border: none;
  color: var(--white);
  font-size: 2.5rem;
  cursor: pointer;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  line-height: 1;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  background: var(--primary);
  color: var(--dark);
}

.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

.lightbox-counter {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* ===== ADMIN MODE ===== */
.admin-active .gallery-item {
  position: relative;
}

.gallery-delete-btn {
  display: none;
  position: absolute;
  top: 8px;
  right: 8px;
  width: 32px;
  height: 32px;
  background: #e74c3c;
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
  z-index: 10;
  align-items: center;
  justify-content: center;
  line-height: 1;
  box-shadow: 0 2px 8px rgba(0,0,0,0.4);
  transition: transform 0.2s, background 0.2s;
}

.gallery-delete-btn:hover {
  background: #c0392b;
  transform: scale(1.1);
}

.admin-active .gallery-delete-btn {
  display: flex;
}

.admin-banner {
  display: none;
  background: #e74c3c;
  color: white;
  text-align: center;
  padding: 10px 20px;
  font-weight: 600;
  font-size: 0.9rem;
  position: fixed;
  top: 70px;
  left: 0;
  width: 100%;
  z-index: 999;
  gap: 15px;
  align-items: center;
  justify-content: center;
}

.admin-banner.active {
  display: flex;
}

.admin-banner button {
  background: white;
  color: #e74c3c;
  border: none;
  padding: 6px 16px;
  border-radius: 4px;
  font-weight: 700;
  cursor: pointer;
  font-size: 0.85rem;
}

.admin-banner button:hover {
  background: #f0f0f0;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  padding: 100px 0;
  background: var(--dark);
}

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

.testimonial-card {
  background: var(--gray);
  border: 1px solid var(--gray-light);
  border-radius: 16px;
  padding: 30px;
}

.stars {
  color: var(--primary);
  font-size: 1.1rem;
  margin-bottom: 15px;
}

.testimonial-card p {
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 20px;
  font-size: 0.95rem;
}

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

.author-avatar {
  width: 45px;
  height: 45px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--dark);
}

.author-info strong {
  display: block;
  color: var(--white);
  font-size: 0.9rem;
}

.author-info small {
  color: var(--text-muted);
  font-size: 0.8rem;
}

/* Review CTA */
.review-cta {
  text-align: center;
  margin-top: 50px;
  padding-top: 40px;
  border-top: 1px solid var(--gray-light);
}

.review-cta p {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.btn-google-review {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  padding: 16px 36px;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(245,166,35,0.3);
}

.btn-google-review:hover {
  box-shadow: 0 8px 25px rgba(245,166,35,0.4);
}

/* ===== CTA BANNER ===== */
.cta-banner {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  text-align: center;
}

.cta-banner h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 15px;
}

.cta-banner p {
  color: rgba(26,26,26,0.7);
  font-size: 1.15rem;
  margin-bottom: 30px;
}

.cta-banner .btn {
  background: var(--dark);
  color: var(--white);
}

.cta-banner .btn:hover {
  background: var(--darker);
  transform: translateY(-2px);
}

/* ===== CONTACT ===== */
.contact {
  padding: 100px 0;
  background: var(--darker);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-info h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--white);
}

.contact-info > p {
  color: var(--text-muted);
  margin-bottom: 30px;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 15px;
}

.contact-method .method-icon {
  width: 50px;
  height: 50px;
  background: rgba(245,166,35,0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.contact-method strong {
  display: block;
  color: var(--white);
  font-size: 0.9rem;
}

.contact-method span {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.contact-form {
  background: var(--gray);
  border: 1px solid var(--gray-light);
  border-radius: 16px;
  padding: 40px;
}

.contact-form h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 25px;
  color: var(--white);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.form-group {
  margin-bottom: 15px;
}

.form-group label {
  display: block;
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 6px;
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--dark);
  border: 1px solid var(--gray-light);
  border-radius: 8px;
  color: var(--text);
  font-size: 0.95rem;
  font-family: inherit;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23B0B0B0' stroke-width='2' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}

.contact-form .btn {
  width: 100%;
  justify-content: center;
  padding: 14px;
  font-size: 1rem;
  margin-top: 10px;
}

/* ===== FOOTER ===== */
footer {
  background: var(--dark);
  border-top: 1px solid var(--gray);
  padding: 60px 0 30px;
}

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

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: 15px;
  max-width: 300px;
}

.footer-col h4 {
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.footer-col a {
  display: block;
  color: var(--text-muted);
  font-size: 0.9rem;
  padding: 4px 0;
  transition: color 0.3s;
}

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

.footer-bottom {
  border-top: 1px solid var(--gray);
  padding-top: 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero h1 { font-size: 2.8rem; }
  .services-accordion { max-width: 100%; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--darker);
    flex-direction: column;
    padding: 20px;
    gap: 15px;
    border-bottom: 1px solid var(--gray);
  }

  .nav-links.active {
    display: flex;
  }

  .mobile-toggle {
    display: flex;
  }

  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero h1 { font-size: 2.2rem; }

  .hero p { margin: 0 auto 35px; }

  .hero-buttons { justify-content: center; }

  .hero-stats { justify-content: center; }

  .hero-visual { order: -1; }

  .floating-card { display: none; }

  .services-accordion { max-width: 100%; }

  .why-grid { grid-template-columns: 1fr 1fr; }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); }


  .testimonial-grid { grid-template-columns: 1fr; }

  .contact-grid { grid-template-columns: 1fr; }

  .form-row { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; }

  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }

  .cta-banner h2 { font-size: 1.8rem; }

  .section-header h2 { font-size: 2rem; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.8rem; }
  .hero-stats { flex-direction: column; gap: 20px; }
  .why-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .hero-buttons { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
}
