/* ============================================
   PIGEON SAFETY NETS BANGALORE - MAIN STYLES
   ============================================ */

/* --- CSS Variables --- */
:root {
  --primary: #1565c0;
  --primary-dark: #0d47a1;
  --primary-light: #1976d2;
  --accent: #f57c00;
  --accent-dark: #e65100;
  --accent-light: #ff9800;
  --dark: #1a1a2e;
  --dark-alt: #16213e;
  --gray: #6c757d;
  --light-gray: #f8f9fa;
  --white: #ffffff;
  --success: #2e7d32;
  --text: #333333;
  --text-light: #555555;
  --border: #dee2e6;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.18);
  --radius: 10px;
  --radius-lg: 16px;
  --transition: all 0.3s ease;
  --font-main: 'Poppins', sans-serif;
}

/* --- Base Reset --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-main);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.3;
  color: var(--dark);
}

h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }

p { color: var(--text-light); margin-bottom: 1rem; }

/* --- Section Spacing --- */
section { padding: 80px 0; }

.section-badge {
  display: inline-block;
  background: rgba(21, 101, 192, 0.1);
  color: var(--primary);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 16px;
}

.section-title span {
  color: var(--primary);
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto 40px;
}

.section-divider {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 2px;
  margin: 12px auto 20px;
}

/* ============================================
   TOP BAR
   ============================================ */
.top-bar {
  background: var(--dark);
  color: rgba(255,255,255,0.85);
  font-size: 0.83rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.top-bar a {
  color: rgba(255,255,255,0.85);
  transition: color 0.2s;
}

.top-bar a:hover {
  color: var(--accent-light);
}

.top-bar .top-contact a {
  margin-right: 18px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.top-bar .top-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  margin-left: 6px;
  font-size: 0.8rem;
  transition: background 0.2s;
}

.top-bar .top-social a:hover {
  background: var(--primary-light);
  color: white;
}

/* ============================================
   NAVBAR
   ============================================ */
.main-navbar {
  background: var(--white);
  box-shadow: 0 2px 15px rgba(0,0,0,0.08);
  padding: 0;
  transition: var(--transition);
  position: sticky;
  top: 0;
  z-index: 1030;
}

.main-navbar.scrolled {
  box-shadow: 0 4px 25px rgba(0,0,0,0.15);
}

.navbar-brand .brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-icon {
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.3rem;
}

.brand-text .brand-name {
  display: block;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.2;
  letter-spacing: -0.3px;
}

.brand-text .brand-tagline {
  display: block;
  font-size: 0.68rem;
  color: var(--accent);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.main-navbar .nav-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dark) !important;
  padding: 28px 14px !important;
  transition: color 0.2s;
  position: relative;
}

.main-navbar .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: var(--primary);
  border-radius: 2px 2px 0 0;
  transition: width 0.3s ease;
}

.main-navbar .nav-link:hover::after,
.main-navbar .nav-link.active::after {
  width: 80%;
}

.main-navbar .nav-link:hover,
.main-navbar .nav-link.active {
  color: var(--primary) !important;
}

/* Dropdown */
.main-navbar .dropdown-menu {
  border: none;
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
  border-radius: var(--radius);
  padding: 10px 0;
  min-width: 240px;
  margin-top: 0;
  animation: dropFade 0.2s ease;
}

@keyframes dropFade {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.main-navbar .dropdown-item {
  font-size: 0.87rem;
  font-weight: 500;
  color: var(--text);
  padding: 9px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: background 0.2s, color 0.2s;
}

.main-navbar .dropdown-item i {
  width: 20px;
  color: var(--primary);
  font-size: 0.85rem;
}

.main-navbar .dropdown-item:hover {
  background: rgba(21, 101, 192, 0.06);
  color: var(--primary);
  padding-left: 26px;
}

.nav-cta {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark)) !important;
  color: white !important;
  padding: 8px 16px !important;
  border-radius: 12px !important;
  font-size: 0.92rem;
  font-weight: 600 !important;
  margin-left: 6px;
  box-shadow: 0 3px 10px rgba(245, 124, 0, 0.24);
}

