/* ============================================
   UV Electronics - Main Styles
   White theme + #c70202 gradient
   ============================================ */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
  --primary: #c70202;
  --primary-dark: #9a0202;
  --primary-darker: #7a0101;
  --gradient: linear-gradient(135deg, #c70202 0%, #9a0202 50%, #7a0101 100%);
  --gradient-soft: linear-gradient(135deg, rgba(199, 2, 2, 0.08) 0%, rgba(154, 2, 2, 0.04) 100%);
  --white: #ffffff;
  --bg: #f8f9fa;
  --bg-section: #ffffff;
  --text: #1a1a1a;
  --text-muted: #5a5a5a;
  --border: #e8e8e8;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  --shadow-hover: 0 8px 30px rgba(199, 2, 2, 0.12);
  --radius: 12px;
  --radius-btn: 8px;
  --transition: 0.25s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Outfit', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

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

ul, ol {
  list-style: none;
}

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

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

/* ========== Navbar (Sticky) ========== */
.navbar {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: var(--shadow);
  border-bottom: 2px solid var(--primary);
  margin-bottom: 0;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.25rem;
  gap: 1rem;
}

.navbar .logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.navbar .logo img {
  height: 52px;
  width: auto;
  object-fit: contain;
}

.navbar .logo-text {
  display: none;
  font-weight: 700;
  font-size: 1.35rem;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.navbar .logo-text.show {
  display: inline;
}


.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  font-weight: 500;
  color: var(--text);
}

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

.nav-links a.nav-link-book {
  color: var(--primary);
  font-weight: 600;
}

.nav-links a.nav-link-book:hover {
  color: var(--primary-dark);
}

.navbar .btn-nav {
  padding: 0.5rem 1.25rem;
  font-family: inherit;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  border-radius: var(--radius-btn);
  cursor: pointer;
  background: var(--gradient);
  color: var(--white);
  transition: transform var(--transition), box-shadow var(--transition);
}

.navbar .btn-nav:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(199, 2, 2, 0.4);
}

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

.menu-toggle span {
  width: 26px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}

/* ========== Buttons ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 1.75rem;
  font-family: inherit;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  border-radius: var(--radius-btn);
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.btn-primary {
  background: var(--gradient);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(199, 2, 2, 0.3);
}

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

.btn-outline:hover {
  background: var(--gradient-soft);
}

/* ========== Section common ========== */
.section {
  padding: 4rem 0;
}

.section-alt {
  background: var(--bg-section);
  border-top: 1px solid var(--border);
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--text);
}

.section-title span,
.section-title .gradient {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 600px;
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.eyebrow {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}

/* ========== Hero ========== */
.hero {
  position: relative;
  background: var(--gradient);
  color: var(--white);
  padding: 6rem 0 4rem;
  margin-top: -1px;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.06'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

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

.hero-inner-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
  padding: 0 1.25rem;
}

.hero-content {
  max-width: 560px;
}

.hero-image-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.hero-image {
  width: 100%;
  height: auto;
  max-height: 380px;
  object-fit: cover;
  display: block;
}

.hero-badge {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-title {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--white);
}

.hero-desc {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.95);
  max-width: 560px;
  margin-bottom: 1.5rem;
  line-height: 1.65;
}

.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  margin-bottom: 1.25rem;
}

.hero-features li {
  position: relative;
  padding-left: 1.25rem;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 500;
}

.hero-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 6px;
  height: 6px;
  background: var(--white);
  border-radius: 50%;
}

.hero-cta-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

.hero-cta-wrap .btn {
  background: var(--white);
  color: var(--primary);
}

.hero-cta-wrap .btn:hover {
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.hero-cta-wrap .btn.hero-cta-secondary {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.95);
}

.hero-cta-wrap .btn.hero-cta-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border-color: #fff;
}

.hero-phone {
  display: inline-flex;
  align-items: center;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  margin-left: 0.5rem;
}

/* Hero stats bar */
.hero-stats {
  background: rgba(0, 0, 0, 0.2);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding: 1.25rem 0;
  margin-top: 2rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
}

.stat-num {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.stat-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
  margin-top: 0.25rem;
}

