/* ========== ROOT VARIABLES ========== */
:root {
  --deep-navy: #1C4E80;
  --medium-blue: #2C6AA0;
  --bright-blue: #3F8AC6;
  --strong-red: #D93A2F;
  --vibrant-red: #E94B3C;
  --red-orange: #F25C3A;
  --bright-orange: #FF6A3D;
  --soft-red-highlight: #F7A08A;
  --pale-warm: #FBC1B3;
  --light-gray: #F2F2F2;
  --white: #FFFFFF;
  --shadow-sm: 0 10px 30px rgba(0,0,0,0.05);
  --shadow-md: 0 20px 35px rgba(0,0,0,0.1);
  --transition: all 0.3s ease;
}

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

body {
  font-family: 'Inter', sans-serif;
  background: var(--white);
  color: #1a2c3e;
  overflow-x: hidden;
  line-height: 1.5;
}

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

/* ========== PRELOADER ========== */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--deep-navy);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}
.loader {
  width: 48px;
  height: 48px;
  border: 5px solid rgba(255,255,255,0.2);
  border-top: 5px solid var(--bright-orange);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ========== CUSTOM CURSOR (DESKTOP ONLY) ========== */
.cursor, .cursor-follower {
  pointer-events: none;
  position: fixed;
  z-index: 9999;
  border-radius: 50%;
  transition: transform 0.2s;
}
.cursor { width: 8px; height: 8px; background: var(--bright-orange); }
.cursor-follower { width: 32px; height: 32px; border: 1px solid var(--bright-orange); opacity: 0.5; }

/* ========== HEADER & NAVIGATION ========== */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(8px);
  z-index: 1000;
  padding: 16px 0;
  box-shadow: var(--shadow-sm);
}
.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo img {
  height: 45px;
  width: auto;
  display: block;
  object-fit: contain;
}
.logo-text { font-weight: 800; font-size: 22px; color: var(--deep-navy); }
.logo-sub { font-weight: 500; color: var(--bright-orange); }

.nav-list {
  display: flex;
  gap: 32px;
  list-style: none;
}
.nav-link {
  text-decoration: none;
  font-weight: 500;
  color: #1e2f3f;
  transition: var(--transition);
}
.nav-link:hover, .nav-link.active { color: var(--bright-orange); }

.btn-outline {
  border: 2px solid var(--bright-orange);
  padding: 6px 18px;
  border-radius: 40px;
  background: transparent;
  color: var(--bright-orange);
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  font-size: 14px;
}
.btn-outline:hover {
  background: var(--bright-orange);
  color: white;
}
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
.mobile-toggle span {
  width: 25px;
  height: 3px;
  background: var(--deep-navy);
  transition: 0.3s;
}

/* ========== MAIN CONTENT – FIX HEADER OVERLAP ========== */
main {
  padding-top: 80px; /* Prevents hero content from hiding behind fixed header */
}

/* ========== HERO SECTION ========== */
.hero {
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  background: linear-gradient(110deg, #f8fafc 0%, #eef2f6 100%);
  position: relative;
}
.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.overlay {
  background: radial-gradient(circle at 80% 30%, rgba(28,78,128,0.1), transparent);
  width: 100%;
  height: 100%;
}
.hero-container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 50px;
  align-items: center;
}
.hero-content {
  text-align: left;
}
.hero-badge {
  background: var(--pale-warm);
  color: var(--strong-red);
  padding: 6px 16px;
  border-radius: 40px;
  font-size: 14px;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 15px;
}
h1 {
  font-size: 48px;
  line-height: 1.2;
  margin: 20px 0;
  font-weight: 800;
}
.highlight {
  background: linear-gradient(120deg, var(--bright-orange), var(--strong-red));
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}
.hero-btns {
  display: flex;
  gap: 20px;
  margin: 30px 0;
  flex-wrap: wrap;
}
.btn-primary {
  background: linear-gradient(95deg, var(--bright-orange), var(--strong-red));
  padding: 14px 28px;
  border-radius: 40px;
  color: white;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow;
  text-decoration: none;
  display: inline-block;
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(217,58,47,0.3);
}
.btn-outline-light {
  border: 2px solid var(--deep-navy);
  padding: 12px 28px;
  border-radius: 40px;
  background: transparent;
  color: var(--deep-navy);
  font-weight: 600;
  text-decoration: none;
}
.hero-stats {
  display: flex;
  gap: 30px;
  margin-top: 30px;
  flex-wrap: wrap;
}
.hero-stats strong {
  font-size: 28px;
  color: var(--deep-navy);
  display: block;
}
.hero-stats span {
  font-size: 14px;
  color: #555;
}

