/* ============================================
   ECODROPPZ - PREMIUM CAR WASH WEBSITE
   Modern Design System v2.0
   ============================================ */

:root {
  /* PRIMARY COLORS - Teal/Cyan Theme (from Logo) */
 --primary: #016937;
    --primary-light: #016937;
    --primary-dark: #016937;
    --primary-darker: #016937;      /* Darker Teal */
  
  /* ACCENT COLORS */
  --accent: #FF6B6B;               /* Coral Red */
  --accent-light: #FF8E8E;         /* Light Coral */
  --accent-dark: #E63946;          /* Dark Red */
  
  --secondary: #2D3E50;            /* Dark Gray - from Logo */
  --secondary-light: #3D4E60;      /* Light Dark Gray */
  
  /* NEUTRAL COLORS */
  --white: #FFFFFF;
  --gray-50: #F9FAFB;
  --gray-100: #F3F4F6;
  --gray-200: #E5E7EB;
  --gray-300: #D1D5DB;
  --gray-400: #9CA3AF;
  --gray-500: #6B7280;
  --gray-600: #4B5563;
  --gray-700: #2D3E50;
  --gray-800: #1F2937;
  --gray-900: #111827;
  
  /* FUNCTIONAL COLORS */
  --success: #10B981;
  --warning: #F59E0B;
  --error: #EF4444;
  --info: #3B82F6;
  
  /* TYPOGRAPHY */
  --font-display: 'Segoe UI', 'Trebuchet MS', system-ui, sans-serif;
  --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', sans-serif;
  --font-mono: 'Courier New', monospace;
  
  /* SPACING SYSTEM */
  --space-0: 0;
  --space-1: 0.25rem;   /* 4px */
  --space-2: 0.5rem;    /* 8px */
  --space-3: 0.75rem;   /* 12px */
  --space-4: 1rem;      /* 16px */
  --space-5: 1.25rem;   /* 20px */
  --space-6: 1.5rem;    /* 24px */
  --space-7: 1.75rem;   /* 28px */
  --space-8: 1rem;      /* 32px */
  --space-10: 2.5rem;   /* 40px */
  --space-12: 2rem;     /* 48px */
  --space-16: 2rem;     /* 64px */
  --space-20: 3rem;     /* 80px */
  --space-24: 6rem;     /* 96px */
  
  /* BORDER RADIUS */
  --radius-none: 0;
  --radius-xs: 0.25rem;
  --radius-sm: 0.5rem;
  --radius-md: 0.75rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --radius-2xl: 2rem;
  --radius-full: 9999px;
  
  /* SHADOWS */
  --shadow-xs: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-sm: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
  
  /* TRANSITIONS */
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 350ms cubic-bezier(0.4, 0, 0.2, 1);
  
  /* Z-INDEX STACK */
  --z-dropdown: 1000;
  --z-sticky: 1020;
  --z-fixed: 1030;
  --z-modal-backdrop: 1040;
  --z-modal: 1050;
  --z-popover: 1060;
  --z-tooltip: 1070;
}

/* ============================================
   RESET & BASE STYLES
   ============================================ */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--gray-700);
  background: linear-gradient(180deg, #f8fafb 0%, #ffffff 240px, #ffffff 100%);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  overflow-x: hidden;
}

.site-body {
  padding-top: 80px;
}

.site-main {
  flex: 1;
  position: relative;
  z-index: 1;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-4);
  color: var(--gray-900);
}