/* ========== Services grid (home + services page) ========== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card-img {
  width: 100%;
  height: 180px;
  overflow: hidden;
  background: var(--border);
}

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}

.service-card:hover .service-card-img img {
  transform: scale(1.05);
}

.service-card .num,
.service-card h3,
.service-card p,
.service-card .btn {
  padding-left: 1.75rem;
  padding-right: 1.75rem;
}

.service-card .num {
  padding-top: 1.25rem;
  margin-bottom: 0;
}

.service-card .btn {
  margin: 0 1.75rem 1.75rem;
  width: calc(100% - 3.5rem);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.service-card:hover {
  border-color: rgba(199, 2, 2, 0.3);
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card .num {
  font-size: 1.5rem;
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.25rem;
  line-height: 1;
}

.service-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
  line-height: 1.5;
}

.service-card .btn {
  width: 100%;
}

/* ========== Why Choose Us ========== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.why-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  text-align: center;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.why-card:hover {
  border-color: rgba(199, 2, 2, 0.25);
  box-shadow: var(--shadow);
}

.why-card .icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  background: var(--gradient-soft);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--primary);
}

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

.why-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.why-card a {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary);
}

.why-card a:hover {
  text-decoration: underline;
}

/* ========== How It Works ========== */
.how-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  counter-reset: step;
}

.how-step {
  position: relative;
  text-align: center;
  padding-top: 3rem;
}

.how-step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 48px;
  background: var(--gradient);
  color: var(--white);
  font-weight: 800;
  font-size: 1.25rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.how-step h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.how-step p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.how-grid .how-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 24px;
  left: calc(50% + 40px);
  width: calc(100% - 40px);
  height: 2px;
  background: var(--border);
}

/* ========== Testimonials ========== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: border-color var(--transition), transform var(--transition);
  text-align: center;
}

.testimonial-avatar {
  width: 72px;
  height: 72px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(199, 2, 2, 0.2);
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-card:hover {
  border-color: rgba(199, 2, 2, 0.2);
  transform: translateY(-4px);
}

.testimonial-card blockquote {
  font-size: 1rem;
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.testimonial-card blockquote::before {
  content: '"';
  font-size: 2rem;
  color: var(--primary);
  opacity: 0.5;
  line-height: 1;
}

.testimonial-name {
  font-weight: 700;
  color: var(--text);
  font-size: 1rem;
}

.testimonial-location {
  font-size: 0.9rem;
  color: var(--primary);
}

/* ========== CTA Section ========== */
.cta-section {
  background: var(--gradient);
  color: var(--white);
  padding: 4rem 0;
  text-align: center;
}

.cta-section .section-title {
  color: var(--white);
  margin-bottom: 0.5rem;
}

.cta-section .section-subtitle {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.5rem;
  margin-left: auto;
  margin-right: auto;
}

.cta-section .btn {
  background: var(--white);
  color: var(--primary);
}

.cta-section .btn:hover {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.cta-phone {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-top: 1rem;
}

/* ========== Footer ========== */
.footer {
  background: var(--text);
  color: var(--white);
  padding: 3rem 0 1.5rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  margin-bottom: 1.5rem;
}

.footer .logo img {
  height: 48px;
  width: auto;
  margin-bottom: 0.75rem;
}

.footer .logo-text {
  display: none;
  font-weight: 700;
  font-size: 1.25rem;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer .logo-text.show {
  display: inline;
}

.footer-desc {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-top: 0.5rem;
  max-width: 280px;
}

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

.footer ul li {
  margin-bottom: 0.5rem;
}

.footer a,
.footer .footer-muted {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

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

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.footer-bottom p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-legal {
  display: flex;
  gap: 1.25rem;
}

.footer-legal a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

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

.footer-map-wrap {
  margin-top: 1.25rem;
}
.footer-map-wrap h4 {
  margin-bottom: 0.5rem;
}
.footer-map-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.9rem;
  color: var(--primary) !important;
  font-weight: 600;
  margin-bottom: 0.75rem;
}
.footer-map-link:hover {
  color: var(--white) !important;
  text-decoration: underline;
}
.footer-map-embed {
  border-radius: var(--radius);
  overflow: hidden;
  max-width: 100%;
  width: 280px;
  aspect-ratio: 16 / 9;
  max-height: 160px;
  background: var(--border);
}
.footer-map-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* ========== Page header (inner pages) ========== */
.page-hero {
  background: var(--gradient);
  color: var(--white);
  padding: 5rem 0 3rem;
  text-align: center;
}

.page-hero h1 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.05rem;
}

/* ========== Contact form ========== */
.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: inherit;
  font-size: 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-btn);
  background: var(--white);
  transition: border-color var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(199, 2, 2, 0.1);
}

