/*
  AirSmart Premium Overhaul — "GOD Level" CSS Layer
  Purpose: Eliminate the AI-generated aesthetic. 
  Approach: Organic motion, textured backgrounds, asymmetric layouts,
            editorial-grade typography, and cinematic image treatments.
*/

/* ===== 1. TEXTURE & GRAIN OVERLAYS ===== */
@keyframes grain-drift {
  0%, 100% { transform: translate(0, 0); }
  25% { transform: translate(-2%, 3%); }
  50% { transform: translate(1%, -2%); }
  75% { transform: translate(3%, 1%); }
}

.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  animation: grain-drift 8s ease-in-out infinite;
  z-index: 1;
  pointer-events: none;
  mix-blend-mode: overlay;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  z-index: 1;
  pointer-events: none;
}

.page-hero {
  position: relative;
  overflow: hidden;
}

/* ===== 2. REFINED HERO — CINEMATIC DEPTH ===== */
.hero-section {
  background-image: none;
  background: 
    radial-gradient(ellipse 80% 60% at 20% 80%, rgba(var(--rgb-primary-blue), 0.18) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 85% 20%, rgba(var(--rgb-primary-green), 0.12) 0%, transparent 50%),
    linear-gradient(165deg, #071428 0%, #0A1F3D 35%, #0D2847 65%, #071E35 100%);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-overlay-image {
  opacity: 0.18;
  filter: saturate(0.6) contrast(1.15);
  mix-blend-mode: luminosity;
}

.hero-h1 {
  font-size: 44px;
  letter-spacing: -1px;
  line-height: 1.08;
  text-shadow: 0 2px 40px rgba(0,0,0,0.35);
}

@media (min-width: 768px) {
  .hero-h1 {
    font-size: 56px;
  }
}

@media (min-width: 1200px) {
  .hero-h1 {
    font-size: 62px;
  }
}

.hero-subheadline {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255,255,255,0.72);
  letter-spacing: 0.2px;
}

/* Badge refinement */
.hero-badge {
  background: rgba(var(--rgb-primary-green), 0.06);
  border: 1px solid rgba(var(--rgb-primary-green), 0.35);
  backdrop-filter: blur(8px);
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* ===== 3. PAGE HERO — CINEMATIC GRADIENT ===== */
.page-hero {
  background: 
    radial-gradient(ellipse 70% 50% at 30% 70%, rgba(var(--rgb-primary-blue),0.2) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 80% 30%, rgba(var(--rgb-primary-green),0.08) 0%, transparent 50%),
    linear-gradient(155deg, #061526 0%, #0A1F3D 40%, #164882 100%);
  padding-top: 200px;
  padding-bottom: 120px;
}

.page-hero-title {
  font-weight: 800;
  letter-spacing: -1px;
  text-shadow: 0 2px 30px rgba(0,0,0,0.3);
}

/* ===== 4. LEAD FORM — GLASSMORPHISM ELEVATION ===== */
.lead-form-card {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.2);
  box-shadow: 
    0 24px 80px rgba(0,0,0,0.35),
    0 8px 20px rgba(0,0,0,0.15),
    inset 0 1px 0 rgba(255,255,255,0.95);
  border-radius: 24px;
  position: relative;
  overflow: hidden;
}

.lead-form-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-primary-blue), var(--color-primary-green), var(--color-primary-blue));
  background-size: 200% 100%;
  animation: shimmer-gradient 3s ease-in-out infinite;
}