.nav-cta::after { display: none !important; }
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 5px 14px rgba(245, 124, 0, 0.3) !important; color: white !important; }

/* ============================================
   HERO SLIDER
   ============================================ */
.hero-section {
  position: relative;
  overflow: hidden;
}

.hero-slide {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.62) 0%, rgba(0, 0, 0, 0.48) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: white;
}

.hero-slide-1 .hero-content {
  padding: 56px 0 36px;
  margin-left: 6px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  color: white;
  padding: 7px 18px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
  border: 1px solid rgba(255,255,255,0.25);
  animation: fadeInDown 0.7s ease;
}

.hero-badge i { color: var(--accent-light); }

.hero-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  color: white;
  line-height: 1.2;
  margin-bottom: 20px;
  animation: fadeInLeft 0.8s ease 0.1s both;
}

.hero-title span {
  color: var(--accent-light);
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.88);
  margin-bottom: 32px;
  max-width: 580px;
  animation: fadeInLeft 0.8s ease 0.2s both;
}

.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.3s both;
}

.btn-hero-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: white;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 6px 20px rgba(245, 124, 0, 0.45);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.btn-hero-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(245, 124, 0, 0.55);
  color: white;
}

.btn-hero-secondary {
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  color: white;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 2px solid rgba(255,255,255,0.4);
  cursor: pointer;
  transition: var(--transition);
}

.btn-hero-secondary:hover {
  background: rgba(255,255,255,0.25);
  color: white;
  transform: translateY(-2px);
}

.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 48px;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-stat {
  text-align: center;
  color: white;
}

.hero-stat .stat-number {
  font-size: 2rem;
  font-weight: 900;
  color: var(--accent-light);
  line-height: 1;
  display: block;
}

.hero-stat .stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.75);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-top: 4px;
}

/* Hero Slider Controls */
.hero-section .carousel-control-prev,
.hero-section .carousel-control-next {
  width: 50px;
  height: 50px;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(8px);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
}

.hero-section .carousel-control-prev { left: 20px; }
.hero-section .carousel-control-next { right: 20px; }

.hero-section .carousel-indicators {
  bottom: 20px;
}

.hero-section .carousel-indicators [data-bs-target] {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.6);
  border: none;
  margin: 0 5px;
}

.hero-section .carousel-indicators .active {
  background: var(--accent-light);
  width: 28px;
  border-radius: 5px;
}

/* ============================================
   TRUST BAR
   ============================================ */
.trust-bar {
  background: var(--primary);
  padding: 18px 0;
}

.trust-bar .trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: white;
  justify-content: center;
}

.trust-bar .trust-item i {
  font-size: 1.6rem;
  color: var(--accent-light);
  flex-shrink: 0;
}

.trust-bar .trust-item h6 {
  color: white;
  font-size: 0.95rem;
  font-weight: 700;
  margin: 0;
}

.trust-bar .trust-item p {
  color: rgba(255,255,255,0.78);
  font-size: 0.8rem;
  margin: 0;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section {
  background: var(--white);
}

.about-img-wrap {
  position: relative;
}

.about-img-wrap img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-hover);
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.about-badge-box {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--primary);
  color: white;
  padding: 20px 24px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow);
}

.about-badge-box span:first-child {
  font-size: 2.2rem;
  font-weight: 900;
  display: block;
  line-height: 1;
  color: var(--accent-light);
}

.about-badge-box span:last-child {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: rgba(255,255,255,0.85);
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 28px;
}

.about-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--light-gray);
  padding: 12px 16px;
  border-radius: 8px;
}

.about-feature-item i {
  color: var(--primary);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.about-feature-item span {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--dark);
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services-section {
  background: var(--light-gray);
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.service-card-img {
  position: relative;
  overflow: hidden;
  height: 220px;
}

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.service-card:hover .service-card-img img {
  transform: scale(1.06);
}

.service-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(13,71,161,0.6) 0%, transparent 60%);
}

.service-card-body {
  padding: 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-card-body h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--dark);
}

