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

/* ── Page Loader ── */
#loader-wrapper {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
#loader-wrapper.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.loader-spinner {
  width: 50px;
  height: 50px;
  border: 4px solid #e0e0e0;
  border-top-color: #29ABDF;
  border-radius: 50%;
  animation: loader-spin 0.8s linear infinite;
}
.loader-logo {
  height: 40px;
  margin-bottom: 20px;
  opacity: 0.6;
}
@keyframes loader-spin {
  to { transform: rotate(360deg); }
}

body {
  font-family: 'PT Sans', Arial, sans-serif;
  color: #333;
  line-height: 1.6;
}

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

ul { list-style: none; }

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

/* ── Top Bar ── */
.top-bar {
  background: #29ABDF;
  color: #fff;
  font-size: 14px;
  padding: 8px 0;
  font-family: 'PT Sans', sans-serif;
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.top-bar-info {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.top-bar-info span {
  display: flex;
  align-items: center;
  gap: 6px;
}
.top-bar-info .icon {
  font-size: 16px;
}
.top-bar-right {
  display: flex;
  align-items: center;
  gap: 15px;
}
.top-bar-social {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: 8px;
  padding-left: 12px;
  border-left: 1px solid rgba(255,255,255,0.25);
}
.top-bar-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  color: #fff;
  transition: background 0.3s;
}
.top-bar-social a:hover {
  background: rgba(255,255,255,0.3);
}
.top-bar-social svg {
  display: block;
}

/* ── Header ── */
header {
  background: #fff;
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  z-index: 100;
}
header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
}
.logo img {
  height: 60px;
  display: block;
}
nav {
  display: flex;
  align-items: center;
}
nav ul {
  display: flex;
  gap: 30px;
}
nav ul li a {
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #333;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: color 0.3s;
  padding: 5px 0;
}
nav ul li a:hover,
nav ul li a.active {
  color: #29ABDF;
}
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 28px;
  color: #333;
  cursor: pointer;
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-color: #1a1a2e;
  z-index: 0;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 40px 20px;
}
.hero-subtitle {
  font-family: 'Open Sans', sans-serif;
  font-size: 18px;
  font-weight: 300;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: rgba(255,255,255,0.8);
}
.hero-title {
  font-family: 'Open Sans', sans-serif;
  font-size: 52px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 15px;
  text-transform: uppercase;
}
.hero-text {
  font-size: 18px;
  margin-bottom: 30px;
  opacity: 0.9;
}
.hero-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 14px 36px;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 4px;
  transition: all 0.3s;
  cursor: pointer;
  border: none;
}
.btn-primary {
  background: #29ABDF;
  color: #fff;
}
.btn-primary:hover {
  background: #1a8bb8;
}
.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}
.btn-outline:hover {
  background: #fff;
  color: #333;
}
.btn-accent {
  background: #29ABDF;
  color: #fff;
}
.btn-accent:hover {
  background: #1e8ab8;
}
.btn-dark {
  background: #333;
  color: #fff;
}
.btn-dark:hover {
  background: #555;
}

/* ── Page Header (inner pages) ── */
.page-header {
  background: #29ABDF;
  color: #fff;
  padding: 50px 0;
  text-align: center;
}
.page-header h1 {
  font-family: 'Open Sans', sans-serif;
  font-size: 38px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.page-header p {
  font-size: 16px;
  opacity: 0.85;
}

/* ── Sections ── */
.section {
  padding: 80px 0;
}
.section-gray {
  background: #f8f8f8;
}
.section-dark {
  background: #1a1a2e;
  color: #fff;
}
.section-brand {
  background: #29ABDF;
  color: #fff;
}
.section-title {
  text-align: center;
  margin-bottom: 50px;
}
.section-title h2 {
  font-family: 'Open Sans', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #222;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.section-title p {
  color: #777;
  font-size: 16px;
  max-width: 600px;
  margin: 0 auto;
}
.section-dark .section-title h2 { color: #fff; }
.section-dark .section-title p { color: rgba(255,255,255,0.7); }
.section-brand .section-title h2 { color: #fff; }
.section-brand .section-title p { color: rgba(255,255,255,0.8); }

/* ── Services Grid ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.service-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}
.service-card-icon {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.service-card-icon img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service-card-icon .icon-overlay {
  position: absolute;
  inset: 0;
  background: rgba(41, 171, 223, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 50px;
}
.service-card-body {
  padding: 25px;
}
.service-card-body h3 {
  font-family: 'Open Sans', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #29ABDF;
  margin-bottom: 12px;
  text-transform: uppercase;
}
.service-card-body p {
  color: #666;
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 15px;
}
.read-more {
  color: #29ABDF;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.read-more:hover {
  color: #1e8ab8;
}

/* ── Features ── */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: center;
}
.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: #29ABDF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: #fff;
}
.feature h3 {
  font-family: 'Open Sans', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #29ABDF;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.feature p {
  color: #666;
  font-size: 14px;
  line-height: 1.7;
}

/* ── CTA ── */
.cta-section {
  text-align: center;
  padding: 60px 0;
}
.cta-section h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
}
.cta-section p {
  font-size: 16px;
  margin-bottom: 25px;
  opacity: 0.9;
}