@keyframes shimmer-gradient {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* ===== 5. STATS BAR — SUBTLE GLOW ===== */
.hero-stats-bar {
  background: linear-gradient(180deg, rgba(var(--rgb-navy-dark),0.98) 0%, rgba(var(--rgb-navy-darker),1) 100%);
  border-top: 1px solid rgba(var(--rgb-primary-green),0.08);
  padding: 32px 0;
}

.stat-number {
  background: linear-gradient(135deg, var(--color-primary-green), #B8E86C);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 8px rgba(var(--rgb-primary-green),0.2));
}

.stat-item {
  border-right-color: rgba(255,255,255,0.06);
}

/* ===== 6. SECTION TYPOGRAPHY — EDITORIAL ===== */
.section-label {
  font-size: 11px;
  letter-spacing: 3px;
  font-weight: 700;
  position: relative;
  display: block;
  margin-bottom: 12px;
}

.section-label::before {
  content: '';
  width: 24px;
  height: 2px;
  background-color: var(--color-primary-blue);
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
  margin-top: -2px;
}

.section-label.light::before {
  background-color: var(--color-primary-green);
}

.section-title {
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -0.5px;
  line-height: 1.15;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 40px;
  }
}

.section-title::after {
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary-blue), var(--color-primary-green));
  border-radius: 2px;
}

.section-title.light::after {
  background: linear-gradient(90deg, var(--color-primary-green), rgba(var(--rgb-primary-green),0.3));
}

.section-desc {
  font-size: 16px;
  line-height: 1.75;
  color: #5A6B7F;
}

.section-desc.light {
  color: rgba(255,255,255,0.7);
}

/* ===== 7. SERVICE CARDS — ELEVATED DEPTH ===== */
.service-card {
  border: none;
  box-shadow: 
    0 1px 3px rgba(0,0,0,0.04),
    0 4px 12px rgba(0,0,0,0.03);
  border-radius: 20px;
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #FFFFFF 0%, #FAFCFF 100%);
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary-blue), var(--color-primary-green));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 
    0 8px 24px rgba(var(--rgb-primary-blue),0.12),
    0 20px 48px rgba(var(--rgb-navy-dark),0.08);
  border-left: none;
}

.service-card:hover::after {
  opacity: 1;
}

.service-card-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(var(--rgb-primary-blue),0.06) 0%, rgba(var(--rgb-primary-blue),0.12) 100%);
  font-size: 22px;
}

.service-card:hover .service-card-icon {
  background: linear-gradient(135deg, var(--color-primary-blue), #2B9FE0);
  box-shadow: 0 4px 16px rgba(var(--rgb-primary-blue),0.3);
}

.service-card-title {
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.3px;
}

/* ===== 8. WHY CHOOSE US CARDS — GLASS DARK ===== */
.why-feature-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px;
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
}

.why-feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(var(--rgb-primary-blue),0.4), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.why-feature-card:hover::before {
  opacity: 1;
}

.why-feature-card:hover {
  background: rgba(var(--rgb-primary-blue),0.08);
  border-color: rgba(var(--rgb-primary-blue),0.2);
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(var(--rgb-primary-blue),0.1);
}

.why-icon {
  font-size: 28px;
  margin-bottom: 20px;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.2));
}

.why-title {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.2px;
}

/* ===== 9. INDUSTRY CARDS — CINEMATIC TREATMENT ===== */
.industry-card {
  height: 280px;
  border-radius: 20px;
}

