:root {
  --primary: #1a237e;   /* indigo */
  --primary-dark: #0f172a;
  --primary-light: #3949ab;
  --accent: #00bcd4;
  --bg: #050816;
  --text-main: #e5e7eb;
  --text-muted: #9ca3af;
  --card-bg: #0b1020;
  --border: #1f2937;
  --radius-lg: 18px;
  --shadow-soft: 0 18px 35px rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: radial-gradient(circle at top left, #111827, #020617 55%);
  color: var(--text-main);
  line-height: 1.6;
}

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

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

.page-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header / Nav */
header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: linear-gradient(to right, rgba(15, 23, 42, 0.92), rgba(15, 23, 42, 0.88));
  border-bottom: 1px solid rgba(55, 65, 81, 0.7);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
}

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

.logo-image {
  height: 45px;
  width: auto;
  object-fit: contain;
  transition: opacity 0.3s ease;
}

.logo-image:hover {
  opacity: 0.8;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 100;
  position: relative;
}

.menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text-muted);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.menu-toggle:hover span {
  background: #e5e7eb;
}

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

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

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

.nav-links {
  display: flex;
  gap: 1.5rem;
  font-size: 0.9rem;
}

.nav-links a {
  color: var(--text-muted);
  font-weight: 400;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(to right, var(--accent), var(--primary-light));
  transition: width 0.25s ease;
}

.nav-links a:hover {
  color: #f9fafb;
}

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

.nav-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.lang-switcher {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 1px solid rgba(148, 163, 184, 0.5);
  background: rgba(15, 23, 42, 0.85);
  color: var(--text-muted);
  font-size: 0.75rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
}

.lang-switcher:hover {
  border-color: rgba(148, 163, 184, 0.8);
  background: rgba(15, 23, 42, 0.95);
  color: #e5e7eb;
  transform: translateY(-1px);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  font-size: 0.75rem;
  color: var(--text-muted);
  background: rgba(15, 23, 42, 0.92);
  transition: all 0.2s ease;
  white-space: nowrap;
  box-shadow: none;
  font-weight: 400;
  text-decoration: none;
}

.nav-cta:hover {
  border-color: rgba(148, 163, 184, 0.9) !important;
  color: #e5e7eb !important;
  background: rgba(15, 23, 42, 0.98) !important;
  transform: none !important;
}

.nav-cta i {
  font-size: 0.78rem !important;
  color: var(--accent) !important;
}

.nav-cta span {
  font-weight: 400 !important;
}