/* ----- Hero Right Side Image Card ----- */
.image-card {
  background: white;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  position: relative;
}
.image-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 50px rgba(0,0,0,0.15);
}
.image-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--bright-orange), var(--strong-red), var(--bright-orange));
  border-radius: 0 0 28px 28px;
  transform: scaleX(0);
  transition: transform 0.5s ease;
}
.image-card:hover::after {
  transform: scaleX(1);
}
.card-image-wrapper {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.card-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.image-card:hover .card-main-img {
  transform: scale(1.05);
}
.img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(28,78,128,0.3), rgba(0,0,0,0.4));
}
.shimmer-effect {
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  animation: shimmer 4s infinite;
}
@keyframes shimmer {
  0% { left: -100%; }
  20% { left: 150%; }
  100% { left: 150%; }
}
.card-content {
  padding: 24px;
}
.badge-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  flex-wrap: wrap;
  gap: 10px;
}
.live-badge {
  background: rgba(217,58,47,0.1);
  color: var(--strong-red);
  padding: 5px 12px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 600;
}
.live-badge i {
  font-size: 8px;
  margin-right: 5px;
  color: var(--bright-orange);
  animation: blink 1.5s infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}
.rating {
  font-size: 13px;
  color: #ffc107;
  font-weight: 500;
}
.card-quote {
  font-size: 15px;
  line-height: 1.5;
  color: #333;
  margin-bottom: 20px;
  font-style: italic;
}
.card-stats-mini {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}
.card-stats-mini div {
  text-align: center;
  font-size: 11px;
  color: #666;
  flex: 1;
}
.card-stats-mini span {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: var(--deep-navy);
  margin-bottom: 5px;
}
.card-stats-mini span i {
  color: var(--bright-orange);
  margin-right: 5px;
  font-size: 14px;
}

/* ========== SERVICES ========== */
.services {
  padding: 80px 0;
  background: var(--white);
}
.section-header {
  text-align: center;
  margin-bottom: 50px;
}
.section-tag {
  background: var(--light-gray);
  padding: 6px 16px;
  border-radius: 40px;
  font-size: 14px;
  font-weight: 600;
  color: var(--medium-blue);
  display: inline-block;
}
.section-header h2 {
  font-size: 36px;
  margin: 16px 0;
}
.services-grid {
  display: grid;
   grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.service-card {
  background: white;
  padding: 30px 24px;
  border-radius: 28px;
  transition: all 0.25s;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.03);
  text-align: center;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: var(--soft-red-highlight);
}
.icon-wrapper {
  width: 64px;
  height: 64px;
  background: linear-gradient(145deg, var(--pale-warm), var(--white));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: var(--strong-red);
  margin: 0 auto 24px auto;
}
.service-link {
  margin-top: 20px;
  display: inline-block;
  text-decoration: none;
  font-weight: 600;
  color: var(--bright-orange);
}

/* ========== ABOUT ========== */
.about {
  background: var(--light-gray);
  padding: 80px 0;
}
.about-container {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 50px;
  align-items: center;
}
.about-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 30px 0;
}
.about-features div i {
  color: var(--bright-orange);
  margin-right: 8px;
}
.about-stats {
  display: flex;
  justify-content: space-between;
  text-align: center;
  flex-wrap: wrap;
  gap: 20px;
}
.stat-number {
  font-size: 42px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--deep-navy), var(--bright-blue));
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

/* ========== GLOBAL COVERAGE ========== */
.coverage {
  padding: 80px 0;
  background: var(--white);
}
.coverage-map-container {
  margin: 40px 0;
}
.map-placeholder {
  background: #e9edf2;
  height: 350px;
  border-radius: 40px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.map-placeholder i {
  font-size: 120px;
  color: #bdc3cf;
}
.map-markers span {
  position: absolute;
  background: var(--bright-orange);
  padding: 5px 12px;
  border-radius: 30px;
  font-size: 11px;
  font-weight: bold;
  color: white;
}
.coverage-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-top: 30px;
}
.coverage-list div {
  background: var(--pale-warm);
  padding: 6px 18px;
  border-radius: 40px;
  font-weight: 500;
  font-size: 14px;
}