.service-card-body p {
  font-size: 0.88rem;
  color: var(--text-light);
  flex: 1;
  margin-bottom: 16px;
}

.btn-read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-weight: 700;
  font-size: 0.88rem;
  transition: gap 0.2s;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

.btn-read-more:hover {
  gap: 12px;
  color: var(--primary-dark);
}

/* ============================================
   WHY CHOOSE US
   ============================================ */
.why-us-section {
  background: var(--white);
}

.why-us-img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-hover);
  height: 500px;
  object-fit: cover;
  width: 100%;
}

.why-item {
  display: flex;
  gap: 18px;
  margin-bottom: 28px;
  align-items: flex-start;
}

.why-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(21, 101, 192, 0.3);
}

.why-text h5 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.why-text p {
  font-size: 0.88rem;
  color: var(--text-light);
  margin: 0;
}

/* ============================================
   FEATURES / BENEFITS
   ============================================ */
.features-section {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--dark) 100%);
  position: relative;
  overflow: hidden;
}

.features-section::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
}

.features-section::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255,255,255,0.03);
}

.features-section .section-badge {
  background: rgba(255,255,255,0.1);
  color: var(--accent-light);
  border: 1px solid rgba(255,255,255,0.15);
}

.features-section .section-title,
.features-section .section-subtitle,
.features-section h2 {
  color: white;
}

.features-section .section-subtitle {
   color: rgba(255,255,255,0.75);
}

.feature-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 30px 24px;
  text-align: center;
  transition: var(--transition);
  height: 100%;
  position: relative;
  z-index: 1;
}

.feature-card:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-5px);
  border-color: rgba(255,255,255,0.2);
}

.feature-card-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.4rem;
  margin: 0 auto 18px;
  box-shadow: 0 6px 18px rgba(245, 124, 0, 0.35);
}

.feature-card h5 {
  color: white;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.feature-card p {
  color: rgba(255,255,255,0.72);
  font-size: 0.88rem;
  margin: 0;
}

/* ============================================
   COUNTER SECTION
   ============================================ */
.counter-section {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  padding: 60px 0;
}

.counter-item {
  text-align: center;
  color: white;
}

.counter-item .count-number {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 900;
  display: block;
  line-height: 1;
  color: white;
}

.counter-item .count-plus {
  color: rgba(255,255,255,0.75);
}

.counter-item .count-label {
  font-size: 1rem;
  color: rgba(255,255,255,0.85);
  font-weight: 600;
  margin-top: 8px;
  display: block;
}

.counter-divider {
  width: 1px;
  height: 60px;
  background: rgba(255,255,255,0.3);
  margin: auto;
}

/* ============================================
   GALLERY SECTION
   ============================================ */
.gallery-section {
  background: var(--light-gray);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  height: 240px;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(13,71,161,0.75) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay i {
  color: white;
  font-size: 2rem;
  transform: scale(0);
  transition: transform 0.3s;
}

.gallery-item:hover .gallery-overlay i {
  transform: scale(1);
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-section {
  background: var(--white);
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  height: 100%;
  transition: var(--transition);
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 16px;
  right: 24px;
  font-size: 5rem;
  color: var(--primary);
  opacity: 0.08;
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

.stars {
  color: #ffc107;
  font-size: 0.95rem;
  margin-bottom: 14px;
}

.testimonial-text {
  font-size: 0.92rem;
  color: var(--text-light);
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 20px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.author-info h6 {
  font-size: 0.95rem;
  font-weight: 700;
  margin: 0;
  color: var(--dark);
}

.author-info span {
  font-size: 0.78rem;
  color: var(--gray);
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: 80px 0;
  text-align: center;
}

.cta-section h2 {
  color: white;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: 16px;
}

.cta-section p {
  color: rgba(255,255,255,0.82);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 36px;
}

.btn-cta-white {
  background: white;
  color: var(--primary);
  padding: 14px 34px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
  transition: var(--transition);
  border: none;
  cursor: pointer;
}

.btn-cta-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
  color: var(--primary-dark);
}

.btn-cta-outline {
  background: transparent;
  color: white;
  padding: 14px 34px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 2px solid rgba(255,255,255,0.5);
  transition: var(--transition);
  cursor: pointer;
  margin-left: 16px;
}

.btn-cta-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: white;
  color: white;
  transform: translateY(-2px);
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-section {
  background: var(--light-gray);
}

.contact-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow);
}

.contact-info-box {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: var(--radius-lg);
  padding: 36px;
  color: white;
  height: 100%;
}

.contact-info-box h3 {
  color: white;
  margin-bottom: 8px;
}

.contact-info-box p {
  color: rgba(255,255,255,0.78);
  margin-bottom: 28px;
}

.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 22px;
}

.contact-info-icon {
  width: 46px;
  height: 46px;
  background: rgba(255,255,255,0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-light);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-info-text h6 {
  color: white;
  font-size: 0.9rem;
  font-weight: 700;
  margin: 0 0 4px;
}

.contact-info-text p, 
.contact-info-text a {
  color: rgba(255,255,255,0.8);
  font-size: 0.88rem;
  margin: 0;
}

.contact-info-text a:hover {
  color: var(--accent-light);
}

.form-control, .form-select {
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 0.9rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-control:focus, .form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(21, 101, 192, 0.12);
  outline: none;
}

.form-label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 6px;
}

.btn-submit {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  padding: 13px 34px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  width: 100%;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(21, 101, 192, 0.4);
}

/* ============================================
   MAP SECTION
   ============================================ */
.map-section {
  padding: 0;
}

.map-section iframe {
  width: 100%;
  height: 380px;
  border: none;
  display: block;
}

/* ============================================
   FOOTER
   ============================================ */
.main-footer {
  background: var(--dark);
  padding: 70px 0 0;
}

.footer-brand .brand-name-footer {
  font-size: 1.3rem;
  font-weight: 800;
  color: white;
  display: block;
  margin-bottom: 4px;
}

.footer-brand .footer-tagline {
  font-size: 0.8rem;
  color: var(--accent-light);
  font-style: italic;
}

.footer-brand p {
  color: rgba(255,255,255,0.65);
  font-size: 0.88rem;
  margin: 16px 0;
}

.footer-social {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.75);
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-2px);
}