/* Hero */
.hero {
  padding: 3.5rem 0 4rem;
  position: relative;
  background-image: linear-gradient(
      to bottom,
      rgba(2, 6, 23, 0.85),
      rgba(15, 23, 42, 0.9)
    ),
    url("../images/hero.jpeg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(2, 6, 23, 0.6), rgba(15, 23, 42, 0.8));
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.1fr);
  gap: 3rem;
  align-items: center;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(129, 140, 248, 0.6);
  background: radial-gradient(circle at top left, rgba(37, 99, 235, 0.32), rgba(15, 23, 42, 0.9));
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.pill i {
  color: #22c55e;
}

.hero-title {
  font-size: clamp(2.2rem, 3vw + 1rem, 3.1rem);
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 0.8rem;
}

.hero-title span {
  background: linear-gradient(to right, #60a5fa, #a5b4fc);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-tagline {
  font-size: 0.98rem;
  color: var(--text-muted);
  max-width: 550px;
  margin-bottom: 1.7rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  margin-bottom: 2.1rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.hero-meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-meta-item i {
  color: var(--accent);
  font-size: 0.9rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-bottom: 1.8rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.3rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.22s ease;
  box-shadow: none;
}

.btn-primary {
  background: radial-gradient(circle at top left, var(--accent), var(--primary-light));
  color: #f9fafb;
  box-shadow: var(--shadow-soft);
}

.btn-primary:hover {
  transform: translateY(-1px) scale(1.01);
  box-shadow: 0 25px 45px rgba(37, 99, 235, 0.45);
}

.btn-outline {
  border-color: rgba(148, 163, 184, 0.55);
  color: var(--text-muted);
  background: rgba(15, 23, 42, 0.7);
}

.btn-outline:hover {
  border-color: var(--accent);
  color: #e5e7eb;
  background: rgba(15, 23, 42, 0.95);
}

.hero-note {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.hero-note span {
  color: #a5b4fc;
  font-weight: 500;
}

/* Hero Right - Card */
.hero-card {
  background: radial-gradient(circle at top left, rgba(37, 99, 235, 0.4), rgba(15, 23, 42, 0.98));
  border-radius: 26px;
  padding: 1.3rem 1.3rem 1.1rem;
  box-shadow: 0 26px 55px rgba(0, 0, 0, 0.8);
  border: 1px solid rgba(148, 163, 184, 0.4);
  position: relative;
  overflow: hidden;
}

@media (min-width: 993px) {
  .hero-card {
    transform: scale(1.15);
    transform-origin: center;
  }
}

.hero-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 110% -10%, rgba(56, 189, 248, 0.35), transparent 60%);
  mix-blend-mode: screen;
  pointer-events: none;
}

.hero-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.9rem;
  position: relative;
  z-index: 1;
}

.hero-card-title {
  font-size: 0.9rem;
  font-weight: 500;
}

.hero-card-badge {
  font-size: 0.7rem;
  padding: 0.2rem 0.65rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid rgba(148, 163, 184, 0.4);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.hero-card-badge i {
  color: #22c55e;
}

.hero-card-body {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 0.85rem;
  position: relative;
  z-index: 1;
}

/* Image placeholder (replace with real <img>) */
.hero-photo {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.6);
  background: radial-gradient(circle at top, #1f2937, #020617);
  height: 210px;
  position: relative;
}

.hero-photo-inner {
  position: absolute;
  inset: 0;
  background-image: url("../images/hero.jpeg");
  background-size: cover;
  background-position: center;
  filter: saturate(1.1);
}

.hero-photo-label {
  position: absolute;
  bottom: 10px;
  left: 10px;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  font-size: 0.7rem;
  background: rgba(15, 23, 42, 0.95);
  border: 1px solid rgba(148, 163, 184, 0.7);
  color: var(--text-muted);
}

.hero-photo-label i {
  color: #22c55e;
}

.hero-card-info {
  font-size: 0.8rem;
  color: var(--text-muted);
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.hero-card-info-title {
  font-weight: 500;
  color: #e5e7eb;
}

.hero-service-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.3rem;
}

.hero-service-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-service-list i {
  font-size: 0.78rem;
  color: var(--accent);
}

.hero-stats {
  display: flex;
  gap: 0.65rem;
  margin-top: 0.4rem;
}

.hero-stat {
  flex: 1;
  border-radius: 12px;
  padding: 0.35rem 0.55rem;
  border: 1px solid rgba(148, 163, 184, 0.45);
  background: rgba(15, 23, 42, 0.9);
  text-align: left;
}

.hero-stat-label {
  font-size: 0.65rem;
  color: var(--text-muted);
}

.hero-stat-value {
  font-size: 0.9rem;
  font-weight: 600;
}

/* Sections */
section {
  padding: 3.5rem 0;
}

.section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 2rem;
  gap: 1rem;
}

.section-title {
  font-size: 1.6rem;
  font-weight: 600;
}

.section-subtitle {
  font-size: 0.9rem;
  color: var(--text-muted);
  max-width: 420px;
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: center;
}

.about-text p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin-top: 1.5rem;
}

.about-feature {
  border-radius: var(--radius-lg);
  padding: 1rem;
  background: var(--card-bg);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  min-height: 145px;
  transition: all 0.3s ease;
}

.about-feature::before {
  content: "";
  position: absolute;
  inset: -20%;
  background: radial-gradient(circle at top left, rgba(37, 99, 235, 0.25), transparent 60%);
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}

.about-feature:hover::before {
  opacity: 1;
}

.about-feature:hover {
  transform: translateY(-4px);
  border-color: rgba(59, 130, 246, 0.5);
}

.about-feature-icon {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: radial-gradient(circle at top left, var(--primary-light), var(--primary-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.7rem;
}

.about-feature-icon i {
  color: #e5e7eb;
  font-size: 1rem;
}

.about-feature-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.about-feature h4 {
  font-size: 0.98rem;
  font-weight: 500;
  margin-bottom: 0.3rem;
  color: var(--text-main);
}

.about-feature p {
  font-size: 0.8rem;
  line-height: 1.5;
  color: var(--text-muted);
  margin-bottom: 0;
}

.about-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  border: 1px dashed rgba(148, 163, 184, 0.7);
  background: rgba(15, 23, 42, 0.9);
  flex-wrap: wrap;
  max-width: 100%;
}

.about-badge span {
  font-weight: 600;
  color: #e5e7eb;
}

/* About image placeholder */
.about-photo {
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.5);
  background: radial-gradient(circle at top, #1f2937, #020617);
  height: 260px;
  position: relative;
}

.about-photo-inner {
  position: absolute;
  inset: 0;
  background-image: url("../images/reception.jpeg");
  background-size: 110%;
  background-position: top center;
  background-repeat: no-repeat;
  filter: saturate(1.1);
}

.about-photo-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 0.7rem;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.95);
  border: 1px solid rgba(148, 163, 184, 0.7);
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.3rem;
}

