/* ====================================================
   GLOBAL CONFIGURATION
=================================================== */
/* Developed with ❤️ by Mohd Ahmad (Buddy) - 2026 */
:root {
  --primary-midnight: #0B1B3D;
  --surface-offwhite: #F8F9FA;
  --surface-white: #FFFFFF;
  --text-darkgray: #4B5563;
  --gradient-accent: linear-gradient(135deg, #FF3366 0%, #FF9933 100%);
  --shadow-airy: 0 20px 40px -10px rgba(255, 51, 102, 0.15);
  --shadow-base: 0 10px 30px rgba(0, 0, 0, 0.05);
  /* Neumorphic Soft Layered Depths */
  --shadow-neumorphic: 0 4px 6px -1px rgba(0, 0, 0, 0.03),
    0 10px 15px -3px rgba(0, 0, 0, 0.03),
    0 20px 25px -5px rgba(0, 0, 0, 0.02),
    0 25px 50px -12px rgba(11, 27, 61, 0.08);
  --border-subtle: 1px solid #E5E7EB;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: var(--surface-offwhite);
  color: var(--text-darkgray);
  overflow-x: hidden;
  line-height: 1.6;
}

/* ====================================================
   LAYOUT & TYPOGRAPHY
=================================================== */
.container-1200 {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.text-center {
  text-align: center;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.w-100 {
  width: 100%;
}

.mt-4 {
  margin-top: 1.5rem;
}

.mb-4 {
  margin-bottom: 1.5rem;
}

.gradient-text {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  font-weight: 600;
}

h1 {
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--primary-midnight);
}

h2 {
  font-size: 2.25rem;
  line-height: 1.25;
  margin-bottom: 1.5rem;
  color: var(--primary-midnight);
}

h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--primary-midnight);
}

.lead-text {
  font-size: 1.125rem;
  color: var(--text-darkgray);
  margin-bottom: 1.5rem;
  max-width: 700px;
}

.text-accent {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}


/* ====================================================
   HEADER & NAVIGATION
=================================================== */
.glass-header {
  position: sticky;
  top: 0;
  width: 100%;
  padding: 1.25rem 4vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(248, 249, 250, 0.85);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-bottom: var(--border-subtle);
  z-index: 1000;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-icon,
.logo-text {
  height: 40px;
  width: auto;
}

nav {
  display: flex;
  align-items: center;
}

nav a {
  margin-left: 1.5rem;
  text-decoration: none;
  font-size: 0.825rem;
  font-weight: 600;
  color: var(--primary-midnight);
  position: relative;
  transition: color 0.3s ease;
  letter-spacing: 0.5px;
}

nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 2px;
  background: var(--gradient-accent);
  transition: width 0.3s ease;
}

/* Skip line-animation for the contact button */
nav a.nav-contact-btn::after {
  display: none;
}

nav a:hover,
nav a.active {
  color: #FF3366;
}

nav a:hover::after,
nav a.active::after {
  width: 100%;
}

/* PREMIUM NAV CONTACT BUTTON */
.nav-contact-btn {
  background: var(--gradient-accent);
  color: #FFFFFF !important;
  padding: 10px 24px !important;
  border-radius: 30px;
  transition: all 0.3s ease !important;
  margin-left: 2rem !important;
  display: inline-block;
  box-shadow: 0 4px 15px rgba(255, 51, 102, 0.15);
}

.nav-contact-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 51, 102, 0.3);
  background: linear-gradient(135deg, #FF4D79 0%, #FFA64D 100%);
}