h1 {
  font-size: clamp(2.2rem, 6vw, 3.8rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

h2 {
  font-size: clamp(1.75rem, 5vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

h3 {
  font-size: 1.5rem;
  font-weight: 700;
}

h4 {
  font-size: 1.25rem;
  font-weight: 700;
}

h5 {
  font-size: 1.125rem;
  font-weight: 600;
}

h6 {
  font-size: 1rem;
  font-weight: 600;
}

p {
  margin-bottom: var(--space-4);
  color: var(--gray-600);
  line-height: 1.75;
  font-weight: 400;
}

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

a:hover {
  color: var(--primary-dark);
}

/* ============================================
   CONTAINER & LAYOUT
   ============================================ */

.container {
  width: 100%;
  /* max-width: 1280px; */
  margin: 0 auto;
  padding: 0 var(--space-6);
  display: flex;
  flex-direction: column;
}

@media (max-width: 768px) {
  .container {
    padding: 0 var(--space-4);
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 var(--space-3);
  }
}

/* ============================================
   SECTION STYLES
   ============================================ */

.section {
  padding: var(--space-20) 0;
  position: relative;
  overflow: hidden;
}

.section.section-light {
  background: linear-gradient(180deg, #f8fafb 0%, #f3f7f8 100%);
}

.section.section-primary {
  background:
    radial-gradient(circle at top right, rgba(27, 160, 152, 0.08), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f3fbfa 100%);
  color: var(--gray-900);
  border-top: 1px solid rgba(27, 160, 152, 0.08);
  border-bottom: 1px solid rgba(27, 160, 152, 0.08);
}

.section.section-dark {
  background: linear-gradient(180deg, #ffffff 0%, #f7fafb 100%);
  color: var(--gray-900);
}

@media (max-width: 768px) {
  .section {
    padding: var(--space-12) 0;
  }
}

@media (max-width: 480px) {
  .section {
    padding: var(--space-8) 0;
  }
}

/* ============================================
   GRID SYSTEM
   ============================================ */

.grid {
  display: grid;
  gap: var(--space-8);
}

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

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

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

.grid-auto {
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
}

.grid-auto-sm {
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
}

.grid-auto-lg {
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
}

@media (max-width: 768px) {
  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   FLEXBOX UTILITIES
   ============================================ */

.flex {
  display: flex;
  gap: var(--space-4);
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
}

.flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
}

.flex-col {
  flex-direction: column;
}

.flex-wrap {
  flex-wrap: wrap;
}

/* ============================================
   BUTTON STYLES
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-6);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  border: 2px solid transparent;
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: all var(--transition-base);
  text-decoration: none;
  white-space: nowrap;
  user-select: none;
}

.btn i {
  font-size: 1.1rem;
}

.btn:focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: 2px;
}

/* Primary Button */
.btn-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 12px rgba(27, 160, 152, 0.25);
  font-weight: 600;
  letter-spacing: 0.3px;
}

.btn-primary:hover {
  background: #016937;
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(27, 160, 152, 0.35);
}

.btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(27, 160, 152, 0.2);
}

/* Secondary Button */
.btn-secondary {
  background: var(--gray-100);
  color: var(--gray-900);
  border-color: var(--gray-300);
}

.btn-secondary:hover {
  background: var(--gray-200);
  border-color: var(--gray-400);
}

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

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

.btn-outline-primary {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  font-weight: 600;
}

.btn-outline-primary:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(27, 160, 152, 0.25);
}

/* Outline Light (for dark backgrounds) */
.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

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

/* Danger Button */
.btn-danger {
  background: var(--error);
  color: var(--white);
}

.btn-danger:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
}

/* Success Button */
.btn-success {
  background: var(--success);
  color: var(--white);
}

.btn-success:hover {
  background: #059669;
  transform: translateY(-2px);
}

/* Button Sizes */
.btn-sm {
  padding: var(--space-2) var(--space-4);
  font-size: 0.875rem;
}

.btn-lg {
  padding: var(--space-4) var(--space-8);
  font-size: 1.125rem;
}

.btn-full {
  width: 100%;
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-fixed);
  background: var(--white);
  border-bottom: 2px solid #e5e7eb;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(10px);
  animation: slideDownIn 0.3s var(--transition-fast);
}

@keyframes slideDownIn {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.header-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
  height: 80px;
  padding: 0 var(--space-6);
}

@media (max-width: 768px) {
  .header-wrapper {
    height: 70px;
    padding: 0 var(--space-4);
  }
}

/* Logo */
.brand {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  letter-spacing: -0.02em;
  transition: all var(--transition-fast);
}

.brand:hover {
  transform: translateY(-2px);
  color: var(--primary-dark);
}

.brand-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  border-radius: var(--radius-lg);
  color: var(--white);
  font-weight: 700;
  font-size: 1.4rem;
  box-shadow: 0 4px 12px rgba(27, 160, 152, 0.15);
}

.brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: var(--radius-lg);
}

/* Navigation */
.nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--space-6);
  list-style: none;
  flex: 1;
  margin: 0 var(--space-8);
}

.nav-link {
  font-weight: 600;
  color: var(--gray-700);
  padding: var(--space-2) var(--space-1);
  border-bottom: 2px solid transparent;
  transition: all var(--transition-fast);
  position: relative;
  display: flex;
  align-items: center;
  gap: var(--space-2);
  white-space: nowrap;
}

.nav-link i {
  font-size: 1.1rem;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary);
}

.nav-link.active {
  border-bottom-color: var(--primary);
}

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

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

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  flex-shrink: 0;
}

.header-actions .btn {
  display: inline-flex;
  align-items: center;
  padding: var(--space-2) var(--space-4);
  font-size: 0.9rem;
  white-space: nowrap;
}

.header-book-service {
  animation: shake 0.6s infinite;
}

.header-book-service:hover {
  animation: none;
}

/* Mobile Menu Toggle */
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-2);
  border-radius: var(--radius-lg);
  transition: all var(--transition-fast);
  z-index: var(--z-dropdown);
  flex-shrink: 0;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.nav-toggle:hover {
  background: var(--gray-100);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--gray-700);
  border-radius: 1px;
  transition: all var(--transition-fast);
  margin: 4px 0;
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translateY(8px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translateY(-8px);
}

