/* ================= RESET KEEP ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

body {
  background: #fbfcfde5;
  color: #0b0f14;
}
.top-bar{
  background: linear-gradient(90deg,#d5edd6,#3b82f6);
  padding: 2px 0;
}

.top-bar .container{
  display:flex;
  justify-content:flex-end;   /* moves social to right */
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.social-left span{
  font-weight: 750;
}
.social-left{
  display:flex;
  align-items:center;
  gap:15px;
  color:rgb(250, 253, 252);
}
.social-left a{
  color:white;
  font-size:16px;
  transition:.3s;
}
.social-left a:hover{
  color:#ff9f1c;
  transform:scale(1.2);
}


/* ================= HEADER ================= */
.main-header {
  background: #f0f3f9;
  box-shadow: 0 8px 30px rgba(0,0,0,0.06);
  position: sticky;
  top: 0;
  z-index: 999;
}

.header-inner {
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LOGO */
.logo img {
  max-height: 60px;
  transition: transform 0.3s ease;
}

.logo img:hover {
  transform: scale(1.03);
}

/* ================= NAVBAR ================= */
.navbar ul {
  list-style: none;
  display: flex;
  gap: 30px;
}

.navbar a {
  position: relative;
  font-size: 15px;
  font-weight: 600;
  color: #1f2a37;
  padding: 6px 0;
  transition: color 0.3s ease;
}

/* Underline animation */
.navbar a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: #2f6df6;
  transition: width 0.3s ease;
}

.navbar a:hover::after,
.navbar a.active::after {
  width: 100%;
}

.navbar a:hover,
.navbar a.active {
  color: #2f6df6;
}
.navbar a {
  text-decoration: none !important;
}

/* ================= HEADER ACTIONS ================= */
.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

/* GRID ICON */
.icon-btn {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #2f6df6, #4a86ff);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  box-shadow: 0 8px 20px rgba(47,109,246,0.35);
  transition: all 0.3s ease;
}

.icon-btn:hover {
  transform: translateY(-3px) scale(1.05);
}


/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
  .navbar {
    display: none;
  }
}

/* ===== FOOTER ===== */
.main-footer {
  background: #031a3d;
  color: #fff;
  padding-top: 70px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}

.main-footer a {
  color: #ddd;
  text-decoration: none;
}

.main-footer ul {
  list-style: none;
  padding: 0;
}

.main-footer li {
  margin-bottom: 10px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  font-size: 14px;
}

.footer-bottom-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 15px;
}

/* ===== VERTICAL SOCIAL BAR ===== */
.vertical-social {
  position: fixed;
  left: 0;
  top: 40%;
  z-index: 9999;
}

.vertical-social a {
  display: block;
  background: #2f6df6;
  color: #fff;
  padding: 10px 14px;
  margin: 2px 0;
  text-transform: lowercase;
  font-size: 12px;
  transform: rotate(-90deg);
  transform-origin: left top;
}
/* ===== CONTACT HERO PRO (BASE) ===== */
.contact-hero-pro {
  background: linear-gradient(135deg, #0b2c6d, #2f6df6);
  padding: 6px 0;
  overflow: hidden;
}

.contact-hero-pro-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ===== BG IMAGE CARD BEHIND TEXT ===== */
.contact-hero-card {
  background: 
    linear-gradient(rgba(11,44,109,0.75), rgba(11,44,109,0.75)),
    url("/assets/images/contact-bg-card.jpg") center/cover no-repeat;
  
  padding: 50px 0px;
  border-radius: 20px;
  max-width: 520px;   /* MAKES IT SMALLER */
  box-shadow: 0 25px 60px rgba(0,0,0,0.35);
}

.contact-hero-card h1 {
  font-size: 54px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 15px;
}

.breadcrumb-pro {
  color: rgba(255,255,255,0.9);
  font-size: 16px;
  font-weight: 600;
}

.breadcrumb-pro a {
  color: #fff;
  text-decoration: none;
}

/* RIGHT IMAGE */
.contact-hero-image img {
  max-width: 160px;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.25));
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .contact-hero-pro-inner {
    flex-direction: column;
    text-align: center;
  }

  .contact-hero-card {
    max-width: 100%;
    padding: 40px;
  }

  .contact-hero-image img {
    margin-top: 40px;
    max-width: 20px;
  }
}

.map-section iframe {
  width: 100%;
  height: 320px;
  border:#2f6df6;
  display: block;

}
.logo a {
  display: inline-block;
}



/* ===== DROPDOWN ===== */
.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  min-width: 220px;
  border-radius: 10px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: 0.3s;
  z-index: 999;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li a {
  display: block;
  padding: 12px 16px;
  color: #222;
}

.dropdown-menu li a:hover {
  background: #f2f6ff;
  color: #2f6df6;
}

/* ===== ACTIVE MENU ===== */
.navbar a.active {
  color: #2f6df6;
  font-weight: 700;
}

/* ===== MOBILE NAV ===== */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
}

@media (max-width: 992px) {
  .mobile-toggle {
    display: block;
  }

  .navbar {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    display: none;
    flex-direction: column;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
  }

  .navbar.open {
    display: block;
  }

  .navbar ul {
    flex-direction: column;
    gap: 0;
  }

  .navbar li {
    border-bottom: 1px solid #eee;
  }
  /* ===== MOBILE DROPDOWN FIX ===== */

.dropdown-menu {
  position: static;
  width: 100%;
  box-shadow: none;
  opacity: 1;
  visibility: visible;
  transform: none;
  display: none;
  background: #f8f9fb;
}

.dropdown.active .dropdown-menu {
  display: block;
}
}/* ===== ABOUT PAGE ===== */
.about-company {
  padding: 90px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.about-image img {
  width: 100%;
  border-radius: 14px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

/* MISSION */
.about-mission {
  background: #f6f9ff;
  padding: 80px 0;
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 30px;
}

.mission-box {
  background: #fff;
  padding: 35px;
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.mission-box i {
  font-size: 36px;
  color: #2f6df6;
  margin-bottom: 15px;
}

/* WHY CHOOSE */
.about-why {
  padding: 90px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 25px;
}

.why-box {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 12px 35px rgba(0,0,0,0.08);
}

.why-box i {
  font-size: 32px;
  color: #2f6df6;
  margin-bottom: 12px;
}

/* STATS */
.about-stats {
  background: linear-gradient(135deg, #0b2c6d, #2f6df6);
  color: #fff;
  padding: 70px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  text-align: center;
  gap: 20px;
}

.stat-box h3 {
  font-size: 42px;
  margin-bottom: 5px;
}

/* CTA */
.about-cta {
  padding: 90px 0;
  background: #f6f9ff;
  text-align: center;
}

.about-cta-inner h2 {
  margin-bottom: 10px;
}
/* ===== SERVICES GRID ===== */
.services-grid-section {
  padding: 90px 0;
  background: #f6f9ff;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.service-card {
  background: #fff;
  padding: 35px 25px;
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 12px 35px rgba(0,0,0,0.08);
  transition: 0.3s;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 45px rgba(0,0,0,0.12);
}

.service-card i {
  font-size: 40px;
  color: #2f6df6;
  margin-bottom: 15px;
}

.service-card h3 {
  margin-bottom: 10px;
}

.service-card a {
  color: #2f6df6;
  font-weight: 600;
  text-decoration: none;
}

/* ===== SERVICE PROCESS ===== */
.service-process {
  padding: 90px 0;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.process-box {
  background: #fff;
  padding: 35px;
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 12px 35px rgba(0,0,0,0.08);
  position: relative;
}

.process-box span {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  background: #2f6df6;
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}
/* ===== BLOG LISTING ===== */
.blog-listing {
  padding: 90px 0;
  background: #f6f9ff;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.blog-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(0,0,0,0.08);
  transition: 0.3s;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 45px rgba(0,0,0,0.12);
}

.blog-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.blog-content {
  padding: 25px;
}

.blog-date {
  font-size: 13px;
  color: #888;
  display: block;
  margin-bottom: 8px;
}

.blog-content h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.blog-content a {
  color: #2f6df6;
  font-weight: 600;
  text-decoration: none;
}
/* =====================================
   VIDEO POPUP MODAL
===================================== */

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
}

.video-modal.active {
  display: block;
}

.video-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.75);
  animation: fadeIn 0.3s ease;
}

.video-modal-content {
  position: relative;
  max-width: 900px;
  width: 90%;
  margin: 6% auto;
  background: #000;
  border-radius: 14px;
  overflow: hidden;
  animation: scaleIn 0.35s ease;
}

.video-wrapper {
  position: relative;
  padding-top: 56.25%; /* 16:9 */
}

.video-wrapper iframe,
.video-wrapper video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* CLOSE BUTTON */
.video-close {
  position: absolute;
  top: 8px;
  right: 12px;
  background: #ff3b3b;
  color: #fff;
  border: none;
  font-size: 26px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
}

/* ANIMATIONS */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes scaleIn {
  from { transform: scale(0.85); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
}

.video-modal.active {
  display: block;
}
/* ================================
   CONTACT PAGE FINAL LAYOUT
================================ */

.contact-container-fixed {
  max-width: 1200px;
  margin: 0 auto;
}

.contact-modern {
  padding: 90px 0;
  background: #fff;
}

/* GRID */
.contact-modern-grid {
  display: grid;
  grid-template-columns: 1fr 520px;
  gap: 60px;
  align-items: center;
}

/* LEFT INFO */
.contact-left-info h2 {
  font-size: 38px;
  line-height: 1.2;
  margin-bottom: 15px;
  color: #0a2540;
}

.contact-left-info h2 span {
  color: #2f6bff;
}

.contact-left-info p {
  color: #5b6b88;
  margin-bottom: 30px;
}

.contact-left-box {
  background: #f6f9ff;
  border-radius: 14px;
  padding: 18px 22px;
  margin-bottom: 20px;
  border-left: 4px solid #2f6bff;
}

.contact-left-box h4 {
  font-size: 15px;
  margin-bottom: 6px;
  color: #2f6bff;
}
/* ================================
   MODERN CONTACT FORM UI
================================ */

.contact-modern-card {
  background: #eaf4ff;
  border-radius: 24px;
  padding: 50px;
  max-width: 800px;
  margin: auto;
  box-shadow: 0 25px 60px rgba(0,0,0,0.08);
}

.contact-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #2f6bff;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 10px;
}

.contact-modern-card h2 {
  font-size: 32px;
  margin-bottom: 30px;
  color: #0a2540;
}

/* GRID */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* FORM GROUP */
.form-group {
  margin-bottom: 22px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #4a5a7a;
}

/* INPUTS */
.contact-modern-form input,
.contact-modern-form textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid #dbe7ff;
  font-size: 15px;
  outline: none;
  background: #fff;
  transition: 0.3s;
}

.contact-modern-form input:focus,
.contact-modern-form textarea:focus {
  border-color: #2f6bff;
  box-shadow: 0 0 0 3px rgba(47,107,255,0.12);
}

/* BUTTON */
.btn-send-modern {
  background: #2f6bff;
  color: #fff;
  border: none;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 12px 30px rgba(47,107,255,0.35);
  transition: 0.3s;
}

.btn-send-modern:hover {
  background: #1e55e0;
  transform: translateY(-2px);
}

/* MOBILE */
@media (max-width: 768px) {
  .form-grid {
    grid-template-columns: 1fr;
  }

  .contact-modern-card {
    padding: 30px 20px;
  }
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .contact-modern-grid {
    grid-template-columns: 1fr;
  }
}
.top-left a {
  color: inherit;
  text-decoration: none;
}

.top-left a:hover {
  color: #fff;
  text-decoration: underline;
}
/* ================= OFFCANVAS PANEL ================= */

#offcanvas-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 9998;
}

#offcanvas-panel {
  position: fixed;
  top: 0;
  left: -380px;
  width: 360px;
  height: 100%;
  background: #061a3a;
  color: #fff;
  padding: 30px 25px;
  transition: 0.35s ease;
  z-index: 9999;
  overflow-y: auto;
}

#offcanvas-panel.active {
  left: 0;
}

#offcanvas-overlay.active {
  opacity: 1;
  visibility: visible;
}

#offcanvas-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: 1px solid #fff;
  color: #fff;
  font-size: 22px;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  cursor: pointer;
}

.offcanvas-content h3,
.offcanvas-content h4 {
  margin-top: 20px;
  margin-bottom: 10px;
}

.offcanvas-content p {
  font-size: 14px;
  line-height: 1.6;
  color: #d0d8ff;
}

#offcanvas-quote-form input,
#offcanvas-quote-form textarea {
  width: 100%;
  margin-bottom: 12px;
  padding: 10px 12px;
  border-radius: 8px;
  border: none;
  outline: none;
}

#offcanvas-quote-form button {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 30px;
  background: #2f6bff;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}
/* ================================
   PREMIUM SERVICES DROPDOWN
================================ */

.services-menu {
  display: flex !important;
  flex-direction: column;
  padding: 12px 0;
  border-radius: 14px;
  background: #030303;
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
  overflow: hidden;
}

.services-menu li a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  font-size: 15px;
  font-weight: 500;
  color: #1f2a37;
  position: relative;
  transition: all 0.3s ease;
}

/* LEFT HIGHLIGHT BAR */
.services-menu li a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: #2f6bff;
  opacity: 0;
  transition: 0.3s;
}

/* ICON STYLE */
.services-menu li a i {
  width: 22px;
  font-size: 16px;
  color: #2f6bff;
}

/* HOVER EFFECT */
.services-menu li a:hover {
  background: #f4f7ff;
  color: #2f6bff;
  padding-left: 26px;
}

.services-menu li a:hover::before {
  opacity: 1;
}
.services-menu {
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 25px 60px rgba(47, 107, 255, 0.15);
}

.services-menu li a {
  color: #1f2a37;
}

.services-menu li a i {
  color: #2f6bff;
}

.services-menu li a::before {
  background: #2f6bff;
}

