/* ==========================================================================
   AYON DESIGN & BUILD CORP - ULTRA LUXURY ARCHITECTURAL DESIGN SYSTEM
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
  /* Color Palette - Premium Luxury Obsidian & Crimson */
  --color-bg: #090A0F;
  --color-bg-light: #FAFAFB;
  --color-surface-dark: #12141D;
  --color-surface-card: #1A1D2A;
  --color-surface-light: #FFFFFF;
  
  --color-primary: #EE212B;
  --color-primary-hover: #FF3B45;
  --color-primary-glow: rgba(238, 33, 43, 0.3);
  
  --color-accent-gold: #D4AF37;
  --color-accent-gold-glow: rgba(212, 175, 55, 0.2);
  
  --color-text-dark-primary: #FFFFFF;
  --color-text-dark-muted: #F1F5F9;
  --color-text-light-primary: #0F172A;
  --color-text-light-muted: #475569;
  
  --color-border-dark: rgba(255, 255, 255, 0.15);
  --color-border-light: #E2E8F0;
  
  /* Typography */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  
  /* Radii & Layout - NO PILL ROUNDED CORNERS (Sleek 2px to 8px max) */
  --radius-xs: 2px;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  
  /* Shadows & Glassmorphism */
  --glass-bg: rgba(9, 10, 15, 0.82);
  --glass-border: rgba(255, 255, 255, 0.12);
  --shadow-card: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
  --shadow-card-hover: 0 20px 40px -15px rgba(238, 33, 43, 0.25);
  
  --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  font-family: var(--font-body);
  color: var(--color-text-light-primary);
  background-color: var(--color-bg-light);
  line-height: 1.6;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

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

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

.container {
  width: 90%;
  max-width: 1280px;
  margin: 0 auto;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  letter-spacing: -0.02em;
  line-height: 1.15;
}

/* Header & Navigation */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--glass-border);
  padding: 1rem 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.brand-logo span {
  color: var(--color-primary);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: #E2E8F0;
  font-size: 0.95rem;
  font-weight: 500;
  position: relative;
  padding: 0.5rem 0;
}

.nav-links a:hover, .nav-links a.active {
  color: #FFFFFF;
}

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

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

/* Buttons (No Pill Shapes) */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.9rem 2rem;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius-xs);
  transition: var(--transition);
  cursor: pointer;
  border: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.btn-primary {
  background: var(--color-primary);
  color: #FFFFFF;
  box-shadow: 0 4px 20px var(--color-primary-glow);
}

.btn-primary:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(238, 33, 43, 0.4);
}

.btn-outline {
  background: rgba(9, 10, 15, 0.55);
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(8px);
}

.btn-outline:hover {
  border-color: var(--color-primary);
  background: rgba(238, 33, 43, 0.25);
  color: #FFFFFF;
}

/* Mobile Sticky Quote CTA Bar */
.mobile-quote-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: var(--color-surface-dark);
  border-top: 2px solid var(--color-primary);
  padding: 0.75rem 1rem;
}

.mobile-quote-cta .btn {
  width: 100%;
}

/* DYNAMIC SMOOTH PARALLAX HERO SECTION (GPU Hardware Accelerated Motion) */
.hero-wrapper {
  position: relative;
  overflow: hidden;
  color: #FFFFFF;
  padding: 8.5rem 0 7.5rem;
  background: #090A0F;
}

.parallax-bg-layer {
  position: absolute;
  top: -15%;
  left: 0;
  width: 100%;
  height: 135%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  z-index: 1;
  will-change: transform;
  transform: translateY(0);
}

.parallax-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(9, 10, 15, 0.25) 0%, rgba(9, 10, 15, 0.6) 100%);
  z-index: 2;
}

.hero-content-center {
  position: relative;
  z-index: 3;
  max-width: 840px;
  margin: 0 auto;
  text-align: center;
}

.hero-badge {
  display: inline-block;
  padding: 0.45rem 1.1rem;
  background: rgba(9, 10, 15, 0.65);
  border: 1px solid rgba(238, 33, 43, 0.6);
  border-radius: var(--radius-xs);
  color: #FFFFFF;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.hero-title {
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 1.5rem;
  text-shadow: 0 3px 12px rgba(0,0,0,0.85);
}

.hero-title span {
  color: #FF4D55;
  text-shadow: 0 3px 12px rgba(0,0,0,0.85);
}

.hero-desc {
  font-size: 1.25rem;
  color: #FFFFFF;
  font-weight: 500;
  margin: 0 auto 2.75rem;
  max-width: 700px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.85);
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

