/* 
========================================================================
   AKSHAYA AMBULANCE SERVICE - STYLESHEET
   Author: Antigravity AI
   Colors: Navy (#0B1F3A), Emergency Red (#D71920)
========================================================================
*/

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Poppins:wght@400;500;600;700;800&display=swap');

/* --- Design System / CSS Variables --- */
:root {
  --primary: #0B1F3A;
  --primary-rgb: 11, 31, 58;
  --secondary: #D71920;
  --secondary-rgb: 215, 25, 32;
  --accent: #FFFFFF;
  --bg-light: #F5F8FC;
  --bg-white: #FFFFFF;
  --text-dark: #172033;
  --text-muted: #64748B;
  --whatsapp-green: #25D366;
  --whatsapp-green-hover: #20BA5A;
  
  /* Typography */
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Transitions & Shadows */
  --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm: 0 4px 6px -1px rgba(11, 31, 58, 0.05), 0 2px 4px -1px rgba(11, 31, 58, 0.03);
  --shadow-md: 0 10px 15px -3px rgba(11, 31, 58, 0.08), 0 4px 6px -2px rgba(11, 31, 58, 0.04);
  --shadow-lg: 0 20px 25px -5px rgba(11, 31, 58, 0.12), 0 10px 10px -5px rgba(11, 31, 58, 0.08);
  --shadow-red: 0 10px 20px -5px rgba(215, 25, 32, 0.3);

  /* Layout */
  --max-width: 1240px;
  --header-height: 80px;
  --header-height-scroll: 70px;
  --border-radius: 12px;
  --border-radius-lg: 20px;
}

/* --- Base & Reset --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background-color: var(--bg-white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--primary);
  font-weight: 700;
  line-height: 1.25;
}

p {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* --- Focus States for Accessibility --- */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid var(--secondary);
  outline-offset: 3px;
}

/* --- Layout Containers --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.section-padding {
  padding-top: 80px;
  padding-bottom: 80px;
}

.bg-light {
  background-color: var(--bg-light);
}

.bg-dark {
  background-color: var(--primary);
  color: var(--accent);
}

.bg-dark p {
  color: #A0AEC0;
}

.text-center {
  text-align: center;
}

/* --- Dual-Color Heading Component --- */
.dual-title {
  font-size: 2.25rem;
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

.dual-title span {
  color: var(--secondary);
}

.section-subtitle {
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--secondary);
  margin-bottom: 0.5rem;
  display: block;
}

.title-center-wrap {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 3.5rem auto;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 1.75rem;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 30px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition-normal);
  gap: 8px;
}

.btn-primary {
  background-color: var(--secondary);
  color: var(--accent);
  box-shadow: var(--shadow-red);
}

.btn-primary:hover {
  background-color: #be1218;
  transform: translateY(-2px);
  box-shadow: 0 12px 24px -5px rgba(215, 25, 32, 0.45);
}

.btn-secondary {
  background-color: var(--primary);
  color: var(--accent);
  box-shadow: var(--shadow-md);
}

.btn-secondary:hover {
  background-color: #123058;
  transform: translateY(-2px);
}

.btn-outline {
  background-color: transparent;
  border-color: var(--primary);
  color: var(--primary);
}

.btn-outline:hover {
  background-color: var(--primary);
  color: var(--accent);
}

.btn-white {
  background-color: var(--accent);
  color: var(--primary);
}

.btn-white:hover {
  background-color: var(--bg-light);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 0.5rem 1.25rem;
  font-size: 0.85rem;
}

/* --- Header & Navigation --- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-sm);
  z-index: 1000;
  transition: var(--transition-normal);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
}

.site-header.scrolled {
  height: var(--header-height-scroll);
  box-shadow: var(--shadow-md);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

/* Logo Area */
.logo {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 62px;
  width: auto;
  display: block;
  object-fit: contain;
  transition: var(--transition-normal);
}

.site-header.scrolled .logo-img {
  height: 50px;
}

.footer-logo-img {
  height: 78px;
  width: auto;
  display: block;
  object-fit: contain;
  margin-bottom: 1.5rem;
}

/* Desktop Navigation */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-family: var(--font-heading);
  font-weight: 500;
  color: var(--primary);
  font-size: 0.95rem;
  position: relative;
  padding: 0.25rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--secondary);
  transition: var(--transition-fast);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link.active {
  color: var(--secondary);
  font-weight: 600;
}

