/* ========================================
   SMBHub Studio — Custom Styles
   ======================================== */

:root {
  --primary: #00aeef;
  --primary-dark: #0095d0;
  --primary-light: #33c1f2;
  --secondary: #6c63ff;
  --accent: #ff6b6b;
  --dark: #0d0d1a;
  --dark-alt: #1a1a2e;
  --gray: #6c757d;
  --gray-light: #f8f9fc;
  --border-color: #e8ecf4;
  --shadow: 0 10px 40px rgba(74, 108, 247, 0.08);
  --shadow-hover: 0 20px 60px rgba(74, 108, 247, 0.15);
  --radius: 16px;
  --radius-sm: 8px;
  --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --font: 'Inter', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

/* Smaller buttons globally */
.btn {
  font-size: 0.85rem;
  padding: 8px 20px;
}

.btn-lg {
  font-size: 0.9rem;
  padding: 10px 28px;
}

.btn-sm {
  font-size: 0.8rem;
  padding: 6px 16px;
}

body {
  font-family: var(--font);
  color: #444;
  line-height: 1.7;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: var(--primary);
  transition: var(--transition);
}

a:hover {
  color: var(--primary-dark);
}

img {
  max-width: 100%;
  height: auto;
}

/* Section Styles */
.section {
  padding: 100px 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}

.section-header::after {
  content: '';
  display: block;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--primary), #33c1f2, var(--primary), transparent);
  background-size: 300% 100%;
  margin: 0 auto;
  border-radius: 2px;
  transition: width 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  animation: lineGlow 4s ease-in-out infinite;
}

.section-header.aos-animate::after {
  width: 120px;
}

@keyframes lineGlow {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.section-subtitle {
  display: inline-block;
  background: linear-gradient(135deg, rgba(0,174,239,0.18), rgba(0,174,239,0.04), rgba(0,174,239,0.15));
  color: var(--primary);
  padding: 7px 22px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
  text-transform: uppercase;
  position: relative;
  background-size: 200% 200%;
  animation: pillFlow 4s ease-in-out infinite;
  border: 1px solid rgba(0,174,239,0.08);
}

@keyframes pillFlow {
  0%   { background-position: 0% 0%; }
  25%  { background-position: 100% 0%; }
  50%  { background-position: 100% 100%; }
  75%  { background-position: 0% 100%; }
  100% { background-position: 0% 0%; }
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 20px;
  position: relative;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--gray);
  max-width: 600px;
  margin: 0 auto 28px;
}

.text-gradient {
  background: linear-gradient(135deg, var(--primary), var(--secondary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ======= Top Bar ======= */
.top-bar {
  background: transparent;
  color: rgba(255,255,255,0.7);
  font-size: 0.82rem;
  padding: 6px 0;
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1031;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.top-bar .top-links a {
  color: rgba(255,255,255,0.7);
  font-size: 0.8rem;
  transition: var(--transition);
}

.top-bar .top-links a:hover {
  color: #fff;
}

.top-bar .social-top {
  font-size: 0.95rem;
}

.lang-switch {
  font-size: 0.8rem;
  font-weight: 600;
}

.lang-link {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: var(--transition);
}

.lang-link:hover,
.lang-link.active {
  color: #fff;
}

.lang-sep {
  color: rgba(255,255,255,0.3);
  margin: 0 4px;
}

/* ======= Navigation ======= */
.navbar {
  padding: 14px 0;
  transition: var(--transition);
  background: transparent;
  top: 30px;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.98);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.08);
  padding: 10px 0;
  top: 0px;
}

.navbar-brand {
  padding: 0;
  line-height: 1;
}

.nav-logo {
  
  height: 50px;
  width: auto;
  display: block;
}

.navbar.scrolled .nav-logo {
  filter: brightness(1);
  margin-top: -5px;
}

.navbar .nav-link {
  color: rgba(255, 255, 255, 0.85) !important;
  font-weight: 500;
  padding: 8px 14px !important;
  border-radius: 3px;
  transition: var(--transition);
  font-size: 0.88rem;
}

.navbar.scrolled .nav-link {
  color: #444 !important;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
  color: #fff !important;
  background: var(--primary);
}

.navbar.scrolled .nav-link:hover,
.navbar.scrolled .nav-link.active {
  color: #fff !important;
}

.navbar .navbar-toggler {
  color: #fff;
  font-size: 1.5rem;
}

.navbar.scrolled .navbar-toggler {
  color: var(--dark);
}

.navbar-toggler:focus {
  box-shadow: none;
}

/* ======= Hero ======= */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, rgba(13,13,26,0.92) 0%, rgba(26,26,46,0.9) 50%, rgba(22,33,62,0.92) 100%), url('../img/background.webp') center/cover no-repeat;
  position: relative;
  overflow: hidden;
  padding-top: 0;
  margin-top: -50px;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(74, 108, 247, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(108, 99, 255, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-badge {
  display: inline-block;
  background: rgba(74, 108, 247, 0.15);
  color: var(--primary-light);
  padding: 8px 24px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
  border: 1px solid rgba(74, 108, 247, 0.2);
}

.hero h1 {
  font-size: 3.8rem;
  font-weight: 900;
  color: #fff;
  line-height: 1.12;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.hero .lead {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.65);
  max-width: 540px;
}

.hero-response {
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
}

.hero-response i {
  color: var(--primary-light);
}

.hero-buttons .btn-primary {
  background: var(--primary);
  border: none;
  padding: 10px 28px;
  font-weight: 600;
  font-size: 0.85rem;
  border-radius: 50px;
  transition: var(--transition);
}

.hero-buttons .btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(74, 108, 247, 0.3);
}

.hero-buttons .btn-outline-light {
  padding: 10px 28px;
  font-weight: 600;
  font-size: 0.85rem;
  border-radius: 50px;
  border-width: 2px;
}

.hero-buttons .btn-outline-light:hover {
  transform: translateY(-2px);
}

.hero-stats .stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.hero-stats .stat-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 4px;
}

.hero-image-wrapper {
  position: relative;
}

.hero-shape {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  top: 20px;
  left: 20px;
  z-index: 0;
}

.hero-img {
  position: relative;
    z-index: 1;
    border-radius: 20px;
    margin-bottom: -30px;
    zoom: 1.50;
}

.hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  line-height: 0;
}