@media (max-width: 768px) {
  .nav {
    display: none;
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: var(--space-2);
    padding: var(--space-4);
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    box-shadow: var(--shadow-md);
    animation: slideDown 0.3s var(--transition-fast);
    flex: unset;
    margin: unset;
  }

  @keyframes slideDown {
    from {
      opacity: 0;
      transform: translateY(-20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .nav.active {
    display: flex;
  }

  .nav-toggle {
    display: flex;
  }

  .header-actions {
    display: none;
  }
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  color: var(--gray-900);
  padding: clamp(2.75rem, 6vw, 3.5rem) 0 clamp(3.75rem, 6vw, 6rem);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(21, 138, 127, 0.12);
}

/* Fallback gradient when no background image */
.hero:not([style*="background-image"]) {
  background:
    radial-gradient(circle at top right, rgba(27, 160, 152, 0.15), transparent 34%),
    radial-gradient(circle at left center, rgba(24, 110, 105, 0.08), transparent 28%),
    linear-gradient(135deg, #f9fbfc 0%, #ffffff 45%, #eef8f7 100%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgb(255 255 255 / 91%) 0%, rgba(239, 248, 247, 0.88) 100%);
  pointer-events: none;
  z-index: 1;
}

.hero::before {
  content: '';
  position: absolute;
  inset: auto -8% -18% auto;
  width: 460px;
  height: 460px;
  background: radial-gradient(circle, rgba(27, 160, 152, 0.16) 0%, transparent 68%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 2;
}

.hero::after {
  content: '';
  position: absolute;
  inset: -8% auto auto -10%;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(15, 107, 99, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 2;
}

.hero > .container {
  position: relative;
  z-index: 3;
}

.hero-content {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
}

.page-hero .hero-content {
  grid-template-columns: minmax(0, 1fr);
  max-width: 920px;
}

.home-page .hero .flex.flex-wrap.mb-4 {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: var(--space-3) var(--space-6) !important;
  margin-bottom: var(--space-8) !important;
}

.home-page .hero .flex.flex-wrap.mb-4 > div {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  color: var(--gray-700);
  font-weight: 600;
}

.home-page .hero .flex.flex-wrap.mb-4 i {
  color: var(--primary) !important;
  font-size: 1.05rem !important;
}

.page-hero .hero-text {
  max-width: 760px;
}

.page-hero .hero-text p {
  max-width: 760px;
}

.hero-text {
  animation: slideUpFade 0.6s var(--transition-base) 0.1s both;
}

.hero-text h1 {
  color: var(--gray-900);
  margin-bottom: var(--space-6);
  font-size: clamp(2.5rem, 6vw, 3.8rem);
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.hero-text h1 span {
  color: var(--primary);
}

.hero-text p {
  color: var(--gray-600);
  font-size: 1.08rem;
  line-height: 1.8;
  margin-bottom: var(--space-8);
  max-width: 750px;
  font-weight: 400;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3) var(--space-6);
  margin-bottom: var(--space-8);
}

.hero-point {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  color: var(--gray-700);
  font-weight: 600;
}

.hero-point i {
  color: var(--primary);
  font-size: 1.05rem;
}

.hero-buttons {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
  animation: slideUpFade 0.6s var(--transition-base) 0.3s both;
}

.hero-buttons .btn {
  flex: 0 1 auto;
}

.hero-image {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 360px;
  animation: fadeIn 0.75s var(--transition-base) both;
}

.hero-image::before {
  content: '';
  position: absolute;
  inset: 8% 8% 0 8%;
  background: linear-gradient(135deg, rgba(27, 160, 152, 0.14), rgba(255, 255, 255, 0.6));
  border-radius: var(--radius-2xl);
  filter: blur(8px);
}

.hero-image img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 540px;
  border-radius: 28px;
  box-shadow: var(--shadow-2xl);
  border: 1px solid rgba(255, 255, 255, 0.85);
  object-fit: cover;
}

.hero-login-card {
  width: 100%;
  max-width: 520px;
  margin-left: auto;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(15, 107, 99, 0.1);
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(12px);
}

.hero-login-card .card-body {
  padding: clamp(1.5rem, 3vw, 2.25rem);
}

.hero-login-title {
  margin-top: var(--space-4);
  margin-bottom: var(--space-3);
  color: var(--gray-900);
}

.hero-login-text {
  margin-bottom: var(--space-6);
  color: var(--gray-600);
}

.hero-login-form .form-group {
  margin-bottom: var(--space-4);
}

.hero-login-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  margin-top: var(--space-4);
  font-size: 0.95rem;
}

.hero-login-actions a {
  color: var(--primary);
  font-weight: 600;
}

.hero-login-actions a:hover {
  text-decoration: underline;
}

.hero-visual {
  position: relative;
  width: 100%;
  max-width: 560px;
}

.hero-visual img {
  display: block;
  width: 100%;
  max-width: 100%;
}

.hero-visual-card {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  padding: var(--space-5) var(--space-6);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(15, 107, 99, 0.08);
}

.hero-visual-kicker {
  display: inline-block;
  margin-bottom: var(--space-2);
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-visual-card strong {
  display: block;
  margin-bottom: var(--space-2);
  font-size: 1.05rem;
  color: var(--gray-900);
}

.hero-visual-card p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--gray-600);
  line-height: 1.6;
}

.about-page .hero,
.contact-page .hero,
.services-page .hero,
.gallery-page .hero,
.franchise-page .hero {
  /* padding: calc(80px + var(--space-8)) 0 var(--space-12) !important; */
  background: linear-gradient(135deg, #f9fbfc 0%, #ffffff 50%, #eef8f7 100%) !important;
  border-bottom: 1px solid rgba(21, 138, 127, 0.12) !important;
}

.about-page .hero .hero-content,
.contact-page .hero .hero-content,
.services-page .hero .hero-content,
.gallery-page .hero .hero-content,
.franchise-page .hero .hero-content {
  grid-template-columns: minmax(0, 1fr) !important;
  gap: var(--space-6) !important;
  max-width: 920px !important;
}

.about-page .hero .hero-text,
.contact-page .hero .hero-text,
.services-page .hero .hero-text,
.gallery-page .hero .hero-text,
.franchise-page .hero .hero-text {
  max-width: 760px;
}

.about-page .hero .hero-text p,
.contact-page .hero .hero-text p,
.services-page .hero .hero-text p,
.gallery-page .hero .hero-text p,
.franchise-page .hero .hero-text p {
  max-width: 760px;
  font-size: 1.08rem;
}

.about-page .hero-buttons,
.contact-page .hero-buttons,
.services-page .hero-buttons,
.gallery-page .hero-buttons,
.franchise-page .hero-buttons {
  justify-content: flex-start;
}

.services-page .hero .hero-text > div:last-child {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: var(--space-4) !important;
  align-items: center;
  justify-content: flex-start;
}

.services-page .pricing-grid,
.services-page .grid.grid-3,
.services-page .grid.grid-auto-sm {
  align-items: stretch;
}

.services-page .pricing-card,
.services-page .card {
  display: flex;
  flex-direction: column;
}

.services-page .card .card-body {
  gap: var(--space-2);
}

.services-page .card-footer {
  margin-top: auto;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: var(--space-4);
}

.stat-card {
  padding: var(--space-6);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(15, 107, 99, 0.08);
  border-radius: var(--radius-xl);
  box-shadow: 0 12px 30px rgba(15, 107, 99, 0.06);
  backdrop-filter: blur(10px);
}

.stat-value {
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--gray-900);
  margin-bottom: var(--space-2);
}

.stat-label {
  color: var(--gray-600);
  font-size: 0.92rem;
  font-weight: 600;
}

.grid-4 > .text-center {
  padding: var(--space-6);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(15, 107, 99, 0.08);
  border-radius: var(--radius-xl);
  box-shadow: 0 12px 30px rgba(15, 107, 99, 0.06);
}

.grid-4 > .text-center .stat-value {
  margin-bottom: var(--space-2);
}

@keyframes slideUpFade {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 968px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }

  .hero {
    padding: calc(80px + var(--space-6)) 0 var(--space-10);
  }
}

@media (max-width: 480px) {
  .hero {
    padding: calc(70px + var(--space-4)) 0 var(--space-8);
    background-attachment: scroll;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons .btn {
    width: 100%;
  }

  .hero-text h1 {
    font-size: 1.75rem;
  }

  .hero-text p {
    font-size: 1rem;
  }

  .hero-login-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-visual-card {
    left: 14px;
    right: 14px;
    bottom: 14px;
    padding: var(--space-4);
  }
}

/* ============================================
   CARD COMPONENTS
   ============================================ */

.card {
  background: var(--white);
  border: 1px solid rgba(15, 107, 99, 0.08);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
  height: 100%;
 box-shadow: 0 10px 30px rgb(1 105 55 / 13%);
    /* border: 1px solid; */
}

.card:hover {
  border-color: var(--primary);
  box-shadow: 0 18px 40px rgba(27, 160, 152, 0.14);
  transform: translateY(-6px);
}

.card-image {
  width: 100%;
  height: 240px;
  object-fit: cover;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.card:hover .card-image img {
  transform: scale(1.05);
}

.card-body {
  padding: var(--space-6);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.75rem;
  margin-bottom: var(--space-4);
  flex-shrink: 0;
}

.card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: var(--space-3);
  text-wrap: balance;
}

.card-text {
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 0rem;
}

.card-footer {
    padding-top: var(--space-4);
    border-top: 1px solid var(--gray-200);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-4);
    margin-bottom: 15px;
}

.card-badge {
  display: inline-block;
  padding: var(--space-2) var(--space-4);
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--white);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-2);
}