.service-card {
  border-radius: var(--radius-lg);
  padding: 1rem;
  background: var(--card-bg);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  min-height: 145px;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: -20%;
  background: radial-gradient(circle at top left, rgba(37, 99, 235, 0.25), transparent 60%);
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}

.service-card:hover::before {
  opacity: 1;
}

.service-icon {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: radial-gradient(circle at top left, var(--primary-light), var(--primary-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.7rem;
}

.service-icon i {
  color: #e5e7eb;
  font-size: 1rem;
}

.service-card h3 {
  font-size: 0.98rem;
  margin-bottom: 0.3rem;
}

.service-card p {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.service-tagline {
  font-size: 0.75rem;
  color: #a5b4fc;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.2rem;
}

.gallery-item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: radial-gradient(circle at top, #1f2937, #020617);
  height: 180px;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
  border-color: rgba(59, 130, 246, 0.7);
}

.gallery-photo {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: saturate(1.05);
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Example placeholder backgrounds - replace with real images */
.gallery-photo-1 {
  background-image: url("../images/service-bay.jpg");
}

.gallery-photo-2 {
  background-image: url("../images/brakes.jpg");
}

.gallery-photo-3 {
  background-image: url("../images/diagnostics.jpg");
}

.gallery-photo-4 {
  background-image: url("../images/tires.jpg");
}

.gallery-label {
  position: absolute;
  bottom: 10px;
  left: 10px;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.7);
  font-size: 0.7rem;
  color: var(--text-muted);
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
  gap: 2rem;
}

/* IMPROVED CONTACT CARD */
.contact-card {
  border-radius: 24px;
  background: radial-gradient(circle at top left, rgba(15, 23, 42, 0.96), rgba(2, 6, 23, 0.98));
  border: 1px solid rgba(148, 163, 184, 0.45);
  padding: 1.4rem 1.3rem 1.2rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.75);
  position: relative;
  overflow: hidden;
}

.contact-card::before {
  content: "";
  position: absolute;
  inset: -30%;
  background: radial-gradient(circle at top left, rgba(37, 99, 235, 0.26), transparent 60%);
  opacity: 0.7;
  pointer-events: none;
}

.contact-card-inner {
  position: relative;
  z-index: 1;
}

.contact-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
}

.contact-card-title {
  font-size: 1rem;
  font-weight: 600;
}

.contact-card-subtitle {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.contact-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.26rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(52, 211, 153, 0.7);
  background: rgba(15, 23, 42, 0.85);
  font-size: 0.7rem;
  color: #bbf7d0;
  white-space: nowrap;
  flex-wrap: nowrap;
}

.contact-pill i {
  color: #22c55e;
  font-size: 0.75rem;
  flex-shrink: 0;
}

.contact-pill span {
  white-space: nowrap;
  display: inline;
}

.contact-details {
  font-size: 0.9rem;
  color: var(--text-muted);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 0.9rem;
}

.contact-line {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}

.contact-line-icon {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-line-icon i {
  color: var(--accent);
  font-size: 0.8rem;
}

.contact-line-content strong {
  font-size: 0.85rem;
  color: #e5e7eb;
}

.contact-line-content span {
  display: block;
  font-size: 0.8rem;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.9rem;
  justify-content: center;
  align-items: center;
}

.contact-actions .btn-call {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.8rem;
  font-weight: 500;
  cursor: pointer;
  background: radial-gradient(circle at top left, var(--accent), var(--primary-light));
  color: #f9fafb;
  box-shadow: 0 16px 32px rgba(37, 99, 235, 0.4);
}

.contact-actions .btn-call i {
  font-size: 0.9rem;
}

.contact-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  font-size: 0.75rem;
  color: var(--text-muted);
  background: rgba(15, 23, 42, 0.92);
}

.contact-chip i {
  font-size: 0.78rem;
  color: var(--accent);
}

/* Opening hours */
.opening-hours {
  margin-top: 0.5rem;
  padding-top: 0.75rem;
  border-top: 1px dashed rgba(148, 163, 184, 0.5);
  font-size: 0.8rem;
}

.opening-hours-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.35rem;
}

.opening-hours-header strong {
  font-size: 0.82rem;
}

.opening-hours-header span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.opening-hours ul {
  list-style: none;
  margin-top: 0.2rem;
}

.opening-hours li {
  display: flex;
  justify-content: space-between;
  color: var(--text-muted);
}

/* Small map/area chip */
.map-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-top: 0.3rem;
}

.map-chip i {
  font-size: 0.75rem;
  color: #60a5fa;
}

/* Contact Form */
.contact-form-card {
  border-radius: 22px;
  background: radial-gradient(circle at top left, rgba(37, 99, 235, 0.35), rgba(15, 23, 42, 0.98));
  border: 1px solid rgba(148, 163, 184, 0.6);
  padding: 1.4rem 1.3rem;
  box-shadow: var(--shadow-soft);
}