.hero-wave svg {
  width: 100%;
  height: 80px;
  filter: drop-shadow(0 -4px 15px rgba(0,0,0,0.08));
}

/* ======= Quick Services ======= */
.quick-services {
  padding: 60px 0 70px;
  background: #fff;
  position: relative;
  z-index: 1;
}

.quick-service-card {
  display: block;
  text-align: center;
  padding: 28px 16px;
  border-radius: var(--radius);
  background: var(--gray-light);
  border: 1px solid var(--border-color);
  transition: var(--transition);
  color: #444;
}

.quick-service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: var(--primary);
  color: var(--dark);
}

.quick-service-card .qs-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(74,108,247,0.1), rgba(108,99,255,0.1));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  font-size: 1.5rem;
  color: var(--primary);
  transition: var(--transition);
}

.quick-service-card:hover .qs-icon {
  background: var(--primary);
  color: #fff;
}

.quick-service-card h6 {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.quick-service-card .qs-price {
  font-size: 0.78rem;
  color: var(--gray);
  font-weight: 600;
}

/* ======= Services Detail ======= */
.bg-light {
  background: var(--gray-light) !important;
}

.service-row {
  border-bottom: 1px solid var(--border-color);
}

.service-row:last-child {
  border-bottom: none;
}

.service-badge {
  display: inline-block;
  background: rgba(74,108,247,0.1);
  color: var(--primary);
  padding: 4px 16px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.service-title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 16px;
}

.service-desc {
  font-size: 1rem;
  color: var(--gray);
  line-height: 1.8;
}

.service-list {
  list-style: none;
  padding: 0;
  margin: 16px 0;
}

.service-list li {
  padding: 6px 0;
  font-size: 0.95rem;
  color: #555;
}

.service-list li i {
  color: var(--primary);
  margin-right: 10px;
}

.service-feature {
  font-size: 0.8rem;
  color: var(--gray);
  font-weight: bold;
}

.service-feature i {
  color: var(--primary);
  margin-right: 6px;
}

.service-img-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}
.one .service-img-wrapper {
  justify-content: right;
}
.two .service-img-wrapper {
  justify-content: left;
}

.restoration-compare {
  position: relative;
  display: inline-flex;
  max-width: 580px;
  width: 100%;
}

.restoration-before,
.restoration-after {
  position: relative;
  width: 100%;
}

.restoration-before img,
.restoration-after img {
  width: 100%;
  max-width: 100%;
  display: block;
}

.restoration-after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease;
  cursor: crosshair;
}

.restoration-compare:hover .restoration-after {
  opacity: 1;
}