/* ============================================
   SECTION HEADERS
   ============================================ */

.section-header {
  text-align: center;
  margin-bottom: var(--space-16);
  animation: fadeInUp 0.6s var(--transition-base);
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  background: rgba(27, 160, 152, 0.08);
  color: var(--primary);
  border: 1px solid rgba(27, 160, 152, 0.15);
  border-radius: var(--radius-lg);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-5);
}

.section-badge i {
  font-size: 0.85rem;
}

.section-header h2 {
  color: var(--gray-900);
  margin-bottom: var(--space-4);
}

.section-header h2 {
  font-size: clamp(2rem, 5vw, 2.8rem);
  color: var(--gray-900);
  margin-bottom: var(--space-4);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--gray-600);
  max-width: 700px;
  margin: var(--space-6) auto 0;
  font-weight: 400;
  line-height: 1.7;
}

.section.section-primary .section-header h2 {
  color: var(--gray-900);
}

.section.section-primary .section-header p {
  color: var(--gray-600);
}

.section.section-primary .section-badge {
  background: rgba(27, 160, 152, 0.08);
  color: var(--primary);
}

.section.section-primary .card,
.section.section-primary .testimonial,
.section.section-primary .feature-item,
.section.section-primary .pricing-card {
  background: var(--white) !important;
  border-color: rgba(15, 107, 99, 0.08) !important;
  color: var(--gray-900) !important;
}

