/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400;1,600&display=swap');

/* Root Variables */
:root {
  --primary: #0284c7;      
  --primary-hover: #0369a1; 
  --secondary: #10b981;    
  --secondary-hover: #059669;
  
 
  --bg-primary: #f8fafc;    
  --bg-secondary: #ffffff;  
  --bg-accent: #f0fdf4;     
  --bg-footer: #0f172a;     
  
 
  --border-light: #e2e8f0;  
  --border-mint: #bbf7d0;   
  --border-focus: #38bdf8;  
  
  
  --text-dark: #0f172a;     
  --text-body: #334155;    
  --text-muted: #64748b;    
  --text-light: #f8fafc;    
  
 
  --font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  
 
  --container-max-width: 1200px;
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.03);
  --shadow-premium: 0 20px 25px -5px rgba(2, 132, 199, 0.08), 0 8px 10px -6px rgba(2, 132, 199, 0.05);
  --border-radius: 12px;
}

/* --- Base & Reset Elements --- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-family: var(--font-family);
  background-color: var(--bg-primary);
  color: var(--text-body);
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-smooth);
}

/* --- Typography Utilities --- */
h1, h2, h3, h4, h5, h6 {
  color: var(--text-dark);
  font-weight: 700;
  line-height: 1.25;
}

h1 { font-size: 2.75rem; }
h2 { font-size: 2rem; margin-bottom: 0.75rem; position: relative; display: inline-block; }
h3 { font-size: 1.35rem; }

/* Subtle accent line under h2 headers */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2::after {
  content: '';
  display: block;
  width: 50px;
  height: 4px;
  background-color: var(--primary);
  margin: 0.75rem auto 0;
  border-radius: 2px;
}

.section-header p {
  color: var(--text-muted);
  max-width: 600px;
  margin: 0.5rem auto 0;
}

/* --- Layout Containers --- */
.container {
  width: 100%;
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
}

.section-alt {
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

/* --- Header & Navigation (Checkbox Hack) --- */
header {
  background-color: var(--bg-secondary);
  border-bottom: 1px solid var(--border-light);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 75px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--primary);
}

.logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--bg-accent);
  color: var(--primary);
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid var(--border-mint);
  font-size: 1.3rem;
}

.logo span {
  color: var(--text-dark);
}

/* Hide checkbox natively */
.menu-toggle {
  display: none;
}

/* Navbar links default styling */
.navbar {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.75rem;
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-body);
  position: relative;
  padding: 0.25rem 0;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary);
}

/* Underline effect for active link */
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: var(--transition-smooth);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-btn {
  background-color: var(--primary);
  color: var(--text-light) !important;
  padding: 0.10rem 1.15rem;
  border-radius: 5px;
  font-weight: 500 !important;
}

.nav-btn:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
}

/* --- Hamburger and Cross Icon styling --- */
.hamburger-label {
  display: none;
  cursor: pointer;
  z-index: 1010;
  padding: 0.5rem;
  margin-left: auto;
}