.footer-heading {
  color: white;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(255,255,255,0.1);
  position: relative;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--primary);
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(255,255,255,0.65);
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.footer-links a i {
  font-size: 0.7rem;
  color: var(--primary-light);
}

.footer-links a:hover {
  color: var(--accent-light);
  padding-left: 4px;
}

.footer-contact-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 16px;
  color: rgba(255,255,255,0.65);
  font-size: 0.88rem;
}

.footer-contact-item i {
  color: var(--primary-light);
  font-size: 1rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.footer-contact-item a {
  color: rgba(255,255,255,0.75);
  display: block;
}

.footer-contact-item a:hover {
  color: var(--accent-light);
}

.footer-bottom {
  background: rgba(0,0,0,0.35);
  margin-top: 50px;
  padding: 18px 0;
  text-align: center;
  color: rgba(255,255,255,0.5);
  font-size: 0.83rem;
}

.footer-bottom a {
  color: var(--primary-light);
}

.footer-bottom a:hover {
  color: var(--accent-light);
}

/* ============================================
   WHATSAPP FLOATING BUTTON
   ============================================ */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 58px;
  height: 58px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.6rem;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
  z-index: 1050;
  transition: var(--transition);
  border: 3px solid white;
  animation: whatsapp-pulse 2.5s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.65);
  color: white;
}

@keyframes whatsapp-pulse {
  0%, 100% { box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5); }
  50% { box-shadow: 0 6px 30px rgba(37, 211, 102, 0.8), 0 0 0 12px rgba(37, 211, 102, 0.12); }
}

.call-float {
  position: fixed;
  bottom: 28px;
  left: 28px;
  width: 58px;
  height: 58px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  border-radius: 50%;
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(21, 101, 192, 0.45);
  border: 3px solid white;
  z-index: 1050;
  transition: var(--transition);
  animation: call-pulse 2.5s infinite 1.25s;
}