.restoration-label {
  position: absolute;
  bottom: 12px;
  padding: 4px 14px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  pointer-events: none;
}

.before-label {
  left: 12px;
  background: rgba(0,0,0,0.7);
  color: #fff;
}

.after-label {
  right: 12px;
  background: rgba(0,174,239,0.9);
  color: #fff;
}
.videos {
  width: 90%;
}

.service-img-wrapper img {
  width: 100%;
  max-width: 580px;
  box-shadow: var(--shadow);
  border-radius: var(--radius);
}

.service-row .col-lg-6:first-child {
  padding-right: 30px;
}

.service-row.flex-lg-row-reverse .col-lg-6:first-child {
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: 30px;
}

@media (max-width: 991.98px) {
  .service-img-wrapper img {
    width: 100%;
    max-width: 100%;
  }
  .service-row .col-lg-6:first-child,
  .service-row.flex-lg-row-reverse .col-lg-6:first-child {
    padding-right: calc(var(--bs-gutter-x) * 0.5);
    padding-left: calc(var(--bs-gutter-x) * 0.5);
  }
}

/* Service Badge Variants */
.service-badge-purple { background: rgba(108,99,255,0.12); color: #6c63ff; }
.service-badge-red { background: rgba(255,107,107,0.12); color: #ff6b6b; }
.btn-purple { background: #6c63ff; border-color: #6c63ff; color: #fff; }
.btn-purple:hover { background: #5a52e0; border-color: #5a52e0; color: #fff; }
.btn-red { background: #ff6b6b; border-color: #ff6b6b; color: #fff; }
.btn-red:hover { background: #e05555; border-color: #e05555; color: #fff; }
.btn-green { background: #20c997; border-color: #20c997; color: #fff; }
.btn-green:hover { background: #17a87b; border-color: #17a87b; color: #fff; }
.btn-outline-green { color: #20c997; border-color: #20c997; }
.btn-outline-green:hover { background: #20c997; border-color: #20c997; color: #fff; }

/* Service Badge Variants */
.service-badge-green { background: rgba(32,201,151,0.12); color: #20c997; }
.service-badge-cyan { background: rgba(13,202,240,0.12); color: #0dcaf0; }
.service-badge-yellow { background: rgba(255,193,7,0.12); color: #ffc107; }
.service-badge-purple2 { background: rgba(111,66,193,0.12); color: #6f42c1; }
.btn-cyan { background: #0dcaf0; border-color: #0dcaf0; color: #000; }
.btn-cyan:hover { background: #0bb5d8; border-color: #0bb5d8; color: #000; }
.btn-yellow { background: #ffc107; border-color: #ffc107; color: #000; }
.btn-yellow:hover { background: #e0a800; border-color: #e0a800; color: #000; }
.btn-purple2 { background: #6f42c1; border-color: #6f42c1; color: #fff; }
.btn-purple2:hover { background: #5e36a8; border-color: #5e36a8; color: #fff; }
.ms-icon-gem { background: rgba(255,107,107,0.12); color: #ff6b6b; }

/* ======= Mini Service Cards ======= */
.mini-service-card {
  background: #fff;
  padding: 32px 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  height: 100%;
  transition: var(--transition);
  border: 1px solid transparent;
}

.mini-service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: var(--border-color);
}

.mini-service-card .ms-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 16px;
}

.mini-service-card h5 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}

.mini-service-card p {
  font-size: 0.9rem;
  color: var(--gray);
  margin-bottom: 14px;
}

.mini-service-card a {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
}

.mini-service-card a i {
  font-size: 0.75rem;
  transition: var(--transition);
}

.mini-service-card a:hover i {
  transform: translateX(4px);
}

/* ======= About / Values ======= */
.value-card {
  text-align: center;
  padding: 36px 24px;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
  height: 100%;
  transition: var(--transition);
  border: 1px solid transparent;
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(74,108,247,0.1);
}

.value-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(74,108,247,0.1), rgba(108,99,255,0.1));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.6rem;
  color: var(--primary);
}

.value-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
}

.value-card p {
  font-size: 0.92rem;
  color: var(--gray);
  line-height: 1.7;
}

.tech-partners .tech-logo {
  padding: 16px 12px;
  background: var(--gray-light);
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--gray);
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

.tech-partners .tech-logo:hover {
  border-color: var(--primary);
  color: var(--primary);
}

/* ======= Pricing ======= */
.pricing-card {
  background: #fff;
  padding: 32px 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
  height: 100%;
  transition: var(--transition);
  border: 1px solid transparent;
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.pricing-card.popular {
  border-color: var(--primary);
  border-width: 2px;
}

.pricing-card .badge-popular {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--primary);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pricing-img {
  font-size: 2.2rem;
  color: var(--primary);
  margin-bottom: 16px;
}

.pricing-card h5 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.pricing-card .price {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 12px;
}

.pricing-card p {
  font-size: 0.88rem;
  color: var(--gray);
  margin: 0;
}

.metal-biz-cta {
  background: linear-gradient(135deg, var(--dark), var(--dark-alt));
  color: #fff;
}

.metal-biz-cta h3 {
  font-size: 2rem;
  margin-bottom: 16px;
}

/* ======= Partner Program ======= */
.partner-card {
  background: #fff;
  padding: 36px 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
  height: 100%;
  transition: var(--transition);
  border: 2px solid transparent;
  position: relative;
}

.partner-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.partner-card.popular {
  border-color: var(--primary);
}

.partner-card .badge-popular {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--primary);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  text-transform: uppercase;
}

.partner-card h4 {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--dark);
  margin-bottom: 2px;
}

.partner-card .tier-label {
  font-size: 0.85rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.partner-card .tier-volume {
  font-size: 0.9rem;
  color: var(--gray);
  margin: 8px 0;
}

.partner-card .tier-discount {
  font-size: 1.5rem;
  font-weight: 900;
  padding: 8px 0;
  margin: 12px 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.tier-1 .tier-discount { color: #20c997; }
.tier-2 .tier-discount { color: var(--primary); }
.tier-3 .tier-discount { color: #6f42c1; }

.partner-card ul {
  list-style: none;
  padding: 0;
  text-align: left;
  margin: 16px 0;
}

.partner-card ul li {
  padding: 4px 0;
  font-size: 0.88rem;
  color: #555;
}

.partner-card ul li::before {
  content: "\2713 ";
  color: var(--primary);
  font-weight: 700;
}

.partner-notes {
  background: #fff;
  padding: 20px 24px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-color);
}

.partner-notes p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--gray);
}

.partner-notes i {
  color: var(--primary);
}

/* ======= FAQ ======= */
.accordion-item {
  border: none;
  margin-bottom: 12px;
  border-radius: var(--radius-sm) !important;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}

.accordion-button {
  font-weight: 600;
  color: var(--dark);
  padding: 12px 18px;
  font-size: 0.88rem;
  background: #fff;
  box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
  background: #fff;
  color: var(--primary);
}

.accordion-button::after {
  background-size: 0.85rem;
}

.accordion-body {
  padding: 0 18px 12px;
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.6;
}

#faq .accordion-item {
  margin-bottom: 8px;
}

/* ======= Contact Section ======= */
.contact-card {
  background: #fff;
  padding: 36px 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
  height: 100%;
  transition: var(--transition);
  border: 1px solid transparent;
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: var(--border-color);
}

.contact-card-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(74,108,247,0.1), rgba(108,99,255,0.1));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 1.5rem;
  color: var(--primary);
}

.contact-card h5 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}

.contact-card p {
  font-size: 0.92rem;
  color: var(--gray);
  margin: 0;
  line-height: 1.7;
}

.contact-card a {
  color: var(--primary);
  font-weight: 500;
}

/* Contact Form & Map */
.contact-form-wrapper {
  background: #fff;
  padding: 36px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  height: 100%;
}

.contact-form-wrapper .form-control {
  border: 2px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 12px 18px;
  font-size: 0.95rem;
  transition: var(--transition);
}

.contact-form-wrapper .form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(74, 108, 247, 0.1);
}

.contact-form-wrapper .form-control::placeholder {
  color: #adb5bd;
}

.contact-form-wrapper textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-map-wrapper {
  height: 100%;
}

.map-container {
  height: 100%;
  padding-bottom: 75%;
  position: relative;
}

.map-container iframe,
.map-iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ======= CTA Section ======= */
.cta-section {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
}

.cta-section h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.cta-section .btn-light {
  padding: 10px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.85rem;
}

/* ======= Footer ======= */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
  padding: 80px 0 30px;
}

.footer-logo {
  height: 50px;
  width: auto;
  display: block;
}

.footer h4 {
  color: #fff;
}

.footer h4 .dot {
  color: var(--primary);
}

.footer h5 {
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.footer p {
  font-size: 0.92rem;
  line-height: 1.8;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-links a:hover {
  color: #fff;
  padding-left: 4px;
}

.footer-contact p {
  font-size: 0.88rem;
  margin-bottom: 10px;
  line-height: 1.6;
}

.footer-contact i {
  color: var(--primary-light);
  margin-right: 6px;
}

.footer-bottom {
  margin-top: 10px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.85rem;
}

/* ======= Responsive ======= */
@media (max-width: 1201px) {
    .hero-img {
        zoom: 2.5;
    }
}
@media (max-width: 991.98px) {
  .hero {
    padding-top: 150px;
  }
  .hero h1 {
    font-size: 2.5rem;
  }
  .section-header h2 {
    font-size: 2rem;
  }
  .service-title {
    font-size: 1.6rem;
  }
  .navbar {
    top: 0 !important;
    margin-top: 0;
  }
  .top-bar {
    display: none !important;
  }
  .hero-image-wrapper {
    overflow: hidden;
  }
  .hero-shape {
    left: 10px;
    top: 10px;
  }
  .hero-img {
    zoom: 1;
  }
  .service-row .col-lg-6 {
    flex: 0 0 100% !important;
    max-width: 100% !important;
    width: 100% !important;
  }
  .videos {
    width: 100%;
  }
  .quick-services .col-6 {
    margin-bottom: 0;
  }
  .navbar-collapse {
    background: var(--dark);
    border-radius: 12px;
    padding: 16px;
    margin-top: 12px;
    max-height: 80vh;
    overflow-y: auto;
  }
  .navbar.scrolled .navbar-collapse {
    background: #fff;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
  }
  .navbar .nav-link {
    color: rgba(255,255,255,0.85) !important;
    text-align: center;
    padding: 12px 14px !important;
  }
  .navbar.scrolled .navbar-collapse .nav-link {
    color: #444 !important;
  }
  .navbar.scrolled .navbar-collapse .nav-link:hover,
  .navbar.scrolled .navbar-collapse .nav-link.active {
    color: #fff !important;
  }
}

@media (max-width: 767.98px) {
  .hero h1 {
    font-size: 2rem;
  }
  .hero .hero-badge {
    display: block;
    text-align: center;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }
  .hero h1,
  .hero .lead,
  .hero-response,
  .hero-buttons {
    text-align: center;
  }
  .hero .lead {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-buttons .btn {
    display: block;
    width: 100%;
    margin: 8px 0 !important;
  }
  .hero-stats {
    justify-content: center;
  }
  .hero-stats .col-4 {
    text-align: center;
  }
  .section {
    padding: 60px 0;
  }
  .section-header {
    margin-bottom: 40px;
  }
  .pricing-card .price {
    font-size: 1.5rem;
  }
  .footer {
    padding: 50px 0 20px;
  }
  .footer .row > div {
    text-align: center !important;
  }
  .footer-logo {
    margin-left: auto;
    margin-right: auto;
  }
  .footer-links {
    text-align: center;
  }
  .footer-bottom .row > div {
    text-align: center !important;
  }
}

.quote-iframe {
  width: 100%;
  height: 80vh;
  border: 0;
  display: block;
}

.modal-xl {
  max-width: 95vw;
}

@media (min-width: 1200px) {
  .modal-xl { max-width: 1140px; }
}

.modal-header {
  border-bottom: 1px solid var(--border-color);
  padding: 16px 24px;
}

.modal-title {
  font-size: 1.1rem;
}

#feedbackModal .modal-body .form-control {
  border: 2px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 12px 18px;
  font-size: 0.95rem;
  transition: var(--transition);
}

#feedbackModal .modal-body .form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(74, 108, 247, 0.1);
}

#feedbackModal .modal-body .form-control::placeholder {
  color: #adb5bd;
}

.cta-subtitle { background: rgba(255,255,255,0.15) !important; color: #fff !important; }
.cta-text { max-width: 600px; color: rgba(255,255,255,0.8); }

/* ======= Gallery ======= */
.gallery {
  background: #fff;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm);
  cursor: default;
}

.gallery-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.4s ease;
  filter: brightness(0.95);
}

.gallery-item:hover img {
  transform: scale(1.08);
  filter: brightness(1.05);
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,174,239,0.15), rgba(108,99,255,0.1));
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.gallery-item:hover::after {
  opacity: 1;
}

@media (max-width: 767.98px) {
  .gallery-item img {
    height: 160px;
  }
}

/* ======= Animations ======= */
[data-aos] {
  pointer-events: none;
}

[data-aos].aos-animate {
  pointer-events: auto;
}