.contact-form-card h3 {
  font-size: 1rem;
  margin-bottom: 0.6rem;
}

.contact-form-card p {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

form {
  display: grid;
  gap: 0.75rem;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

label {
  font-size: 0.78rem;
  color: var(--text-muted);
  display: block;
  margin-bottom: 0.2rem;
}

input,
textarea {
  width: 100%;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  background: rgba(15, 23, 42, 0.95);
  padding: 0.55rem 0.8rem;
  font-size: 0.82rem;
  color: #e5e7eb;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

textarea {
  border-radius: 16px;
  min-height: 90px;
  resize: vertical;
}

input::placeholder,
textarea::placeholder {
  color: rgba(148, 163, 184, 0.8);
}

input:focus,
textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px rgba(56, 189, 248, 0.5);
  background: rgba(15, 23, 42, 0.98);
}

.form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: 0.4rem;
  font-size: 0.75rem;
  color: var(--text-muted);
  flex-wrap: wrap;
}

/* Footer */
footer {
  margin-top: auto;
  border-top: 1px solid rgba(55, 65, 81, 0.75);
  background: linear-gradient(to bottom, #0f172a, #020617);
  padding: 2rem 0;
  color: var(--text-muted);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  color: var(--text-muted);
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom a {
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.footer-bottom a:hover {
  opacity: 0.8;
}

/* Footer Responsive */
@media (max-width: 768px) {
  footer {
    padding: 1.5rem 0;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
  }

  .footer-bottom p {
    font-size: 0.73rem;
    line-height: 1.6;
  }
}

@media (max-width: 480px) {
  footer {
    padding: 1.2rem 0;
  }

  .footer-bottom p {
    font-size: 0.7rem;
  }
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: radial-gradient(circle at top left, var(--accent), var(--primary-light));
  border: none;
  border-radius: 50%;
  color: white;
  font-size: 1.2rem;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.4);
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
}

.back-to-top.visible {
  display: flex;
  opacity: 1;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.6);
}

.back-to-top::before {
  content: "Back to top";
  position: absolute;
  right: 60px;
  white-space: nowrap;
  background: rgba(15, 23, 42, 0.95);
  color: var(--text-main);
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
  font-size: 0.8rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  border: 1px solid rgba(148, 163, 184, 0.3);
}

.back-to-top:hover::before {
  opacity: 1;
}

/* Responsive */
@media (max-width: 992px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-card {
    max-width: 500px;
    margin: 0 auto;
  }

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

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

  .section-header {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: linear-gradient(to bottom, rgba(15, 23, 42, 0.98), rgba(15, 23, 42, 0.95));
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(55, 65, 81, 0.7);
    flex-direction: column;
    padding: 1.5rem;
    gap: 1rem;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 99;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  }

  .nav-links.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-links a {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(148, 163, 184, 0.2);
    font-size: 1rem;
  }

  .nav-links a:last-child {
    border-bottom: none;
  }

  .nav-links a::after {
    display: none;
  }

  .nav-cta {
    display: inline-flex !important;
  }

  .hero {
    padding-top: 2.5rem;
  }

  .hero-inner {
    gap: 2.3rem;
  }

  .hero-card-body {
    grid-template-columns: 1fr;
  }

  .hero-card-header {
    flex-wrap: wrap;
  }

  .hero-card-badge {
    font-size: 0.68rem;
  }

  .gallery-grid {
    grid-template-columns: minmax(0, 1fr);
  }

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

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

  .about-features {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .about-feature {
    min-height: auto;
  }

  .about-badge {
    font-size: 0.75rem;
    padding: 0.35rem 0.7rem;
    line-height: 1.4;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-card {
    padding: 1rem 0.9rem;
  }

  .hero-card-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.6rem;
  }

  .hero-card-title {
    font-size: 0.85rem;
  }

  .hero-card-badge {
    font-size: 0.65rem;
    padding: 0.18rem 0.55rem;
    width: 100%;
    justify-content: center;
  }

  .hero-card-body {
    grid-template-columns: 1fr;
    gap: 0.7rem;
  }

  .hero-photo {
    height: 160px;
  }

  .hero-card-info {
    font-size: 0.75rem;
    gap: 0.45rem;
  }

  .hero-service-list {
    gap: 0.25rem;
  }

  .hero-service-list li {
    font-size: 0.75rem;
  }

  .hero-stats {
    gap: 0.5rem;
  }

  .hero-stat {
    padding: 0.3rem 0.45rem;
  }

  .hero-stat-label {
    font-size: 0.6rem;
  }

  .hero-stat-value {
    font-size: 0.85rem;
  }

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

  .back-to-top {
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    font-size: 1rem;
  }
}