.industry-card-bg {
  transition: transform 0.6s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.industry-card:hover .industry-card-bg {
  transform: scale(1.08);
}

.industry-card:hover {
  transform: none;
  box-shadow: 0 16px 48px rgba(var(--rgb-navy-dark),0.25);
}

.industry-card-content {
  padding: 24px;
}

.industry-card-title {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.3px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

/* ===== 10. TESTIMONIAL CARDS — REFINED ===== */
.testimonial-card {
  border: none;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  border-radius: 20px;
  padding: 32px;
  background: linear-gradient(180deg, #FFFFFF 0%, #F9FBFE 100%);
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--color-primary-blue), var(--color-primary-green));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.testimonial-card:hover::before {
  opacity: 1;
}

.testimonial-card:hover {
  box-shadow: 0 8px 32px rgba(var(--rgb-primary-blue),0.1);
  transform: translateY(-2px);
}

.testimonial-quote-icon {
  opacity: 0.04;
  font-size: 80px;
}

.testimonial-text {
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  color: #4A5568;
  line-height: 1.75;
}

/* ===== 11. PROCESS TIMELINE — REFINED ===== */
.process-step-num-container {
  width: 72px;
  height: 72px;
  font-size: 28px;
  border: 3px solid rgba(214,238,255,0.5);
  box-shadow: 0 4px 20px rgba(var(--rgb-primary-blue),0.2);
  transition: all 0.3s ease;
}

.process-step:hover .process-step-num-container {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(var(--rgb-primary-blue),0.3);
}

.process-step-title {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.2px;
}

.process-step-desc {
  font-size: 13px;
  line-height: 1.6;
}

/* ===== 12. FAQ — REFINED ===== */
.faq-item {
  border-bottom: 1px solid rgba(226,232,240,0.6);
  padding: 20px 0;
}

.faq-question {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  transition: all 0.2s ease;
}

.faq-answer p {
  font-size: 14px;
  line-height: 1.7;
  color: #5A6B7F;
}

/* ===== 13. BUTTONS — PREMIUM FEEL ===== */
.btn {
  border-radius: 10px;
  padding: 14px 30px;
  font-size: 13px;
  letter-spacing: 0.8px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.btn:hover::before {
  opacity: 1;
}

.btn-green {
  background: linear-gradient(135deg, #8DC63F 0%, #7AB82E 100%);
  box-shadow: 0 4px 16px rgba(var(--rgb-primary-green),0.25);
}

.btn-green:hover {
  box-shadow: 0 8px 28px rgba(var(--rgb-primary-green),0.35);
  transform: translateY(-2px);
}

.btn-blue {
  background: linear-gradient(135deg, #1B7EC2 0%, #1466A0 100%);
  box-shadow: 0 4px 16px rgba(var(--rgb-primary-blue),0.25);
}

.btn-blue:hover {
  box-shadow: 0 8px 28px rgba(var(--rgb-primary-blue),0.35);
  transform: translateY(-2px);
}

/* ===== 14. EDITORIAL IMAGE TREATMENT ===== */
.about-preview-right img,
.service-detail-img {
  border-radius: 20px;
  box-shadow: 
    0 8px 24px rgba(0,0,0,0.08),
    0 2px 8px rgba(0,0,0,0.04);
  transition: transform 0.5s cubic-bezier(0.25, 0.1, 0.25, 1), box-shadow 0.5s ease;
}

.about-preview-right img:hover,
.service-detail-img:hover {
  transform: scale(1.02);
  box-shadow: 
    0 16px 40px rgba(0,0,0,0.12),
    0 4px 12px rgba(0,0,0,0.06);
}

/* ===== 15. EXPERIENCE CALLOUT BOX — ELEVATED ===== */
.experience-callout-box {
  background: linear-gradient(135deg, rgba(214,238,255,0.4) 0%, rgba(232,245,208,0.3) 100%);
  border-left: 4px solid var(--color-primary-blue);
  border-radius: 0 16px 16px 0;
  padding: 24px 28px;
  box-shadow: 0 2px 12px rgba(var(--rgb-primary-blue),0.06);
}

/* ===== 16. FORM CONTROLS — POLISHED ===== */
.form-control {
  border-radius: 10px;
  padding: 13px 18px;
  border: 1.5px solid rgba(203,213,224,0.6);
  background: rgba(248,250,252,0.6);
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: var(--color-primary-blue);
  box-shadow: 0 0 0 4px rgba(var(--rgb-primary-blue),0.1);
  background: #FFFFFF;
}

.form-label {
  font-size: 12px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-weight: 700;
  color: #4A5568;
  margin-bottom: 6px;
  display: block;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 768px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

.form-group {
  margin-bottom: 16px;
}

.contact-grid {
  display: grid;
  gap: 40px;
}

@media (min-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr 1.2fr;
    align-items: center;
  }
}

.contact-trust-panel {
  padding: 30px;
  background: rgba(var(--rgb-primary-blue), 0.04);
  border-radius: 24px;
  border: 1px solid rgba(var(--rgb-primary-blue), 0.1);
}

.contact-trust-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-trust-item:last-child {
  margin-bottom: 0;
}

.contact-trust-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--color-primary-blue), #2B9FE0);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
  flex-shrink: 0;
}

.contact-trust-content h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--color-navy-dark);
}

.contact-trust-content p {
  font-size: 14px;
  color: #5A6B7F;
  line-height: 1.6;
}

/* ===== 17. SCROLL ANIMATIONS — ORGANIC MOTION ===== */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.25, 0.1, 0.25, 1), 
              transform 0.7s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.fade-in-up.appear {
  opacity: 1;
  transform: translateY(0);
}