.hamburger-icon {
  position: relative;
  width: 24px;
  height: 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hamburger-icon span {
  display: block;
  width: 100%;
  height: 2.5px;
  background-color: var(--text-dark);
  border-radius: 2px;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
}

.hamburger-icon .bar1 {
  transform-origin: center;
}

.hamburger-icon .bar3 {
  transform-origin: center;
}

/* --- Hero Section with Unsplash Background --- */
.hero {
  background: linear-gradient(rgba(248, 250, 252, 0.85), rgba(248, 250, 252, 0.95)), 
  url('./5.avif') no-repeat center center/cover;
  padding: 6rem 0;
  border-bottom: 1px solid var(--border-light);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

.hero-content h1 {
  margin-bottom: 1.5rem;
  color: var(--text-dark);
  line-height: 1.2;
}

.hero-content h1 span {
  color: var(--primary);
}

.hero-content p {
  font-size: 1.125rem;
  color: var(--text-body);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  gap: 1rem;
}

/* Image Credit Links for Unsplash */
.credit-container {
  margin-top: 1.5rem;
}

.unsplash-credit-link {
  font-size: 0.8rem;
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  border-bottom: 1px dashed var(--text-muted);
}

.unsplash-credit-link:hover {
  color: var(--primary);
  border-bottom-style: solid;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.card {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius);
  padding: 2.25rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  text-align: center;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-premium);
  border-color: rgba(2, 132, 199, 0.2);
}

.card-icon {
  background-color: var(--bg-accent);
  color: var(--primary);
  width: 54px;
  height: 54px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 1.5rem;
  border: 1px solid var(--border-mint);
}

.card h3 {
  margin-bottom: 0.75rem;
}

.card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* --- Buttons System --- */
.btn {
  display: inline-block;
  padding: 0.85rem 1.75rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  text-align: center;
  cursor: pointer;
  border: 1px solid transparent;
  transition: var(--transition-smooth);
}

.btn-primary {
  background-color: var(--primary);
  color: var(--text-light);
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(2, 132, 199, 0.25);
}

.btn-secondary {
  background-color: var(--bg-accent);
  border: 1px solid var(--border-mint);
  color: var(--primary);
}

.btn-secondary:hover {
  background-color: #dcfce7;
  transform: translateY(-2px);
}

.btn-dark {
  background-color: var(--text-dark);
  color: var(--text-light);
}

.btn-dark:hover {
  background-color: #1e293b;
  transform: translateY(-2px);
}

/* --- Form Designs --- */
.form-box {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}

.form-box h3 {
  margin-bottom: 1.5rem;
  text-align: center;
  position: relative;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-full {
  grid-column: span 2;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-control {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  background-color: var(--bg-primary);
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--text-dark);
  transition: var(--transition-smooth);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
  background-color: var(--bg-secondary);
  box-shadow: 0 0 0 3px rgba(2, 132, 199, 0.15);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

/* --- Stats Highlight Component --- */
.stats-section {
  background-color: var(--primary);
  color: var(--text-light);
  padding: 4rem 0;
  text-align: center;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
}

.stat-item h3 {
  font-size: 3rem;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.stat-item p {
  font-size: 1rem;
  font-weight: 600;
  opacity: 0.9;
}

.success-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(15, 23, 42, 0.7); 
  backdrop-filter: blur(5px);
  justify-content: center;
  align-items: center;
  z-index: 2000;
  padding: 1rem;
}

.success-modal:target {
  display: flex;
}

.success-card {
  background-color: var(--bg-secondary);
  border-radius: var(--border-radius);
  padding: 3rem 2rem;
  text-align: center;
  max-width: 500px;
  width: 100%;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  border-top: 6px solid var(--secondary); /* Green secondary accent */
  position: relative;
  animation: modalScaleIn 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes modalScaleIn {
  0% {
    transform: scale(0.9);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.success-card-icon {
  width: 64px;
  height: 64px;
  background-color: var(--bg-accent);
  color: var(--secondary);
  border: 1px solid var(--border-mint);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 1.5rem;
}

.success-card h3 {
  font-size: 1.6rem;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.success-card p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.success-close-btn {
  background-color: var(--secondary);
  color: #ffffff;
  padding: 0.8rem 2rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  display: inline-block;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.2);
}

.success-close-btn:hover {
  background-color: var(--secondary-hover);
  transform: translateY(-2px);
}

.modal-corner-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  font-size: 1.5rem;
  color: var(--text-muted);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: var(--transition-smooth);
}

.modal-corner-close:hover {
  background-color: var(--bg-primary);
  color: var(--text-dark);
}

.service-header-banner {
  background-color: var(--bg-accent);
  padding: 4rem 0;
  text-align: center;
  border-bottom: 1px solid var(--border-light);
}

.services-catalog {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 3rem;
}

.service-sidebar {
  position: sticky;
  top: 100px;
  height: fit-content;
}

.service-nav {
  list-style: none;
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius);
  padding: 1rem;
  box-shadow: var(--shadow-sm);
}

.service-nav-item a {
  display: block;
  padding: 0.85rem 1rem;
  border-radius: 8px;
  font-weight: 700;
  color: var(--text-body);
  margin-bottom: 0.25rem;
}

.service-nav-item a:hover {
  background-color: var(--bg-primary);
  color: var(--primary);
}

.service-nav-item.active a {
  background-color: var(--primary);
  color: #ffffff;
}

.packages-list {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.package-group-title {
  margin-bottom: 1.5rem;
  border-bottom: 2px solid var(--border-light);
  padding-bottom: 0.5rem;
}

.package-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.package-card {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

.package-card.featured {
  border: 2px solid var(--primary);
}

.package-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background-color: var(--primary);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  text-transform: uppercase;
}

.package-card h4 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.package-price {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--primary);
  margin: 1rem 0;
}

.package-price span {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 400;
}

.package-features {
  list-style: none;
  margin-bottom: 1.5rem;
}

.package-features li {
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  position: relative;
  padding-left: 1.5rem;
}

.package-features li::before {
  content: '✓';
  color: var(--secondary);
  font-weight: 700;
  position: absolute;
  left: 0;
}

/* About Us Components */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 2rem;
}

.team-card {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius);
  padding: 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

/* .team-img {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1.25rem;
  border: 4px solid var(--bg-accent);
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
} */

.team-card h4 {
  font-size: 1.15rem;
  margin-bottom: 0.25rem;
}

.team-card p.title {
  color: var(--primary);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.team-card p.bio {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.values-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.value-item {
  background: var(--bg-secondary);
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius);
  padding: 2rem;
  text-align: center;
}

.value-item .number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  opacity: 0.4;
  margin-bottom: 0.75rem;
}

/* --- Contact Us Components --- */
.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3.5rem;
  align-items: start;
}

.contact-info-card {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
}

.contact-detail-item {
  display: flex;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.contact-detail-icon {
  background-color: var(--bg-accent);
  color: var(--primary);
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  border: 1px solid var(--border-mint);
}

.contact-detail-item h4 {
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
}

.contact-detail-item p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* CSS Mock Interactive Map */
.mock-map {
  background-color: #e2e8f0;
  border-radius: var(--border-radius);
  height: 250px;
  margin-top: 1.5rem;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

.map-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
}

.map-marker {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  background-color: rgba(2, 132, 199, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: pulseMarker 2s infinite;
}

@keyframes pulseMarker {
  0% {
    box-shadow: 0 0 0 0 rgba(2, 132, 199, 0.6);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(2, 132, 199, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(2, 132, 199, 0);
  }
}

.map-marker-dot {
  width: 16px;
  height: 16px;
  background-color: var(--primary);
  border: 3px solid #ffffff;
  border-radius: 50%;
  box-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

.map-popup {
  position: absolute;
  bottom: 58%;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-light);
  border-radius: 6px;
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
  font-weight: 700;
  box-shadow: var(--shadow-md);
  white-space: nowrap;
  color: var(--text-dark);
}

/* --- Footer Components --- */
footer {
  background-color: var(--bg-footer);
  color: var(--text-light);
  padding: 5rem 0 2rem;
  margin-top: auto;
  border-top: 4px solid var(--primary);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-brand .logo {
  margin-bottom: 1.25rem;
}

.footer-brand .logo span {
  color: #ffffff;
}

.footer-brand p {
  color: #94a3b8;
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.footer-title {
  color: #ffffff;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2.5px;
  background-color: var(--primary);
  border-radius: 1px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: #94a3b8;
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: #ffffff;
  padding-left: 0.25rem;
}

.footer-newsletter p {
  color: #94a3b8;
  font-size: 0.85rem;
  margin-bottom: 1rem;
}

.footer-newsletter .form-group {
  position: relative;
  margin-bottom: 0;
}

.footer-newsletter .form-control {
  background-color: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.1);
  color: #ffffff;
  padding-right: 5rem;
}

.footer-newsletter .form-control:focus {
  background-color: rgba(255,255,255,0.08);
  border-color: var(--primary);
}

.footer-newsletter button {
  position: absolute;
  top: 5px;
  right: 5px;
  bottom: 5px;
  background-color: var(--primary);
  border: none;
  color: #ffffff;
  border-radius: 6px;
  padding: 0 1rem;
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.footer-newsletter button:hover {
  background-color: var(--primary-hover);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
  color: #94a3b8;
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a:hover {
  color: #ffffff;
}


   /* MEDIA QUERIES */

@media (max-width: 1024px) {
  h1 { font-size: 2.25rem; }
  .hero-grid { gap: 2rem; }
  .services-catalog { grid-template-columns: 200px 1fr; gap: 2rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
  .section { padding: 3.5rem 0; }

  .hamburger-label {
    display: block; 
  }
  
  .navbar {
    display: block;
  }
  
  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    width: 50vw;
    height: 100vh;
    background-color: var(--bg-secondary);
    border-left: 1px solid var(--border-light);
    flex-direction: column;
    align-items: center;
    padding: 6rem 1.25rem 2rem;
    gap: 1.5rem;
    text-align: center;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.77, 0.2, 0.05, 1);
    box-shadow: -15px 0 30px rgba(0,0,0,0.08);
    z-index: 999;
  }
  
  .nav-links li {
    width: 100%;
    border-bottom: 1px solid var(--border-light);
    padding-bottom: 0.75rem;
  }
  
  .nav-links li:last-child {
    border-bottom: none;
  }
  
  .nav-links a {
    font-size: 1.15rem;
    display: block;
    width: 100%;
  }
  
  .nav-links a::after {
    display: none;
  }
  
  .menu-toggle:checked ~ .navbar .nav-links {
    transform: translateX(0);
  }
 
  .menu-toggle:checked ~ .hamburger-label .bar1 {
    transform: translateY(8px) rotate(45deg);
  }
  
  .menu-toggle:checked ~ .hamburger-label .bar2 {
    opacity: 0;
  }
  
  .menu-toggle:checked ~ .hamburger-label .bar3 {
    transform: translateY(-8px) rotate(-45deg);
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
  
  .hero-cta {
    justify-content: center;
  }
  
  .form-grid {
    grid-template-columns: 1fr;
  }
  
  .form-full {
    grid-column: span 1;
  }
  
  .services-catalog {
    grid-template-columns: 1fr;
  }
  
  .service-sidebar {
    position: static;
    margin-bottom: 2rem;
  }
  
  .service-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding: 0.75rem;
  }
  
  .service-nav-item {
    flex: 1 1 calc(50% - 0.5rem);
    margin-bottom: 0;
  }
  
  .service-nav-item a {
    text-align: center;
    padding: 0.6rem 0.75rem;
    font-size: 0.9rem;
  }
  
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .values-list {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* --- Tiny Screens (max-width: 480px) --- */
@media (max-width: 480px) {
  h1 { font-size: 1.85rem; }
  h2 { font-size: 1.5rem; }
  
  .hero-cta {
    flex-direction: column;
    width: 100%;
  }
  
  .hero-cta .btn {
    width: 100%;
  }
  
  .service-nav-item {
    flex: 1 1 100%;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}
