/* Deep Rest Clean - Main Stylesheet */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
  --navy-dark: #07192D;
  --navy-deep: #0A2240;
  --navy-mid: #0C2B4E;
  --blue-brand: #0072CE;
  --blue-bright: #0088FF;
  --blue-cyan: #00A8FF;
  --blue-light: #EBF4FC;
  --blue-soft: #D9ECFD;
  --whatsapp-green: #25D366;
  --whatsapp-hover: #1EBE57;
  --instagram-pink: #E1306C;
  --instagram-grad: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  
  --bg-main: #F4F8FC;
  --bg-card: #FFFFFF;
  --text-dark: #0F172A;
  --text-body: #334155;
  --text-muted: #64748B;
  
  --shadow-sm: 0 2px 8px rgba(10, 34, 64, 0.06);
  --shadow-md: 0 8px 24px rgba(10, 34, 64, 0.1);
  --shadow-lg: 0 16px 36px rgba(0, 114, 206, 0.15);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  color: var(--text-dark);
  background-color: var(--bg-main);
  line-height: 1.6;
}

body {
  overflow-x: hidden;
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  outline: none;
}

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

/* Header & Sticky Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 114, 206, 0.12);
  transition: var(--transition);
}

.navbar.scrolled {
  box-shadow: 0 4px 20px rgba(10, 34, 64, 0.08);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}

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

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

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

.brand-name {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--navy-deep);
  line-height: 1.1;
  letter-spacing: -0.5px;
  white-space: nowrap;
}

.brand-name span {
  color: var(--blue-brand);
}

.brand-tagline {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--blue-brand);
  letter-spacing: 0.4px;
  white-space: nowrap;
}

/* NAVIGATION LINKS (Placed right next to CTA button on Desktop) */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-left: auto;
  margin-right: 28px;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy-deep);
  transition: var(--transition);
  position: relative;
  padding: 4px 0;
}

.nav-link:hover {
  color: var(--blue-brand);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--blue-brand);
  transition: var(--transition);
  border-radius: 2px;
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--navy-deep);
  padding: 6px;
  cursor: pointer;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.nav-toggle:hover {
  background: var(--blue-light);
  color: var(--blue-brand);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--blue-brand);
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 12px 24px;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 14px rgba(0, 114, 206, 0.35);
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary:hover {
  background: var(--blue-bright);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 114, 206, 0.45);
}

.btn-whatsapp {
  background: var(--whatsapp-green);
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp:hover {
  background: var(--whatsapp-hover);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
}

.btn-outline {
  background: transparent;
  color: var(--navy-deep);
  border: 2px solid var(--blue-brand);
  font-weight: 700;
  padding: 10px 22px;
  border-radius: var(--radius-full);
  transition: var(--transition);
  white-space: nowrap;
}

.btn-outline:hover {
  background: var(--blue-light);
  color: var(--blue-brand);
}

/* TOP PROMO ANNOUNCEMENT BAR */
.top-promo-bar {
  position: fixed;
  top: 84px;
  left: 0;
  right: 0;
  z-index: 999;
  background: linear-gradient(90deg, #07192D 0%, #0A2240 50%, #0C2B4E 100%);
  border-bottom: 2px solid #F59E0B;
  color: #FFFFFF;
  padding: 9px 0;
  font-size: 0.88rem;
  box-shadow: 0 4px 14px rgba(10, 34, 64, 0.15);
  transition: var(--transition);
}

.promo-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  text-align: center;
}

.promo-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}