.call-float:hover {
  transform: scale(1.05);
  color: white;
  box-shadow: 0 10px 28px rgba(21, 101, 192, 0.6);
}

@keyframes call-pulse {
  0%, 100% { box-shadow: 0 6px 20px rgba(21, 101, 192, 0.45); }
  50% { box-shadow: 0 6px 28px rgba(21, 101, 192, 0.7), 0 0 0 12px rgba(21, 101, 192, 0.1); }
}

/* ============================================
   PAGE HERO (INNER PAGES)
   ============================================ */
.page-hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--dark) 100%);
  padding: 70px 0 50px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
}

.page-hero h1 {
  color: white;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 10px;
}

.page-hero p {
  color: rgba(255,255,255,0.78);
  font-size: 1.05rem;
  margin: 0;
}

.breadcrumb {
  background: none;
  padding: 0;
  margin-bottom: 16px;
}

.breadcrumb-item { font-size: 0.88rem; }
.breadcrumb-item a { color: var(--accent-light); }
.breadcrumb-item.active { color: rgba(255,255,255,0.7); }
.breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.4); }

/* ============================================
   SERVICE PAGE STYLES
   ============================================ */
.service-overview-section {
  background: var(--white);
}

.service-benefits-section {
  background: var(--light-gray);
}

.benefit-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 22px;
}

.benefit-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.benefit-text h5 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.benefit-text p {
  font-size: 0.88rem;
  margin: 0;
  color: var(--text-light);
}

/* Process Steps */
.process-section {
  background: var(--white);
}

.process-step {
  text-align: center;
  position: relative;
  padding: 0 15px;
}

.step-number {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  font-weight: 900;
  margin: 0 auto 16px;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 16px rgba(21, 101, 192, 0.35);
}

.process-step::after {
  content: '';
  position: absolute;
  top: 32px;
  left: calc(50% + 40px);
  width: calc(100% - 80px);
  height: 2px;
  background: linear-gradient(90deg, var(--primary-light), transparent);
}

.process-step:last-child::after { display: none; }

.process-step h5 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.process-step p {
  font-size: 0.85rem;
  color: var(--text-light);
}

/* FAQ Section */
.faq-section {
  background: var(--light-gray);
}

.accordion-item {
  border: 1px solid var(--border) !important;
  margin-bottom: 10px;
  border-radius: var(--radius) !important;
  overflow: hidden;
}

.accordion-button {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--dark);
  background: var(--white);
  padding: 18px 22px;
}

.accordion-button:not(.collapsed) {
  background: var(--light-gray);
  color: var(--primary);
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: none;
  border-color: var(--primary);
}

.accordion-body {
  font-size: 0.9rem;
  color: var(--text-light);
  padding: 16px 22px;
  background: var(--white);
}

/* ============================================
   LOCATIONS PAGE
   ============================================ */
.location-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border-left: 4px solid var(--primary);
  height: 100%;
}

.location-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.location-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.location-card h3 i {
  color: var(--primary);
  font-size: 1rem;
}

.location-card p {
  font-size: 0.88rem;
  color: var(--text-light);
  margin-bottom: 16px;
}

.location-services {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.location-tag {
  background: rgba(21, 101, 192, 0.08);
  color: var(--primary);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
}

/* ============================================
   BLOG PAGE
   ============================================ */
.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  height: 100%;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.blog-card-img {
  height: 200px;
  overflow: hidden;
}

.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.blog-card:hover .blog-card-img img {
  transform: scale(1.06);
}

.blog-card-body {
  padding: 22px;
}

.blog-meta {
  display: flex;
  gap: 16px;
  font-size: 0.78rem;
  color: var(--gray);
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.blog-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.blog-meta i { color: var(--primary); }

.blog-card-body h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--dark);
}

.blog-card-body p {
  font-size: 0.88rem;
  color: var(--text-light);
  margin-bottom: 16px;
}

.blog-tag {
  display: inline-block;
  background: rgba(21, 101, 192, 0.08);
  color: var(--primary);
  padding: 3px 12px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 10px;
}

/* ============================================
   GALLERY PAGE
   ============================================ */