.section.section-primary .card-title,
.section.section-primary .pricing-title,
.section.section-primary .feature-item h3,
.section.section-primary .testimonial-author,
.section.section-primary .testimonial-role {
  color: var(--gray-900) !important;
}

.section.section-primary .card-text,
.section.section-primary .pricing-desc,
.section.section-primary .testimonial-text,
.section.section-primary p {
  color: var(--gray-600) !important;
}

.section.section-primary .card-icon,
.section.section-primary .feature-icon {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%) !important;
  color: var(--white) !important;
}

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

.section.section-primary .btn-outline-light:hover {
  background: var(--primary) !important;
  color: var(--white) !important;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================
   FEATURE SECTION
   ============================================ */

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: var(--space-8);
}

.feature-item {
  padding: 22px;
  background: var(--white);
  border: 1px solid rgba(15, 107, 99, 0.08);
  border-radius: var(--radius-xl);
  text-align: center;
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
}

.feature-item:hover {
  border-color: var(--primary);
  box-shadow: 0 18px 40px rgba(27, 160, 152, 0.14);
  transform: translateY(-6px);
}

.feature-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--primary) 0%, #20b8a0 100%);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.75rem;
  margin-bottom: var(--space-5);
  flex-shrink: 0;
  transition: all var(--transition-base);
  box-shadow: 0 4px 12px rgba(27, 160, 152, 0.2);
}

.feature-item:hover .feature-icon {
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 6px 16px rgba(27, 160, 152, 0.3);
}

.feature-item h3 {
  color: var(--gray-900);
  margin-bottom: var(--space-3);
  font-size: 1.25rem;
}

.feature-item p {
  color: var(--gray-600);
  margin: 0;
  font-size: 0.95rem;
}

/* ============================================
   PRICING CARDS
   ============================================ */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--space-8);
  align-items: stretch;
}

.pricing-card {
  padding: var(--space-8);
  background: var(--white);
  border: 1px solid rgba(15, 107, 99, 0.08);
  border-radius: var(--radius-xl);
  position: relative;
  overflow: hidden;
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
  height: 100%;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-base);
}

.pricing-card:hover {
  border-color: var(--primary);
  box-shadow: 0 18px 40px rgba(27, 160, 152, 0.14);
  transform: translateY(-6px);
}

.pricing-card:hover::before {
  transform: scaleX(1);
}

.pricing-card.featured {
  border-color: var(--primary);
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(27, 160, 152, 0.2);
  background: linear-gradient(135deg, #ffffff 0%, rgba(245, 247, 250, 0.5) 100%);
  border: 2px solid var(--primary);
}

.pricing-card.featured:hover {
  transform: translateY(-12px);
}

.pricing-badge {
  display: inline-block;
  align-self: flex-start;
  padding: var(--space-2) var(--space-4);
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--white);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-4);
}

.pricing-title {
  font-size: 1.5rem;
  color: var(--gray-900);
  margin-bottom: var(--space-2);
}

.pricing-desc {
  color: var(--gray-600);
  font-size: 0.95rem;
  margin-bottom: var(--space-6);
}

.pricing-price {
  font-size: 22px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: var(--space-2);
  letter-spacing: -0.01em;
}

.pricing-price small {
  font-size: 1rem;
  color: var(--gray-600);
  font-weight: 400;
}

.pricing-features {
  list-style: none;
  margin: var(--space-6) 0;
  flex: 1;
}

.pricing-features li {
  padding: var(--space-3) 0;
  padding-left: var(--space-8);
  position: relative;
  color: var(--gray-600);
  font-size: 0.95rem;
}

.pricing-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
  font-size: 1.25rem;
}

/* ============================================
   TESTIMONIALS
   ============================================ */

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--space-8);
}

.testimonial {
  padding: var(--space-8);
  background: var(--white);
  border: 1px solid rgba(15, 107, 99, 0.08);
  border-radius: var(--radius-xl);
  position: relative;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-base);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
}

.testimonial:hover {
  box-shadow: 0 18px 40px rgba(27, 160, 152, 0.14);
  border-color: var(--primary);
  transform: translateY(-6px);
}