.promo-badge {
  background: #F59E0B;
  color: #07192D;
  font-size: 0.72rem;
  font-weight: 900;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.promo-highlight {
  color: #FFD166;
  font-weight: 800;
  letter-spacing: 0.3px;
}

.promo-divider {
  color: rgba(255, 255, 255, 0.3);
  font-weight: 300;
}

.promo-date strong {
  color: #00A8FF;
}

/* HERO SECTION */
.hero {
  padding-top: 168px;
  padding-bottom: 70px;
  background: linear-gradient(135deg, #FFFFFF 0%, #F0F6FC 50%, #E6F1FA 100%);
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 114, 206, 0.08) 0%, rgba(255,255,255,0) 70%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.hero-badge-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.badge-trust {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue-brand);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 800;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.badge-location {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #EAF4FF;
  color: var(--navy-deep);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(0, 114, 206, 0.2);
}

.hero-title {
  font-size: 2.75rem;
  font-weight: 800;
  line-height: 1.15;
  color: var(--navy-deep);
  margin-bottom: 16px;
  letter-spacing: -1px;
}

.hero-title span {
  color: var(--blue-brand);
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-body);
  margin-bottom: 28px;
  max-width: 540px;
}

.hero-highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-bottom: 32px;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy-deep);
}

.highlight-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--blue-brand);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  flex-shrink: 0;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Hero Visual Showcase Frame */
.hero-visual {
  position: relative;
}

.hero-main-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid #FFFFFF;
}

.hero-main-card img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.hero-main-card:hover img {
  transform: scale(1.03);
}

.hero-floating-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: rgba(10, 34, 64, 0.88);
  backdrop-filter: blur(8px);
  color: #fff;
  padding: 14px 20px;
  border-radius: var(--radius-md);
  border-left: 4px solid var(--blue-cyan);
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-md);
}

.hero-floating-badge h4 {
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.5px;
}

.hero-floating-badge p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.8);
}

/* SECTION COMMON STYLES */
.section {
  padding: 90px 0;
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px auto;
}

.section-tag {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--blue-brand);
  background: var(--blue-light);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 12px;
}

.section-title {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--navy-deep);
  line-height: 1.25;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
}

/* ABOUT US SECTION */
.about-section {
  background: #FFFFFF;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}

.about-lead {
  font-size: 1.15rem;
  color: var(--navy-deep);
  font-weight: 600;
  margin-bottom: 16px;
  line-height: 1.6;
}

.about-body {
  font-size: 0.98rem;
  color: var(--text-body);
  margin-bottom: 32px;
  line-height: 1.65;
}

.about-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.about-feature-card {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--bg-main);
  padding: 18px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(0, 114, 206, 0.08);
}

.about-feature-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  background: #FFFFFF;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
}

.about-feature-card h4 {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--navy-deep);
  margin-bottom: 4px;
}

.about-feature-card p {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.about-visual-wrap {
  position: relative;
}

.about-image-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid #FFFFFF;
  position: relative;
}

.about-image-card img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}

.about-experience-badge {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background: var(--navy-deep);
  color: #fff;
  padding: 16px 22px;
  border-radius: var(--radius-md);
  text-align: center;
  border-bottom: 4px solid var(--blue-brand);
  box-shadow: var(--shadow-md);
}

.exp-number {
  display: block;
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--blue-bright);
}

.exp-text {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  opacity: 0.9;
}

/* SERVICES SECTION */
.services-section {
  background-color: var(--bg-main);
}

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

.service-card {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(0, 114, 206, 0.08);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: rgba(0, 114, 206, 0.25);
}

.service-img-wrap {
  height: 220px;
  overflow: hidden;
  position: relative;
}

.service-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.service-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(10, 34, 64, 0.82);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  backdrop-filter: blur(4px);
  letter-spacing: 0.5px;
}

.service-content {
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-icon-box {
  width: 52px;
  height: 52px;
  background: var(--blue-brand);
  color: #fff;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -50px;
  margin-bottom: 16px;
  position: relative;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(0, 114, 206, 0.3);
}

.service-icon-box svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.service-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--navy-deep);
  margin-bottom: 10px;
}

.service-desc {
  font-size: 0.95rem;
  color: var(--text-body);
  margin-bottom: 18px;
}

.service-note-box {
  background: #FFF8E6;
  border-left: 3px solid #F59E0B;
  padding: 10px 14px;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 700;
  color: #92400E;
  margin-top: auto;
}

.service-features {
  list-style: none;
  margin-bottom: 20px;
  margin-top: auto;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-body);
  margin-bottom: 8px;
}

.service-features li svg {
  color: var(--blue-brand);
  flex-shrink: 0;
}

/* HOW IT WORKS / ESTIMATE TERMS SECTION */
.how-it-works {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-deep) 100%);
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
}