/* ========== QUOTE FORM ========== */
/* ========== QUOTE SECTION - FULLY FIXED ========== */
.quote {
  padding: 80px 0;
  background: linear-gradient(135deg, #fef8f5, #ffffff);
}

.quote-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  background: white;
  border-radius: 48px;
  padding: 40px;
  box-shadow: var(--shadow-md);
}

/* LEFT COLUMN - NO TEXT SQUEEZING */
.quote-left {
  width: 100%;
  overflow-wrap: break-word;
}

.quote-left .section-tag {
  display: inline-block;
  margin-bottom: 16px;
}

.quote-left h2 {
  font-size: 32px;
  margin-bottom: 20px;
  line-height: 1.3;
}

.quote-left p {
  font-size: 16px;
  line-height: 1.6;
  color: #555;
  margin-bottom: 24px;
  max-width: 100%;
}

.quote-benefits {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.quote-benefits li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 15px;
  color: #333;
}

.quote-benefits li i {
  color: var(--bright-orange);
  font-size: 18px;
  width: 24px;
}

/* RIGHT COLUMN - FORM */
.quote-right {
  width: 100%;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

input, textarea {
  width: 100%;
  padding: 14px 18px;
  border-radius: 16px;
  border: 1px solid #ddd;
  font-family: inherit;
  font-size: 16px;
  background: var(--white);
  transition: border 0.3s;
}

input:focus, textarea:focus {
  outline: none;
  border-color: var(--bright-orange);
}

textarea {
  resize: vertical;
}

.full-width {
  width: 100%;
  margin-top: 20px;
}

.form-status {
  margin-top: 20px;
  text-align: center;
  font-weight: 500;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .quote-wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 30px;
  }
  
  .quote-left {
    text-align: center;
  }
  
  .quote-left h2 {
    font-size: 28px;
  }
  
  .quote-benefits li {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .quote-wrapper {
    padding: 24px;
  }
  
  .quote-left h2 {
    font-size: 24px;
  }
  
  .quote-left p {
    font-size: 14px;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .quote-benefits li {
    font-size: 14px;
  }
}

/* ========== CONTACT SECTION - IMPROVED ========== */
.contact {
  padding: 80px 0;
  background: var(--light-gray);
}

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

/* Left side - Contact Info */
.contact-info {
  background: white;
  padding: 40px;
  border-radius: 32px;
  box-shadow: var(--shadow-sm);
}

.contact-info .section-tag {
  margin-bottom: 16px;
  display: inline-block;
}

.contact-info h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: var(--deep-navy);
}

.contact-info > p {
  font-size: 16px;
  line-height: 1.6;
  color: #555;
  margin-bottom: 30px;
}

.contact-details {
  margin-bottom: 30px;
}

.contact-details div {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  font-size: 15px;
  color: #333;
  line-height: 1.5;
}

.contact-details div i {
  color: var(--bright-orange);
  font-size: 20px;
  min-width: 24px;
  margin-top: 2px;
}

.contact-details strong {
  color: var(--deep-navy);
  font-weight: 700;
  min-width: 110px;
  display: inline-block;
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.social-links a {
  background: var(--deep-navy);
  color: white;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  font-size: 20px;
  text-decoration: none;
}

.social-links a:hover {
  background: var(--bright-orange);
  transform: translateY(-3px);
}

/* Right side - Map */
.contact-map {
  background: white;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  height: 100%;
  min-height: 400px;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border: none;
  display: block;
}

/* Responsive */
@media (max-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .contact-info {
    padding: 30px;
    text-align: center;
  }
  
  .contact-details div {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
  }
  
  .contact-details div i {
    margin-bottom: 5px;
  }
  
  .contact-details strong {
    min-width: auto;
    display: block;
  }
  
  .social-links {
    justify-content: center;
  }
  
  .contact-map {
    min-height: 300px;
  }
  
  .contact-map iframe {
    min-height: 300px;
  }
}

@media (max-width: 768px) {
  .contact-info {
    padding: 24px;
  }
  
  .contact-info h2 {
    font-size: 26px;
  }
  
  .contact-details div {
    font-size: 14px;
  }
}

/* ========== FOOTER ========== */
.footer {
  background: var(--deep-navy);
  color: #ccc;
  padding: 50px 0 20px;
}
.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-logo .logo .logo-text, .footer-logo .logo-sub {
  color: white;
}
.footer-links h4 {
  color: white;
  margin-bottom: 20px;
}
.footer-links ul {
  list-style: none;
}
.footer-links li {
  margin-bottom: 12px;
}
.footer-links a {
  color: #bbb;
  text-decoration: none;
}
.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 14px;
}
.footer-bottom a {
  color: white;
}

/* ========== SCROLL TO TOP BUTTON ========== */
#scrollTopBtn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  background: var(--bright-orange);
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  z-index: 99;
  box-shadow: var(--shadow-md);
}
#scrollTopBtn.show {
  opacity: 1;
  visibility: visible;
}
#scrollTopBtn:hover {
  background: var(--strong-red);
  transform: translateY(-3px);
}