.nav-contact-btn.active {
  box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* GLOBAL SPACING RESET & AUDIT */
section,
main {
  padding: 20px 0;
  overflow: hidden;
}

.hero-section {
  padding: 0;
}

/* PREMIUM UNIFIED BUTTON */
.btn-premium {
  background: linear-gradient(135deg, #FF3366 0%, #FF9933 100%);
  color: #fff !important;
  padding: 14px 32px;
  border-radius: 30px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
  text-align: center;
  text-decoration: none;
  font-size: 0.95rem;
  box-shadow: 0 4px 15px rgba(255, 51, 102, 0.15);
}

.btn-premium:hover {
  box-shadow: 0 10px 20px rgba(255, 51, 102, 0.25);
  transform: translateY(-3px);
  background: linear-gradient(135deg, #FF4D79 0%, #FFA64D 100%);
}

/* HERO BADGE STYLE */
.hero-badge {
  background: rgba(255, 51, 102, 0.1);
  color: #FF3366;
  padding: 6px 16px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-block;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 51, 102, 0.2);
  backdrop-filter: blur(10px);
}

.hero-content p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 500px;
  line-height: 1.6;
  margin-bottom: 30px;
}

/* ====================================================
   DYNAMIC 50/50 SPLIT-LAYOUT HERO
=================================================== */
/* ====================================================
   MODERN LAYERED HERO SECTION
=================================================== */
.hero-section {
  position: relative !important;
  width: 100%;
  overflow: hidden !important;
  background: var(--primary-midnight);
  display: flex !important;
  align-items: center !important;
  padding: 100px 0 80px !important;
  min-height: 100vh !important;
}

/* Layer 1: Backgrounds */
.slider-bg-container {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.bg-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  z-index: 1;
  display: block !important;
}

.bg-slide.active {
  opacity: 1 !important;
}

/* Layer 2: Content Grid */
.hero-content-grid {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  width: 100%;
}

/* Left Column: Text Stacking Trick */
.text-slider-container {
  display: grid;
  width: 100%;
  padding: 20px 0;
}
.text-slide {
  grid-column: 1;
  grid-row: 1;
  opacity: 0;
  transition: opacity 0.8s ease-in-out, transform 0.8s ease-out;
  pointer-events: none;
  transform: translateY(20px);
  color: #0B1B3D !important;
}

.text-slide.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.text-slider-container h1,
.text-slider-container .slide-title {
  color: #0B1B3D !important;
  text-shadow: none !important;
  filter: none !important;
}

.text-slide p {
  font-size: 1.15rem;
  color: #0B1B3D !important;
  line-height: 1.8;
  margin-bottom: 2rem;
  text-shadow: none !important;
  font-weight: 400;
}

.left-aligned-dots {
  display: flex;
  gap: 12px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
}

.dot.active {
  background: var(--gradient-accent);
  transform: scale(1.3);
}

.hero-right-glass-form {
  pointer-events: auto;
  background: rgba(15, 23, 42, 0.6) !important;
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.form-title {
  color: #FFFFFF !important;
}

.form-subtitle {
  color: rgba(255, 255, 255, 0.8) !important;
}

.hero-glass-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-main-stack {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.hero-glass-form input,
.hero-glass-form select,
.hero-glass-form textarea {
  width: 100% !important;
  box-sizing: border-box;
  padding: 12px 15px !important;
  border-radius: 8px !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  background: rgba(255, 255, 255, 0.05) !important;
  color: #FFFFFF !important;
  font-family: inherit;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.hero-glass-form input::placeholder,
.hero-glass-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.5) !important;
}

.hero-glass-form input:focus,
.hero-glass-form select:focus,
.hero-glass-form textarea:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.15) !important;
  border-color: #FF3366 !important;
  box-shadow: 0 0 10px rgba(255, 51, 102, 0.2);
}

.side-by-side {
  display: flex;
  gap: 10px;
  width: 100%;
}

.side-by-side input {
  width: 50% !important;
}

.hero-glass-form select option {
  color: var(--primary-midnight);
}

/* Redundant Button cleanup & Final Button style */
#quoteSubmit {
  margin-top: 10px;
}
/* 2. Footer Icons Override (Sirf footer me apply hoga) */
footer [class^="ph-"], 
.footer [class^="ph-"] {
    font-size: 24px !important; /* Yahan apne footer icon ka original size daal do (jaise 20px ya 24px) */
}
@media (max-width: 600px) {
  .side-by-side {
    flex-direction: column;
    gap: 15px;
  }
  .side-by-side input {
    width: 100% !important;
  }
}

.pill-btn {
  background: var(--gradient-accent);
  color: var(--surface-white);
  padding: 1rem 2.8rem;
  border-radius: 50px;
  border: none;
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(255, 51, 102, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

.glowing-hover:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(255, 51, 102, 0.45);
}


/* ====================================================
   NARRATIVE SECTIONS / ABOUT & SERVICES GRID
=================================================== */
.narrative-section {
  padding: 7rem 0;
}

.grid-layout-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.about-grid-col {
  padding-right: 1rem;
}

.services-grid-col {
  padding-left: 1rem;
}

.services-balanced-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

/* Layered Depth Neumorphic Card Hover Logic */
.hover-lift {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

.hover-lift:hover {
  transform: translateY(-6px);
}

.about-neumorphic-card {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  background: var(--surface-white);
  border-radius: 20px;
  padding: 1.8rem;
  border: var(--border-subtle);
  box-shadow: var(--shadow-neumorphic);
}

.about-neumorphic-card .icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--surface-offwhite);
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.02), 0 4px 10px rgba(0, 0, 0, 0.05);
  font-size: 1.75rem;
  color: var(--primary-midnight);
}

.about-neumorphic-card:hover .icon-wrap i {
  color: #FF3366;
  transform: scale(1.1);
  transition: 0.3s ease;
}

.about-neumorphic-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.25rem;
}

.about-neumorphic-card p {
  font-size: 0.95rem;
  line-height: 1.6;
}

.about-neumorphic-card:hover {
  box-shadow: var(--shadow-airy);
}

/* ====================================================
   INFINITE MARQUEE TESTIMONIALS
=================================================== */
.marquee-container {
  overflow: hidden;
  width: 100%;
  padding: 1rem 0 3rem;
  position: relative;
}

.marquee-container::before,
.marquee-container::after {
  content: "";
  position: absolute;
  top: 0;
  width: 100px;
  height: 100%;
  z-index: 2;
}

.marquee-container::before {
  left: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
}