.how-it-works::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blue-brand), var(--blue-cyan), var(--blue-brand));
}

.how-it-works .section-title {
  color: #FFFFFF;
}

.how-it-works .section-subtitle {
  color: rgba(255, 255, 255, 0.75);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 48px;
  position: relative;
}

.step-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  position: relative;
  backdrop-filter: blur(10px);
  transition: var(--transition);
}

.step-card:hover {
  background: rgba(255, 255, 255, 0.09);
  transform: translateY(-6px);
  border-color: var(--blue-bright);
}

.step-number {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 2.5rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.12);
}

.step-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--blue-brand);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.step-icon svg {
  width: 30px;
  height: 30px;
}

.step-title {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 10px;
  color: #ffffff;
}

.step-desc {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
}

.quote-banner {
  background: linear-gradient(90deg, #0072CE 0%, #0088FF 100%);
  border-radius: var(--radius-md);
  padding: 32px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  box-shadow: 0 12px 30px rgba(0, 114, 206, 0.4);
}

.quote-banner-text h3 {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 6px;
}

.quote-banner-text p {
  font-size: 0.95rem;
  opacity: 0.9;
}

.quote-banner-buttons {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* INSTAGRAM SECTION */
.instagram-section {
  background: #FFFFFF;
}

.insta-box {
  background: linear-gradient(135deg, #FFF5F7 0%, #F5F7FA 100%);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(225, 48, 108, 0.15);
  padding: 48px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.insta-header-icon {
  width: 64px;
  height: 64px;
  background: var(--instagram-grad);
  border-radius: 20px;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  box-shadow: 0 6px 18px rgba(225, 48, 108, 0.3);
}

.insta-title {
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--navy-deep);
  margin-bottom: 10px;
}

.insta-handle {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--instagram-pink);
  margin-bottom: 16px;
}

.insta-desc {
  max-width: 580px;
  margin: 0 auto 32px auto;
  font-size: 1rem;
  color: var(--text-body);
}

.btn-instagram {
  background: var(--instagram-grad);
  color: #fff;
  font-weight: 700;
  font-size: 1.05rem;
  padding: 14px 32px;
  border-radius: var(--radius-full);
  box-shadow: 0 6px 20px rgba(225, 48, 108, 0.35);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition);
}

.btn-instagram:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(225, 48, 108, 0.45);
}

/* CONTACTS SECTION */
.contact-section {
  background: linear-gradient(180deg, #F4F8FC 0%, #E6F1FA 100%);
  padding: 90px 0 100px 0;
}

.contact-card-main {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(0, 114, 206, 0.12);
  padding: 56px 48px;
  max-width: 900px;
  margin: 0 auto;
}

.contact-hero-banner {
  background: var(--navy-deep);
  color: #FFFFFF;
  border-radius: var(--radius-md);
  padding: 32px;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  overflow: hidden;
}

.contact-phone-display {
  font-size: 2.6rem;
  font-weight: 900;
  letter-spacing: -0.5px;
  color: #FFFFFF;
  margin: 12px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.copy-phone-btn {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  border: 1px solid rgba(255,255,255,0.3);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  transition: var(--transition);
}

.copy-phone-btn:hover {
  background: #FFFFFF;
  color: var(--navy-deep);
}

.contact-methods-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.method-card {
  border: 2px solid var(--blue-light);
  border-radius: var(--radius-md);
  padding: 28px;
  text-align: center;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.method-card:hover {
  border-color: var(--blue-brand);
  background: var(--blue-light);
  transform: translateY(-4px);
}

.method-card.whatsapp-card:hover {
  border-color: var(--whatsapp-green);
  background: #F0FDF4;
}

.method-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: #fff;
}

.method-icon.sms {
  background: var(--blue-brand);
}

.method-icon.wa {
  background: var(--whatsapp-green);
}

.method-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--navy-deep);
  margin-bottom: 6px;
}

.method-subtitle {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.contact-notice-box {
  background: var(--blue-light);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  border-left: 5px solid var(--blue-brand);
}

.notice-icon {
  width: 44px;
  height: 44px;
  background: var(--blue-brand);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.notice-text h4 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--navy-deep);
  margin-bottom: 6px;
}