.services-menu li a:hover {
  background: #f4f7ff;
  color: #2f6bff;
}
.services-menu {
  background: linear-gradient(180deg, #f5f9ff, #ffffff);
  box-shadow: 0 20px 50px rgba(47,107,255,0.12);
}

.services-menu li a:hover {
  background: #eaf1ff;
}

/* ================================
   FREE INSPECTION CTA CARD FIX
================================ */

.free-inspection-card {
  background: linear-gradient(135deg, #2f6bff, #1e55e0);
  border-radius: 22px;
  padding: 40px 45px;
  color: #fff;
  max-width: 420px;
  box-shadow: 0 25px 60px rgba(47,107,255,0.35);
  position: relative;
  overflow: hidden;
}

/* Soft glow pattern */
.free-inspection-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/pattern.png") repeat;
  opacity: 0.05;
  pointer-events: none;
}

/* Heading */
.free-inspection-card h3 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 10px;
  line-height: 1.3;
}

/* Sub text */
.free-inspection-card p {
  font-size: 15px;
  opacity: 0.95;
  margin-bottom: 22px;
}

/* Contact rows */
.free-inspection-card .cta-contact {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 15px;
  font-weight: 600;
}

.free-inspection-card .cta-contact i {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

/* Button */
.free-inspection-card .cta-btn {
  margin-top: 18px;
  display: inline-block;
  background: #ff8c2f;
  color: #fff;
  padding: 12px 28px;
  border-radius: 40px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(255,140,47,0.45);
  transition: 0.3s;
}

.free-inspection-card .cta-btn:hover {
  background: #ff7a10;
  transform: translateY(-2px);
  box-shadow: 0 14px 35px rgba(255,122,16,0.55);
}

/* Mobile */
@media (max-width: 768px) {
  .free-inspection-card {
    padding: 30px 25px;
    max-width: 100%;
  }
}
/* ================================
   PRIMEX GUARD BRAND TRUST SECTION
================================ */

.brand-trust-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #f4f8ff, #ffffff);
}

.brand-trust-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

/* LEFT BRAND */
.brand-left h2 {
  font-size: 38px;
  font-weight: 800;
  color: #0b1b3a;
  margin: 20px 0 15px;
  line-height: 1.2;
}

.brand-left h2 span {
  color: #2f6bff;
}

.brand-left p {
  font-size: 16px;
  color: #38393b;
  margin-bottom: 60px;
  max-width: 540px;
}

.brand-logo {
  max-width: 220px;
  margin-bottom: 10px;
}

/* Highlights */
.brand-highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5px;
  margin-bottom: 30px;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: #0b1b3a;
}

.highlight-item i {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #eaf1ff;
  color: #2f6bff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

/* CTA */
.brand-cta {
  margin-top: 10px;
  display: inline-block;
  box-shadow: 0 12px 30px rgba(47,107,255,0.35);
}

/* RIGHT FEATURE CARDS */
.brand-right {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.brand-feature-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 28px 25px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  transition: 0.3s;
  border-top: 4px solid #2f6bff;
}

.brand-feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 55px rgba(0,0,0,0.12);
}

.brand-feature-card i {
  font-size: 32px;
  color: #2f6bff;
  margin-bottom: 12px;
}

.brand-feature-card h4 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #0b1b3a;
}

.brand-feature-card p {
  font-size: 14px;
  color: #5b6b88;
  line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .brand-trust-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .brand-highlights {
    grid-template-columns: 1fr;
  }

  .brand-right {
    grid-template-columns: 1fr;
  }

  .highlight-item {
    justify-content: center;
  }
}
/* ================================
   HOME & OFFICE SERVICES SECTION
================================ */

.home-office-section {
  padding: 100px 0;
  background: #ffffff;

}
.home-office-section h2{
  font-size: 38px;
  font-weight: 700;
  color: #2f6bff;
  line-height: 1.25;
  margin-bottom: 12px;
  text-align: center;
}
.home-office-section h2 span{
  color: #1f2a37;
}
/* HEADER */
.home-office-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

.home-office-header .section-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: #2f6bff;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.home-office-header h2 {
  font-size: 38px;
  font-weight: 750;
  color: #0b1b3a;
  line-height: 1.25;
  margin-bottom: 12px;
}

.home-office-header h2 span {
  color: #2f6bff;
}

.home-office-header p {
  font-size: 16px;
  color: #5b6b88;
}

/* CARDS */
.home-office-grid {
  display: flex;
  flex-direction: column;
  gap: 70px;
}

/* CARD */
.home-office-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  background: linear-gradient(135deg, #f5f9ff, #ffffff);
  border-radius: 28px;
  padding: 40px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

/* REVERSE */
.home-office-card.reverse {
  grid-template-columns: 1fr 1fr;
  direction: rtl;
}

.home-office-card.reverse * {
  direction: ltr;
}

/* IMAGE */
.home-office-img img {
  width: 100%;
  border-radius: 22px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

/* CONTENT */
.home-office-content h3 {
  font-size: 26px;
  font-weight: 800;
  color: #0b1b3a;
  margin-bottom: 12px;
}

.home-office-content p {
  font-size: 15px;
  color: #5b6b88;
  margin-bottom: 18px;
}

.home-office-content ul {
  list-style: none;
  padding: 0;
  margin-bottom: 22px;
}

.home-office-content li {
  font-size: 14px;
  font-weight: 600;
  color: #0b1b3a;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.home-office-content li i {
  color: #2f6bff;
}

/* CTA STRIP */
.home-office-cta {
  margin-top: 80px;
  background: linear-gradient(135deg, #2f6bff, #1e55e0);
  border-radius: 24px;
  padding: 50px 40px;
  text-align: center;
  color: #fff;
  box-shadow: 0 25px 60px rgba(47,107,255,0.45);
}

.home-office-cta h3 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 8px;
}

.home-office-cta p {
  font-size: 15px;
  opacity: 0.9;
  margin-bottom: 25px;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 15px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .home-office-card,
  .home-office-card.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
    text-align: center;
  }

  .cta-actions {
    flex-direction: column;
  }
}


/* ================= WHERE WE SERVE SECTION ================= */

.where-we-serve {
  padding: 100px 0;
  background: #f6f9ff;
}

/* HEADER */
.where-we-serve-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

.where-we-serve-tag {
  color: #2f6bff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  display: inline-block;
  margin-bottom: 10px;
}

.where-we-serve-heading {
  font-size: 38px;
  font-weight: 800;
  color: #0b1b3a;
  line-height: 1.25;
  margin-bottom: 12px;
}

.where-we-serve-heading span {
  color: #2f6bff;
}

.where-we-serve-sub {
  color: #5b6b88;
  font-size: 16px;
  line-height: 1.6;
}

/* GRID */
.where-we-serve-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.brand-logo{
    display: flex;
    justify-content: center;
    align-items: center;
}
/* CARD */
.serve-card {
  background: #ffffff;
  border-radius: 26px;
  box-shadow: 0 25px 60px rgba(15, 30, 58, 0.08);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
  padding: 45px;
}

/* IMAGE */
.serve-image img {
  width: 100%;
  max-width: 420px;
  margin: auto;
  display: block;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.12));
}

/* CONTENT */
.serve-content {
  max-width: 520px;
}

.service-card-title {
  font-size: 26px;
  font-weight: 700;
  color: #0b1b3a;
  margin-bottom: 10px;
}

.service-card-desc {
  color: #5b6b88;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 20px;
}

/* FEATURES */
.service-feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 25px;
}

.service-feature-list li {
  margin-bottom: 10px;
  color: #2f6bff;
  font-weight: 700;
}

.service-feature-list li span {
  color: #5b6b88;
  font-weight: 500;
}

/* BUTTONS */
.btn-home {
  display: inline-block;
  background: #ff8c2b;
  color: #fff;
  padding: 12px 26px;
  border-radius: 40px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(255,140,43,0.35);
  transition: 0.3s;
}

.btn-home:hover {
  background: #e8771f;
  transform: translateY(-2px);
}

.btn-office {
  display: inline-block;
  border: 2px solid #2f6bff;
  color: #2f6bff;
  padding: 11px 26px;
  border-radius: 40px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.3s;
}

.btn-office:hover {
  background: #2f6bff;
  color: #fff;
  transform: translateY(-2px);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .serve-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .serve-content {
    margin: auto;
  }
}


.background-hero{
  background: 
    linear-gradient(rgba(10, 45, 120, 0.75), rgba(10, 45, 120, 0.75)),
    url("/assets/images/hero-bg2.png") center/cover no-repeat;
    
}

/* ==============================
   ABOUT PAGE PREMIUM DESIGN
============================== */

/* HERO UPGRADE */
.about-hero {
  background:
    linear-gradient(120deg, rgba(31, 82, 213, 0.9), rgba(213, 218, 230, 0.85)),
    url("/assets/images/hero-bg3.png") center/cover no-repeat;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.about-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at right, rgba(255,255,255,0.08), transparent 60%);
}

/* Hero card glass */
.about-hero .contact-hero-card {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border-radius: 18px;
  padding: 40px 50px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.25);
  animation: fadeUp 1s ease forwards;
}

.about-hero h1 {
  font-size: 56px;
  font-weight: 800;
  letter-spacing: -1px;
}

.about-hero .breadcrumb-pro {
  margin-top: 10px;
  opacity: 0.9;
}
/* ==============================
   WHO WE ARE — HERO STYLE
============================== */

.about-company {
  position: relative;
  padding: 70px 0;
  background:
    radial-gradient(circle at left, rgba(47,107,255,0.08), transparent 50%),
    linear-gradient(120deg, #f4f8ff, #eef4ff);
  overflow: hidden;
}

/* Soft floating shapes */
.about-company::before,
.about-company::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.5;
  z-index: 0;
}

.about-company::before {
  width: 320px;
  height: 320px;
  background: #2f6bff;
  top: -80px;
  left: -120px;
}

.about-company::after {
  width: 260px;
  height: 260px;
  background: #ff8c2b;
  bottom: -80px;
  right: -120px;
}

/* Grid */
.about-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}

/* GLASS TEXT PANEL */
.about-text {
  background: rgba(255,255,255,0.65);
  backdrop-filter: blur(12px);
  border-radius: 26px;
  padding: 55px 55px;
  box-shadow: 0 35px 90px rgba(47,107,255,0.18);
  animation: fadeLeft 1s ease forwards;
}

.about-text h2 {
  font-size: 34px;
  font-weight: 800;
  margin-bottom: 20px;
  position: relative;
}

.about-text h2::after {
  content: "";
  width: 90px;
  height: 5px;
  background: linear-gradient(90deg, #2f6bff, #ff8c2b);
  border-radius: 6px;
  display: block;
  margin-top: 14px;
  animation: underlineGrow 1.2s ease;
}

.about-text p {
  font-size: 14px;
  line-height: 1.85;
  color: #334;
  margin-bottom: 18px;
}

/* IMAGE HERO CARD */
.about-image {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 40px 120px rgba(0,0,0,0.25);
  transform: translateY(40px);
  opacity: 0;
  transition: 1s ease;
}

.about-image img {
  width: 100%;
  display: block;
  border-radius: 28px;
}

/* Glow border */
.about-image::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 28px;
  box-shadow: inset 0 0 0 2px rgba(255,255,255,0.2);
  pointer-events: none;
}

/* Floating animation */
.about-image.float {
  animation: floatImage 7s ease-in-out infinite;
}

/* Reveal */
.about-image.show {
  transform: translateY(0);
  opacity: 1;
}

/* ==============================
   ANIMATIONS
============================== */

@keyframes fadeLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes underlineGrow {
  from { width: 0; }
  to   { width: 90px; }
}

@keyframes floatImage {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-12px); }
}
/* ==============================
   PREMIUM WHY CHOOSE SECTION
============================== */

.why-premium {
  position: relative;
  padding: 70px 0;
  background:
    radial-gradient(circle at top right, rgba(47,107,255,0.08), transparent 40%),
    radial-gradient(circle at bottom left, rgba(255,140,43,0.08), transparent 40%),
    linear-gradient(120deg, #f7faff, #eef3ff);
}

.why-premium-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 70px;
}