.gallery-filter {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 36px;
}

.filter-btn {
  background: var(--white);
  color: var(--text);
  border: 2px solid var(--border);
  padding: 8px 22px;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delays */
.animate-delay-1 { transition-delay: 0.1s; }
.animate-delay-2 { transition-delay: 0.2s; }
.animate-delay-3 { transition-delay: 0.3s; }
.animate-delay-4 { transition-delay: 0.4s; }
.animate-delay-5 { transition-delay: 0.5s; }

/* ============================================
   SCROLL TO TOP BUTTON
   ============================================ */
.scroll-top {
  position: fixed;
  bottom: 100px;
  right: 28px;
  width: 42px;
  height: 42px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  z-index: 1040;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  box-shadow: 0 4px 12px rgba(21, 101, 192, 0.4);
  border: none;
  cursor: pointer;
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

/* ============================================
   UTILITIES
   ============================================ */
.text-primary-custom { color: var(--primary) !important; }
.text-accent { color: var(--accent) !important; }
.bg-primary-custom { background: var(--primary) !important; }
.bg-accent { background: var(--accent) !important; }

.btn-primary-custom {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  padding: 11px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.92rem;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-primary-custom:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(21, 101, 192, 0.4);
  color: white;
}

.btn-accent-custom {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: white;
  padding: 11px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.92rem;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-accent-custom:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(245, 124, 0, 0.4);
  color: white;
}

.card-highlight {
  border: 2px solid var(--primary) !important;
  position: relative;
}

.card-highlight::before {
  content: 'Popular';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: white;
  padding: 2px 14px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 991.98px) {
  .main-navbar .nav-link {
    padding: 12px 0 !important;
  }
  
  .main-navbar .nav-link::after { display: none; }
  
  .hero-slide { min-height: 75vh; }
  
  .about-badge-box {
    position: static;
    display: inline-block;
    margin-top: 16px;
  }
  
  .about-img-wrap img { height: 360px; }
  
  .counter-divider { display: none; }
  
  section { padding: 60px 0; }
  
  .process-step::after { display: none; }
}

@media (max-width: 767.98px) {
  .top-bar { display: none; }
  
  .hero-slide { min-height: 85vh; }
  
  .hero-stats { gap: 20px; }
  
  .trust-bar .trust-item { margin-bottom: 12px; }
  
  .about-features { grid-template-columns: 1fr; }
  
  .hero-section .carousel-control-prev,
  .hero-section .carousel-control-next { display: none; }
  
  .footer-bottom { text-align: center; }
  
  .btn-cta-outline { margin-left: 0; margin-top: 12px; }
  
  .call-float span { display: none; }
  
  .gallery-grid { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); }
  
  .contact-card { padding: 24px; }
  .contact-info-box { padding: 24px; }

  .hero-slide-1 .hero-content {
    padding: 44px 0 24px;
    margin-left: 0;
  }
}

@media (max-width: 575.98px) {
  h1 { font-size: 1.7rem; }
  h2 { font-size: 1.5rem; }
  
  .hero-title { font-size: 1.8rem; }
  
  .hero-cta { flex-direction: column; }
  .btn-hero-primary, .btn-hero-secondary { width: 100%; justify-content: center; }
  
  .hero-stats .hero-stat { flex: 1; min-width: 80px; }
  
  .section-title { font-size: 1.5rem; }
}

/* ============================================
   LIGHTBOX OVERLAY
   ============================================ */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
}

.lightbox-overlay.active {
  display: flex;
}

.lightbox-overlay img {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  background: rgba(255,255,255,0.1);
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.lightbox-close:hover { background: rgba(255,255,255,0.25); }

/* ============================================
   PRELOADER
   ============================================ */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--dark);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s, visibility 0.5s;
}

#preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.preloader-inner {
  text-align: center;
}

.preloader-logo {
  color: white;
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 20px;
}

.preloader-logo span { color: var(--accent-light); }

.spinner-ring {
  width: 50px;
  height: 50px;
  border: 4px solid rgba(255,255,255,0.15);
  border-top-color: var(--primary-light);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 0 auto;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}