.testimonial-stars {
  color: var(--accent);
  margin-bottom: var(--space-4);
  font-size: 1.1rem;
  letter-spacing: 3px;
}

.gallery-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  margin-top: var(--space-4);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
  background: rgba(27, 160, 152, 0.08);
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.gallery-badge i {
  font-size: 0.9rem;
}

/* Gallery Fancybox Styles */
.gallery-page .card a {
  display: block;
  cursor: zoom-in;
  height: 100%;
}

.gallery-page .card a:hover .card-image {
  transform: scale(1.08);
  filter: brightness(0.95);
}

.gallery-page .card-image {
  transition: transform 0.4s ease-out, filter 0.3s ease-out;
  cursor: pointer;
}

.testimonial-text {
  color: var(--gray-600);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: var(--space-6);
  flex: 1;
  font-style: italic;
}

.testimonial-author {
  font-weight: 700;
  color: var(--gray-900);
  font-size: 1rem;
}

.testimonial-role {
  font-size: 0.85rem;
  color: var(--gray-500);
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
  background: linear-gradient(180deg, #ffffff 0%, #f8fbfb 100%);
  color: var(--gray-700);
  padding: var(--space-16) 0 var(--space-8);
  margin-top: var(--space-16);
  border-top: 1px solid rgba(15, 107, 99, 0.08);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-10);
  align-items: start;
  margin-bottom: var(--space-12);
  padding-bottom: var(--space-12);
  border-bottom: 1px solid rgba(15, 107, 99, 0.08);
}

.footer-section h4 {
  color: var(--gray-900);
  margin-bottom: var(--space-4);
  font-size: 1.125rem;
  font-weight: 700;
}

.footer-section p {
  color: var(--gray-600);
  margin-bottom: var(--space-4);
}

.footer-section ul {
  list-style: none;
}

.footer-section li {
  margin-bottom: var(--space-3);
  transition: all var(--transition-fast);
}

.footer-links li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-2);
}

.footer-links li i {
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.footer-link {
  color: var(--gray-600);
  transition: all var(--transition-fast);
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

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

.footer-links a {
  color: var(--gray-600);
  transition: all var(--transition-fast);
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.footer-link:hover {
  color: var(--primary);
  transform: translateX(4px);
}

.footer-links a:hover {
  color: var(--primary);
  transform: translateX(4px);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-6);
  color: var(--gray-600);
  font-size: 0.875rem;
  padding: var(--space-6) 0 0;
  border-top: 1px solid rgba(15, 107, 99, 0.08);
}

.social-links {
  display: flex;
  gap: var(--space-3);
}

.social-link {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border-radius: 50%;
  color: var(--primary);
  transition: all var(--transition-fast);
  border: 1px solid rgba(15, 107, 99, 0.12);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06);
}

.social-link:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
  transform: translateY(-4px);
}

@media (max-width: 768px) {
  .footer-content {
    gap: var(--space-8);
  }

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

/* ============================================
   FORM ELEMENTS
   ============================================ */

.form-group {
  margin-bottom: var(--space-6);
}

.form-label {
  display: block;
  margin-bottom: var(--space-2);
  font-weight: 600;
  color: var(--gray-900);
  font-size: 0.95rem;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: var(--space-3) var(--space-4);
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-lg);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--gray-900);
  background: var(--white);
  transition: all var(--transition-fast);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(27, 160, 152, 0.1);
  background: var(--white);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-6);
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

/* Display */
.hidden { display: none; }
.visible { display: block; }

/* Text Alignment */
.text-left { text-align: left; }
.text-center { text-align: center; }
.text-right { text-align: right; }

/* Text Colors */
.text-primary { color: var(--primary); }
.text-secondary { color: var(--secondary); }
.text-success { color: var(--success); }
.text-error { color: var(--error); }
.text-white { color: var(--white); }
.text-muted { color: var(--gray-500); }

/* Background Colors */
.bg-primary { background: var(--primary); }
.bg-light { background: var(--gray-50); }
.bg-white { background: var(--white); }