/* ── Quote Form ── */
.quote-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}
.quote-form {
  background: #fff;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}
.quote-form h3 {
  font-family: 'Open Sans', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #29ABDF;
  text-transform: uppercase;
  margin-bottom: 25px;
  text-align: center;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}
.form-group {
  margin-bottom: 15px;
}
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #555;
  margin-bottom: 5px;
  text-transform: uppercase;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: 'PT Sans', sans-serif;
  font-size: 14px;
  transition: border-color 0.3s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #29ABDF;
}
.form-group textarea {
  height: 100px;
  resize: vertical;
}
.checkbox-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.checkbox-group label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #555;
  cursor: pointer;
  text-transform: none;
  font-weight: 400;
}
.checkbox-group input[type="checkbox"] {
  width: auto;
}
.quote-image {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  min-height: 400px;
}
.quote-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}
.quote-image .overlay {
  position: absolute;
  inset: 0;
  background: rgba(41, 171, 223, 0.85);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  padding: 40px;
}
.quote-image .overlay h3 {
  font-family: 'Open Sans', sans-serif;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
}
.quote-image .overlay p {
  font-size: 16px;
  opacity: 0.9;
  max-width: 400px;
}

/* ── About Page ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.about-image {
  border-radius: 8px;
  overflow: hidden;
  min-height: 350px;
  position: relative;
  background: #ddd;
}
.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}
.about-text h2 {
  font-family: 'Open Sans', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #29ABDF;
  text-transform: uppercase;
  margin-bottom: 15px;
}
.about-text p {
  color: #666;
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 15px;
}
.values-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 30px;
}
.value-item {
  text-align: center;
  padding: 25px 15px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}
.value-item .num {
  font-family: 'Open Sans', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: #29ABDF;
  margin-bottom: 8px;
}
.value-item h4 {
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  color: #333;
}

/* ── Services Page ── */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 50px;
}
.service-detail:last-child {
  margin-bottom: 0;
}
.service-detail.reverse {
  direction: rtl;
}
.service-detail.reverse > * {
  direction: ltr;
}
.service-detail-image {
  border-radius: 8px;
  overflow: hidden;
  min-height: 280px;
  position: relative;
  background: #e0e0e0;
}
.service-detail-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}
.service-detail-text h3 {
  font-family: 'Open Sans', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #29ABDF;
  text-transform: uppercase;
  margin-bottom: 15px;
}
.service-detail-text p {
  color: #666;
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 15px;
}