/* Header Buttons */
.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.btn-whatsapp-header {
  background-color: var(--whatsapp-green);
  color: var(--accent);
  display: inline-flex;
}

.btn-whatsapp-header:hover {
  background-color: var(--whatsapp-green-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(37, 211, 102, 0.25);
}

@media (max-width: 768px) {
  .btn-whatsapp-header {
    display: none;
  }
}

/* Hamburger Toggler */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1100;
}

.hamburger-line {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--primary);
  margin: 5px 0;
  transition: var(--transition-normal);
}

/* --- Hero Section --- */
.hero-section {
  position: relative;
  background-color: var(--primary);
  color: var(--accent);
  padding-top: calc(var(--header-height) + 50px);
  padding-bottom: 70px;
  overflow: hidden;
}

/* Inner Page Hero (Except Homepage) */
.inner-hero {
  padding-top: calc(var(--header-height) + 80px) !important;
  padding-bottom: 90px !important;
  text-align: center;
}

.hero-section h1,
.hero-section h2,
.hero-section .dual-title {
  color: var(--accent) !important;
}

.hero-section .dual-title span,
.hero-section h1 span,
.hero-section h2 span {
  color: var(--secondary) !important;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
}

.hero-content {
  max-width: 600px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background-color: rgba(215, 25, 32, 0.1);
  color: var(--secondary);
  padding: 0.35rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero-tag svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.hero-title {
  font-size: 3rem;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  color: var(--accent);
}

.hero-text {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.85);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.hero-visual {
  position: relative;
}

.hero-img-wrap {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 3px solid var(--secondary); /* Bold solid brand red highlight border */
  position: relative;
}

.hero-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.2); /* Inner glassy border highlight */
  border-radius: calc(var(--border-radius-lg) - 3px);
  pointer-events: none;
}

.hero-trust-row {
  display: flex;
  gap: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 1.5rem;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--accent);
}

.hero-trust-item svg {
  width: 18px;
  height: 18px;
  color: var(--secondary);
  flex-shrink: 0;
}

/* --- Hero CTA Strip --- */
.hero-cta-strip {
  background-color: var(--bg-light);
  color: var(--text-dark);
  padding: 1.5rem 0;
  border-top: 3px solid var(--secondary);
  border-bottom: 1px solid rgba(11, 31, 58, 0.08);
  box-shadow: var(--shadow-sm);
}

.cta-strip-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.cta-strip-text h3 {
  color: var(--primary);
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
}

.cta-strip-text p {
  color: var(--text-muted);
  margin-bottom: 0;
}

.cta-strip-buttons {
  display: flex;
  gap: 1rem;
}

/* --- About Teaser & About Section --- */
.about-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 4rem;
  align-items: center;
}

.about-image {
  position: relative;
}

.about-img-wrap {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-accent-box {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background-color: var(--secondary);
  color: var(--accent);
  padding: 1.5rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-lg);
  max-width: 220px;
  z-index: 10;
}

.about-accent-box h4 {
  color: var(--accent);
  font-size: 1.2rem;
  margin-bottom: 0.25rem;
}

.about-accent-box p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.85rem;
  margin-bottom: 0;
}

.about-list {
  margin-top: 1.5rem;
  margin-bottom: 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.about-list-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  color: var(--text-dark);
}

.about-list-item svg {
  width: 16px;
  height: 16px;
  color: var(--secondary);
  flex-shrink: 0;
}

/* --- Why Choose Us Section --- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-top: 1rem;
}

.why-card {
  background-color: var(--bg-white);
  padding: 2.5rem 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(11, 31, 58, 0.04);
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 4px;
  background-color: var(--secondary);
  transition: var(--transition-normal);
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.why-card:hover::before {
  width: 100%;
}

.why-icon {
  width: 50px;
  height: 50px;
  background-color: rgba(215, 25, 32, 0.08);
  color: var(--secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.why-icon svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.why-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.why-card p {
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* --- Services Grid --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2rem;
}

.service-card {
  background-color: var(--bg-white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(11, 31, 58, 0.05);
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(215, 25, 32, 0.15);
}

.service-header {
  padding: 2.25rem 2rem 1.25rem 2rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  border-bottom: 1px dashed rgba(11, 31, 58, 0.08);
}

.service-icon {
  width: 60px;
  height: 60px;
  background-color: rgba(11, 31, 58, 0.04);
  color: var(--primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition-normal);
}

.service-card:hover .service-icon {
  background-color: rgba(215, 25, 32, 0.1);
  color: var(--secondary);
}

.service-icon svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.service-card h3 {
  font-size: 1.35rem;
  line-height: 1.3;
}

.service-body {
  padding: 1.5rem 2rem;
  flex-grow: 1;
}

.service-body p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

.service-footer {
  padding: 1.25rem 2rem 2.25rem 2rem;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  color: var(--secondary);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.service-link svg {
  width: 14px;
  height: 14px;
  transition: var(--transition-fast);
}

.service-link:hover svg {
  transform: translateX(4px);
}

/* Service Card Image Additions */
.service-img-wrap {
  width: 100%;
  height: 220px;
  overflow: hidden;
  position: relative;
}