.notice-items {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  font-size: 0.92rem;
  color: var(--text-body);
}

.notice-item {
  display: inline-flex;
  align-items: center;
}

.notice-sep {
  color: rgba(0, 114, 206, 0.4);
  font-weight: 700;
}

/* BRAND FOOTER BAR */
.trust-bar {
  background: var(--blue-brand);
  color: #FFFFFF;
  padding: 24px 0;
}

.trust-bar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}

.trust-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.trust-item svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.trust-item span {
  line-height: 1.25;
}

footer {
  background: var(--navy-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 36px 0;
  font-size: 0.9rem;
}

.footer-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
  color: #fff;
}

.footer-brand-text {
  display: flex;
  flex-direction: column;
}

.footer-company-name {
  font-size: 1.15rem;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.2;
}

.footer-location {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
  background: #FFFFFF;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
}

/* DESKTOP SMS HELPER MODAL */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 34, 64, 0.75);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-card {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  max-width: 460px;
  width: 100%;
  text-align: center;
  position: relative;
  box-shadow: var(--shadow-lg);
  transform: translateY(20px);
  transition: var(--transition);
}

.modal-overlay.active .modal-card {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 18px;
  font-size: 1.8rem;
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  line-height: 1;
}

.modal-icon {
  font-size: 2.5rem;
  margin-bottom: 12px;
}

.modal-card h3 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--navy-deep);
  margin-bottom: 8px;
}

.modal-phone-text {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--blue-brand);
  margin-bottom: 12px;
}

.modal-desc {
  font-size: 0.95rem;
  color: var(--text-body);
  margin-bottom: 24px;
  line-height: 1.5;
}

.modal-actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.btn-modal-copy {
  background-color: var(--navy-deep);
  color: #FFFFFF !important;
  border: 2px solid var(--navy-deep);
  width: 100%;
  padding: 14px 24px;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 50px;
  box-sizing: border-box;
  transition: var(--transition);
  box-shadow: 0 4px 14px rgba(10, 34, 64, 0.25);
  cursor: pointer;
}

.btn-modal-copy:hover {
  background-color: var(--navy-mid);
  color: #FFFFFF !important;
  transform: translateY(-2px);
}

.btn-modal-copy.copied {
  background-color: #25D366 !important;
  color: #FFFFFF !important;
  border-color: #25D366 !important;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
}

.modal-wa-btn {
  width: 100%;
  padding: 14px 24px;
  min-height: 50px;
  box-sizing: border-box;
  font-size: 0.95rem;
}

/* FLOATING MOBILE CONTACT BAR */
.mobile-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #FFFFFF;
  padding: 12px 16px;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
  z-index: 999;
  border-top: 1px solid rgba(0,0,0,0.08);
}

.mobile-bar-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.btn-mobile-action {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  border-radius: var(--radius-full);
  font-weight: 800;
  font-size: 0.9rem;
  color: #fff;
}