/* ========== WHATSAPP FLOATING BUTTON ========== */
.whatsapp-float {
  position: fixed;
  bottom: 100px;
  right: 30px;
  background: #25D366;
  color: white;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  z-index: 99;
  transition: all 0.3s;
   text-decoration: none;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  background: #128C7E;
  color: white;
}

/* ========== RESPONSIVE BREAKPOINTS ========== */
/* Tablet and small desktop */
@media (max-width: 1100px) {
  .hero-container {
    gap: 40px;
  }
  h1 {
    font-size: 42px;
  }
}

/* Tablet */
@media (max-width: 992px) {
  main {
    padding-top: 70px;
  }
  .nav-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 80%;
    height: calc(100vh - 70px);
    background: white;
    box-shadow: var(--shadow-md);
    transition: 0.3s ease;
    z-index: 999;
    padding: 40px 20px;
  }
  .nav-menu.open {
    left: 0;
  }
  .nav-list {
    flex-direction: column;
    gap: 20px;
  }
  .mobile-toggle {
    display: flex;
  }
  .header-actions .btn-outline {
    display: none;
  }
  .hero-container,
  .about-container,
  .quote-wrapper,
  .contact-grid,
  .footer-content {
    grid-template-columns: 1fr;
  }
  .hero-container {
    gap: 40px;
  }
  .hero-content {
    text-align: center;
  }
  .hero-stats {
    justify-content: center;
  }
  .hero-btns {
    justify-content: center;
  }
  h1 {
    font-size: 36px;
  }
  .map-placeholder {
    height: 280px;
  }
  .map-placeholder i {
    font-size: 80px;
  }

  .footer-content {
    gap: 30px;
    text-align: center;
  }
  .footer-logo .logo {
    justify-content: center;
  }
}

/* Mobile landscape & portrait */
@media (max-width: 768px) {
  .container {
    padding: 0 18px;
  }
  .hero {
    min-height: auto;
    padding: 40px 0;
  }
  .hero-stats {
    gap: 20px;
  }
  .hero-stats strong {
    font-size: 22px;
  }
  .card-image-wrapper {
    height: 180px;
  }
  .card-quote {
    font-size: 13px;
  }
  .card-stats-mini span {
    font-size: 14px;
  }
  .section-header h2 {
    font-size: 28px;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .about-features {
    grid-template-columns: 1fr;
  }
  .about-stats {
    justify-content: space-around;
  }
  .stat-number {
    font-size: 32px;
  }
  .coverage-list div {
    font-size: 12px;
    padding: 5px 12px;
  }
  .contact-details div {
    font-size: 14px;
  }
  .whatsapp-float {
    width: 45px;
    height: 45px;
    font-size: 22px;
    bottom: 85px;
    right: 20px;
  }
  #scrollTopBtn {
    width: 42px;
    height: 42px;
    bottom: 20px;
    right: 20px;
  }
}

/* Small mobile */
@media (max-width: 480px) {
  h1 {
    font-size: 28px;
  }
  .hero-badge {
    font-size: 12px;
  }
  .hero-btns .btn-primary,
  .hero-btns .btn-outline-light {
    padding: 10px 20px;
    font-size: 14px;
  }
  .live-badge, .rating {
    font-size: 10px;
  }
  .card-stats-mini div {
    font-size: 10px;
  }
  .card-stats-mini span {
    font-size: 12px;
  }
  .section-header h2 {
    font-size: 24px;
  }
 
  .contact-map iframe {
    height: 220px;
  }
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

/* Disable custom cursor on touch devices */
@media (pointer: coarse) {
  .cursor, .cursor-follower {
    display: none;
  }
}