/* Margin */
.m-0 { margin: 0; }
.mx-auto { margin-left: auto; margin-right: auto; }
.mt-4 { margin-top: var(--space-4); }
.mb-4 { margin-bottom: var(--space-4); }
.my-8 { margin-top: var(--space-8); margin-bottom: var(--space-8); }

/* Padding */
.p-4 { padding: var(--space-4); }
.p-6 { padding: var(--space-6); }
.px-6 { padding-left: var(--space-6); padding-right: var(--space-6); }

/* Alignment & Layout */
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.align-center { align-items: center; }
.align-start { align-items: flex-start; }
.w-full { width: 100%; }
.h-full { height: 100%; }

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1024px) {
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .flex-wrap-mobile {
    flex-direction: column;
  }

  .flex-wrap-mobile > * {
    width: 100%;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  .btn {
    width: 100%;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

/* ============================================
   ANIMATIONS & TRANSITIONS
   ============================================ */

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.animate-fade-in {
  animation: fadeIn 0.6s var(--transition-base);
}

.animate-slide-in-left {
  animation: slideInLeft 0.6s var(--transition-base);
}

.animate-slide-in-right {
  animation: slideInRight 0.6s var(--transition-base);
}

.animate-pulse {
  animation: pulse 2s var(--transition-base) infinite;
}

.animate-bounce {
  animation: bounce 2s var(--transition-base) infinite;
}

/* ============================================
   LOADING STATE
   ============================================ */

.loading {
  opacity: 0.6;
  pointer-events: none;
}

/* ============================================
   PRINT STYLES
   ============================================ */

@media print {
  .no-print {
    display: none;
  }
}


* Base */
.btn-floating:hover img {
    margin-bottom: -3px;
}

.btn-floating {
    position: fixed;
    right: 33px;
    overflow: hidden;
    width: 57px;
    height: 57px;
    border-radius: 100px;
    border: 0;
    z-index: 9999;
    color: white;
    transition: 0.2s;
    font-size: 22px;
}

.btn-floating:hover {
    width: auto;
    padding: 0 20px;
    cursor: pointer;
}

.btn-floating span {
    font-size: 16px;
    margin-left: 5px;
    transition: 0.2s;
    line-height: 0px;
    display: none;
}

.btn-floating:hover span {
    display: inline-block;
}

/* Phone */
.btn-floating.phone {
    bottom: 110px;
    background-color: #153b68;
}

.btn-floating.phone:hover {
    background-color: #153b68;
}

/* WhatsApp */
.btn-floating.whatsapp {
    background-color: #34af23;
    bottom: 190px;
}

.btn-floating.whatsapp:hover {
    background-color: #1f7a12;
}

/* Book Service */
.btn-floating.book-service {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary) 100%);
    bottom: 270px;
    animation: shake 0.6s infinite;
    box-shadow: 0 4px 15px rgba(1, 105, 55, 0.4);
}

.btn-floating.book-service:hover {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    animation: none;
    box-shadow: 0 6px 25px rgba(1, 105, 55, 0.6);
}

/* Shake Animation */
@keyframes shake {
    0%, 100% {
        transform: translateX(0) rotate(0deg);
    }
    25% {
        transform: translateX(-5px) rotate(-1deg);
    }
    50% {
        transform: translateX(5px) rotate(1deg);
    }
    75% {
        transform: translateX(-5px) rotate(-1deg);
    }
}

/* FAQ & Map Section */
.section .grid-2 {
    align-items: stretch;
    gap: var(--space-8);
}

.section .grid-2 > div:last-child {
    display: flex;
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.section .grid-2 > div:last-child iframe {
    border-radius: var(--radius-xl);
}

.section .grid-2 > div:first-child {
    display: flex;
    flex-direction: column;
}

@media (max-width: 968px) {
    .section .grid-2 {
        grid-template-columns: 1fr;
    }
    
    .section .grid-2 > div:last-child {
        min-height: 500px;
    }
    
    .section .grid-2 > div:last-child iframe {
        min-height: 500px;
    }
}

@media (max-width: 480px) {
    .section .grid-2 > div:last-child {
        min-height: 400px;
    }
    
    .section .grid-2 > div:last-child iframe {
        min-height: 400px;
    }
}