/* ── Contact Page ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.contact-item {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}
.contact-item .icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  background: #29ABDF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
}
.contact-item h4 {
  font-weight: 600;
  color: #333;
  margin-bottom: 4px;
}
.contact-item p {
  color: #666;
  font-size: 14px;
}

/* ── Footer ── */
footer {
  background: #0a2d47;
  color: #fff;
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 40px;
}
footer h4 {
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: #fff;
  letter-spacing: 0.05em;
}
footer p {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin-bottom: 10px;
}
footer .contact-detail {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.75);
}
footer .contact-detail .icon {
  font-size: 16px;
  width: 20px;
  text-align: center;
}
footer ul li {
  margin-bottom: 10px;
}
footer ul li a {
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  transition: color 0.3s, padding-left 0.3s;
}
footer ul li a:hover {
  color: #fff;
  padding-left: 5px;
}
.footer-subscribe form {
  display: flex;
  gap: 8px;
}
.footer-subscribe input {
  flex: 1;
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.1);
  color: #fff;
  border-radius: 4px;
  font-family: 'PT Sans', sans-serif;
  font-size: 14px;
}
.footer-subscribe input::placeholder { color: rgba(255,255,255,0.4); }
.footer-subscribe button {
  padding: 10px 20px;
  background: #29ABDF;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 13px;
  font-family: 'Open Sans', sans-serif;
}
.footer-subscribe button:hover {
  background: #1e8ab8;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom p {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  margin: 0;
}
.footer-bottom a {
  color: rgba(255,255,255,0.6);
}
.footer-bottom a:hover {
  color: #fff;
}
.social-links {
  display: flex;
  gap: 10px;
}
.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: #fff;
  font-size: 16px;
  transition: background 0.3s;
}
.social-links a:hover {
  background: #1a8bb8;
}

/* ── Live Chat / WhatsApp Button ── */
.whatsapp-btn {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 55px;
  height: 55px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: transform 0.3s, box-shadow 0.3s;
  text-decoration: none;
}
.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}
.whatsapp-btn svg {
  display: block;
}