/* RESPONSIVE MEDIA QUERIES FOR TABLETS & MOBILE */
@media (max-width: 992px) {
  .nav-container {
    height: 76px;
  }

  .nav-logo-img {
    height: 44px;
  }

  .brand-name {
    font-size: 1.15rem;
  }

  .brand-tagline {
    font-size: 0.68rem;
  }

  .nav-menu {
    gap: 18px;
    margin-right: 20px;
  }

  .nav-link {
    font-size: 0.88rem;
  }

  .top-promo-bar {
    top: 76px;
    padding: 8px 0;
    font-size: 0.82rem;
  }

  .hero {
    padding-top: 160px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  
  .hero-title {
    font-size: 2.3rem;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .steps-grid {
    grid-template-columns: 1fr;
  }

  .trust-bar-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 12px;
  }

  .nav-container {
    height: 72px;
  }

  .brand-logo {
    gap: 8px;
  }

  /* Show company logo graphic image larger on mobile */
  .nav-logo-img {
    height: 48px;
  }

  /* Show brand name text on mobile with clean typography */
  .brand-text {
    display: flex;
    flex-direction: column;
  }

  .brand-name {
    font-size: 0.95rem;
    line-height: 1.1;
    white-space: nowrap;
  }

  .brand-tagline {
    display: none; /* Hide subtitle tagline on mobile to keep header clean */
  }

  .nav-actions {
    gap: 8px;
    margin-left: auto;
  }

  .nav-actions .btn-primary {
    padding: 7px 11px;
    font-size: 0.78rem;
    white-space: nowrap;
    line-height: 1;
    gap: 4px;
  }

  .nav-actions .btn-primary svg {
    display: none;
  }

  /* Hamburger Navigation Toggle & Mobile Menu */
  .nav-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px;
  }

  .nav-menu {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    margin-left: 0;
    margin-right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    flex-direction: column;
    padding: 24px 20px;
    gap: 16px;
    border-bottom: 2px solid var(--blue-light);
    box-shadow: 0 10px 24px rgba(10, 34, 64, 0.12);
    transform: translateY(-150%);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 998;
  }

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

  .nav-link {
    font-size: 1.1rem;
    width: 100%;
    text-align: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 114, 206, 0.08);
  }

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

  .top-promo-bar {
    top: 72px;
    padding: 7px 0;
    font-size: 0.78rem;
  }

  .promo-container {
    gap: 8px;
  }

  .promo-divider {
    display: none;
  }

  /* HERO MOBILE ALIGNMENT */
  .hero {
    padding-top: 175px;
    padding-bottom: 50px;
  }

  .hero-content {
    text-align: center;
  }

  .hero-badge-wrap {
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-title {
    font-size: 1.95rem;
  }

  .hero-subtitle {
    font-size: 1rem;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-highlights {
    grid-template-columns: 1fr;
    gap: 10px;
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
  }

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

  .hero-main-card img {
    height: 300px;
  }

  .hero-floating-badge {
    bottom: 14px;
    left: 14px;
    padding: 10px 14px;
  }

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

  .about-image-card img {
    height: 280px;
  }

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

  .quote-banner {
    flex-direction: column;
    text-align: center;
    padding: 28px 20px;
  }

  /* Force buttons to be vertically stacked one under the other & centered on ALL phones */
  .quote-banner-buttons {
    flex-direction: column;
    width: 100%;
    align-items: center;
    gap: 12px;
  }

  .quote-banner-buttons a {
    width: 100%;
    max-width: 300px;
    justify-content: center;
    text-align: center;
  }

  .contact-card-main {
    padding: 28px 16px;
  }

  .contact-phone-display {
    font-size: 1.7rem;
    flex-direction: column;
    gap: 8px;
  }

  .contact-notice-box {
    padding: 18px 16px;
    gap: 14px;
    align-items: flex-start;
  }

  .notice-items {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    font-size: 0.86rem;
  }

  .notice-sep {
    display: none;
  }

  .trust-bar-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px 10px;
  }

  .trust-item {
    font-size: 0.78rem;
    justify-content: flex-start;
    align-items: center;
    text-align: left;
  }

  .trust-item svg {
    width: 22px;
    height: 22px;
  }

  .mobile-sticky-bar {
    display: block;
  }

  body {
    padding-bottom: 70px;
  }
}

@media (max-width: 420px) {
  .brand-logo {
    gap: 6px;
  }

  .nav-logo-img {
    height: 42px;
  }

  .brand-name {
    font-size: 0.86rem;
  }

  .nav-actions .btn-primary {
    padding: 6px 9px;
    font-size: 0.74rem;
  }

  .top-promo-bar {
    padding: 6px 0;
    font-size: 0.74rem;
  }

  .hero {
    padding-top: 170px;
  }

  .hero-title {
    font-size: 1.75rem;
  }

  .hero-ctas {
    flex-direction: column;
    width: 100%;
  }

  .hero-ctas a {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .insta-box {
    padding: 36px 16px !important;
  }

  .insta-title {
    font-size: 1.45rem;
  }

  .btn-instagram {
    padding: 12px 20px;
    font-size: 0.92rem;
    width: 100%;
    justify-content: center;
  }
}