.form-group input.error,
.form-group textarea.error {
  border-color: #c70202;
}

.form-error {
  font-size: 0.85rem;
  color: var(--primary);
  margin-top: 0.35rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contact-info h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text);
}

.contact-info p,
.contact-info a {
  color: var(--text-muted);
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.contact-info a:hover {
  color: var(--primary);
}

/* ========== Contact page – map ========== */
.section-map {
  padding-top: 0;
}
.map-heading {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text);
}
.map-address {
  color: var(--text-muted);
  margin-bottom: 1rem;
  font-size: 0.95rem;
}
.map-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.2rem;
  background: var(--gradient);
  color: var(--white) !important;
  border-radius: var(--radius-btn);
  font-weight: 600;
  margin-bottom: 1.25rem;
  transition: var(--transition);
  box-shadow: var(--shadow);
}
.map-link:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}
.map-embed-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--border);
  aspect-ratio: 16 / 10;
  max-height: 400px;
}
.map-embed {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* ========== Content page (about, privacy, terms) ========== */
.content-page {
  padding: 3rem 0 4rem;
}

.content-page .container {
  max-width: 800px;
}

.content-page h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 2rem 0 0.75rem;
  color: var(--text);
}

.content-page h2:first-child {
  margin-top: 0;
}

.content-page p {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.content-page ul {
  margin: 1rem 0 1.5rem 1.5rem;
}

.content-page li {
  margin-bottom: 0.5rem;
  color: var(--text-muted);
  line-height: 1.6;
  position: relative;
  padding-left: 1rem;
}

.content-page li::before {
  content: '•';
  color: var(--primary);
  position: absolute;
  left: 0;
}

/* ========== Blog grid ========== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
}

.blog-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  background: var(--border);
}

.blog-card .blog-body {
  padding: 1.25rem;
}

.blog-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text);
  line-height: 1.4;
}

.blog-card h3 a:hover {
  color: var(--primary);
}

.blog-card .blog-meta {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

/* ========== Service areas ========== */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.area-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  text-align: center;
  transition: border-color var(--transition);
}

.area-card:hover {
  border-color: rgba(199, 2, 2, 0.3);
}

.area-card strong {
  color: var(--text);
}

/* ========== WhatsApp & Call floating buttons ========== */
.floating-actions {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: flex-end;
}

.floating-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  transition: transform var(--transition), box-shadow var(--transition);
}

.floating-btn svg {
  display: block;
  flex-shrink: 0;
}

.floating-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.25);
}

.floating-btn.whatsapp {
  background: #25d366;
}

.floating-btn.call {
  background: var(--gradient);
}

/* ========== Responsive ========== */
@media (max-width: 992px) {
  .hero-inner-wrap {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .hero-image-wrap {
    max-width: 400px;
    margin: 0 auto;
  }
  .hero-content {
    max-width: 100%;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .how-grid .how-step:not(:last-child)::after {
    display: none;
  }
  .how-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .areas-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .navbar {
    margin-bottom: 0;
    border-bottom: 2px solid var(--primary);
  }

  .hero {
    margin-top: -1px;
    padding-top: 2.5rem;
  }

  .menu-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 5rem 1.5rem 1.5rem;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
    transform: translateX(100%);
    transition: transform 0.3s ease;
  }

  .nav-links.active {
    transform: translateX(0);
  }

  .navbar .btn-nav {
    display: none;
  }

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

  .hero-inner-wrap {
    padding: 0 1rem;
  }

  .hero-image-wrap {
    max-width: 100%;
  }

  .service-card-img {
    height: 160px;
  }

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

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

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

  .footer-top {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer .logo {
    justify-content: center;
  }

  .footer-desc {
    margin-left: auto;
    margin-right: auto;
  }

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

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

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

  .floating-actions {
    bottom: 1rem;
    right: 1rem;
  }

  .floating-btn {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }
}

@media (max-width: 480px) {
  .hero-cta-wrap {
    flex-direction: column;
  }
  .hero-cta-wrap .btn {
    width: 100%;
  }
}