.service-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.service-card:hover .service-card-img {
  transform: scale(1.08);
}

.service-card-content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-card .service-img-wrap + .service-card-content .service-header {
  padding-top: 1.5rem;
}

/* Asymmetrical Service Row Layout */
.services-list-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1rem 0;
}

.service-row {
  display: flex;
  align-items: center;
  gap: 5rem;
  margin-bottom: 7rem;
}

.service-row:last-child {
  margin-bottom: 0;
}

.service-row:nth-child(even) {
  flex-direction: row-reverse;
}

.service-row-img-wrap {
  flex: 1.1;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 400px;
  position: relative;
}

.service-row-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.service-row:hover .service-row-img {
  transform: scale(1.05);
}

.service-row-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background-color: var(--secondary);
  color: var(--accent);
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: var(--shadow-md);
  z-index: 10;
}

.service-row:nth-child(even) .service-row-badge {
  left: auto;
  right: 20px;
}

.service-row-info {
  flex: 0.9;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.service-row-number {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 3rem;
  color: rgba(11, 31, 58, 0.1);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.service-row-title-wrap {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.service-icon-small {
  width: 44px;
  height: 44px;
  background-color: rgba(215, 25, 32, 0.08);
  color: var(--secondary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.service-icon-small svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.service-row-info h3 {
  font-size: 1.75rem;
  color: var(--primary);
  margin-bottom: 0;
}

.service-row-desc {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.service-row-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

.service-row-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  color: var(--text-dark);
  font-size: 0.95rem;
}

.service-row-features li svg {
  width: 16px;
  height: 16px;
  color: var(--secondary);
  flex-shrink: 0;
}

/* Tablet & Mobile styles for unique layout */
@media (max-width: 1024px) {
  .service-row {
    flex-direction: column !important;
    gap: 2.5rem;
    margin-bottom: 5rem;
  }
  
  .service-row-img-wrap {
    width: 100%;
    height: 300px;
  }
  
  .service-row-info {
    width: 100%;
    align-items: center;
    text-align: center;
  }
  
  .service-row-title-wrap {
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .service-row-features {
    justify-items: center;
    width: 100%;
  }
  
  .service-row-info .btn {
    align-self: center;
  }
}

/* --- Services Callout Banner --- */
.services-callout {
  margin-top: 4rem;
  background: linear-gradient(135deg, var(--primary) 0%, #173258 100%);
  border-radius: var(--border-radius-lg);
  padding: 3rem 4rem;
  color: var(--accent);
  box-shadow: var(--shadow-lg);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  border-left: 6px solid var(--secondary);
}

.services-callout-text {
  max-width: 600px;
}

.services-callout-text h3 {
  color: var(--accent);
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}

.services-callout-text p {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 0;
}

/* --- Blog Section & Search --- */
.blog-controls {
  max-width: 500px;
  margin: 0 auto 3rem auto;
  position: relative;
}

.blog-search-input {
  width: 100%;
  padding: 1rem 1.5rem 1rem 3rem;
  border-radius: 30px;
  border: 1px solid rgba(11, 31, 58, 0.15);
  font-family: var(--font-body);
  font-size: 1rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
}

.blog-search-input:focus {
  border-color: var(--secondary);
  box-shadow: 0 0 0 4px rgba(215, 25, 32, 0.1);
  outline: none;
}

.blog-search-icon {
  position: absolute;
  left: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  pointer-events: none;
  width: 18px;
  height: 18px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2.5rem;
}

.blog-card {
  background-color: var(--bg-white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(11, 31, 58, 0.05);
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.blog-img-wrap {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  background-color: var(--bg-light);
}

.blog-img-wrap svg {
  width: 100%;
  height: 100%;
}

.blog-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.blog-card:hover .blog-card-img {
  transform: scale(1.08);
}

.blog-badge {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  background-color: var(--secondary);
  color: var(--accent);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

.blog-content {
  padding: 2rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.8rem;
  font-weight: 500;
  margin-bottom: 1rem;
  color: var(--text-muted);
}

.blog-meta span {
  display: flex;
  align-items: center;
  gap: 4px;
}

.blog-meta svg {
  width: 14px;
  height: 14px;
}

.blog-card h3 {
  font-size: 1.35rem;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.blog-card h3 a:hover {
  color: var(--secondary);
}

.blog-card p {
  font-size: 0.95rem;
  flex-grow: 1;
}

.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 1rem;
}

.blog-read-more svg {
  width: 14px;
  height: 14px;
  transition: var(--transition-fast);
}

.blog-read-more:hover {
  color: var(--secondary);
}

.blog-read-more:hover svg {
  transform: translateX(4px);
}

/* --- Contact Section / Page --- */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 4rem;
  align-items: start;
}

.contact-info-wrap {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-detail-card {
  background-color: var(--bg-light);
  padding: 2rem;
  border-radius: var(--border-radius);
  display: flex;
  gap: 1.25rem;
  border-left: 4px solid var(--secondary);
}

.contact-detail-icon {
  width: 50px;
  height: 50px;
  background-color: rgba(215, 25, 32, 0.08);
  color: var(--secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-detail-icon svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.contact-detail-text h4 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.contact-detail-text p {
  margin-bottom: 0;
  font-size: 1rem;
  font-weight: 500;
}

.contact-detail-text a:hover {
  color: var(--secondary);
}

/* Contact Form Card */
.contact-form-card {
  background-color: var(--bg-white);
  border-radius: var(--border-radius);
  padding: 3rem 2.5rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(11, 31, 58, 0.05);
}

.contact-form-card h3 {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}

.contact-form-card p {
  margin-bottom: 2rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.form-control {
  width: 100%;
  padding: 0.85rem 1.25rem;
  border-radius: 8px;
  border: 1px solid rgba(11, 31, 58, 0.15);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-dark);
  transition: var(--transition-normal);
}

.form-control:focus {
  border-color: var(--secondary);
  outline: none;
  box-shadow: 0 0 0 3px rgba(215, 25, 32, 0.08);
}

.form-error-msg {
  color: var(--secondary);
  font-size: 0.775rem;
  margin-top: 0.25rem;
  display: none;
}

.form-group.has-error .form-control {
  border-color: var(--secondary);
  background-color: rgba(215, 25, 32, 0.01);
}

.form-group.has-error .form-error-msg {
  display: block;
}

.submit-btn {
  width: 100%;
  justify-content: center;
}

/* Success Modal/Banner */
.form-success-alert {
  display: none;
  background-color: #DEF7EC;
  border: 1px solid #BCF0DA;
  color: #03543F;
  padding: 1.5rem;
  border-radius: var(--border-radius);
  margin-bottom: 2rem;
  animation: slide-in-top 0.4s ease-out;
}

.form-success-alert-flex {
  display: flex;
  gap: 12px;
}

.form-success-alert svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.form-success-alert h4 {
  color: #03543F;
  margin-bottom: 0.25rem;
}

.form-success-alert p {
  color: #046c4e;
  font-size: 0.875rem;
  margin-bottom: 0;
}

/* --- Service Area / Map Visual (Placeholder-based styling) --- */
.map-placeholder-wrap {
  border-radius: var(--border-radius);
  overflow: hidden;
  border: 1px solid rgba(11, 31, 58, 0.08);
  box-shadow: var(--shadow-sm);
  background-color: var(--bg-light);
  aspect-ratio: 16/10;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  text-align: center;
}

.map-placeholder-bg {
  position: absolute;
  inset: 0;
  opacity: 0.07;
  pointer-events: none;
  background-image: radial-gradient(var(--primary) 1.5px, transparent 1.5px), radial-gradient(var(--primary) 1.5px, var(--bg-light) 1.5px);
  background-size: 30px 30px;
  background-position: 0 0, 15px 15px;
}

.map-placeholder-content {
  position: relative;
  z-index: 2;
  max-width: 380px;
}

.map-placeholder-icon {
  width: 60px;
  height: 60px;
  background-color: rgba(215, 25, 32, 0.1);
  color: var(--secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem auto;
  box-shadow: 0 0 0 8px rgba(215, 25, 32, 0.05);
}

.map-placeholder-icon svg {
  width: 26px;
  height: 26px;
}

.map-placeholder-content h4 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

/* --- Global bottom CTA Section --- */
.bottom-cta-section {
  position: relative;
  background: linear-gradient(135deg, var(--primary) 0%, #061224 100%);
  color: var(--accent);
  padding: 6rem 0;
  text-align: center;
  border-bottom: 4px solid var(--secondary);
  overflow: hidden;
}

.bottom-cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.1;
  background-image: radial-gradient(#ffffff 1px, transparent 1px);
  background-size: 20px 20px;
  pointer-events: none;
}

.bottom-cta-wrap {
  position: relative;
  z-index: 5;
  max-width: 700px;
  margin: 0 auto;
}

.bottom-cta-wrap h2 {
  color: var(--accent);
  font-size: 2.75rem;
  margin-bottom: 1rem;
}

.bottom-cta-wrap p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.15rem;
  margin-bottom: 2.5rem;
}

.bottom-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

/* --- Footer --- */
.site-footer {
  background-color: #061120;
  color: #8C9BAE;
  padding-top: 80px;
  padding-bottom: 40px;
  font-size: 0.95rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.9fr;
  gap: 4rem;
  margin-bottom: 50px;
}

.footer-brand h3 {
  color: var(--accent);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.footer-brand p {
  color: #8C9BAE;
  margin-bottom: 1.5rem;
  max-width: 320px;
}

.footer-about-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent);
  font-weight: 600;
  font-size: 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
}

.footer-about-tag span {
  width: 8px;
  height: 8px;
  background-color: #10B981;
  border-radius: 50%;
  display: inline-block;
}

.footer-links h4,
.footer-contact h4 {
  color: var(--accent);
  font-size: 1.15rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-links h4::after,
.footer-contact h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: var(--secondary);
}

.footer-links-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links-list a {
  color: #8C9BAE;
}

.footer-links-list a:hover {
  color: var(--accent);
  padding-left: 4px;
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-contact-item {
  display: flex;
  gap: 12px;
}

.footer-contact-item svg {
  width: 18px;
  height: 18px;
  color: var(--secondary);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-contact-item span {
  line-height: 1.4;
}

.footer-contact-item a:hover {
  color: var(--accent);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  margin-bottom: 0;
  font-size: 0.85rem;
}

.footer-legal-links {
  display: flex;
  gap: 1.5rem;
  font-size: 0.85rem;
}

.footer-legal-links a:hover {
  color: var(--accent);
}

/* --- Back To Top & Floating Actions --- */
.back-to-top {
  position: fixed;
  bottom: 100px;
  right: 25px;
  width: 48px;
  height: 48px;
  background-color: var(--primary);
  color: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-md);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition-normal);
}

.back-to-top.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background-color: var(--secondary);
  transform: translateY(-3px);
  box-shadow: 0 8px 16px rgba(215, 25, 32, 0.3);
}

.back-to-top svg {
  width: 20px;
  height: 20px;
}

/* Floating Action Panel (Fixed call/whatsapp icons bottom right) */
.floating-actions {
  position: fixed;
  bottom: 25px;
  right: 25px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}

.floating-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  box-shadow: var(--shadow-lg);
  cursor: pointer;
  transition: var(--transition-normal);
  position: relative;
}

.floating-btn svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.floating-btn-whatsapp {
  background-color: var(--whatsapp-green);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
}

.floating-btn-whatsapp:hover {
  background-color: var(--whatsapp-green-hover);
  transform: scale(1.1);
}

.floating-btn-call {
  background-color: var(--secondary);
  box-shadow: var(--shadow-red);
}

.floating-btn-call:hover {
  background-color: #be1218;
  transform: scale(1.1);
}

/* Pulse animation for floating CTAs */
.floating-btn::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 4px solid inherit;
  opacity: 0.4;
  animation: pulse-ring 2s cubic-bezier(0.215, 0.610, 0.355, 1) infinite;
  pointer-events: none;
}

.floating-btn-whatsapp::after {
  border-color: var(--whatsapp-green);
}

.floating-btn-call::after {
  border-color: var(--secondary);
}

/* --- Scroll Reveal Animations & Keyframes --- */
.reveal-fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.215, 0.610, 0.355, 1), transform 0.8s cubic-bezier(0.215, 0.610, 0.355, 1);
}

.reveal-fade-up.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-fade-in {
  opacity: 0;
  transition: opacity 1s ease-out;
}

.reveal-fade-in.revealed {
  opacity: 1;
}

@keyframes pulse-ring {
  0% {
    transform: scale(0.95);
    opacity: 0.8;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    transform: scale(1.3);
    opacity: 0;
  }
}

@keyframes pulse-slow {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.06);
  }
}

@keyframes slide-in-top {
  0% {
    transform: translateY(-20px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

/* --- Responsive Media Queries --- */

/* Desktop / Laptop / Large Screen adjustments */
@media (min-width: 1440px) {
  :root {
    --max-width: 1360px;
  }
  .hero-title {
    font-size: 3.5rem;
  }
}

/* iPads / Tablets (Landscape / Portrait) */
@media (max-width: 1024px) {
  html {
    font-size: 15px;
  }
  
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
    text-align: center;
  }
  
  .hero-content {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    order: 2;
  }

  .hero-visual {
    order: 1;
    width: 100%;
    max-width: 550px;
    margin: 0 auto;
  }

  .hero-actions {
    justify-content: center;
  }
  
  .hero-trust-row {
    justify-content: center;
    width: 100%;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-image {
    max-width: 500px;
    margin: 0 auto;
    width: 100%;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
  
  .footer-brand {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .logo-img {
    height: 70px;
  }

  .site-header.scrolled .logo-img {
    height: 58px;
  }

  /* Hamburger Menu Activation */
  .nav-toggle {
    display: block;
  }
  
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 290px;
    height: 100vh;
    background-color: var(--bg-white);
    flex-direction: column;
    align-items: flex-start;
    padding: calc(var(--header-height) + 30px) 2rem 2rem 2rem;
    gap: 1.5rem;
    box-shadow: -10px 0 30px rgba(11, 31, 58, 0.1);
    z-index: 1050;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  .nav-menu.open {
    right: 0;
  }
  
  .nav-link {
    font-size: 1.1rem;
    width: 100%;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(11, 31, 58, 0.05);
  }

  .nav-link::after {
    display: none;
  }

  .header-actions .btn-call {
    display: none; /* Hide header call button on mobile, use floating and menu link */
  }

  .site-header {
    height: 70px;
  }
  
  .site-header.scrolled {
    height: 60px;
  }
  
  .hero-section {
    padding-top: 110px;
    padding-bottom: 50px;
  }

  .hero-title {
    font-size: 2.25rem;
  }
  
  .hero-trust-row {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }

  .cta-strip-flex {
    flex-direction: column;
    text-align: center;
  }

  .cta-strip-buttons {
    width: 100%;
    justify-content: center;
  }

  .services-callout {
    padding: 2.5rem 2rem;
    text-align: center;
    justify-content: center;
  }

  .services-callout-text {
    max-width: 100%;
  }

  .services-callout .btn {
    width: 100%;
  }

  .bottom-cta-wrap h2 {
    font-size: 2rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer-brand {
    grid-column: span 1;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* Mobile Screens (Small to Medium Devices) */
@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .btn {
    width: 100%;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .cta-strip-buttons {
    flex-direction: column;
  }

  .about-list {
    grid-template-columns: 1fr;
  }

  .about-accent-box {
    position: relative;
    bottom: 0;
    right: 0;
    margin: 1.5rem auto 0 auto;
    max-width: 100%;
    text-align: center;
  }

  .contact-form-card {
    padding: 2rem 1.5rem;
  }

  .bottom-cta-buttons {
    flex-direction: column;
  }

  .floating-actions {
    bottom: 20px;
    right: 20px;
  }

  .back-to-top {
    bottom: 160px; /* Shift up on small screens to prevent overlapping CTA */
    right: 20px;
    width: 44px;
    height: 44px;
  }
}

/* Extra small screen safety bounds */
@media (max-width: 320px) {
  .logo {
    font-size: 1.15rem;
  }
  .logo-icon svg {
    width: 26px;
    height: 26px;
  }
  .hero-title {
    font-size: 1.9rem;
  }
}

/* Hamburger Menu animation helper state */
.nav-toggle.open .hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
  background-color: var(--secondary);
}

.nav-toggle.open .hamburger-line:nth-child(2) {
  opacity: 0;
}

.nav-toggle.open .hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
  background-color: var(--secondary);
}