/* Slide from left */
.slide-in-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s cubic-bezier(0.25, 0.1, 0.25, 1),
              transform 0.7s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.slide-in-left.appear {
  opacity: 1;
  transform: translateX(0);
}

/* Slide from right */
.slide-in-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s cubic-bezier(0.25, 0.1, 0.25, 1),
              transform 0.7s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.slide-in-right.appear {
  opacity: 1;
  transform: translateX(0);
}

/* Scale reveal */
.scale-reveal {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.scale-reveal.appear {
  opacity: 1;
  transform: scale(1);
}

/* ===== 18. BLOG CARDS — MAGAZINE STYLE ===== */
.blog-card {
  border: none;
  border-radius: 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(var(--rgb-navy-dark),0.1);
}

.blog-card-img-placeholder {
  height: 220px;
  position: relative;
}

.blog-card-img-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.3) 100%);
  z-index: 1;
}

.blog-card-body {
  padding: 24px;
}

.blog-card-tag {
  background: linear-gradient(135deg, var(--color-primary-green), #A8D84E);
  font-size: 10px;
  letter-spacing: 1px;
}

/* ===== 19. FINAL CTA BAND — DEPTH ===== */
.final-cta-band {
  background: 
    radial-gradient(ellipse 80% 60% at 50% 80%, rgba(var(--rgb-primary-green),0.1) 0%, transparent 50%),
    linear-gradient(145deg, var(--color-primary-blue) 0%, #0D3B6A 50%, var(--color-navy-dark) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.final-cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  pointer-events: none;
}

.final-cta-title {
  font-weight: 800;
  letter-spacing: -0.5px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.2);
}

/* ===== 20. FOOTER — REFINED SPACING ===== */
.main-footer {
  background: linear-gradient(180deg, #040E1B 0%, #030A14 100%);
  border-top: 1px solid rgba(var(--rgb-primary-green),0.08);
}

.footer-col h3 {
  font-size: 13px;
  letter-spacing: 2px;
  position: relative;
  padding-bottom: 12px;
}

.footer-col h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 28px;
  height: 2px;
  background: var(--color-primary-green);
  border-radius: 1px;
}

.footer-links a {
  transition: all 0.2s ease;
  position: relative;
}

.footer-links a:hover {
  padding-left: 8px;
}

/* ===== 21. TRUSTED BY — SUBTLE ===== */
.logo-item {
  background: transparent;
  border: 1px solid rgba(203,213,224,0.4);
  border-radius: 12px;
  padding: 14px 24px;
  font-size: 13px;
  color: #8896A8;
  transition: all 0.3s ease;
}

.logo-item:hover {
  border-color: var(--color-primary-blue);
  color: var(--color-primary-blue);
  background: rgba(var(--rgb-primary-blue),0.03);
}

.industry-tag {
  font-size: 11px;
  padding: 6px 16px;
  border-radius: 8px;
  background: rgba(var(--rgb-primary-blue),0.05);
  border: 1px solid rgba(var(--rgb-primary-blue),0.1);
  font-weight: 600;
  transition: all 0.2s ease;
}

.industry-tag:hover {
  background: rgba(var(--rgb-primary-blue),0.1);
  border-color: rgba(var(--rgb-primary-blue),0.2);
}

/* ===== 22. SCROLL BAR STYLING ===== */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #0A1F3D;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--color-primary-blue), var(--color-primary-green));
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #2B9FE0, #A8D84E);
}

/* ===== 23. ABOUT SECTION BULLETS — REFINED ===== */
.about-bullet-item {
  font-size: 13px;
  padding: 6px 0;
  color: #3D4F63;
}

.about-bullet-item::before {
  content: '✓';
  color: var(--color-primary-green);
  font-weight: 800;
  background: rgba(var(--rgb-primary-green),0.08);
  width: 22px;
  height: 22px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
}