/* Stats Ribbon */
.stats-ribbon {
  background: var(--color-surface-card);
  border-top: 1px solid var(--color-border-dark);
  border-bottom: 1px solid var(--color-border-dark);
  padding: 2.5rem 0;
  position: relative;
  z-index: 5;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-num {
  font-family: var(--font-heading);
  font-size: 2.35rem;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 0.25rem;
}

.stat-label {
  color: var(--color-text-dark-muted);
  font-size: 0.9rem;
  font-weight: 500;
}

/* Sections */
.section {
  padding: 5.5rem 0;
}

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

.section-dark {
  background: var(--color-bg);
  color: #FFFFFF;
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3.5rem;
}

.section-tag {
  color: var(--color-primary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.85rem;
  margin-bottom: 0.75rem;
  display: block;
}

.section-title {
  font-size: clamp(2rem, 3.2vw, 2.85rem);
  font-weight: 800;
  margin-bottom: 1rem;
}

.section-desc {
  color: var(--color-text-light-muted);
  font-size: 1.05rem;
}

.section-dark .section-desc {
  color: var(--color-text-dark-muted);
}

/* Grids & Cards */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: #FFFFFF;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--color-border-light);
  box-shadow: 0 4px 15px rgba(0,0,0,0.03);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 35px rgba(0,0,0,0.08);
  border-color: rgba(238, 33, 43, 0.3);
}

.service-card-img {
  height: 230px;
  overflow: hidden;
  position: relative;
}

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.service-card-body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-card-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--color-text-light-primary);
}

.service-card-text {
  color: var(--color-text-light-muted);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.feature-card {
  background: var(--color-surface-card);
  border: 1px solid var(--color-border-dark);
  padding: 1.85rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.feature-card:hover {
  border-color: var(--color-primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}

.feature-icon {
  width: 44px;
  height: 44px;
  background: rgba(238, 33, 43, 0.15);
  color: var(--color-primary);
  border-radius: var(--radius-xs);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
}

.feature-title {
  color: #FFFFFF;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.feature-desc {
  color: var(--color-text-dark-muted);
  font-size: 0.9rem;
}

.testimonial-card {
  background: #FFFFFF;
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-sm);
  padding: 2rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.03);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--color-text-light-muted);
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--color-text-light-primary);
}

/* Form Embed Placeholder */
.form-placeholder {
  background: #FFFFFF;
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-sm);
  padding: 3.5rem 2.5rem;
  margin: 2rem 0;
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.03);
}

.form-placeholder h4 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--color-text-light-primary);
  margin-bottom: 0.5rem;
  text-align: left;
}

.form-placeholder p {
  font-family: var(--font-body);
  color: var(--color-text-light-muted);
  font-size: 0.95rem;
  margin-bottom: 1.75rem;
  text-align: left;
}

/* Premium Contact Form styling */
.ayon-contact-form {
  text-align: left;
  margin-top: 1.5rem;
}

.ayon-contact-form .form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

@media (max-width: 768px) {
  .ayon-contact-form .form-grid {
    grid-template-columns: 1fr;
  }
}

.ayon-contact-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.ayon-contact-form .form-group.full-width {
  grid-column: span 2;
}

@media (max-width: 768px) {
  .ayon-contact-form .form-group.full-width {
    grid-column: span 1;
  }
}

.ayon-contact-form label {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text-light-primary);
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

.ayon-contact-form input[type="text"],
.ayon-contact-form input[type="email"],
.ayon-contact-form input[type="tel"],
.ayon-contact-form select,
.ayon-contact-form textarea {
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 0.85rem 1.15rem;
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-xs);
  background-color: #FAFAFB;
  color: var(--color-text-light-primary);
  outline: none;
  transition: var(--transition);
  width: 100%;
}

.ayon-contact-form input:focus,
.ayon-contact-form select:focus,
.ayon-contact-form textarea:focus {
  border-color: var(--color-primary);
  background-color: #FFFFFF;
  box-shadow: 0 0 0 3px var(--color-primary-glow);
}

.ayon-contact-form select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23475569' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.15rem center;
  background-size: 0.9rem;
  padding-right: 2.75rem;
}

.ayon-contact-form textarea {
  resize: vertical;
}

.ayon-contact-form button[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  cursor: pointer;
  border: none;
  font-weight: 600;
  transition: var(--transition);
}

.ayon-contact-form button[type="submit"]:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.btn-spinner {
  display: inline-block;
  width: 1rem;
  height: 1rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: #FFF;
  animation: form-spin 0.6s linear infinite;
}

@keyframes form-spin {
  to { transform: rotate(360deg); }
}