.marquee-container::after {
  right: 0;
  background: linear-gradient(to left, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
}

.marquee-track {
  display: flex;
  gap: 30px;
  white-space: nowrap;
  animation: scroll-left 40s linear infinite;
  padding-left: 30px;
  /* buffer */
  width: max-content;
}

.marquee-track:hover {
  animation-play-state: paused;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.marquee-track .neumorphic-testimonial-card {
  width: 450px;
  white-space: normal;
  flex-shrink: 0;
  text-align: center;
}

/* ====================================================
   MODERN SERVICES SECTION (PREMIUM)
=================================================== */
/* High-End Services Background — Frosted Light Overlay for Readability */
.modern-services-section {
  background: linear-gradient(rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.9)),
    url('https://images.unsplash.com/photo-1581092160562-40aa08e78837?auto=format&fit=crop&q=80&w=1600');
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 1;
  backdrop-filter: blur(15px) saturate(150%);
  -webkit-backdrop-filter: blur(15px) saturate(150%);
  color: #0B1B3D !important;
}

.modern-services-section h1,
.modern-services-section p {
  color: #0B1B3D !important;
}

.services-premium-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.service-card-premium {
  background: #FFFFFF;
  border-radius: 20px;
  padding: 40px 30px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

/* Animated Top Border */
.service-card-premium::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 4px;
  width: 100%;
  background: linear-gradient(135deg, #FF3366 0%, #FF9933 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.service-card-premium:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 40px -10px rgba(255, 51, 102, 0.15);
}

.service-card-premium:hover::before {
  transform: scaleX(1);
}

.service-icon-wrapper {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255, 51, 102, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  transition: background 0.3s ease;
}

.service-card-premium:hover .service-icon-wrapper {
  background: rgba(255, 51, 102, 0.15);
}

.service-icon-wrapper i {
  font-size: 28px;
  color: #FF3366;
  /* Phosphor icon stroke color */
}

.service-card-premium h3 {
  font-size: 1.4rem;
  color: var(--primary-midnight);
  margin-bottom: 15px;
  font-weight: 600;
}

.service-card-premium p {
  color: #6B7280;
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Responsive Overrides */
@media (max-width: 900px) {
  .services-premium-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {

  .services-premium-grid {
    grid-template-columns: 1fr;
  }
}

/* ====================================================
   STACKED TESTIMONIALS LAYOUT
=================================================== */
.stacked-testimonials-layout {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.neumorphic-testimonial-card {
  background: var(--surface-offwhite);
  border-radius: 20px;
  padding: 2.5rem;
  border: var(--border-subtle);
  box-shadow: var(--shadow-neumorphic);
  position: relative;
  text-align: center;
}

.neumorphic-testimonial-card i {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: inline-block;
  opacity: 0.6;
}

.neumorphic-testimonial-card p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-darkgray);
  margin-bottom: 1.5rem;
  font-style: italic;
}

.highlight-author {
  display: block;
  font-weight: 600;
  font-size: 1rem;
  color: var(--primary-midnight);
}


/* ====================================================
   FOOTER (4-COLUMN CONSOLIDATED)
=================================================== */
.premium-footer {
  background: linear-gradient(rgba(11, 27, 61, 0.95), rgba(11, 27, 61, 0.95)),
    url('https://images.unsplash.com/photo-1598301257982-0cf014dabbcd?auto=format&fit=crop&q=80&w=1600');
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  color: #9CA3AF;
  border-top: 4px solid transparent;
  border-image: var(--gradient-accent) 1;
  padding: 5rem 0 0;
  font-size: 0.95rem;
  position: relative;
}

.footer-grid-4 {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr 1fr;
  gap: 40px;
}

.footer-col h3 {
  color: #F8F9FA;
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

.footer-col h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 30px;
  height: 2px;
  background: var(--gradient-accent);
}

.brand-col p {
  line-height: 1.6;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  color: #9CA3AF;
  font-size: 1.25rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-icon:hover {
  background: var(--gradient-accent);
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(255, 51, 102, 0.3);
}

/* BRAND SPECIFIC FOOTER SOCIAL LINKS */
.footer-social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.footer-social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  text-decoration: none;
  background: rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.footer-social-icon:hover {
  background: var(--gradient-accent);
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 51, 102, 0.3);
}


.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: #9CA3AF;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: #FF3366;
  transform: translateX(4px);
}

.contact-col p {
  margin-bottom: 1rem;
  line-height: 1.7;
}

.contact-col strong {
  color: #F8F9FA;
}

.phone-link {
  color: #FF3366;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.phone-link:hover {
  color: #FF9933;
}

/* The blended Map Logic */
.blended-map-container {
  width: 100%;
  height: 200px;
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  /* Blend logic */
  mix-blend-mode: luminosity;
  opacity: 0.8;
  transition: opacity 0.4s ease, mix-blend-mode 0.4s ease;
}

.blended-map-container:hover {
  opacity: 1;
  mix-blend-mode: normal;
}

.blended-map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 1.5rem 0;
  color: #9CA3AF;
  font-size: 0.85rem;
}

.footer-bottom-content {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  flex-wrap: wrap !important;
  gap: 15px;
}

@media (max-width: 768px) {
  .footer-bottom-content {
    justify-content: center !important;
    text-align: center !important;
    flex-direction: column !important;
  }
}

.agency-link {
  color: #FF3366;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
  margin-left: 5px;
}

.agency-link:hover {
  color: #FF9933;
  text-decoration: underline;
}

/* ====================================================
   PERSISTENT MODAL & FORMS
=================================================== */
/* ====================================================
   GLOBAL QUOTE MODAL (GLASSMORPHISM & ANIMATED)
=================================================== */
.quote-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 10000;
  display: none; /* Controlled by JS */
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: fadeIn 0.4s ease-out;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.quote-modal-box {
  background: var(--surface-white);
  width: 100%;
  max-width: 500px;
  border-radius: 24px;
  padding: 40px;
  position: relative;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
  animation: modalZoom 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

@keyframes modalZoom {
  from { transform: scale(0.8); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.modal-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 24px;
  color: var(--text-darkgray);
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  z-index: 10;
}

.modal-close-btn:hover {
  color: #FF3366;
  background: rgba(255, 51, 102, 0.08);
  transform: rotate(90deg);
}

.modal-title {
  font-size: 2rem;
  color: var(--primary-midnight);
  margin-bottom: 8px;
  font-weight: 700;
  letter-spacing: -0.5px;
  line-height: 1.2;
}

.modal-subtitle {
  color: var(--text-darkgray);
  margin-bottom: 30px;
  font-size: 0.95rem;
  line-height: 1.5;
  opacity: 0.8;
}

/* Modal Form Overrides */
.modal-form .form-group {
  margin-bottom: 18px;
}

.modal-form input,
.modal-form select,
.modal-form textarea {
  width: 100%;
  padding: 14px 18px !important;
  border-radius: 12px;
  border: 1px solid #E5E7EB;
  background: #F9FAFB;
  font-family: inherit;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  color: var(--primary-midnight) !important;
}

.modal-form input:focus,
.modal-form select:focus,
.modal-form textarea:focus {
  border-color: #FF3366;
  background: #FFFFFF;
  outline: none;
  box-shadow: 0 0 0 4px rgba(255, 51, 102, 0.1);
}

.minimal-form input,
.minimal-form select,
.minimal-form textarea {
  width: 100%;
  background: #F3F4F6;
  border: none;
  border-bottom: 2px solid transparent;
  border-radius: 8px 8px 0 0;
  padding: 1rem 1.25rem;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--primary-midnight);
  transition: all 0.3s ease;
}

.minimal-form textarea {
  min-height: 120px;
  resize: vertical;
}

.minimal-form input:focus,
.minimal-form select:focus,
.minimal-form textarea:focus {
  outline: none;
  background: var(--surface-white);
  border-bottom: 2px solid transparent;
  border-image: var(--gradient-accent) 1;
  box-shadow: 0 8px 20px -8px rgba(255, 51, 102, 0.15);
}

/* ====================================================
   FLOATING WHATSAPP BUTTON (REDESIGNED)
=================================================== */
.floating-whatsapp {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background-color: #25D366;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: pulse-whatsapp 2.5s infinite;
  font-size: 2.2rem;
  text-decoration: none;
}

.floating-whatsapp:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
  color: white;
}

@keyframes pulse-whatsapp {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
  }

  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .grid-layout-2 {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-grid-col,
  .services-grid-col {
    padding: 0;
  }

  .footer-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .slide-title {
    font-size: 2.8rem;
  }
}

@media (max-width: 992px) {
  .hero-foreground-grid {
    grid-template-columns: 1fr;
    padding-top: 120px;
    padding-bottom: 60px;
    gap: 30px;
  }

  .hero-overlay-content {
    align-items: flex-start;
    padding-top: 120px;
  }

  .hero-text-content {
    max-width: 100%;
    padding-right: 0;
    text-align: center;
  }

  .hero-carousel {
    height: auto;
    min-height: auto;
  }

  .left-aligned-dots {
    justify-content: center;
    margin-bottom: 2rem;
  }
}

@media (max-width: 768px) {
  .split-layout {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }

  .split-left {
    padding-right: 0;
  }

  .slide-title {
    font-size: 2.2rem;
  }

  .visual-hero-graphic {
    width: 200px;
    height: 200px;
  }

  .premium-hero-icon {
    font-size: 4rem;
  }

  .services-balanced-grid {
    grid-template-columns: 1fr;
  }

  .glass-header {
    padding: 1rem 5px;
    flex-direction: column;
    gap: 10px;
  }

  nav a {
    margin: 0 0.5rem;
  }
}

@media (max-width: 480px) {
  .footer-grid-4 {
    grid-template-columns: 1fr;
  }

  .floating-whatsapp {
    bottom: 1.5rem;
    right: 1.5rem;
    width: 50px;
    height: 50px;
    font-size: 1.8rem;
  }
}

/* ====================================================
   MODERN ABOUT SECTION (Refactored)
=================================================== */
.modern-about-section {
  background-color: #f8f9fa;
}

.about-header-text {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

.about-header-text h1 {
  background: linear-gradient(135deg, #FF3366 0%, #FF9933 100%);
  -webkit-background-clip: text;
  background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 3rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
  text-shadow: 0 5px 15px rgba(255, 51, 102, 0.1);
  display: inline-block;
  width: 100%;
}

.about-header-text p {
  color: #6B7280;
  /* Muted Gray */
  font-size: 1.1rem;
  line-height: 1.6;
}

.premium-pillar-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
}

.premium-pillar-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
  text-align: left;
}

.premium-pillar-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px -10px rgba(255, 51, 102, 0.15);
}