/* ===== 24. COUNTER ANIMATION PLACEHOLDER ===== */
@keyframes count-up-fade {
  0% { opacity: 0; transform: translateY(12px); }
  100% { opacity: 1; transform: translateY(0); }
}

.stat-item.animated .stat-number {
  animation: count-up-fade 0.6s ease-out forwards;
}

/* ===== 25. DARK SECTION REFINEMENT ===== */
.bg-navy {
  background: linear-gradient(180deg, #0A1F3D 0%, #071A32 100%);
  position: relative;
}

section.bg-navy::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.025'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  pointer-events: none;
}

/* ===== 26. IMAGE GALLERY UTILITY ===== */
.img-editorial {
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08), 0 2px 8px rgba(0,0,0,0.04);
  transition: transform 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
  width: 100%;
  height: auto;
  object-fit: cover;
}

.img-editorial:hover {
  transform: scale(1.02);
}

/* Image with accent border */
.img-accent-frame {
  position: relative;
  display: inline-block;
}

.img-accent-frame::after {
  content: '';
  position: absolute;
  top: 12px;
  right: -12px;
  bottom: -12px;
  left: 12px;
  border: 3px solid var(--color-primary-green);
  border-radius: 20px;
  z-index: -1;
  opacity: 0.4;
}

/* ===== 27. RESPONSIVE CONTAINER ADJUSTMENTS ===== */
@media (min-width: 1024px) {
  .container {
    padding-left: 60px;
    padding-right: 60px;
  }
}

@media (min-width: 1280px) {
  .container {
    max-width: 1320px;
    padding-left: 40px;
    padding-right: 40px;
  }
}

/* ===== 28. SMOOTH PAGE LOAD ===== */
@keyframes page-fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

body {
  animation: page-fade-in 0.4s ease-out;
}

/* ===== 29. BREADCRUMB ENHANCEMENT ===== */
.breadcrumbs {
  font-size: 13px;
  margin-top: 20px;
}

.breadcrumbs a {
  color: rgba(var(--rgb-primary-green),0.8);
  transition: color 0.2s ease;
}

.breadcrumbs a:hover {
  color: var(--color-primary-green);
}

/* ===== 30. HEADER NAVIGATION POLISH ===== */
.nav-dropdown {
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(var(--rgb-navy-dark),0.15);
  border-top: 3px solid transparent;
  border-image: linear-gradient(90deg, var(--color-primary-blue), var(--color-primary-green)) 1;
  padding: 12px;
}

.nav-dropdown-link {
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 13px;
  transition: all 0.2s ease;
}

.nav-dropdown-link:hover {
  background: rgba(var(--rgb-primary-blue),0.05);
  padding-left: 18px;
}

/* ===== 31. SERVICE PAGE HERO WITH IMAGE ===== */
.page-hero-with-image {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 40px;
  text-align: left;
}

@media (min-width: 1024px) {
  .page-hero-with-image {
    grid-template-columns: 1.2fr 0.8fr;
  }
}

.page-hero-with-image .page-hero-title {
  text-align: left;
}

.page-hero-image {
  border-radius: 20px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.3);
  max-height: 360px;
  width: 100%;
  object-fit: cover;
}

/* ===== 32. WHATSAPP WIDGET — REFINED ===== */
.whatsapp-bubble {
  width: 60px;
  height: 60px;
  box-shadow: 0 4px 20px rgba(37,211,102,0.35);
}

/* ===== 33. SELECTION COLOR ===== */
::selection {
  background: rgba(var(--rgb-primary-blue),0.15);
  color: var(--color-navy-dark);
}

/* ===== 34. EMERGENCY STRIP REFINEMENT ===== */
.emergency-strip {
  background: linear-gradient(90deg, #C0392B 0%, #A93226 50%, #C0392B 100%);
  font-size: 13px;
  padding: 8px 0;
  letter-spacing: 0.3px;
}

/* ===== 35. IMAGE-GRID FOR SERVICE PAGES ===== */
.service-image-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 24px 0;
}