/* Success screen animations */
.form-success-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2.5rem 1rem;
  animation: form-fade-in 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes form-fade-in {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.success-icon-wrapper {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background-color: rgba(34, 197, 94, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  border: 1px solid rgba(34, 197, 94, 0.2);
}

.success-icon-wrapper svg {
  width: 1.75rem;
  height: 1.75rem;
  color: #22C55E;
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.form-success-container h4 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  color: var(--color-text-light-primary);
  margin-bottom: 0.5rem;
  text-align: center;
}

.form-success-container p {
  font-family: var(--font-body);
  color: var(--color-text-light-muted);
  font-size: 0.95rem;
  max-width: 450px;
  line-height: 1.5;
  text-align: center;
}

.form-message {
  display: none;
  margin-top: 1.25rem;
  padding: 0.85rem 1.15rem;
  border-radius: var(--radius-xs);
  text-align: center;
  font-size: 0.95rem;
  font-family: var(--font-body);
}

.form-message.error {
  display: block;
  background-color: #FEF2F2;
  border: 1px solid #FCA5A5;
  color: #DC2626;
}

/* Footer */
.site-footer {
  background: #050608;
  color: #94A3B8;
  padding: 4.5rem 0 2rem;
  border-top: 1px solid var(--color-border-dark);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3.5rem;
  margin-bottom: 3.5rem;
}

.footer-brand p {
  color: #94A3B8;
  margin-top: 1rem;
  font-size: 0.95rem;
}

.footer-heading {
  color: #FFFFFF;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: #94A3B8;
  font-size: 0.95rem;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
}

/* Responsive Breakpoints & Mobile/Tablet Layout Alignment */
@media (max-width: 1024px) {
  /* Hide red DESIGN & BUILD span text on tablet & mobile so logo fits cleanly without cropping */
  .brand-logo span {
    display: none !important;
  }
  /* Hide desktop header CTA buttons on tablet & mobile screens to eliminate navbar crowding */
  .header-inner > div {
    display: none !important;
  }
  /* Hide navbar link list on tablet sizes to prevent navigation collisions and horizontal drift */
  .nav-links {
    display: none !important;
  }
  /* Display sticky mobile/tablet CTA bar fixed at bottom */
  .mobile-quote-cta {
    display: block !important;
  }
  body {
    padding-bottom: 4.5rem;
  }
}

@media (max-width: 992px) {
  .grid-3, .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .grid-2, .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .grid-2, .grid-4 {
    grid-template-columns: 1fr;
  }
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* Bulletproof Mobile Horizontal Drift Prevention */
html, body {
  overflow-x: hidden !important;
  position: relative;
  width: 100%;
}

/* GEO-PERSONALISATION LOCATION CUSTOMIZATION BANNER */
.geo-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #12141D;
  border-top: 3px solid var(--color-primary);
  color: #FFFFFF;
  padding: 1.25rem 0;
  z-index: 1001;
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.6);
  animation: geoSlideUp 0.4s ease-out;
}

@keyframes geoSlideUp {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}

.geo-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.geo-banner-text {
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.geo-banner-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.geo-select {
  background: #1A1D2A;
  border: 1px solid var(--color-border-dark);
  color: #FFFFFF;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-xs);
  font-size: 0.85rem;
  cursor: pointer;
  outline: none;
  font-family: var(--font-body);
}

.geo-select option {
  background: #12141D;
  color: #FFFFFF;
}

.geo-close {
  background: none;
  border: none;
  color: #94A3B8;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0 0.5rem;
  transition: var(--transition);
  line-height: 1;
}

.geo-close:hover {
  color: #FFFFFF;
}

@media (max-width: 1024px) {
  .geo-banner {
    padding: 1.25rem 1rem;
  }
  .geo-banner-inner {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  .geo-banner-actions {
    justify-content: center;
    width: 100%;
  }
  /* Offset body padding to accommodate both the banner and the sticky bottom cta bar */
  body.geo-banner-active {
    padding-bottom: 9.5rem !important;
  }
}

/* Lightbox Modal CSS */
.ayon-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.4s;
}

.ayon-modal.active {
  opacity: 1;
  visibility: visible;
}

.ayon-modal-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(9, 10, 15, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.ayon-modal-content {
  position: relative;
  background-color: #FFFFFF;
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-sm);
  width: 90%;
  max-width: 640px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  transform: translateY(20px);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1101;
}

.ayon-modal.active .ayon-modal-content {
  transform: translateY(0);
}

.ayon-modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  background: none;
  border: none;
  font-size: 2.25rem;
  color: var(--color-text-light-muted);
  cursor: pointer;
  line-height: 1;
  transition: var(--transition);
}

.ayon-modal-close:hover {
  color: var(--color-primary);
}

.ayon-modal-body {
  padding: 3rem 2.5rem;
}

.ayon-modal-body h4 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--color-text-light-primary);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.ayon-modal-body p {
  font-family: var(--font-body);
  color: var(--color-text-light-muted);
  font-size: 0.95rem;
  margin-bottom: 1.75rem;
  line-height: 1.5;
}

/* Enable smooth scroll behavior when clicking anchor links to #quote */
html {
  scroll-behavior: smooth;
}

/* Service Region Cards Styles */
.region-card {
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease, border-color 0.3s ease;
}

.region-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06) !important;
  border-color: var(--color-primary) !important;
}