.premium-icon-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255, 51, 102, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
}

.premium-icon-circle i {
  font-size: 1.75rem;
  background: linear-gradient(135deg, #FF3366 0%, #FF9933 100%);
  -webkit-background-clip: text;
  background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.premium-pillar-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #0B1B3D;
}

.premium-pillar-card p {
  color: #6B7280;
  line-height: 1.6;
  font-size: 1rem;
}

/* ====================================================
   PREMIUM GALLERY GRID (Redesigned)
=================================================== */
.gallery-premium-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 50px auto;
  padding: 0 20px;
}

.gallery-item-premium {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  aspect-ratio: 4/3;
  cursor: pointer;
}

.gallery-item-premium img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.gallery-overlay-premium {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11, 27, 61, 0.9), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.gallery-overlay-premium i {
  font-size: 2.5rem;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  transform: translateY(20px);
  transition: transform 0.4s ease;
}

.gallery-item-premium:hover img {
  transform: scale(1.15);
}

.gallery-item-premium:hover .gallery-overlay-premium {
  opacity: 1;
}

.gallery-item-premium:hover .gallery-overlay-premium i {
  transform: translateY(0);
}

/* Lightbox refinements */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  padding: 20px;
}

.lightbox img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 12px;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
}

.close-btn {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
  transition: 0.3s;
}