/* ── Back to Top ── */
.back-to-top {
  position: fixed;
  bottom: 90px;
  right: 25px;
  width: 45px;
  height: 45px;
  background: #29ABDF;
  color: #fff;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: opacity 0.3s, visibility 0.3s, transform 0.3s, background 0.3s;
  z-index: 998;
  box-shadow: 0 3px 12px rgba(41, 171, 223, 0.35);
}
.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover {
  background: #1a8bb8;
}
.back-to-top svg {
  display: block;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .hero-title { font-size: 42px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 992px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .features { grid-template-columns: repeat(2, 1fr); }
  .quote-section { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .service-detail { grid-template-columns: 1fr; }
  .service-detail.reverse { direction: ltr; }
  .contact-grid { grid-template-columns: 1fr; }
  .values-list { grid-template-columns: repeat(3, 1fr); }
  .hero { min-height: 400px; }
  .hero-title { font-size: 36px; }
  .section-title h2 { font-size: 28px; }
  .quote-image { min-height: 300px; }
  .section { padding: 60px 0; }
}

@media (max-width: 768px) {
  /* ── Top bar ── */
  .top-bar .container {
    flex-direction: column;
    text-align: center;
  }
  .top-bar-info {
    justify-content: center;
    gap: 8px;
  }
  .top-bar-right {
    flex-direction: column;
    gap: 8px;
  }
  .top-bar-social {
    margin-left: 0;
    padding-left: 0;
    border-left: none;
    justify-content: center;
  }

  /* ── Navigation ── */
  .menu-toggle { display: block; }
  .logo img { height: 45px; }
  header .container { padding: 8px 15px; }
  nav ul {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    padding: 15px 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    gap: 0;
    z-index: 99;
  }
  nav ul.open { display: flex; }
  nav ul li { border-bottom: 1px solid #f0f0f0; }
  nav ul li:last-child { border-bottom: none; }
  nav ul li a {
    display: block;
    padding: 14px 0;
    font-size: 15px;
  }

  /* ── Hero ── */
  .hero { min-height: 350px; }
  .hero-title { font-size: 28px; }
  .hero-subtitle { font-size: 13px; letter-spacing: 0.2em; }
  .hero-text { font-size: 15px; }
  .hero-content { padding: 30px 15px; }
  .hero-buttons .btn { padding: 12px 24px; font-size: 13px; }

  /* ── Grids ── */
  .services-grid { grid-template-columns: 1fr; }
  .features { grid-template-columns: 1fr; gap: 30px; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .values-list { grid-template-columns: 1fr 1fr; gap: 12px; }

  /* ── Sections ── */
  .section { padding: 40px 0; }
  .section-title { margin-bottom: 30px; }
  .section-title h2 { font-size: 24px; }
  .section-title p { font-size: 14px; }

  /* ── Cards ── */
  .service-card-icon { height: 180px; }
  .service-card-body { padding: 20px; }
  .service-card-body h3 { font-size: 16px; }

  /* ── Features ── */
  .feature-icon { width: 65px; height: 65px; font-size: 26px; }
  .feature h3 { font-size: 17px; }

  /* ── Page Header ── */
  .page-header { padding: 35px 0; }
  .page-header h1 { font-size: 24px; }
  .page-header p { font-size: 14px; }

  /* ── CTA ── */
  .cta-section { padding: 40px 0; }
  .cta-section h2 { font-size: 24px; }
  .cta-section p { font-size: 14px; }
  .cta-section .btn { padding: 12px 28px; }

  /* ── Quote ── */
  .quote-form { padding: 25px 20px; }
  .quote-form h3 { font-size: 18px; }
  .quote-image { min-height: 250px; }
  .quote-image .overlay { padding: 25px; }
  .quote-image .overlay h3 { font-size: 22px; }
  .checkbox-group { grid-template-columns: 1fr 1fr; }
  .form-group input, .form-group select, .form-group textarea { padding: 10px 12px; font-size: 16px; }

  /* ── About ── */
  .about-grid { gap: 30px; }
  .about-image { min-height: 250px; }
  .about-text h2 { font-size: 22px; }
  .about-text p { font-size: 14px; }

  /* ── Services detail ── */
  .service-detail { gap: 25px; margin-bottom: 35px; }
  .service-detail-image { min-height: 220px; }
  .service-detail-text h3 { font-size: 18px; }

  /* ── Contact ── */
  .contact-grid { gap: 30px; }
  .contact-item .icon { width: 42px; height: 42px; min-width: 42px; font-size: 17px; }

  /* ── Footer ── */
  footer { padding: 40px 0 0; }
  .footer-grid { gap: 30px; }
  .footer-subscribe form { flex-direction: column; }
  .footer-subscribe input { width: 100%; }
  .footer-bottom { flex-direction: column; text-align: center; }

  /* ── Fixed buttons ── */
  .whatsapp-btn { width: 48px; height: 48px; bottom: 18px; right: 18px; }
  .back-to-top { width: 38px; height: 38px; bottom: 75px; right: 18px; }
}

@media (max-width: 480px) {
  .values-list { grid-template-columns: 1fr; }
  .hero-title { font-size: 24px; }
  .hero-subtitle { font-size: 12px; letter-spacing: 0.12em; }
  .hero { min-height: 300px; }
  .top-bar-info { flex-direction: column; gap: 4px; font-size: 13px; }
  .top-bar-right { font-size: 13px; }
  .top-bar-social a { width: 22px; height: 22px; }
  .top-bar-social svg { width: 12px; height: 12px; }
  .logo img { height: 38px; }
  .service-card-icon { height: 160px; }
  .quote-image .overlay h3 { font-size: 18px; }
  .quote-image .overlay p { font-size: 14px; }
  .checkbox-group { grid-template-columns: 1fr; }
  .about-image { min-height: 200px; }
  .page-header h1 { font-size: 20px; }
  .page-header { padding: 25px 0; }
  .section { padding: 30px 0; }
  .service-detail-image { min-height: 180px; }
  .section-title h2 { font-size: 20px; }
  .footer-grid { gap: 25px; }
  .whatsapp-btn { width: 42px; height: 42px; bottom: 14px; right: 14px; }
  .back-to-top { width: 34px; height: 34px; bottom: 65px; right: 14px; }
  .back-to-top svg { width: 16px; height: 16px; }
}

/* ── Touch optimization ── */
@media (hover: none) and (pointer: coarse) {
  .service-card:hover { transform: none; }
  .btn:hover { transform: none; }
  .whatsapp-btn:hover { transform: none; }
  .back-to-top:hover { background: #29ABDF; }
  .social-links a:hover { background: rgba(255,255,255,0.1); }
  .top-bar-social a:hover { background: rgba(255,255,255,0.12); }
  .footer-subscribe button:hover { background: #29ABDF; }
  .btn-primary:hover { background: #29ABDF; }
  .btn-outline:hover { background: transparent; color: #fff; }
}

/* ── iOS smooth scroll fix ── */
* {
  -webkit-overflow-scrolling: touch;
}