.service-image-grid img {
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  object-fit: cover;
  height: 200px;
  width: 100%;
  transition: transform 0.4s ease;
}

.service-image-grid img:hover {
  transform: scale(1.03);
}

.service-image-grid img:first-child {
  grid-row: span 2;
  height: 100%;
}

@media (max-width: 767px) {
  .service-image-grid {
    grid-template-columns: 1fr;
  }
  .service-image-grid img:first-child {
    grid-row: auto;
    height: 200px;
  }
}

/* ===== 36. ACOOL-THEME DESIGN INFLUENCES ===== */

/* Typography & Heading Accents */
.hero-badge {
  border-radius: 8px !important; /* Clean rectangular rounded badge like acool */
  background: rgba(var(--rgb-primary-blue), 0.05) !important;
  border-color: rgba(var(--rgb-primary-blue), 0.3) !important;
  color: var(--color-primary-blue) !important;
  font-weight: 700 !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
}

.hero-badge span::before {
  content: '❄ ' !important; /* Ice/cool symbol like acool */
  font-size: 13px !important;
}

/* Phone Nav Highlight */
.phone-nav {
  color: var(--color-accent-orange) !important;
  transition: var(--transition-fast) !important;
}
.phone-nav:hover {
  color: var(--color-accent-orange-hover) !important;
  transform: translateY(-1px) !important;
}

/* Continuous Floating Button Animation on Hover */
@keyframes acool-float {
  0% { transform: translateY(-2px); }
  50% { transform: translateY(-6px); }
  100% { transform: translateY(-2px); }
}

.btn:hover {
  animation: acool-float 1.8s ease-in-out infinite !important;
  box-shadow: 0 8px 24px rgba(var(--rgb-primary-blue), 0.2) !important;
}

/* Soft drop-shadow and border adjustments for Service Cards to feel like acool */
.service-card {
  border: 1px solid var(--color-grey-border) !important;
  background: #FFFFFF !important;
}

.service-card:hover {
  box-shadow: 0 10px 30px rgba(var(--rgb-primary-blue), 0.08) !important;
}

/* Accordion adjustments */
.faq-question {
  color: var(--color-charcoal) !important;
  transition: color var(--transition-fast) !important;
}

.faq-question:hover {
  color: var(--color-primary-blue) !important;
}

/* Circular checkmark bullet lists for a custom, premium feel */
.about-bullet-item {
  position: relative !important;
  padding-left: 28px !important;
  display: block !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  color: var(--color-charcoal) !important;
  margin-bottom: 8px !important;
}

.about-bullet-item::before {
  content: '✓' !important;
  position: absolute !important;
  left: 0 !important;
  top: 2px !important;
  width: 18px !important;
  height: 18px !important;
  background-color: rgba(var(--rgb-primary-green), 0.12) !important;
  border-radius: 50% !important;
  color: var(--color-primary-green) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 10px !important;
  font-weight: 800 !important;
}

/* Orange/Red highlight on Emergency Notice Box in Contact/Home */
.emergency-notice-box, .u-inline-109 {
  border-left-color: var(--color-accent-orange) !important;
  background-color: rgba(var(--rgb-accent-orange), 0.06) !important;
}

.u-inline-112 {
  color: var(--color-accent-orange) !important;
}

/* Hero actions row for side by side CTAs and Call Us Now */
.hero-actions-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  margin-bottom: 24px;
}

.hero-call-now {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-call-icon {
  width: 48px;
  height: 48px;
  background: rgba(var(--rgb-primary-blue), 0.12);
  border: 1.5px solid rgba(var(--rgb-primary-blue), 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent-orange);
  font-size: 18px;
  transition: all 0.3s ease;
}

.hero-call-now:hover .hero-call-icon {
  background: var(--color-accent-orange);
  color: var(--color-pure-white);
  border-color: var(--color-accent-orange);
  transform: rotate(15deg);
}

.hero-call-text {
  display: flex;
  flex-direction: column;
}

.call-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 700;
}

.call-number {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-accent-orange) !important;
  font-family: var(--font-display);
}

.call-number:hover {
  color: var(--color-accent-orange-hover) !important;
}