.close-btn:hover {
  color: #FF3366;
}

/* ====================================================
   CONTACT PAGE SPECIFIC STYLES
=================================================== */
.contact-page-section {
  background-color: var(--surface-offwhite);
}

.contact-container-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}

/* Left Column: Info & Map */
.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 35px;
  margin-bottom: 40px;
}

.contact-info-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.info-icon-circle {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: rgba(255, 51, 102, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #FF3366;
  font-size: 1.5rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
  transition: transform 0.3s ease;
}

.contact-info-item:hover .info-icon-circle {
  transform: scale(1.1);
  background: rgba(255, 51, 102, 0.12);
}

.info-text h3 {
  font-size: 1.1rem;
  margin-bottom: 4px;
  color: var(--primary-midnight);
}

.info-text p {
  color: #6B7280;
  font-size: 0.95rem;
  line-height: 1.5;
}

.contact-map-wrapper {
  width: 100%;
  height: 280px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 4px solid #fff;
}

.contact-map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Right Column: Premium Form Card */
.contact-form-card {
  background: #ffffff;
  border-radius: 28px;
  padding: 50px;
  box-shadow: 0 20px 50px -15px rgba(11, 27, 61, 0.1);
  position: relative;
  overflow: hidden;
}

.contact-form-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: var(--gradient-accent);
  opacity: 0.2;
}

.premium-form .form-grid-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.premium-form .form-group {
  margin-bottom: 25px;
}

.premium-form input,
.premium-form textarea {
  width: 100%;
  background: #F3F4F6;
  border: none;
  border-bottom: 2.5px solid transparent;
  border-radius: 12px 12px 2px 2px;
  padding: 18px 22px;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--primary-midnight);
  transition: all 0.3s ease;
}

.premium-form input:focus,
.premium-form textarea:focus {
  outline: none;
  background: #fff;
  border-bottom-color: transparent;
  border-image: var(--gradient-accent) 1;
  box-shadow: 0 10px 20px -10px rgba(255, 51, 102, 0.1);
}

.premium-form input::placeholder,
.premium-form textarea::placeholder {
  color: #9CA3AF;
}

/* ====================================================
   GLOBAL RESPONSIVE ARCHITECTURE
=================================================== */