.why-tag {
  display: inline-block;
  background: rgba(255,140,43,0.12);
  color: #ff8c2b;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1px;
  padding: 8px 18px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.why-premium-header h2 {
  font-size: 42px;
  font-weight: 900;
  margin-bottom: 14px;
}

.why-premium-header h2 span {
  color: #2f6bff;
}

.why-premium-header p {
  font-size: 17px;
  color: #556;
}

/* GRID */
.why-premium-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* CARD */
.why-premium-card {
  position: relative;
  border-radius: 26px;
  padding: 45px 35px;
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(14px);
  box-shadow: 0 30px 80px rgba(0,0,0,0.08);
  text-align: center;
  transition: all 0.45s ease;
  overflow: hidden;
}

/* Hover effect */
.why-premium-card:hover {
  transform: translateY(-14px) scale(1.02);
  box-shadow: 0 45px 120px rgba(47,107,255,0.2);
}

/* Glow Blob */
.why-premium-card::before {
  content: "";
  position: absolute;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  filter: blur(45px);
  opacity: 0.35;
  top: -60px;
  right: -60px;
}

/* Colors */
.why-premium-card.blue::before { background: #2f6bff; }
.why-premium-card.green::before { background: #2bc48a; }
.why-premium-card.orange::before { background: #ff8c2b; }
.why-premium-card.purple::before { background: #7b61ff; }

/* ICON */
.why-icon {
  width: 78px;
  height: 78px;
  margin: 0 auto 22px;
  border-radius: 22px;
  display: grid;
  place-items: center;
  font-size: 32px;
  color: #fff;
  position: relative;
  z-index: 1;
  box-shadow: 0 18px 40px rgba(0,0,0,0.15);
}

.why-premium-card.blue .why-icon {
  background: linear-gradient(135deg, #2f6bff, #5b8cff);
}
.why-premium-card.green .why-icon {
  background: linear-gradient(135deg, #2bc48a, #5fe0b1);
}
.why-premium-card.orange .why-icon {
  background: linear-gradient(135deg, #ff8c2b, #ffb26a);
}
.why-premium-card.purple .why-icon {
  background: linear-gradient(135deg, #7b61ff, #a492ff);
}

/* TEXT */
.why-premium-card h3 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.why-premium-card p {
  font-size: 15.5px;
  color: #445;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

/* RESPONSIVE */
@media (max-width: 1000px) {
  .why-premium-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .why-premium-grid {
    grid-template-columns: 1fr;
  }

  .why-premium-header h2 {
    font-size: 32px;
  }
}
.why-premium-card {
  opacity: 0;
  transform: translateY(40px);
}

.why-premium-card.show {
  opacity: 1;
  transform: translateY(0);
}

/* ==============================
   PREMIUM STATS SECTION
============================== */

.stats-premium {
  position: relative;
  padding: 70px 0;
  background:
    radial-gradient(circle at top left, rgba(47,107,255,0.18), transparent 45%),
    radial-gradient(circle at bottom right, rgba(255,140,43,0.15), transparent 45%),
    linear-gradient(120deg, #0b2a66, #2f6bff);
  overflow: hidden;
}

.stats-premium::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/noise.png");
  opacity: 0.05;
  pointer-events: none;
}

.stats-premium-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}

/* CARD */
.stat-premium-card {
  position: relative;
  padding: 20px 25px;
  border-radius: 26px;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
  box-shadow: 0 30px 90px rgba(0,0,0,0.25);
  transition: all 0.45s ease;
  overflow: hidden;
}

.stat-premium-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 45px 140px rgba(0,0,0,0.35);
}

/* Glow blob */
.stat-premium-card::before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  filter: blur(50px);
  opacity: 0.35;
  top: -60px;
  right: -60px;
}

.stat-premium-card.blue::before { background: #2f6bff; }
.stat-premium-card.green::before { background: #2bc48a; }
.stat-premium-card.orange::before { background: #ff8c2b; }
.stat-premium-card.purple::before { background: #7b61ff; }

/* ICON */
.stat-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 18px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  font-size: 30px;
  color: #fff;
  box-shadow: 0 15px 35px rgba(0,0,0,0.3);
  position: relative;
  z-index: 2;
}

.stat-premium-card.blue .stat-icon {
  background: linear-gradient(135deg, #2f6bff, #6a9bff);
}
.stat-premium-card.green .stat-icon {
  background: linear-gradient(135deg, #2bc48a, #5fe0b1);
}
.stat-premium-card.orange .stat-icon {
  background: linear-gradient(135deg, #ff8c2b, #ffb26a);
}
.stat-premium-card.purple .stat-icon {
  background: linear-gradient(135deg, #7b61ff, #b3a6ff);
}

/* NUMBER */
.stat-premium-card h3 {
  font-size: 48px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 8px;
  letter-spacing: 1px;
  position: relative;
  z-index: 2;
}

/* LABEL */
.stat-premium-card p {
  font-size: 15.5px;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.4px;
  position: relative;
  z-index: 2;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .stats-premium-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 500px) {
  .stats-premium-grid {
    grid-template-columns: 1fr;
  }

  .stat-premium-card h3 {
    font-size: 40px;
  }
}
/* CTA */
.about-cta {
  background:
    /*linear-gradient(120deg, rgba(47,107,255,0.95), rgba(255,140,43,0.95)),*/
    url("../images/about-cta.jpg") center/cover no-repeat;
  padding: 110px 0;
  text-align: center;
  color: #fff;
}

.about-cta h2 {
  font-size: 44px;
  font-weight: 800;
}

/* ==============================
   SCROLL ANIMATIONS
============================== */

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ==============================
   PREMIUM FOOTER
============================== */

.main-footer {
  background:
    radial-gradient(circle at top left, rgba(47,107,255,0.18), transparent 40%),
    radial-gradient(circle at bottom right, rgba(255,140,43,0.12), transparent 40%),
    linear-gradient(135deg, #041a3a, #072d5f);
  color: #eaf1ff;
  padding-top: 50px;
  position: relative;
  overflow: hidden;
}

/* subtle glow layer */
.main-footer::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/noise.png");
  opacity: 0.05;
  pointer-events: none;
}

/* GRID */
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 60px;
}

/* FOOTER ABOUT */
.footer-about img {
  max-width: 190px;
  margin-bottom: 18px;
  filter: drop-shadow(0 10px 25px rgba(0,0,0,0.4));
}

.footer-about p {
  font-size: 15.5px;
  line-height: 1.7;
  color: rgba(255,255,255,0.85);
  margin-bottom: 22px;
}

/* SOCIAL */
.footer-social {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
}

.footer-social a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.1);
  color: #fff;
  font-size: 18px;
  transition: all 0.35s ease;
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}

.footer-social a:hover {
  background: linear-gradient(135deg, #ff8c2b, #ffb26a);
  transform: translateY(-4px) scale(1.1);
}

/* TITLES */
.main-footer h4 {
  font-size: 17px;
  font-weight: 800;
  margin-bottom: 22px;
  position: relative;
  padding-bottom: 5px;
}

.main-footer h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 45px;
  height: 3px;
  border-radius: 3px;
  background: linear-gradient(90deg, #2f6bff, #ff8c2b);
}

/* LISTS */
.main-footer ul {
  list-style: none;
  padding: 1px;
  margin: 0;
}

.main-footer ul li {
  margin-bottom: 12px;
}

.main-footer ul li a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s ease;
}

.main-footer ul li a::before {
  content: "›";
  color: #ff8c2b;
  font-weight: 900;
  transition: transform 0.3s ease;
}

.main-footer ul li a:hover {
  color: #fff;
  transform: translateX(6px);
}

.main-footer ul li a:hover::before {
  transform: translateX(3px);
}

/* ======================
   FOOTER BOTTOM BAR
====================== */

.footer-bottom {
  margin-top: 70px;
  padding: 18px 0;
  background: rgba(0,0,0,0.25);
  backdrop-filter: blur(6px);
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-bottom-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  text-align: center;
  font-size: 14.5px;
  color: rgba(255,255,255,0.85);
}

.footer-bottom-grid div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

/* ======================
   RESPONSIVE
====================== */

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .footer-bottom-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 500px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-bottom-grid {
    grid-template-columns: 1fr;
  }
}

/* newsletter css*/
.footer-newsletter {
  margin-bottom: 50px;
  margin-top: 0px;
}

.newsletter-glass {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(14px);
  border-radius: 22px;
  padding: 40px 45px;
  box-shadow:
    0 30px 80px rgba(0,0,0,0.35),
    inset 0 0 0 1px rgba(255,255,255,0.08);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.newsletter-glass::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: linear-gradient(120deg, #2f6bff, #ff8c2b, #2f6bff);
  opacity: 0.15;
  filter: blur(30px);
  z-index: 0;
}

.newsletter-glass * {
  position: relative;
  z-index: 1;
}

.newsletter-glass h3 {
  font-size: 26px;
  font-weight: 900;
  margin-bottom: 10px;
}

.newsletter-glass p {
  opacity: 0.9;
  margin-bottom: 22px;
}

.newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 520px;
  margin: 0 auto 18px;
}

.newsletter-form input {
  flex: 1;
  padding: 14px 18px;
  border-radius: 12px;
  border: none;
  outline: none;
  background: rgba(255,255,255,0.12);
  color: #fff;
}

.newsletter-form button {
  padding: 14px 22px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, #ff8c2b, #ffb26a);
  box-shadow: 0 10px 25px rgba(255,140,43,0.4);
  transition: all 0.3s ease;
}

.newsletter-form button:hover {
  transform: translateY(-3px) scale(1.03);
}

.trust-mini {
  display: flex;
  justify-content: center;
  gap: 22px;
  font-size: 14px;
  opacity: 0.9;
}
.footer-trust-row {
  margin-top: 50px;
  padding: 25px;
  border-radius: 18px;
  background: rgba(255,255,255,0.05);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}

.trust-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.trust-item i {
  font-size: 26px;
  color: #ff8c2b;
}

.trust-item:hover {
  transform: translateY(-6px);
}

.float-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  font-size: 28px;
  display: grid;
  place-items: center;
  box-shadow: 0 15px 40px rgba(0,0,0,0.4);
  z-index: 999;
  transition: all 0.3s ease;
}

.float-whatsapp:hover {
  transform: scale(1.12);
}

.back-to-top {
  position: fixed;
  right: 22px;
  bottom: 95px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  background: linear-gradient(135deg, #2f6bff, #5a8bff);
  color: #fff;
  box-shadow: 0 12px 30px rgba(0,0,0,0.4);
  z-index: 999;
  transition: all 0.3s ease;
}

.back-to-top:hover {
  transform: translateY(-5px);
}
/*   hero section new*/
.hero.background-hero {
  position: relative;
  overflow: hidden;
}

.hero.background-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(10, 35, 90, 0.85),
    rgba(10, 35, 90, 0.55),
    rgba(10, 35, 90, 0.2)
  );
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
}
.hero-glass {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: 50px;
  max-width: 620px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.25);
  animation: heroFadeUp 1s ease forwards;
}
.hero-glass {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: 50px;
  max-width: 620px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.25);
  animation: heroFadeUp 1s ease forwards;
}
.hero-stats {
  display: flex;
  gap: 25px;
  margin-bottom: 30px;
}

.hero-stats div {
  background: rgba(255,255,255,0.12);
  padding: 12px 18px;
  border-radius: 12px;
  text-align: center;
}

.hero-stats strong {
  display: block;
  font-size: 20px;
  color: #fff;
}

.hero-stats span {
  font-size: 12px;
  color: #cfe0ff;
}
.btn-glow {
  box-shadow: 0 0 25px rgba(255, 149, 0, 0.5);
  transition: all 0.3s ease;
}

.btn-glow:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 40px rgba(255, 149, 0, 0.8);
}

.btn-glass {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
}

.btn-glass:hover {
  background: rgba(255,255,255,0.25);
}
@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* ===============================
 WHY CHOOSE US - PRO
=============================== */

.why-choose-us-pro {
  padding: 100px 0;
  background: #ffffff;
}

.why-pro-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 70px;
  align-items: center;
}

/* LEFT */
.why-tag-pro {
  display: inline-block;
  background: #fff3e8;
  color: #ff7a18;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 13px;
  margin-bottom: 20px;
}

.why-title-pro {
  font-size: 42px;
  line-height: 1.2;
  margin-bottom: 35px;
  color: #0b1f44;
}

.why-title-pro span {
  color: #2f6bff;
  font-weight: 800;
}

.why-pro-images {
  display: flex;
  gap: 25px;
}

.why-img-pro-card {
  background: #fff;
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
  position: relative;
}

.why-img-pro-card img {
  max-width: 100%;
  border-radius: 12px;
}

/* PLAY BUTTON */
.play-btn-pro {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: #2f6bff;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 18px;
  box-shadow: 0 10px 30px rgba(47,107,255,0.5);
  cursor: pointer;
}

/* RIGHT */
.why-pro-stats {
  display: flex;
  gap: 20px;
  margin-bottom: 35px;
}

.stat-pro-card {
  background: #fff;
  padding: 20px 25px;
  border-radius: 18px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  text-align: center;
  min-width: 140px;
}

.stat-pro-card h3 {
  font-size: 36px;
  color: #2f6bff;
  margin-bottom: 5px;
}

.stat-pro-card p {
  font-size: 13px;
  color: #666;
}

/* FEATURES */
.why-pro-feature {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 25px;
}

.why-pro-feature .num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 700;
}

.num.blue { background: #2f6bff; }
.num.orange { background: #ff7a18; }
.num.green { background: #22c55e; }
.num.pink { background: #ff5ea8; }

.why-pro-feature h4 {
  font-size: 18px;
  margin-bottom: 5px;
  color: #0b1f44;
}

.why-pro-feature p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

/* BOTTOM */
.why-pro-bottom {
  margin-top: 30px;
  display: flex;
  gap: 25px;
  align-items: center;
}

.reviews-pro {
  background: #f5f8ff;
  padding: 15px 22px;
  border-radius: 14px;
  font-size: 14px;
}

.call-pro {
  background: #f5f8ff;
  padding: 15px 22px;
  border-radius: 14px;
  display: flex;
  gap: 12px;
  align-items: center;
}

.call-pro i {
  font-size: 22px;
  color: #2f6bff;
}
/* ===== PREMIUM HOVER + GLOW EFFECTS ===== */

.stat-pro-card {
  position: relative;
  overflow: hidden;
  transition: all 0.35s ease;
}

.stat-pro-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(47,107,255,0.15), transparent 70%);
  opacity: 0;
  transition: 0.4s;
}

.stat-pro-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 25px 60px rgba(47,107,255,0.25);
}

.stat-pro-card:hover::after {
  opacity: 1;
}

/* NUMBER BADGE ANIMATION */
.why-pro-feature .num {
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.why-pro-feature:hover .num {
  transform: scale(1.15) rotate(5deg);
  box-shadow: 0 12px 30px rgba(0,0,0,0.25);
}

/* FEATURE HOVER */
.why-pro-feature {
  padding: 10px;
  border-radius: 14px;
  transition: 0.3s ease;
}

.why-pro-feature:hover {
  background: #f6f9ff;
  transform: translateX(6px);
}

/* IMAGE CARD HOVER */
.why-img-pro-card {
  transition: 0.4s ease;
}

.why-img-pro-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 30px 70px rgba(0,0,0,0.12);
}
/* ===== HERO TEXT ANIMATIONS ===== */

.hero-animate {
  opacity: 0;
  transform: translateY(30px);
  animation: heroFadeUp 0.9s ease forwards;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 1s; }

@keyframes heroFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* HERO HIGHLIGHT GLOW */
/* HERO HIGHLIGHT GLOW - FIXED */
.hero-highlight {
  background: linear-gradient(90deg, #2f6bff, #5ea3ff);

  /* Standard + Webkit for full support */
  background-clip: text;
  -webkit-background-clip: text;

  color: transparent;
  -webkit-text-fill-color: transparent;

  position: relative;
  animation: heroGlow 2.5s ease-in-out infinite alternate;
}
.hero-highlight {
  text-shadow: 0 0 10px rgba(47,107,255,0.15);
}

@keyframes heroGlow {
  from { filter: drop-shadow(0 0 0 rgba(47,107,255,0.2)); }
  to   { filter: drop-shadow(0 0 12px rgba(47,107,255,0.45)); }
}
.hero-content {
  animation: heroFloat 6s ease-in-out infinite alternate;
}

@keyframes heroFloat {
  from { transform: translateY(0); }
  to   { transform: translateY(-6px); }
}
/* Top blue bar */
.top-bar,
.header-top {
  height: 36px;
  line-height: 36px;
  padding: 0;
  display: flex;
  align-items: center;
}

/* Main header */
.main-header,
.header,
nav {
  height: 80px;
  display: flex;
  align-items: center;
  padding: 0;
}

/* Header inner container */
.header .container,
.main-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

/* Logo fix */
.header-logo img {
  height: 52px;
  width: auto;
  display: block;
}

/* Navigation menu */
.nav-menu,
.navbar-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

/* Remove unwanted margins */
.header *,
.top-bar * {
  margin-top: 0;
  margin-bottom: 0;
}

/* Get Started button alignment */
.header .btn,
.get-started-btn {
  padding: 12px 26px;
  border-radius: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Fix icon button (blue circle) */
.header .icon-btn {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Kill horizontal slider forever */
html, body {
  overflow-x: hidden;
}




/* ===== HERO SECTION ===== */

.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  background: linear-gradient(120deg,#062a20,#0b3d2e);
}

.hero-inner {
  display: flex;
  justify-content: flex-start;
}

/* Glass Card */

.hero-glass {
  max-width: 540px;
  max-height: 530px;
  margin-top: 50px;
  padding: 50px;
  border-radius: 22px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(15px);
  box-shadow: 0 20px 60px rgba(0,0,0,.4);
  color: #fff;

}

/* Headings */

.hero-tag {
  color: #7dffb3;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.hero-title {
  font-size: 48px;
  line-height: 1.1;
}

.hero-highlight {
  color: #ff7a18;
}

/* Description */

.hero-desc {
  margin: 20px 0;
  opacity: .9;
}

/* Stats */

.hero-stats {
  display: flex;
  gap: 40px;
  margin: 25px 0;
}

.hero-stats div strong {
  font-size: 22px;
  color: #2f6bff;
}

.hero-stats span {
  display: block;
  font-size: 13px;
  opacity: .8;
}

/* Buttons */

.hero-buttons {
  display: flex;
  gap: 15px;
}

.btn-primary {
  background: #ff7a18;
  color: #fff;
  padding: 12px 26px;
  border-radius: 30px;
  text-decoration: none;
  transition: .3s;
}

.btn-primary:hover {
  box-shadow: 0 0 25px #2f6bff;
}

.btn-outline {
  border: 1px solid #fff;
  color: #7dffb3;
  padding: 12px 26px;
  border-radius: 30px;
  text-decoration: none;
}

/* Animations */

.hero-animate {
  opacity: 0;
  transform: translateY(30px);
  animation: heroFade .8s forwards;
}

.delay-1 { animation-delay: .2s }
.delay-2 { animation-delay: .4s }
.delay-3 { animation-delay: .6s }
.delay-4 { animation-delay: .8s }
.delay-5 { animation-delay: 1s }

@keyframes heroFade {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile */

@media(max-width:768px){

.hero-title { font-size: 36px; }

.hero-glass {
  padding: 35px;
}

.hero-stats {
  flex-direction: column;
  gap: 15px;
}

.hero-buttons {
  flex-direction: column;
}
}


.background-hero{
  background: 
    /*linear-gradient(rgba(241, 239, 239, 0.45), rgba(244, 244, 248, 0.45)),*/
    url("/assets/images/hero-bg.png") center/cover no-repeat;
  display: flex;
  align-items: center;

}

/* Optional glass effect enhancement */

.hero-glass{
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  padding: 40px;
  border-radius: 20px;
  color: #fff;
}

/* Make text white on hero */

.hero-title,
.hero-desc,
.hero-tag,
.hero-stats span{
  color:#fff;
}
/* ===== HERO GLASS HOVER ===== */

.hero-glass {
  transition: .4s ease;
}

.hero-glass:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 80px rgba(67,255,157,.25);
}

/* ===== TITLE HOVER GLOW ===== */

.hero-title:hover {
  text-shadow: 0 0 20px rgba(67,255,157,.6);
}

/* ===== TYPE TEXT GLOW ===== */

.hero-highlight {
  transition: .3s;
}

.hero-highlight:hover {
  text-shadow: 0 0 15px #2f6bff;
}

/* ===== STATS HOVER ===== */

.hero-stats div {
  padding: 10px 14px;
  border-radius: 12px;
  transition: .3s;
}

.hero-stats div:hover {
  background: rgba(67,255,157,.12);
  transform: scale(1.05);
}

/* ===== BUTTON HOVER ENHANCED ===== */

.btn-primary {
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content:'';
  position:absolute;
  inset:0;
  background: linear-gradient(120deg,transparent,rgba(255,255,255,.4),transparent);
  transform: translateX(-100%);
}

.btn-primary:hover::after {
  transform: translateX(100%);
  transition: .6s;
}

.btn-outline:hover {
  background: linear-gradient(120deg,transparent,rgba(255,255,255,.4),transparent);
    color:#fff;
}

/* ===== CTA PULSE EFFECT ===== */

.btn-primary:hover {
  animation: pulseGlow 1.2s infinite alternate;
}

@keyframes pulseGlow {
  from { box-shadow: 0 0 15px #ff7a18; }
  to { box-shadow: 0 0 30px #ff7a18; }
}


/* ===== CLEAN WHY CHOOSE US ===== */

.why-choose-us-pro{
padding:100px 0;
background:#fff;
}

.why-pro-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:70px;
align-items:center;
}

/* LEFT */

.why-tag-pro{
background:#fff3e8;
color:#ff7a2f;
padding:6px 18px;
border-radius:30px;
font-size:12px;
display:inline-block;
margin-bottom:15px;
}

.why-title-pro{
font-size:40px;
line-height:1.3;
color:#1e3cff;
margin-bottom:35px;
}

/* IMAGES */

.why-pro-images{
display:flex;
gap:25px;
}

.why-img-pro-card{
background:#fff;
padding:25px;
border-radius:20px;
box-shadow:0 10px 30px rgba(0,0,0,.06);
transition:.3s;
}

.why-img-pro-card img{
width:100%;
}

.why-img-pro-card:hover{
transform:translateY(-6px);
}

/* STATS */

.why-pro-stats{
display:flex;
gap:20px;
margin-bottom:40px;
}

.stat-pro-card{
flex:1;
background:#fff;
padding:20px;
border-radius:18px;
text-align:center;
box-shadow:0 8px 25px rgba(0,0,0,.05);
}

.stat-count{
font-size:28px;
color:#1e3cff;
}

/* FEATURES */

.why-pro-feature{
display:flex;
gap:15px;
margin-bottom:22px;
}

.num{
width:36px;
height:36px;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
color:#fff;
font-size:14px;
}

.blue{background:#1e3cff}
.orange{background:#ff7a2f}
.green{background:#22c55e}
.pink{background:#ff5fa2}

/* BOTTOM */

.why-pro-bottom{
margin-top:35px;
display:flex;
gap:20px;
}

.reviews-pro,
.call-pro{
background:#f7f9ff;
padding:16px 20px;
border-radius:15px;
display:flex;
gap:10px;
align-items:center;
}

/* MOBILE */

@media(max-width:900px){
.why-pro-grid{grid-template-columns:1fr}
.why-title-pro{font-size:30px}
.why-pro-stats{flex-direction:column}
}
/* ===== SOFT HOVERS ===== */

/* Image cards */

.why-img-pro-card:hover{
transform:translateY(-8px);
box-shadow:0 15px 35px rgba(30,60,255,.15);
}

/* Stat cards */

.stat-pro-card{
transition:.3s;
}

.stat-pro-card:hover{
transform:translateY(-6px);
box-shadow:0 12px 30px rgba(30,60,255,.15);
}

/* Feature rows */

.why-pro-feature{
padding:12px;
border-radius:12px;
transition:.25s;
}

.why-pro-feature:hover{
background:#f2f5ff;
}

/* Number bubble glow */

.num{
transition:.3s;
}

.why-pro-feature:hover .num{
transform:scale(1.1);
}

/* Bottom cards */

.reviews-pro,
.call-pro{
transition:.3s;
}

.reviews-pro:hover,
.call-pro:hover{
transform:translateY(-5px);
box-shadow:0 10px 25px rgba(0,0,0,.08);
}

/* Title glow */

.why-title-pro{
transition:.3s;
}

.why-title-pro:hover{
text-shadow:0 0 15px rgba(30,60,255,.25);
}



/* ========== BRAND TRUST SECTION ========== */

.brand-trust-section {
  padding: 80px 0;
  background: linear-gradient(135deg,#f6fbf9,#eef6f3);
}

.brand-trust-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  align-items: center;
}

/* LEFT SIDE */

.brand-left h2 {
  font-size: 38px;
  line-height: 1.3;
  margin-bottom: 15px;
}

.brand-left h2 span {
  color: #1e3cff;
}

.brand-left p {
  color: #444;
  margin-bottom: 25px;
  max-width: 500px;
}

.brand-highlights {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 15px;
  margin-bottom: 30px;
}

.highlight-item {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 15px;
}

.highlight-item i {
  color: #1e3cff;
  font-size: 18px;
}

.brand-cta {
  padding: 12px 28px;
  border-radius: 30px;
}

/* RIGHT FEATURE CARDS */

.brand-right {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 25px;
}

.brand-feature-card {
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(10px);
  padding: 25px;
  border-radius: 18px;
  text-align: center;
  transition: 0.35s ease;
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
}

.brand-feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.brand-feature-card i {
  font-size: 38px;
  color: #1e3cff;
  margin-bottom: 10px;
}

.brand-feature-card h4 {
  margin-bottom: 8px;
}

.brand-feature-card p {
  font-size: 14px;
  color: #555;
}
.feature-img{
  width:45px;
  margin-bottom:10px;
}
.service-icon{
  width:48px;
  margin-bottom:12px;
}


/* RESPONSIVE */

@media(max-width:900px){
  .brand-trust-grid{
    grid-template-columns:1fr;
  }
}

@media(max-width:600px){

  .brand-highlights{
    grid-template-columns:1fr;
  }

  .brand-right{
    grid-template-columns:1fr;
  }

  .brand-left h2{
    font-size:30px;
  }
}/* ===== PREMIUM MISSION SECTION ===== */

.mission-premium {
  padding: 80px 0;
  background: #f9fcff;
}

.mission-header {
  text-align: center;
  margin-bottom: 60px;
}

.mission-tag {
  background: linear-gradient(45deg,#1e88ff,#ff9800);
  color: #fff;
  padding: 6px 18px;
  border-radius: 30px;
  font-size: 13px;
}

.mission-header h2 {
  margin-top: 15px;
  font-size: 36px;
}

.mission-premium-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(260px,1fr));
  gap: 30px;
}

/* CARD */

.mission-card {
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(12px);
  border-radius: 22px;
  padding: 40px 30px;
  text-align: center;
  position: relative;
  box-shadow: 0 18px 45px rgba(0,0,0,.08);
  overflow: hidden;
  transition: .4s ease;
}

/* FLOAT */

.mission-card:hover {
  transform: translateY(-14px) scale(1.03);
}

/* GLOW BORDER */

.mission-card:before {
  content:'';
  position:absolute;
  inset:0;
  border-radius:22px;
  background: linear-gradient(120deg,#1e88ff,#ff9800,#45d4a8);
  opacity:0;
  transition:.4s;
}

.mission-card:hover:before {
  opacity:.25;
}

/* ICON */

.mission-icon {
  width:70px;
  height:70px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  margin:auto;
  font-size:28px;
  color:#fff;
  margin-bottom:20px;
  animation: missionFloat 3s ease-in-out infinite;
}

/* COLOR VARIANTS */

.blue .mission-icon {background:#1e88ff;}
.orange .mission-icon {background:#ff9800;}
.green .mission-icon {background:#4caf50;}

/* TEXT */

.mission-card h3 {
  font-size:22px;
  margin-bottom:12px;
}

.mission-card p {
  font-size:14px;
  color:#666;
}

/* ICON PULSE */

.mission-card:hover .mission-icon {
  transform: scale(1.1) rotate(6deg);
}

/* FLOAT ANIMATION */

@keyframes missionFloat {
  0%,100% {transform:translateY(0);}
  50% {transform:translateY(-6px);}
}

/* ===== WHY PREMIUM SECTION (LIGHT DYNAMIC) ===== */

.why-premium {
  padding: 80px 0;
  background: #f7fbff;
}

.why-premium-header {
  text-align: center;
  margin-bottom: 60px;
}

.why-tag {
  background: linear-gradient(45deg,#1e88ff,#ff9800);
  color: #fff;
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 13px;
}

.why-premium-header h2 {
  margin-top: 15px;
  font-size: 36px;
}

.why-premium-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(240px,1fr));
  gap: 25px;
}

/* CARDS */

.why-premium-card {
  background: rgba(255,255,255,0.9);
  border-radius: 18px;
  padding: 35px 25px;
  text-align: center;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  position: relative;
  overflow: hidden;
  transition: .4s ease;
}

/* FLOAT EFFECT */

.why-premium-card:hover {
  transform: translateY(-12px) scale(1.02);
}

/* GLOW BORDER */

.why-premium-card:before {
  content:'';
  position:absolute;
  inset:0;
  border-radius:18px;
  background: linear-gradient(120deg,#1e88ff,#ff9800,#5adbb5);
  opacity:0;
  transition:.4s;
}

.why-premium-card:hover:before {
  opacity:.25;
}

/* ICON */

.why-icon {
  width:65px;
  height:65px;
  margin:auto;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:26px;
  color:#fff;
  margin-bottom:20px;
  animation: float 3s ease-in-out infinite;
}

/* COLORS */

.blue .why-icon {background:#1e88ff;}
.green .why-icon {background:#4caf50;}
.orange .why-icon {background:#ff9800;}
.purple .why-icon {background:#9c27b0;}

/* TEXT */

.why-premium-card h3 {
  margin-bottom:10px;
  font-size:20px;
}

.why-premium-card p {
  color:#666;
  font-size:14px;
}

/* ICON PULSE */

.why-premium-card:hover .why-icon {
  transform: scale(1.1) rotate(6deg);
}

/* FLOAT KEYFRAMES */

@keyframes float {
  0%,100% {transform:translateY(0);}
  50% {transform:translateY(-6px);}
}

/* ===== STATS PREMIUM HEADER ===== */

.stats-premium {
  padding: 90px 0;
  background: #ffff;
}

.stats-premium-header {
  text-align: center;
  max-width: 600px;
  margin: auto;
  margin-bottom: 60px;
}

.stat-tag {
  background: linear-gradient(45deg,#1e88ff,#ff9800);
  color:#fff;
  padding:6px 18px;
  border-radius:30px;
  font-size:13px;
}

.stats-premium-header h2 {
  margin-top:15px;
  font-size:36px;
}

.stats-premium-header span {
  color:#fff;
  font-weight: 600;
}

.stats-premium-header p {
  margin-top:10px;
  color:#666;
}

/* GRID */

.stats-premium-grid {
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:25px;
}

/* CARD */

.stat-premium-card {
  background: rgba(255,255,255,.9);
  border-radius:22px;
  padding:35px 25px;
  text-align:center;
  box-shadow:0 18px 45px rgba(0,0,0,.08);
  position:relative;
  overflow:hidden;
  transition:.4s ease;
}

/* FLOAT */

.stat-premium-card:hover {
  transform:translateY(-14px) scale(1.05);
}

/* GLOW */

.stat-premium-card:before {
  content:'';
  position:absolute;
  inset:0;
  border-radius:22px;
  background:linear-gradient(120deg,#1e88ff,#ff9800,#4caf50,#9c27b0);
  opacity:0;
  transition:.4s;
}

.stat-premium-card:hover:before {
  opacity:.25;
}

/* ICON */

.stat-icon {
  width:65px;
  height:65px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  margin:auto;
  color:#fff;
  font-size:24px;
  margin-bottom:15px;
  animation:statFloat 3s ease-in-out infinite;
}

/* COLORS */

.blue .stat-icon {background:#1e88ff;}
.green .stat-icon {background:#4caf50;}
.orange .stat-icon {background:#ff9800;}
.purple .stat-icon {background:#9c27b0;}

/* TEXT */

.stat-premium-card h3 {
  font-size:32px;
  margin-bottom:6px;
  color: #1e88ff;
}

.stat-premium-card p {
  font-size:14px;
  color:#666;
}

/* ICON POP */

.stat-premium-card:hover .stat-icon {
  transform:scale(1.15) rotate(6deg);
}

/* FLOAT KEYFRAME */

@keyframes statFloat {
  0%,100% {transform:translateY(0);}
  50% {transform:translateY(-6px);}
}
/* ================= TESTIMONIAL PAGE – PREMIUM ================= */

/* HERO */

.testimonial-hero{
background:#f7fbfa;
padding:90px 20px 60px;
border-bottom:1px solid #eee;
}

.testimonial-hero .container{
max-width:900px;
}

.testimonial-hero h1{
font-size:36px;
color:#222;
margin:10px 0;
font-weight:600;
}

.testimonial-hero p{
color:#666;
max-width:600px;
}

/* GRID */

.testimonial-page{
padding:70px 20px;
}

.testimonial-grid{
max-width:1100px;
margin:auto;
display:grid;
grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
gap:25px;
}

/* CARD */

.testimonial-card{
background:#fff;
border:1px solid #e6e6e6;
border-radius:14px;
padding:30px 25px;
text-align:center;
transition:.2s;
}

.testimonial-card:hover{
border-color:#cfded9;
}

/* IMAGE */

.testimonial-card img{
width:70px;
height:70px;
border-radius:50%;
object-fit:cover;
margin-bottom:12px;
border:3px solid #f2f2f2;
}

/* NAME */

.testimonial-card h3{
font-size:16px;
margin-bottom:6px;
color:#222;
font-weight:500;
}

/* STARS */

.stars{
color:#f4b400;
font-size:14px;
margin-bottom:10px;
}

/* TEXT */

.testimonial-card p{
font-size:14px;
line-height:1.6;
color:#666;
}

/* MOBILE */

@media(max-width:768px){

.testimonial-hero h1{
font-size:26px;
}

}
/* ================= WHY CHOOSE US – PREMIUM ================= */

/* HERO */

.why-page-hero{
background:#f7fbfa;
padding:90px 20px 70px;
border-bottom:1px solid #eee;
}

.why-page-hero .container{
max-width:1000px;
}

.why-page-hero h1{
font-size:38px;
color:#222;
margin:10px 0;
font-weight:600;
}

.why-page-hero p{
color:#666;
max-width:600px;
}

.hero-tag{
background:#eaf5f2;
color:#0f5d4a;
padding:6px 14px;
border-radius:20px;
font-size:13px;
display:inline-block;
}

/* STATS */

.why-page-stats{
padding:60px 20px;
}

.stats-premium-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
gap:20px;
max-width:1000px;
margin:auto;
}

.stat-premium-card{
background:white;
border:1px solid #e6e6e6;
border-radius:12px;
padding:25px;
text-align:center;
}

.stat-premium-card h3{
font-size:30px;
color:#0f5d4a;
margin-bottom:5px;
}

.stat-premium-card p{
color:#666;
font-size:14px;
}

/* FEATURES */

.why-page-features{
padding:70px 20px;
background:#fff;
}

.why-feature-grid{
max-width:1100px;
margin:auto;
display:grid;
grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
gap:25px;
}

.why-feature-card{
border:1px solid #e6e6e6;
border-radius:12px;
padding:25px;
background:#fff;
transition:.2s;
}

.why-feature-card:hover{
border-color:#cfded9;
}

.why-feature-card img{
height:95px;
width:100px;
margin-bottom:12px;
}

.why-feature-card h3{
font-size:17px;
margin-bottom:6px;
color:#222;
}

.why-feature-card p{
font-size:14px;
color:#666;
line-height:1.6;
}

/* GUARANTEE */

.why-guarantee{
background:#f7fbfa;
padding:80px 20px;
border-top:1px solid #eee;
}

.guarantee-grid{
max-width:1100px;
margin:auto;
display:grid;
grid-template-columns:1.4fr 1fr;
gap:40px;
align-items:center;
}

.guarantee-grid h2{
font-size:32px;
margin-bottom:10px;
color:#222;
}

.guarantee-grid p{
color:#666;
margin-bottom:15px;
}

.guarantee-grid ul{
list-style:none;
padding:0;
}

.guarantee-grid li{
margin-bottom:10px;
color:#333;
font-size:15px;
}

/* RIGHT BOX */

.guarantee-box{
background:white;
border:1px solid #e6e6e6;
border-radius:14px;
padding:35px;
text-align:center;
}

.guarantee-box h3{
font-size:22px;
margin-bottom:10px;
color:#222;
}

.guarantee-box p{
color:#666;
}

.guarantee-box .btn-primary{
margin-top:15px;
}

/* BUTTON */

.btn-primary{
background:#0f5d4a;
color:white;
padding:12px 28px;
border-radius:6px;
display:inline-block;
transition:.2s;
}

.btn-primary:hover{
background:#0c4b3c;
}

/* MOBILE */

@media(max-width:768px){

.why-page-hero h1{
font-size:26px;
}

.guarantee-grid{
grid-template-columns:1fr;
}

}

/* ================= PREMIUM FAQ PAGE ================= */

.faq-hero{
background:#ffffff;
padding:80px 20px 50px;
border-bottom:1px solid #eee;
}

.faq-hero .container{
max-width:900px;
}

.hero-tag{
display:inline-block;
background:#eef6f4;
color:#0f5d4a;
padding:6px 14px;
border-radius:20px;
font-size:13px;
margin-bottom:10px;
}

.faq-hero h1{
font-size:36px;
font-weight:600;
color:#222;
margin:10px 0;
}

.faq-hero p{
color:#666;
max-width:600px;
}

/* Search */

.faq-search{
max-width:600px;
margin:35px auto 40px;
padding:0 15px;
}

#faqSearch{
width:100%;
padding:14px 18px;
border-radius:8px;
border:1px solid #ddd;
font-size:15px;
outline:none;
transition:.2s;
}

#faqSearch:focus{
border-color:#0f5d4a;
box-shadow:0 0 0 2px rgba(15,93,74,.08);
}

/* FAQ Layout */

.faq-container{
max-width:900px;
margin:auto;
padding:0 15px;
}

.faq-item{
background:#fff;
border:1px solid #e6e6e6;
border-radius:10px;
margin-bottom:16px;
transition:.2s;
}

.faq-item:hover{
border-color:#cfded9;
}

.faq-question{
display:flex;
justify-content:space-between;
align-items:center;
padding:20px 22px;
cursor:pointer;
}

.faq-question h3{
font-size:16px;
font-weight:500;
color:#222;
margin:0;
}

.faq-question i{
font-size:14px;
color:#0f5d4a;
transition:.25s;
}

/* Answer */

.faq-answer{
max-height:0;
overflow:hidden;
transition:max-height .3s ease;
padding:0 22px;
}

.faq-answer p{
padding:5px 0 20px;
font-size:15px;
color:#555;
line-height:1.6;
}

/* Active */

.faq-item.active{
border-color:#0f5d4a;
background:#fbfefe;
}

.faq-item.active i{
transform:rotate(45deg);
}

/* CTA */

.faq-cta{
margin-top:80px;
padding:70px 20px;
background:#f7fbfa;
border-top:1px solid #eee;
text-align:center;
}

.faq-cta h2{
font-size:30px;
margin-bottom:10px;
color:#222;
}

.faq-cta p{
color:#666;
}

.btn-primary{
background:#0f5d4a;
color:#fff;
padding:12px 30px;
border-radius:6px;
display:inline-block;
margin-top:20px;
transition:.2s;
}

.btn-primary:hover{
background:#0c4b3c;
}

/* Mobile */

@media(max-width:768px){

.faq-hero h1{
font-size:26px;
}

.faq-question{
padding:16px;
}

.faq-answer{
padding:0 16px;
}

}.faq-item.active .faq-answer{
max-height:500px;   /* enough height for content */
}
/* ================= ROOT COLORS ================= */

:root {
  --blue: #136eee;
  --light-blue: #1d6ded;
  --orange: #ff8c1a;
  --dark: #0b1d35;
  --light: #ffffff;
  --shadow: 0 10px 25px rgba(0,0,0,.08);
}

/* ================= HERO ================= */

.service-hero {
  padding: 90px 0;
  background: linear-gradient(120deg,#edf4ff,#ffffff);
}

.service-hero-content {
  max-width: 560px;
  animation: fadeUp .9s ease;
}

.service-hero h1 {
  font-size: 42px;
  color: var(--dark);
}

.service-hero p {
  margin-top: 15px;
  color: #444;
  line-height: 1.6;
}
/* ================= SERVICE HERO BASE ================= */

.service-hero{
min-height:65px;
display:flex;
align-items:center;
background-size:cover;
background-position:center;
position:relative;
color:#fff;
}

/* DARK OVERLAY */

.service-hero::before{
content:'';
position:absolute;
inset:0;
background:linear-gradient(rgba(0,0,0,.45),rgba(0,0,0,.65));
}

.service-hero-inner{
position:relative;
z-index:2;
}

/* ================= ANT HERO BACKGROUND ================= */

.cockroach-hero{
background-image:url('/assets/images/services/cockroach-bg.png');
}

.mosquito-hero{
background-image:url('/assets/images/services/mosquito-bg.png');
}

.ant-hero{
background-image:url('/assets/images/services/ant-bg.png');
}

.termite-hero{
background-image:url('/assets/images/services/termite-bg.png');
}

.rodent-hero{
background-image:url('/assets/images/services/rodent-bg.png');
}

.bed_bug-hero{
background-image:url('/assets/images/services/bed_bug-bg.png');
}


.commercial-hero{
background-image:url('/assets/images/services/commercial.bg.png');
}

.residential-hero{
background-image:url('/assets/images/services/residential.bg.png');
}

.general-hero{
background-image:url('/assets/images/services/general-bg.png');
}

/* ================= GLASS HERO CONTENT ================= */

.service-hero-content{
background:rgba(255,255,255,.12);
backdrop-filter:blur(14px);
-webkit-backdrop-filter:blur(14px);
border-radius:22px;
padding:45px 40px;
max-width:550px;
box-shadow:0 20px 50px rgba(0,0,0,.25);
border:1px solid rgba(255,255,255,.25);
animation:heroFloat 4s ease-in-out infinite;
}

/* TEXT COLOR FIX */

.service-hero-content h1,
.service-hero-content p{
color:#fff;
}

/* FLOAT ANIMATION */

@keyframes heroFloat{
0%,100%{transform:translateY(0);}
50%{transform:translateY(-8px);}
}

/* MOBILE */

@media(max-width:768px){
.service-hero-content{
padding:30px 25px;
}
}

.btn-primary {
  display: inline-block;
  padding: 14px 34px;
  background: linear-gradient(120deg,var(--blue),var(--orange));
  color: white;
  border-radius: 30px;
  transition: .35s ease;
}

.btn-primary:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(13,78,166,.3);
}

/* ================= DETAILS ================= */

.service-details {
  padding: 80px 0;
}

.service-details-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 50px;
}

/* LEFT */

.service-left h2 {
  color: var(--dark);
}

.service-list li {
  margin-bottom: 12px;
  color: #333;
}

.service-list i {
  color: var(--orange);
  margin-right: 10px;
}

/* FEATURES */

.service-features {
  margin-top: 35px;
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(200px,1fr));
  gap: 22px;
}

.service-feature-box {
  background: var(--light);
  padding: 28px;
  border-radius: 20px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: .35s;
  border-top: 4px solid transparent;
}

.service-feature-box i {
  font-size: 28px;
  color: var(--blue);
}

.service-feature-box:hover {
  transform: translateY(-8px);
  border-top: 4px solid var(--orange);
}

/* ================= BOOKING CARD ================= */

.free-inspection-card {
  background: var(--light-blue);
  padding: 38px;
  border-radius: 25px;
  box-shadow: var(--shadow);
  position: sticky;
  top: 120px;
}

.cta-contact {
  margin: 16px 0;
  display: flex;
  gap: 10px;
  align-items: center;
}

.cta-contact i {
  color: var(--blue);
}

.cta-btn {
  display: block;
  margin-top: 25px;
  background: var(--orange);
  color: white;
  padding: 14px;
  text-align: center;
  border-radius: 25px;
  transition: .3s;
}

.cta-btn:hover {
  transform: scale(1.05);
  background: var(--blue);
}

/* ================= CTA ================= */

.service-cta {
  padding: 85px 0;
  background: linear-gradient(120deg,var(--blue),#082f63);
  color: white;
  text-align: center;
}

.service-cta h2 {
  font-size: 34px;
}

.service-cta .btn-primary {
  background: var(--orange);
}

/* ================= ANIMATION ================= */

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(35px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ================= MOBILE ================= */

@media(max-width:900px){

.service-details-grid {
  grid-template-columns: 1fr;
}

.service-hero h1 {
  font-size: 32px;
}

}

/* ===== WHY PREMIUM ICON FIX ===== */

.why-premium-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

.why-premium-card {
  position: relative;
  text-align: center;
  padding: 45px 25px 35px;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 15px 40px rgba(0,0,0,.06);
}

/* ICON HOLDER */
.why-icon {
  width: 90px;
  height: 90px;
  margin: auto;
  margin-bottom: 18px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;
  background: #f4f7fb;
}

/* ICON IMAGE SIZE */
.why-icon img {
  max-width: 60px;
  max-height: 60px;
  object-fit: contain;
}

/* TITLE */
.why-premium-card h3 {
  margin-top: 10px;
  font-size: 18px;
}

/* DESCRIPTION */
.why-premium-card p {
  font-size: 14px;
  opacity: .8;
}

.why-premium-card.blue .why-icon { background:#eaf2ff; }
.why-premium-card.green .why-icon { background:#e9fff2; }
.why-premium-card.orange .why-icon { background:#fff1e6; }
.why-premium-card.purple .why-icon { background:#f3ecff; }

/* ===== HIGHLIGHT ICON ROW ===== */

.highlight-item {
  display: flex;
  align-items: center;
  gap: 15px;

  background: #ffffff;
  padding: 16px 20px;
  border-radius: 14px;

  box-shadow: 0 10px 25px rgba(0,0,0,.05);
  transition: all .3s ease;
}

/* Hover Effect */
.highlight-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0,0,0,.08);
}

/* ICON STYLE */
.highlight-item .why-icon {
  width: 55px;
  height: 55px;

  padding: 10px;
  background: #f4f7fb;
  border-radius: 50%;

  object-fit: contain;

  box-shadow: inset 0 0 0 1px rgba(0,0,0,.04);
}

/* TEXT */
.highlight-item span {
  font-size: 15px;
  font-weight: 600;
  color: #0b1b2b;
  line-height: 1.4;
}

/* MOBILE */
@media(max-width:768px){
  .highlight-item{
    flex-direction: column;
    text-align: center;
  }
}
:root {
  --blue:#0d4ea6;
  --orange:#ff8c1a;
  --dark:#0b1d35;
  --shadow:0 15px 35px rgba(0,0,0,.08);
}

/* HERO */

.policy-hero {
  padding:90px 0;
  background:linear-gradient(120deg,#edf4ff,#ffffff);
  text-align:center;
}

.policy-hero h1 {
  font-size:42px;
  color:var(--dark);
}

.policy-hero p {
  margin-top:10px;
  color:#444;
}

/* GRID */

.policy-section {
  padding:80px 0;
}

.policy-grid {
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:30px;
}

/* CARDS */

.policy-card {
  background:rgba(255,255,255,.7);
  backdrop-filter:blur(12px);
  border-radius:22px;
  padding:30px;
  box-shadow:var(--shadow);
  transition:.4s ease;
  border-top:4px solid transparent;
}

.policy-card h3 {
  color:var(--blue);
  margin-bottom:10px;
}

.policy-card ul {
  padding-left:18px;
}

.policy-card li {
  margin-bottom:6px;
}

.policy-card:hover {
  transform:translateY(-10px);
  border-top:4px solid var(--orange);
}

/* HIGHLIGHT */

.policy-card.highlight {
  background:linear-gradient(120deg,var(--blue),#08336d);
  color:white;
}

.policy-card.highlight h3 {
  color:#fff;
}

/* MOBILE */

@media(max-width:800px){
  .policy-hero h1 {
    font-size:32px;
  }
}
:root {
  --blue:#0d4ea6;
  --orange:#ff8c1a;
  --dark:#0b1d35;
  --shadow:0 18px 40px rgba(0,0,0,.08);
}

/* HERO */

.terms-hero {
  padding:90px 0;
  background:linear-gradient(120deg,#edf4ff,#ffffff);
  text-align:center;
}

.terms-hero h1 {
  font-size:42px;
  color:var(--dark);
}

.terms-hero p {
  margin:12px 0 25px;
  color:#444;
}

.hero-btn {
  margin-top:15px;
}

/* GRID */

.terms-section {
  padding:80px 0;
}

.terms-grid {
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:30px;
}

/* CARDS */

.terms-card {
  background:rgba(255,255,255,.75);
  backdrop-filter:blur(12px);
  border-radius:22px;
  padding:30px;
  box-shadow:var(--shadow);
  transition:.4s ease;
  border-top:4px solid transparent;
}

.terms-card h3 {
  color:var(--blue);
  margin-bottom:10px;
}

.terms-card:hover {
  transform:translateY(-10px);
  border-top:4px solid var(--orange);
}

/* HIGHLIGHT CARD */

.terms-card.highlight {
  background:linear-gradient(120deg,var(--blue),#08336d);
  color:white;
}

.terms-card.highlight h3 {
  color:white;
}

.terms-card.highlight .btn-primary {
  margin-top:15px;
  background:var(--orange);
}

/* MOBILE */

@media(max-width:800px){
  .terms-hero h1 {
    font-size:32px;
  }
}
.btn-send-modern:disabled {
opacity:.6;
cursor:not-allowed;
}

/* ================= CONTACT FORM MODERN ================= */

.contact-modern-card {
  max-width: 620px;
  margin: auto;
  padding: 45px;
  border-radius: 22px;
  background: rgba(255,255,255,.75);
  backdrop-filter: blur(18px);
  box-shadow: 0 20px 60px rgba(0,0,0,.15);
  position: relative;
}

.contact-badge {
  position: absolute;
  top: 600px;
  left: 95px;
  background: linear-gradient(135deg,#ff7a18,#ffb347);
  color: #fff;
  padding: 7px 18px;
  border-radius: 40px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .5px;
}

.contact-modern-card h2 {
  margin-top: 15px;
  font-size: 30px;
  color: #0b3d2e;
}
.contact-us{
  position: absolute;
  top: 640px;
  left: 770px;
  background: linear-gradient(135deg,#ff7a18,#0b3d2e);
  color: #fff;
  padding: 7px 18px;
  border-radius: 40px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .5px;

}

/* FORM GRID */

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* INPUT GROUP */

.form-group {
  margin-top: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  color: #0b3d2e;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid #dde3ea;
  font-size: 15px;
  transition: .3s ease;
  background: #fff;
}

/* FOCUS EFFECT */

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #ff7a18;
  box-shadow: 0 0 0 3px rgba(255,122,24,.2);
}

/* SEND BUTTON */

.btn-send-modern {
  margin-top: 25px;
  padding: 14px 28px;
  border: none;
  border-radius: 50px;
  background: linear-gradient(135deg,#ff7a18,#ffb347);
  color: white;
  font-weight: 600;
  cursor: pointer;
  transition: .3s;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-send-modern:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255,122,24,.4);
}

/* MOBILE */

@media(max-width:768px){
  .form-grid{
    grid-template-columns:1fr;
  }

  .contact-modern-card{
    padding:30px 25px;
  }
}/* CHANGE PASSWORD PANEL */

.admin-pass-card{
margin-top:40px;
background:rgba(255,255,255,.18);
backdrop-filter:blur(14px);
border-radius:20px;
padding:30px;
max-width:360px;
box-shadow:0 15px 40px rgba(0,0,0,.25);
color:#fff;
}

.admin-pass-card h3{
margin-bottom:20px;
}

.field{
position:relative;
margin-bottom:15px;
}

.field label{
font-size:13px;
opacity:.9;
display:block;
margin-bottom:5px;
}

.field input{
width:100%;
padding:12px 40px 12px 12px;
border-radius:8px;
border:none;
outline:none;
}

.field span{
position:absolute;
right:10px;
top:32px;
cursor:pointer;
opacity:.6;
}

.pass-btn{
width:100%;
padding:12px;
border:none;
border-radius:30px;
background:linear-gradient(135deg,#ff9800,#ff6a00);
color:white;
font-weight:600;
cursor:pointer;
margin-top:10px;
}

#passMsg{
margin-top:12px;
font-size:14px;
}
/* PROFILE */

.admin-profile{
background:rgba(255,255,255,.15);
backdrop-filter:blur(14px);
padding:25px;
border-radius:18px;
margin-bottom:30px;
color:white;
}

/* STRENGTH BAR */

.strength{
height:6px;
background:#ddd;
border-radius:6px;
margin-bottom:10px;
overflow:hidden;
}

#strengthBar{
height:100%;
width:0%;
background:red;
transition:.3s;
}
/* ================= SERVICES PAGE ================= */

/* HERO CARD ENHANCEMENT */

.contact-hero-pro.about-hero{
background:linear-gradient(rgba(0,0,0,.45),rgba(0,0,0,.65));
padding:110px 0 80px;
}

.contact-hero-card{
background:rgba(255,255,255,.9);
backdrop-filter:blur(12px);
border-radius:26px;
padding:50px;
text-align:center;
box-shadow:0 25px 60px rgba(0,0,0,.08);
}

/* SERVICES SECTION */

.services-grid-section{
padding:90px 0;
background:#fff;
}

/* GRID */

.services-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
gap:30px;
}

/* SERVICE CARD */

.service-card{
position:relative;
background:rgba(255,255,255,.92);
border-radius:26px;
padding:40px 30px;
text-align:center;
box-shadow:0 18px 45px rgba(0,0,0,.08);
transition:.4s ease;
overflow:hidden;
}
/* CLEAN GRADIENT BORDER */

.service-card{
position:relative;
background:#fff;
}

.service-card:before{
content:'';
position:absolute;
inset:-1px;
border-radius:26px;
background:linear-gradient(135deg,);
z-index:-1;
}
/* HOVER */

.service-card:hover{
transform:translateY(-14px) scale(1.03);
box-shadow:0 30px 70px rgba(0,0,0,.12);
}

/* ICON IMAGE */

.service-icon{
width:110px;
height:110px;
object-fit:cover;
border-radius:18px;
margin-bottom:18px;
animation:floatIcon 3s ease-in-out infinite;
}

/* TEXT */

.service-card h3{
margin-bottom:10px;
font-size:20px;
}

.service-card p{
font-size:14px;
color:#666;
margin-bottom:15px;
}

/* LINK */

.service-card a{
display:inline-block;
margin-top:10px;
color:#1e88ff;
font-weight:600;
position:relative;
}

.service-card a:after{
content:"→";
margin-left:6px;
transition:.3s;
}

.service-card:hover a:after{
margin-left:12px;
}

/* FLOAT ANIMATION */

@keyframes floatIcon{
0%,100%{transform:translateY(0);}
50%{transform:translateY(-6px);}
}

/* ================= SERVICE PROCESS ================= */

.service-process{
padding:90px 0;
background:#f9fcff;
}

/* PROCESS GRID */

.process-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:30px;
}

/* PROCESS BOX */

.process-box{
background:rgba(255,255,255,.9);
border-radius:22px;
padding:35px 25px;
text-align:center;
box-shadow:0 18px 45px rgba(0,0,0,.08);
transition:.4s ease;
}

.process-box span{
display:inline-block;
font-size:28px;
font-weight:700;
color:#1e88ff;
margin-bottom:10px;
}

.process-box:hover{
transform:translateY(-10px) scale(1.04);
}

/* MOBILE */

@media(max-width:768px){
.contact-hero-card{padding:35px;}
}

.service-card{
position:relative;
background:#fff;
}


/* ================= MAIN FOOTER ================= */

.main-footer{
background:linear-gradient(135deg,#0b1f3a,#102a54);
color:#fff;
padding:80px 0 0;
position:relative;
overflow:hidden;
}

/* GRID */

.footer-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:40px;
margin-bottom:50px;
}

/* LOGO */

.footer-about img{
width:170px;
margin-bottom:15px;
}

.footer-about p{
font-size:14px;
opacity:.85;
line-height:1.6;
}

/* HEADINGS */

.main-footer h4{
font-size:18px;
margin-bottom:10px;
position:relative;
}

.main-footer h4:after{
content:"";
width:40px;
height:3px;
background:linear-gradient(90deg,#ff9800,#1e88ff);
display:block;
margin-top:6px;
border-radius:2px;
}

/* LINKS */

.main-footer ul{
list-style:none;
padding:0;
margin:0;
}

.main-footer ul li{
margin-bottom:10px;
}

.main-footer ul li a{
color:#ddd;
text-decoration:none;
font-size:14px;
transition:.3s;
}

.main-footer ul li a:hover{
color:#ff9800;
padding-left:6px;
}

/* SOCIAL ICONS */

.footer-social{
margin-top:10px;
display:flex;
align-items:center;
gap:12px;
}

.footer-social span{
font-size:14px;
opacity:.8;
}

.footer-social a{
width:36px;
height:36px;
display:flex;
align-items:center;
justify-content:center;
background:rgba(255,255,255,.1);
border-radius:50%;
color:#fff;
transition:.3s;
}

.footer-social a:hover{
background:linear-gradient(135deg,#ff9800,#ff6a00);
transform:translateY(-4px);
}
/* ================= FOOTER BOTTOM CONTACT BAR ================= */

.footer-bottom{
background:rgba(255,255,255,.05);
backdrop-filter:blur(10px);
padding:25px 0;
border-top:1px solid rgba(255,255,255,.1);
}

/* GRID */

.footer-bottom-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:18px;
}

/* EACH ITEM */

.footer-bottom-grid > div{
display:flex;
align-items:center;
gap:12px;
padding:12px 16px;
border-radius:14px;
background:rgba(255,255,255,.08);
transition:.4s ease;
box-shadow:0 10px 30px rgba(0,0,0,.15);
}

/* HOVER EFFECT */

.footer-bottom-grid > div:hover{
transform:translateY(-6px);
background:rgba(255,255,255,.15);
}

/* ICON BUBBLE */

.footer-bottom-grid i{
width:36px;
height:36px;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
background:linear-gradient(135deg,#1e88ff,#ff9800);
color:#fff;
font-size:14px;
flex-shrink:0;
}

/* TEXT */

.footer-bottom-grid,
.footer-bottom-grid a{
color:#fff;
font-size:14px;
text-decoration:none;
}

.footer-bottom-grid a:hover{
color:#ff9800;
}

/* MOBILE */

@media(max-width:768px){
.footer-bottom-grid{
gap:12px;
}
}
/* PHONE PULSE */

.phone-pulse{
animation:pulse 2s infinite;
}

@keyframes pulse{
0%{box-shadow:0 0 0 0 rgba(255,152,0,.6);}
70%{box-shadow:0 0 0 10px rgba(255,152,0,0);}
100%{box-shadow:0 0 0 0 rgba(255,152,0,0);}
}

/* CLOCK ROTATION */

.clock-spin{
animation:clockRotate 3s linear infinite;
}

@keyframes clockRotate{
from{transform:rotate(0);}
to{transform:rotate(360deg);}
}

/* TOOLTIP */

.time-tooltip{
position:relative;
cursor:pointer;
}

.tooltip-text{
position:absolute;
bottom:120%;
left:50%;
transform:translateX(-50%);
background:#000;
color:#fff;
padding:6px 10px;
border-radius:6px;
font-size:12px;
white-space:nowrap;
opacity:0;
pointer-events:none;
transition:.3s;
}

.time-tooltip:hover .tooltip-text{
opacity:1;
}
/* ================= HEADER BOOK INSPECTION BUTTON ================= */

.btn-inspection{
display:inline-flex;
align-items:center;
justify-content:center;
padding:12px 26px;
border-radius:30px;
background:linear-gradient(135deg,#ff9800,#ff6a00);
color:#fff !important;
font-weight:600;
font-size:14px;
text-decoration:none;
box-shadow:0 8px 22px rgba(255,152,0,.45);
transition:.3s ease;
position:relative;
overflow:hidden;
}

/* HOVER EFFECT */

.btn-inspection:hover{
transform:translateY(-3px) scale(1.05);
box-shadow:0 14px 35px rgba(255,152,0,.6);
}

/* GLOW RING ANIMATION */

.btn-inspection:after{
content:'';
position:absolute;
width:120%;
height:120%;
background:radial-gradient(circle,rgba(255,255,255,.4),transparent 60%);
opacity:0;
transition:.4s;
}

.btn-inspection:hover:after{
opacity:.4;
}

/* SUBTLE PULSE */

.header-btn{
animation:ctaPulse 3s infinite;
}

@keyframes ctaPulse{
0%{box-shadow:0 0 0 0 rgba(255,152,0,.6);}
70%{box-shadow:0 0 0 12px rgba(255,152,0,0);}
100%{box-shadow:0 0 0 0 rgba(255,152,0,0);}
}

/* MOBILE */

@media(max-width:768px){
.btn-inspection{
padding:10px 22px;
font-size:13px;
}
}
/* ================= DARK BLUE + GREEN CTA BUTTONS ================= */

.btn-inspection{
display:inline-flex;
align-items:center;
gap:8px;
padding:12px 28px;
border-radius:40px;
font-weight:600;
font-size:14px;
text-decoration:none;
transition:.3s ease;
position:relative;
overflow:hidden;
color:#fff !important;
}

/* ===== FIRST BUTTON (BOOK INSPECTION - DARK BLUE) ===== */

.btn-inspection:first-of-type{
background:linear-gradient(135deg,#0f3057,#00587a);
box-shadow:0 8px 22px rgba(0,88,122,.45);
}

.btn-inspection:first-of-type:hover{
transform:translateY(-3px);
box-shadow:0 14px 35px rgba(0,88,122,.6);
background:linear-gradient(135deg,#123a6f,#0077a6);
}

/* ===== SECOND BUTTON (GET STARTED - DARK GREEN) ===== */

.btn-inspection:last-of-type{
background:linear-gradient(135deg,#0b3d2e,#006d5b);
box-shadow:0 8px 22px rgba(0,109,91,.45);
}

.btn-inspection:last-of-type:hover{
transform:translateY(-3px);
box-shadow:0 14px 35px rgba(0,109,91,.6);
background:linear-gradient(135deg,#125a45,#008c72);
}

/* ARROW ANIMATION */

.btn-inspection i{
transition:.3s;
}

.btn-inspection:hover i{
transform:translateX(5px);
}

/* SOFT GLOW PULSE */

.header-btn{
animation:darkPulse 3s infinite;
}

@keyframes darkPulse{
0%{box-shadow:0 0 0 0 rgba(0,109,91,.4);}
70%{box-shadow:0 0 0 12px rgba(0,109,91,0);}
100%{box-shadow:0 0 0 0 rgba(0,109,91,0);}
}
/* ================= GLASS + SHIMMER HEADER BUTTONS ================= */

.btn-inspection{
display:inline-flex;
align-items:center;
gap:8px;
padding:12px 28px;
border-radius:40px;
font-weight:600;
font-size:14px;
text-decoration:none;
color:#fff !important;
position:relative;
overflow:hidden;
backdrop-filter:blur(12px);
-webkit-backdrop-filter:blur(12px);
border:1px solid rgba(255,255,255,.25);
transition:.3s ease;
}

/* ===== BOOK INSPECTION (GLASS DARK BLUE) ===== */

.btn-inspection:first-of-type{
background:rgba(15,48,87,.55);
box-shadow:0 10px 30px rgba(15,48,87,.35);
}

/* ===== GET STARTED (GLASS DARK GREEN) ===== */

.btn-inspection:last-of-type{
background:rgba(11,61,46,.55);
box-shadow:0 10px 30px rgba(11,61,46,.35);
}

/* HOVER LIFT */

.btn-inspection:hover{
transform:translateY(-3px) scale(1.03);
}

/* ARROW MOVE */

.btn-inspection i{
transition:.3s;
}

.btn-inspection:hover i{
transform:translateX(6px);
}

/* ================= SHIMMER EFFECT ================= */

.btn-inspection::after{
content:'';
position:absolute;
top:0;
left:-120%;
width:120%;
height:100%;
background:linear-gradient(
  120deg,
  transparent,
  rgba(255,255,255,.35),
  transparent
);
animation:shimmer 3s infinite;
}

@keyframes shimmer{
0%{left:-120%;}
50%{left:120%;}
100%{left:120%;}
}

/* SOFT PULSE (SUBTLE) */

.header-btn{
animation:glassPulse 4s infinite;
}

@keyframes glassPulse{
0%{box-shadow:0 0 0 0 rgba(255,255,255,.25);}
70%{box-shadow:0 0 0 14px rgba(255,255,255,0);}
100%{box-shadow:0 0 0 0 rgba(255,255,255,0);}
}

/* MOBILE */

@media(max-width:768px){
.btn-inspection{
padding:10px 22px;
font-size:13px;
}
}

/* ================= HOME + OFFICE GLASS CTA (BLUE + LIGHT GREEN) ================= */

.btn-home,
.btn-office{
display:inline-flex;
align-items:center;
justify-content:center;
padding:12px 30px;
border-radius:40px;
font-weight:600;
font-size:14px;
text-decoration:none;
color:#f9fcff !important;
position:relative;
overflow:hidden;
backdrop-filter:blur(12px);
-webkit-backdrop-filter:blur(12px);
border:1px solid rgba(255,255,255,.25);
transition:.3s ease;
}

/* ===== HOME SERVICE (LIGHT BLUE GLASS) ===== */

.btn-home{
background:rgba(79,195,247,.55); /* light blue */
box-shadow:0 10px 28px rgba(79,195,247,.4);
}

/* ===== OFFICE SERVICE (LIGHT GREEN GLASS) ===== */

.btn-office{
background:rgba(111,227,193,.55); /* mint green */
box-shadow:0 10px 28px rgba(111,227,193,.4);
}

/* HOVER LIFT */

.btn-home:hover,
.btn-office:hover{
transform:translateY(-3px) scale(1.04);
}

/* ================= SHIMMER EFFECT ================= */

.btn-home::after,
.btn-office::after{
content:'';
position:absolute;
top:0;
left:-120%;
width:120%;
height:100%;
background:linear-gradient(
  120deg,
  transparent,
  rgba(255,255,255,.4),
  transparent
);
animation:shimmerCTA 3s infinite;
}

@keyframes shimmerCTA{
0%{left:-120%;}
50%{left:120%;}
100%{left:120%;}
}

/* SOFT PULSE */

.btn-home{
animation:bluePulse 4s infinite;
}

.btn-office{
animation:greenPulse 4s infinite;
}

@keyframes bluePulse{
0%{box-shadow:0 0 0 0 rgba(79,195,247,.5);}
70%{box-shadow:0 0 0 14px rgba(79,195,247,0);}
100%{box-shadow:0 0 0 0 rgba(79,195,247,0);}
}

@keyframes greenPulse{
0%{box-shadow:0 0 0 0 rgba(111,227,193,.5);}
70%{box-shadow:0 0 0 14px rgba(111,227,193,0);}
100%{box-shadow:0 0 0 0 rgba(111,227,193,0);}
}

/* MOBILE */

@media(max-width:768px){
.btn-home,
.btn-office{
padding:10px 22px;
font-size:13px;
}
}/* ================= FINAL PREMIUM ABOUT HERO FIX ================= */

.contact-hero-pro.about-hero{
position:relative;
padding:140px 0 110px;

/* IMAGE + DARK BLUE GRADIENT */
background:
linear-gradient(
  110deg,
  rgba(15,40,75,.88),
  rgba(60,110,200,.65)
),
url("/assets/images/hero-bg2.png");
min-height: 480px;
background-size:cover;
background-position:right center;
background-repeat:no-repeat;
overflow:hidden;
}

/* CLEAN SOFT OVERLAY */

.contact-hero-pro.about-hero::before{
content:'';
position:absolute;
inset:0;
background:linear-gradient(
rgba(0,0,0,.25),
rgba(0,0,0,.1)
);
}

/* GLASS CARD – STRONGER */

.contact-hero-card{
position:relative;
z-index:2;
max-width:460px;
padding:55px 50px;
border-radius:22px;
background:rgba(255,255,255,.18);
backdrop-filter:blur(22px);
-webkit-backdrop-filter:blur(22px);
border:1px solid rgba(255,255,255,.35);
box-shadow:0 35px 90px rgba(0,0,0,.45);
}

/* TITLE */

.contact-hero-card h1{
font-size:46px;
color:#fff;
margin-bottom:12px;
}

/* BREADCRUMB */

.breadcrumb-pro{
color:#eaf2ff;
font-size:15px;
}

.breadcrumb-pro a{
color:#fff;
text-decoration:none;
opacity:.9;
}

/* SOFT SHIMMER *

.contact-hero-card::after{
content:'';
position:absolute;
top:0;
left:-120%;
width:120%;
height:100%;
background:linear-gradient(
120deg,
transparent,
rgba(255,255,255,.4),
transparent
);
animation:heroShimmer 4.5s infinite;
}

@keyframes heroShimmer{
0%{left:-120%;}
50%{left:120%;}
100%{left:120%;}
}*/

/* MOBILE */

@media(max-width:768px){

.contact-hero-pro.about-hero{
background-position:center;
}

.contact-hero-card{
padding:40px 30px;
}

.contact-hero-card h1{
font-size:34px;
}

}

/* ================= SOFT PREMIUM INSPECTION CARD ================= */

.free-inspection-card{
background:linear-gradient(145deg,#2b7cff,#4fa3ff);
border-radius:28px;
padding:40px 38px;
color:#fff;
box-shadow:
0 25px 60px rgba(0,0,0,.25),
inset 0 0 0 1px rgba(255,255,255,.15);
transition:.4s ease;
}

/* SOFT HOVER FLOAT */

.free-inspection-card:hover{
transform:translateY(-5px);
box-shadow:
0 40px 80px rgba(0,0,0,.3),
inset 0 0 0 1px rgba(255,255,255,.25);
}

/* TITLE */

.free-inspection-card h3{
font-size:26px;
margin-bottom:10px;
}

/* DESCRIPTION */

.free-inspection-card p{
opacity:.85;
margin-bottom:22px;
}

/* CONTACT ROW */

.cta-contact{
display:flex;
align-items:center;
gap:14px;
margin:14px 0;
font-size:15px;
}

/* ICON CIRCLES */

.cta-contact i{
width:42px;
height:42px;
border-radius:50%;
background:rgba(255,255,255,.18);
display:flex;
align-items:center;
justify-content:center;
color:#fff;
font-size:15px;
}

/* CTA BUTTON */

.cta-btn{
display:inline-block;
margin-top:26px;
padding:12px 34px;
border-radius:30px;
background:linear-gradient(135deg,#ff9a3c,#ff7b00);
color:#fff;
font-weight:600;
text-decoration:none;
box-shadow:0 12px 30px rgba(255,140,40,.45);
transition:.3s ease;
}

/* BUTTON HOVER */

.cta-btn:hover{
transform:translateY(-3px);
box-shadow:0 18px 45px rgba(255,140,40,.6);
}

/* MOBILE */

@media(max-width:900px){
.free-inspection-card{
padding:32px 28px;
}
}
/* ================= CLEAN WHITE BOOKING PAGE ================= */

body{
background:#f6f9fc;
color:#1f2937;
font-family:system-ui, sans-serif;
}
.hero-header{
background:
url("/assets/images/inspection-bg2.png") center/cover no-repeat;

padding:50px 0;
}

/* KEEP container centered */

.hero-flex{
display:flex;
align-items:center;
justify-content:space-between;
gap:40px;
padding:0 40px;
}

.hero-right{
background:rgba(255,255,255,0.15);
backdrop-filter:blur(12px);
-webkit-backdrop-filter:blur(12px);

border:1px solid rgba(255,255,255,.25);
border-radius:18px;

padding:28px 40px;
text-align:right;

box-shadow:0 12px 40px rgba(0,0,0,.25);

display:flex;
flex-direction:column;
align-items:flex-end;
gap:10px;

max-width:420px;
}

/* SUBTEXT */

.hero-right p{
color:#fff;
font-size:15px;
opacity:.85;
margin:0;
}

/* CTA BUTTON */

.hero-btn{
display:inline-block;
padding:14px 36px;
border-radius:50px;
background:linear-gradient(135deg,#0b2d4a,#18a558);
color:#ffffff;
font-size:18px;
font-weight:600;
text-decoration:none;
transition:.3s ease;
box-shadow:0 6px 20px rgba(24,165,88,.4);
}

/* BUTTON HOVER */

.hero-btn:hover{
transform:translateY(-4px);
box-shadow:0 10px 30px rgba(24,165,88,.7);
}

/* LOGO */
.hero-left{
position:relative;

background:rgba(255,255,255,0.15);
backdrop-filter:blur(14px);
-webkit-backdrop-filter:blur(14px);

border-radius:16px;
padding:16px 32px;

display:flex;
align-items:center;
justify-content:center;

border:1px solid rgba(255,255,255,.3);

box-shadow:
0 10px 40px rgba(0,0,0,.35),
0 0 20px rgba(0,255,213,.35);

animation:floatLogo 5s ease-in-out infinite;
overflow:hidden;
}

/* LOGO */

.hero-logo{
max-width:200px;
display:block;
z-index:2;
}

/* FLOATING */

@keyframes floatLogo{
0%,100%{transform:translateY(0)}
50%{transform:translateY(-8px)}
}

/* GRADIENT GLOW BORDER */

.hero-left::before{
content:'';
position:absolute;
inset:-1px;
border-radius:16px;
background:linear-gradient(120deg,#0b2d4a,#18a558,#0b2d4a);
opacity:.6;
z-index:0;
filter:blur(6px);
}

/* GLASS SHINE */

.hero-left::after{
content:'';
position:absolute;
top:-50%;
left:-50%;
width:200%;
height:200%;
background:linear-gradient(120deg,
transparent 40%,
rgba(255,255,255,.35) 50%,
transparent 60%);
animation:glassShine 6s linear infinite;
z-index:1;
}

@keyframes glassShine{
from{transform:translateX(-100%)}
to{transform:translateX(100%)}
}/* RIGHT */

.hero-right{
text-align:right;
}
/* MOBILE */

@media(max-width:900px){

.hero-flex{
flex-direction:column;
text-align:center;
padding:0 20px;
}

.hero-right{
text-align:center;
}
}
@media(max-width:768px){
.hero-left{
animation:none;
}
}

.hero-left{
animation:
floatLogo 5s ease-in-out infinite,
greenPulse 3.5s ease-in-out infinite;
}

/* GREEN GLOW PULSE */

@keyframes greenPulse{
0%,100%{
box-shadow:
0 10px 40px rgba(0,0,0,.35),
0 0 18px rgba(24,165,88,.35);
}

50%{
box-shadow:
0 10px 40px rgba(0,0,0,.35),
0 0 32px rgba(24,165,88,.7);
}
}
/* MAIN */

.booking-clean{
padding:90px 0;
background:#f6f9fc;
}

/* GRID */

.booking-layout{
display:grid;
grid-template-columns:1fr 1fr;
gap:70px;
align-items:center;
}

/* LEFT CONTENT */

.booking-left h2{
font-size:40px;
margin-bottom:10px;
}

.booking-left h2::after{
content:"";
display:block;
width:60px;
height:4px;
background:#14b8a6;
margin-top:8px;
border-radius:3px;
}

.booking-sub{
color:#64748b;
margin-bottom:25px;
line-height:1.7;
}

.booking-list li{
margin-bottom:12px;
color:#334155;
}

.booking-list i{
color:#14b8a6;
margin-right:8px;
}

.booking-support{
margin-top:30px;
display:flex;
gap:15px;
align-items:center;
background:#ffffff;
padding:15px 20px;
border-radius:15px;
box-shadow:0 10px 30px rgba(0,0,0,.08);
width:max-content;
}

.booking-support i{
font-size:24px;
color:#14b8a6;
}

/* FORM CARD */

.booking-form-box{
background:#ffffff;
padding:35px;
border-radius:25px;
box-shadow:0 20px 60px rgba(0,0,0,.1);
}

.booking-form-box h3{
margin-bottom:25px;
font-size:26px;
color:#0f172a;
}

/* INPUTS */

.form-field{
margin-bottom:15px;
}

.form-field label{
font-size:13px;
color:#475569;
display:block;
margin-bottom:6px;
}

.form-field input,
.form-field select,
.form-field textarea{
width:100%;
padding:14px;
border-radius:12px;
border:1px solid #e2e8f0;
background:#f8fafc;
outline:none;
transition:.25s;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus{
border-color:#14b8a6;
box-shadow:0 0 0 3px rgba(20,184,166,.2);
}

/* DATE */

.double-field{
display:grid;
grid-template-columns:1fr 1fr;
gap:12px;
margin-top:10px;
}

/* BUTTON */

.booking-submit{
margin-top:25px;
width:100%;
padding:15px;
border:none;
border-radius:40px;
background:linear-gradient(135deg,#14b8a6,#0ea5e9);
color:white;
font-weight:700;
font-size:16px;
cursor:pointer;
transition:.3s;
}

.booking-submit:hover{
transform:translateY(-3px);
box-shadow:0 12px 35px rgba(14,165,233,.35);
}

/* MOBILE */

@media(max-width:900px){
.booking-layout{
grid-template-columns:1fr;
}

.booking-left{
text-align:center;
}

.booking-support{
margin:auto;
}
}
.top-contact{
display:flex;
align-items:center;
gap:25px;
background:#2c4160;
padding:15px 25px;
border-radius:18px;
width:max-content;
}

.top-contact i{
background:linear-gradient(135deg,#f6b73c,#f39c12);
color:#fff;
width:42px;
height:42px;
display:flex;
align-items:center;
justify-content:center;
border-radius:50%;
font-size:18px;
}

.top-contact a{
color:#fff;
text-decoration:none;
font-weight:500;
white-space:nowrap;   /* 🔥 prevents line break */
font-size:16px;
}

.top-contact a:hover{
color:#18a558;
}
@media(max-width:600px){
.top-contact{
flex-direction:column;
align-items:flex-start;
gap:10px;
}
}
/* PHONE SECTION FIX */

.phone-item{
display:flex;
align-items:center;
gap:12px;
}

.phone-numbers{
display:flex;
gap:25px;
flex-wrap:wrap;
}

.phone-numbers a{
display:flex;
gap:6px;
text-decoration:none;
color:#fff;
font-weight:500;
white-space:nowrap; /* prevents line break */
transition:.3s;
}

.phone-numbers a:hover{
color:#18a558;
}

.phone-numbers .country{
opacity:.7;
font-size:13px;
}

.phone-numbers .number{
font-size:15px;
}
/* Success Popup */
.success-popup {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    animation: fadeIn 0.3s ease-in-out;
}

.popup-content {
    background: #fff;
    padding: 35px;
    border-radius: 12px;
    text-align: center;
    width: 350px;
    animation: slideUp 0.4s ease;
}

.checkmark {
    font-size: 50px;
    color: #28a745;
    margin-bottom: 10px;
}

.popup-content h3 {
    margin-bottom: 10px;
    color: #222;
}

.popup-content p {
    font-size: 14px;
    color: #555;
}

@keyframes fadeIn {
    from {opacity: 0;}
    to {opacity: 1;}
}

@keyframes slideUp {
    from {transform: translateY(40px); opacity: 0;}
    to {transform: translateY(0); opacity: 1;}
}
.phone-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.phone-link {
    text-decoration: none;
    font-weight: 600;
    color: #fff; /* change if footer is light */
}

.phone-numbers a:hover {
    color: #ff7a00;
}
.phone-numbers {
    display: flex;
    flex-direction: column;  /* Makes numbers go down */
    gap: 6px;
}

.phone-numbers a {
    text-decoration: none;
    color: #fff;
    font-weight: 600;
}
/* ========================================
   MODERN ANIMATED FOOTER - SAME THEME
=========================================== */

.footer-bottom {
  background: #1f3554; /* Keep your navy theme */
  padding: 25px 0;
  position: relative;
}

.footer-bottom-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
  flex-wrap: wrap;
}

/* FOOTER CARD */
.footer-item {
  display: flex;
  align-items: center;
  gap: 15px;
  background: rgba(255, 255, 255, 0.05);
  padding: 18px 25px;
  border-radius: 16px;
  color: #fff;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.05);
}

/* Hover Lift */
.footer-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}

/* Shine Sweep Effect */
.footer-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.15),
    transparent
  );
  transition: 0.6s;
}

.footer-item:hover::before {
  left: 130%;
}
/* ICON BASE STYLE */
.footer-item i {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #fff;
  transition: all 0.4s ease;
}

/* 1️⃣ EMAIL – Blue Gradient */
.footer-item .fa-envelope {
  background: linear-gradient(135deg,#1e88ff,#ff9800);
}

/* 2️⃣ PHONE – Purple Pink Gradient */
.footer-item .fa-phone {
  background: linear-gradient(135deg,#1e88ff,#ff9800);
}

/* 3️⃣ CLOCK – Orange Gold Gradient */
.footer-item .fa-clock {
  background: linear-gradient(135deg,#1e88ff,#ff9800);
}

/* 4️⃣ LOCATION – Green Teal Gradient */
.footer-item .fa-map-marker-alt {
  background: linear-gradient(135deg,#1e88ff,#ff9800);
}

/* Hover Animation */
.footer-item:hover i {
  transform: scale(1.15) rotate(8deg);
  box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}
/* LINKS */
.footer-item a {
  color: #fff;
  text-decoration: none;
  transition: 0.3s ease;
  font-weight: 500;
}

.footer-item a:hover {
  color: #f6c667;
}

/* Phone stacked */
.phone-numbers {
  display: flex;
  flex-direction: column;
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 992px) {
  .footer-bottom-grid {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .footer-bottom-grid {
    flex-direction: column;
    text-align: center;
  }

  .footer-item {
    width: 100%;
    justify-content: center;
  }
}
/* =======================================
   FINAL MOBILE FIX FOR PRIMEX GUARD
======================================= */

/* Prevent horizontal scroll forever */
html, body {
  overflow-x: hidden;
}

/* Fix container */
.container {
  width: 100%;
  max-width: 1200px;
  padding: 0 20px;
  margin: auto;
}

/* Remove negative margin */
.hero-glass {
  margin-left: -60px;
  margin-top: 0 !important;
  max-width: 100%;

}

/* Remove forced hero height */
.background-hero {
  min-height: 870px;
  padding: 100px 0;
}

/* Fix hero layout */
@media (max-width: 992px) {

  .hero-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .hero-title {
    font-size: 32px !important;
  }

  .hero-stats {
    flex-direction: column;
    gap: 15px;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 15px;
  }

}

/* Fix all 2-column grids */
@media (max-width: 992px) {

  .why-pro-grid,
  .brand-trust-grid,
  .about-grid,
  .booking-layout,
  .contact-modern-grid,
  .service-details-grid,
  .serve-card {
    grid-template-columns: 1fr !important;
  }

  .brand-right {
    grid-template-columns: 1fr !important;
  }

}

/* Fix image overflow */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Fix footer grid */
@media (max-width: 768px) {

  .footer-grid,
  .footer-bottom-grid {
    grid-template-columns: 1fr !important;
    text-align: center;
  }

}

/* Fix floating buttons */
@media (max-width: 768px) {

  .float-whatsapp {
    width: 50px;
    height: 50px;
    font-size: 22px;
  }

  .back-to-top {
    width: 45px;
    height: 45px;
  }

}
/* ===== FIX MOBILE MENU LAYER ISSUE ===== */

#offcanvas-panel {
  position: fixed;
  top: 0;
  left: -100%;
  width: 280px;
  height: 100vh;
  background: #ffffff;
  z-index: 9999;
  transition: 0.3s ease;
  overflow-y: auto;
}

#offcanvas-panel.active {
  left: 0;
}

#offcanvas-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
}

#offcanvas-overlay.active {
  opacity: 1;
  visibility: visible;
}
/* Prevent header buttons from blocking menu */
.header,
.navbar,
.top-bar {
  position: relative;
  z-index: 10;
}
#offcanvas-panel a {
  display: block;
  padding: 15px 20px;
  color: #222;
  text-decoration: none;
  font-weight: 500;
}

#offcanvas-panel a:hover {
  background: #f3f4f6;
}
.float-whatsapp,
.back-to-top {
  z-index: 50;
}

.error{
color:#dc2626;
font-size:13px;
margin-top:5px;
display:block;
}

input.invalid, textarea.invalid{
border-color:#dc2626;
background:#fff1f2;
}

input.valid{
border-color:#18a558;
background:#f0fdf4;
}
/* =========================
   HEADER BASE
========================= */

.main-header {
  width: 100%;
  background: #ffffff;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
}

/* Logo */
.logo img {
  height: 45px;
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  font-size: 22px;
  background: none;
  border: none;
  cursor: pointer;
}

/* =========================
   NAV DESKTOP
========================= */

.navbar ul {
  display: flex;
  list-style: none;
  gap: 25px;
  margin: 0;
  padding: 0;
}

.navbar a {
  text-decoration: none;
  color: #222;
  font-weight: 500;
}

/* Dropdown */
.dropdown-menu {
  display: none;
  position: absolute;
  background: #fff;
  padding: 15px;
  list-style: none;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  border-radius: 8px;
}

.dropdown:hover .dropdown-menu {
  display: block;
}
/* ================= MOBILE FIX ================= */
@media (max-width: 992px) {

  /* Make header clean */
  .header-inner {
    position: relative;
    z-index: 1001;
  }

  /* Sidebar menu */
  .navbar {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: #ffffff;
    padding: 80px 25px;
    transition: 0.4s ease;
    overflow-y: auto;
    z-index: 1000;
  }

  .navbar.active {
    left: 0;
  }

  .navbar ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .navbar li {
    width: 100%;
  }

  .navbar a {
    display: block;
    padding: 12px 0;
    font-size: 16px;
  }

  /* IMPORTANT: remove absolute positioning */
  .dropdown-menu {
    position: static !important;
    display: none;
    box-shadow: none;
    padding-left: 15px;
    background: transparent;
  }

  .dropdown.active .dropdown-menu {
    display: block;
  }

  /* Disable hover on mobile */
  .dropdown:hover .dropdown-menu {
    display: none;
  }

  /* Hide desktop buttons */
  .header-btn {
    display: none;
  }

}