/* Tablet & Small Laptops */
@media (max-width: 992px) {
  .hero-content-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-right-glass-form {
    margin-top: 40px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }

  .contact-container-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .footer-grid-4 {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

/* hero section & layout repairs */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.slider-bg-container {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.bg-slide {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}

.bg-slide.active {
  opacity: 0.6;
  /* Balanced visibility */
}

/* Phosphor Icon Standardization */
/* Global Icon Repair & Standardization */
[class^="ph-"] {
  font-size: 40px !important;
  color: #FF3366 !important;
  display: inline-block !important;
  visibility: visible !important;
  opacity: 1 !important;
  vertical-align: middle;
}

/* Icon Wrapper Flex Fixes */
.premium-icon-circle,
.service-icon-wrapper,
.info-icon-circle {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  overflow: visible !important;
  /* Prevent clipping */
}

/* Mobile Devices (Universal Full-Width Overrides) */
@media (max-width: 768px) {

  /* Typography Scaling */
  h1,
  .slide-title {
    font-size: 2.2rem !important;
  }

  h2 {
    font-size: 1.8rem !important;
  }

  h3 {
    font-size: 1.6rem !important;
  }

  /* Global Containers & Sections (Edge-to-Edge Fix) */
  .container-1200 {
    padding-left: 15px !important;
    padding-right: 15px !important;
    width: 100% !important;
    max-width: 100vw !important;
    overflow-x: hidden !important;
    box-sizing: border-box !important;
  }

  section,
  main {
    padding-left: 0 !important;
    padding-right: 0 !important;
    padding-bottom: 50px !important;
    overflow-x: hidden !important;
  }

  /* Header Fix (Force Horizontal Row) */
  .glass-header {
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 15px 15px !important;
    height: auto !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .glass-header nav {
    display: none !important;
  }

  /* Logo & Toggle Alignment */
  .logo-wrap {
    margin: 0 !important;
  }

  .menu-toggle {
    margin: 0 !important;
    display: flex !important;
    color: #FF3366 !important;
    font-size: 30px !important;
    z-index: 1001 !important;
  }

  /* Hero Section Mobile Visibility Fix */
  .hero-section {
    min-height: 85vh !important;
    height: auto !important;
    display: flex !important;
    flex-direction: column !important;
    padding-top: 80px !important;
    padding-bottom: 60px !important;
    position: relative !important;
    overflow: hidden !important;
  }

  .slider-bg-container,
  .bg-slide {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    z-index: 1 !important;
    display: block !important;
  }

  .bg-slide::after {
    background: linear-gradient(to bottom, rgba(11, 27, 61, 0.7) 0%, rgba(11, 27, 61, 0.9) 100%) !important;
  }

  .hero-right-glass-form {
    position: relative !important;
    z-index: 10 !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 20px auto 0 !important;
    padding: 25px 15px !important;
    box-sizing: border-box !important;
    border-radius: 16px !important;
  }

  /* Contact Page Form Fix */
  .contact-form-card {
    padding: 30px 15px !important;
    border-radius: 16px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  /* Compact Mobile Footer & Grid Overrides */
  .services-premium-grid,
  .gallery-premium-grid,
  .premium-pillar-grid,
  .about-grid,
  .gallery-grid,
  .contact-container {
    grid-template-columns: 1fr !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
    gap: 20px !important;
    width: 100% !important;
    box-sizing: border-box !important;
    text-align: center !important;
  }

  .footer-grid-4 {
    display: flex !important;
    flex-direction: column !important;
    gap: 25px !important;
    /* DRIVER SPACING DOWN */
    padding-top: 30px !important;
    padding-bottom: 30px !important;
    text-align: center !important;
    width: 100% !important;
  }

  .footer-col {
    align-items: center !important;
    display: flex !important;
    flex-direction: column !important;
    margin: 0 !important;
  }

  .footer-col h3 {
    margin-bottom: 10px !important;
    margin-top: 5px !important;
  }

  ul.footer-links li {
    margin-bottom: 5px !important;
  }

  .footer-col p {
    margin-bottom: 10px !important;
    line-height: 1.4 !important;
  }

  .social-links {
    justify-content: center !important;
    margin-top: 15px !important;
  }

  /* Map Full Width */
  .blended-map-container iframe {
    width: 100% !important;
    height: 200px !important;
    border-radius: 12px !important;
  }

  /* Form Row Stacking */
  .side-by-side-inputs,
  .form-grid-row {
    grid-template-columns: 1fr !important;
    gap: 15px !important;
  }

  /* WhatsApp Z-Index & Position Fix */
  .floating-whatsapp {
    bottom: 20px !important;
    right: 20px !important;
    z-index: 1000 !important;
  }

  .footer-social-links {
    justify-content: center;
  }
}




/* ====================================================
   PREMIUM SIDE DRAWER NAVIGATION (ENRICHED)
==================================================== */

/* Hide Desktop Menu on Tablets/Mobile */
@media (max-width: 992px) {
  .glass-header nav {
    display: none;
  }

  .menu-toggle {
    display: flex !important;
    background: none;
    border: none;
    color: #FF3366 !important;
    font-size: 1.8rem;
    cursor: pointer;
    z-index: 1001;
    padding: 5px;
    align-items: center;
    justify-content: center;
  }
}

.menu-toggle {
  display: none;
}

/* ====================================================
   GLOBAL QUOTE MODAL (GLASSMORPHISM & ANIMATED)
=================================================== */
.quote-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 10000;
  display: none;
  /* Controlled by JS */
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.quote-modal-box {
  background: #FFFFFF;
  width: 100%;
  max-width: 500px;
  border-radius: 24px;
  padding: 40px;
  position: relative;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6);
  animation: modalZoom 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes modalZoom {
  from {
    transform: scale(0.85);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

.modal-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 26px;
  color: #9CA3AF;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.modal-close-btn:hover {
  color: #FF3366;
  background: rgba(255, 51, 102, 0.05);
  transform: rotate(90deg);
}

.modal-title {
  font-size: 1.8rem;
  color: #0B1B3D;
  margin-bottom: 8px;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.modal-subtitle {
  color: #6B7280;
  margin-bottom: 30px;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Modal Form Overrides */
.modal-form .form-group {
  margin-bottom: 15px;
}

.modal-form input,
.modal-form select,
.modal-form textarea {
  width: 100%;
  padding: 14px 18px !important;
  border-radius: 12px;
  border: 1px solid #E5E7EB;
  background: #F9FAFB;
  font-family: inherit;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  color: #0B1B3D !important;
}

.modal-form input:focus,
.modal-form select:focus,
.modal-form textarea:focus {
  border-color: #FF3366;
  background: #FFFFFF;
  outline: none;
  box-shadow: 0 0 0 4px rgba(255, 51, 102, 0.1);
}

/* Nav Overlay */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(8, 16, 33, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  z-index: 9998;
}

.nav-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

/* ── Side Drawer Shell ── */
.side-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 350px;
  height: 100vh;
  background: #081021;
  box-shadow: -10px 0 50px rgba(0, 0, 0, 0.6);
  transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  overflow-x: hidden;
}

.side-drawer.open {
  right: 0;
}

/* ── Header: Logo + Close ── */
.drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 25px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  flex-shrink: 0;
}

.drawer-logo {
  height: 28px;
  width: auto;
  filter: brightness(0) invert(1);
}

.drawer-close {
  background: none;
  border: none;
  color: #9CA3AF;
  font-size: 1.5rem;
  cursor: pointer;
  line-height: 1;
  padding: 4px;
  transition: color 0.3s ease, transform 0.3s ease;
  display: flex;
  align-items: center;
}

.drawer-close:hover {
  color: #FF3366;
  transform: rotate(90deg);
}

/* ── Navigation Links ── */
.drawer-links {
  display: flex;
  flex-direction: column;
  padding: 10px 0;
  flex-grow: 1;
}

.drawer-links a {
  color: #9CA3AF !important;
  text-decoration: none;
  font-size: 0.95rem !important;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 16px 0;
  margin-left: 25px;
  margin-right: 25px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  position: relative;
  transition: color 0.3s ease, padding-left 0.3s ease;
  /* Staggered entrance animation */
  opacity: 0;
  animation: linkFade 0.5s ease forwards;
}

/* Stagger delays for each nav item */
.drawer-links a:nth-child(1) {
  animation-delay: 0.05s;
}

.drawer-links a:nth-child(2) {
  animation-delay: 0.15s;
}

.drawer-links a:nth-child(3) {
  animation-delay: 0.25s;
}

.drawer-links a:nth-child(4) {
  animation-delay: 0.35s;
}

.drawer-links a:nth-child(5) {
  animation-delay: 0.45s;
}

.drawer-links a:nth-child(6) {
  animation-delay: 0.55s;
}

@keyframes linkFade {
  from {
    opacity: 0;
    transform: translateY(15px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Active indicator — short pink line underneath text */
.drawer-links a.active {
  color: #FF3366 !important;
}

.drawer-links a.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 28px;
  height: 2px;
  background: linear-gradient(90deg, #FF3366, #FF9933);
  border-radius: 2px;
}

.drawer-links a:hover {
  color: #FFFFFF !important;
  padding-left: 6px;
}

/* Sleek CONTACT button inside drawer */
.drawer-links a.nav-contact-btn {
  background: linear-gradient(135deg, #FF3366 0%, #FF9933 100%);
  color: #fff !important;
  border-radius: 8px;
  padding: 12px 25px;
  font-size: 0.9rem !important;
  width: fit-content;
  margin: 30px 25px 10px;
  border-bottom: none;
  letter-spacing: 1.5px;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.drawer-links a.nav-contact-btn:hover {
  box-shadow: 0 8px 20px rgba(255, 51, 102, 0.35);
  transform: translateY(-2px);
  padding-left: 25px;
  /* override the hover nudge */
  color: #fff !important;
}

.drawer-links a.nav-contact-btn.active::after {
  display: none;
}

/* ── Footer Section ── */
.drawer-footer {
  padding: 25px 25px 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(0, 0, 0, 0.15);
  flex-shrink: 0;
}

/* Contact info rows */
.drawer-contact-info {
  margin-bottom: 20px;
}

.drawer-contact-info p {
  color: #9CA3AF;
  font-size: 0.875rem;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1.4;
}

.drawer-contact-info i {
  color: #FF3366;
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* Social icons — clean outline row */
.drawer-socials {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  align-items: center;
}

.social-icon-btn {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #9CA3AF;
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  background: transparent;
}

.social-icon-btn:hover {
  border-color: #FF3366;
  color: #FF3366;
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(255, 51, 102, 0.2);
}

/* Map — floating, not edge-to-edge */
.drawer-map {
  margin: 0 0 4px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  height: 120px;
}

.drawer-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: none;
}

/* ── Drawer Icon Size Override (counteract global ph- 40px rule) ── */
.side-drawer [class^="ph-"],
.side-drawer [class*=" ph-"] {
  font-size: 20px !important;
  vertical-align: middle;
}

.drawer-close [class^="ph-"],
.drawer-close [class*=" ph-"] {
  font-size: 20px !important;
  color: inherit !important;
}

/* ── Reset animation so it replays each time drawer opens ── */
.drawer-links a {
  animation-play-state: paused;
}

.side-drawer.open .drawer-links a {
  animation-play-state: running;
  animation-name: linkFade;
  animation-fill-mode: forwards;
}



/* ====================================================
   HIGH-END GALLERY LIGHTBOX MODAL
 =================================================== */
.lightbox-modal {
  display: none;
  position: fixed;
  z-index: 20000;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(12px);
  cursor: zoom-out;
}

.lightbox-modal.active {
  display: flex !important;
}

.lb-content {
  max-width: 90%;
  max-height: 85vh;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  transform: scale(0.9);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  object-fit: contain;
}

.lightbox-modal.active .lb-content {
  transform: scale(1);
}

.lb-close {
  position: absolute;
  top: 30px;
  right: 40px;
  color: #fff;
  font-size: 45px;
  font-weight: 300;
  cursor: pointer;
  transition: color 0.3s, transform 0.3s;
  line-height: 1;
}

.lb-close:hover {
  color: #FF3366;
  transform: rotate(90deg);
}

/* Lightbox Navigation Buttons */
.lb-prev,
.lb-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.15);
  width: 65px;
  height: 65px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 28px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 2000;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.lb-prev:hover,
.lb-next:hover {
  background: var(--gradient-accent);
  border-color: transparent;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 10px 30px rgba(255, 51, 102, 0.4);
}

.lb-prev {
  left: 40px;
}

.lb-next {
  right: 40px;
}

@media (max-width: 768px) {

  .lb-prev,
  .lb-next {
    width: 55px;
    height: 55px;
    bottom: 50px;
    top: auto;
    transform: none;
    background: rgba(11, 27, 61, 0.8);
    border-color: rgba(255, 255, 255, 0.1);
  }

  .lb-prev {
    left: calc(50% - 70px);
  }

  .lb-next {
    right: calc(50% - 70px);
  }

  .lb-prev:hover,
  .lb-next:hover {
    transform: scale(1.05);
  }

  .lb-close {
    top: 20px;
    right: 25px;
    font-size: 40px;
  }
}



@keyframes zoom {
  from {
    transform: scale(0.6);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* Mobile Gallery Padding Fix */
@media (max-width: 768px) {
  .gallery-premium-grid {
    padding: 10px !important;
    gap: 15px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
}

/* logo link branding override */
.logo-link {
  text-decoration: none !important;
  display: flex !important;
  align-items: center !important;
  cursor: pointer !important;
  transition: opacity 0.3s ease;
}

.logo-link:hover {
  opacity: 0.9;
}

/* ====================================================
   HIGH-END ANIMATIONS & BRANDING SYNC
=================================================== */

/* Official WhatsApp Branding & Pulse */
.floating-whatsapp {
  background-color: #25D366 !important;
  /* Official WhatsApp Green */
  color: #FFFFFF !important;
  animation: pulse-whatsapp 2s infinite ease-in-out;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
}

.floating-whatsapp i {
  color: #FFFFFF !important;
  font-size: 32px !important;
}

.floating-whatsapp:hover {
  transform: scale(1.15) rotate(5deg) !important;
}

@keyframes pulse-whatsapp {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
  }

  70% {
    box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* Reveal-on-Scroll System (.expose) */
.expose {
  opacity: 0 !important;
  transform: translateY(40px) !important;
  transition: opacity 1.2s cubic-bezier(0.2, 1, 0.3, 1), transform 1.2s cubic-bezier(0.2, 1, 0.3, 1) !important;
  will-change: transform, opacity;
}

.expose.active {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* Heading Slide Reveal */
h1.expose,
h2.expose {
  transform: translateY(20px) !important;
}

/* Interactive Card Hover States */
.service-card-premium,
.gallery-item-premium,
.pillar-card,
.premium-pillar-card {
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease !important;
}

.service-card-premium:hover,
.gallery-item-premium:hover,
.pillar-card:hover,
.premium-pillar-card:hover {
  transform: translateY(-8px) scale(1.02) !important;
  box-shadow: 0 20px 40px rgba(11, 27, 61, 0.15), 0 0 20px rgba(255, 51, 102, 0.15) !important;
}

/* Premium Button Shimmer Effect */
.btn-premium,
.nav-contact-btn {
  position: relative;
  overflow: hidden;
}

.btn-premium::after,
.nav-contact-btn::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -60%;
  width: 20%;
  height: 200%;
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(30deg);
  transition: all 0.6s ease;
}

.btn-premium:hover::after,
.nav-contact-btn:hover::after {
  left: 140%;
}

/* STAGGERED SIDE DRAWER LINK ANIMATIONS */
.side-drawer .drawer-links a {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.2, 1, 0.3, 1) !important;
}

.side-drawer.open .drawer-links a {
  opacity: 1;
  transform: translateX(0);
}

/* Animation Delays for Links */
.side-drawer.open .drawer-links a:nth-child(1) {
  transition-delay: 0.2s !important;
}

.side-drawer.open .drawer-links a:nth-child(2) {
  transition-delay: 0.3s !important;
}

.side-drawer.open .drawer-links a:nth-child(3) {
  transition-delay: 0.4s !important;
}

.side-drawer.open .drawer-links a:nth-child(4) {
  transition-delay: 0.5s !important;
}

.side-drawer.open .drawer-links a:nth-child(5) {
  transition-delay: 0.6s !important;
}

.side-drawer.open .drawer-links a:nth-child(6) {
  transition-delay: 0.7s !important;
}

/* ====================================================
   GLOBAL BACKGROUND & PERFORMANCE OVERRIDES
=================================================== */

/* Modern About Us Background — Frosted Light Overlay */
.modern-about-section {
  background: linear-gradient(rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.9)),
    url('https://images.unsplash.com/photo-1562564055-71e051d33c19?auto=format&fit=crop&q=80&w=1600');
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  position: relative;
  backdrop-filter: blur(15px) saturate(150%);
  -webkit-backdrop-filter: blur(15px) saturate(150%);
}

.modern-about-section h1,
.modern-about-section p {
  color: #0B1B3D !important;
}

/* Contact Page Section Theme Sync — Frosted Light */
.contact-page-section {
  background: linear-gradient(rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.9)),
    url('https://images.unsplash.com/photo-1598301257982-0cf014dabbcd?auto=format&fit=crop&q=80&w=1600');
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  position: relative;
  backdrop-filter: blur(15px) saturate(150%);
  -webkit-backdrop-filter: blur(15px) saturate(150%);
}

.contact-page-section h1,
.contact-page-section p {
  color: #0B1B3D !important;
}

/* Mobile Background Performance (Disable Parallax) */
@media (max-width: 768px) {

  .modern-services-section,
  .modern-about-section,
  .contact-page-section,
  .premium-footer {
    background-attachment: scroll !important;
  }
}

/* Footer Phone Layout Fix */
.footer-contact-item {
    display: flex;
    align-items: flex-start; /* Keeps the 'Phone:' label at the top */
    gap: 8px;
    margin-bottom: 10px;
}
.phone-list {
    display: flex;
    flex-direction: column; /* Stacks numbers vertically */
    gap: 4px;
}
.contact-label {
    font-weight: 600;
    color: #FFFFFF; /* Adjust if your footer text color is different */
}
.phone-link {
    color: #FF3366; /* Matches the vibrant pink/red in the screenshot */
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}
.phone-link:hover {
    color: #FF9933; /* Adds a nice hover effect */
    text-decoration: underline;
}