/* ===== GERMAN SOUL - PROFESSIONAL STYLESHEET ===== */
/* Version: 3.0 - With Hamburger Menu & Full Responsiveness */

/* ===== CSS VARIABLES ===== */
:root {
  /* Color Palette */
  --primary-black: #0d1b2a;      /* Deep navy instead of flat black */
  --secondary-black: #1b263b;    /* Softer dark blue for contrast */
  --primary-gold: #d4af37;       /* Champagne gold */
  --secondary-gold: #b9975b;     /* Muted antique gold */
  --accent-red: #7b1e3a;         /* Royal burgundy */
  --accent-brown: #4b3832;       /* Rich espresso brown */
  
  /* Text Colors */
  --text-light: #ffffff;
  --text-offwhite: #f8f4e3;      /* Warm off‑white */
  --text-gray: #a9b0b8;          /* Cool gray for balance */
  
  /* Overlays & Effects */
  --overlay-dark: rgba(13, 27, 42, 0.85);
  --overlay-light: rgba(255, 255, 255, 0.08);
  
  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.15);
  --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 12px 28px rgba(0, 0, 0, 0.25);
  
  /* Transitions */
  --transition: all 0.3s ease;
  
  /* Spacing */
  --container-max-width: 1200px;
  --section-padding: 5rem 5%;
  --section-padding-mobile: 3rem 1rem;
}

/* ===== RESET & BASE ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: var(--text-offwhite);
  background-color: var(--primary-black);
  overflow-x: hidden;
  width: 100%;
}

body.menu-open {
  overflow: hidden;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.02em;
  word-wrap: break-word;
}

h1 { font-size: clamp(2rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 3vw, 1.5rem); }

h2 {
  margin-bottom: 2rem;
  position: relative;
  display: inline-block;
  max-width: 100%;
}

h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-gold), var(--accent-red));
  border-radius: 2px;
}

.text-center h2::after {
  left: 50%;
  transform: translateX(-50%);
}

/* ===== LAYOUT ===== */
.container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
}

section {
  padding: var(--section-padding);
  width: 100%;
  overflow-x: hidden;
}

section:nth-child(even) {
  background-color: var(--secondary-black);
}

/* ===== HEADER & NAVIGATION ===== */
header {
  background-color:var(--primary-black);
  backdrop-filter: blur(10px);
  padding: 1rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(197, 160, 89, 0.2);
  transition: var(--transition);
}

header.scrolled {
  padding: 0.7rem 5%;
  box-shadow: var(--shadow-lg);
}

.logo {
  font-size: clamp(1.2rem, 4vw, 1.8rem);
  font-weight: 700;
  color: var(--primary-gold);
  text-decoration: none;
  letter-spacing: 1px;
  position: relative;
  white-space: nowrap;
}

.logo::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary-gold), var(--accent-red), transparent);
}

/* Desktop Navigation */
.desktop-nav ul {
  display: flex;
  list-style: none;
  gap: clamp(0.8rem, 3vw, 2rem);
  flex-wrap: wrap;
  justify-content: flex-end;
}

.desktop-nav ul li a {
  color: var(--text-light);
  text-decoration: none;
  font-weight: 500;
  font-size: clamp(0.85rem, 2.5vw, 1rem);
  padding: 0.5rem 0;
  position: relative;
  transition: var(--transition);
  white-space: nowrap;
}

.desktop-nav ul li a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-gold), var(--accent-red));
  transition: width 0.3s ease;
}

.desktop-nav ul li a:hover,
.desktop-nav ul li a.active {
  color: var(--primary-gold);
}

.desktop-nav ul li a:hover::before,
.desktop-nav ul li a.active::before {
  width: 100%;
}

/* ===== HAMBURGER MENU ===== */
.menu-toggle {
  display: none;
  width: 30px;
  height: 30px;
  position: relative;
  cursor: pointer;
  z-index: 1001;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  background: var(--primary-gold);
  position: absolute;
  left: 0;
  transition: all 0.3s ease;
  border-radius: 3px;
}

.menu-toggle span:nth-child(1) { top: 5px; }
.menu-toggle span:nth-child(2) { top: 13px; }
.menu-toggle span:nth-child(3) { top: 21px; }

.menu-toggle.open span:nth-child(1) {
  transform: rotate(45deg);
  top: 13px;
  background: var(--accent-red);
}

.menu-toggle.open span:nth-child(2) {
  opacity: 0;
  transform: translateX(-20px);
}

.menu-toggle.open span:nth-child(3) {
  transform: rotate(-45deg);
  top: 13px;
  background: var(--accent-red);
}

/* Mobile Navigation Overlay */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 350px;
  height: 100vh;
  background: linear-gradient(135deg, var(--primary-black), var(--secondary-black));
  border-left: 3px solid var(--primary-gold);
  padding: 6rem 2rem 2rem;
  transition: right 0.4s ease;
  z-index: 999;
  box-shadow: var(--shadow-lg);
  overflow-y: auto;
}

.mobile-nav.active {
  right: 0;
}

.mobile-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.mobile-nav ul li a {
  color: var(--text-light);
  text-decoration: none;
  font-size: 1.3rem;
  font-weight: 500;
  padding: 0.8rem 0;
  display: block;
  border-bottom: 1px solid rgba(197, 160, 89, 0.2);
  transition: var(--transition);
}

.mobile-nav ul li a:hover,
.mobile-nav ul li a.active {
  color: var(--primary-gold);
  padding-left: 1rem;
  border-bottom-color: var(--primary-gold);
}

/* Overlay when menu is open */
body.menu-open::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
  z-index: 998;
  animation: fadeIn 0.3s ease;
}

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

/* ===== HERO SECTION ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, var(--overlay-dark) 0%, rgba(0, 0, 0, 0.6) 100%),
              url('https://images.unsplash.com/photo-1467269204594-9661b134dd2b?ixlib=rb-4.0.3&auto=format&fit=crop&w=1950&q=80') center/cover;
  padding: 5rem 1rem;
  width: 100%;
}

.hero-content {
  max-width: min(900px, 100%);
  animation: fadeInUp 1s ease;
}

.hero h1 {
  color: var(--text-light);
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  word-wrap: break-word;
}

.hero h1 span {
  color: var(--primary-gold);
  position: relative;
  display: inline-block;
}

.hero h1 span::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 8px;
  background: rgba(197, 160, 89, 0.2);
  z-index: -1;
}

.hero p {
  font-size: clamp(1rem, 3vw, 1.3rem);
  margin-bottom: 2.5rem;
  color: var(--text-gray);
  max-width: min(700px, 100%);
  margin-left: auto;
  margin-right: auto;
  padding: 0 1rem;
}

.opening-date {
  margin-top: 2rem;
  color: var(--primary-gold);
  font-size: clamp(0.9rem, 2.5vw, 1.1rem);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: clamp(0.8rem, 3vw, 1rem) clamp(1.5rem, 4vw, 2.5rem);
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: clamp(0.85rem, 2.5vw, 1rem);
  letter-spacing: 0.5px;
  transition: var(--transition);
  border: 2px solid transparent;
  cursor: pointer;
  text-align: center;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-gold), var(--accent-red));
  color: var(--text-light);
  box-shadow: 0 4px 15px rgba(197, 160, 89, 0.3);
  border-color: var(--primary-gold);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 202, 104, 0.5);
  background-position: right center;
  border-color: var(--text-light);
}

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

.btn-outline:hover {
  background: var(--primary-gold);
  box-shadow: 0 6px 20px rgba(255, 202, 104, 0.5);
  color: var(--primary-black);
  transform: translateY(-2px);
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  overflow: visible;
}

/* ===== ABOUT SECTION ===== */
.about {
  text-align: center;
}

.about-content {
  max-width: min(800px, 100%);
  margin: 0 auto;
  padding: 0 1rem;
}

.about p {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: var(--text-gray);
  margin-bottom: 2rem;
  line-height: 1.8;
}

.stats-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(200px, 100%), 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
  padding: 0 0.5rem;
}

.stat-item {
  padding: clamp(1.5rem, 4vw, 2rem);
  background: var(--overlay-light);
  border-radius: 10px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(197, 160, 89, 0.1);
  transition: var(--transition);
  width: 100%;
}

.stat-item:hover {
  transform: translateY(-5px);
  border-color: var(--primary-gold);
  box-shadow: var(--shadow-md);
}

.stat-number {
  font-size: clamp(2rem, 5vw, 2.5rem);
  font-weight: 700;
  color: var(--primary-gold);
  margin-bottom: 0.5rem;
}

.stat-label {
  color: var(--text-gray);
  font-size: clamp(0.85rem, 2.5vw, 1rem);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ===== COURSES SECTION ===== */
.courses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
  padding: 0 0.5rem;
}

.course-card {
  background: linear-gradient(145deg, var(--primary-black), var(--secondary-black));
  border-radius: 15px;
  padding: clamp(1.5rem, 4vw, 2rem);
  border: 1px solid rgba(197, 160, 89, 0.1);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  width: 100%;
  height: fit-content;
}

.course-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-gold), var(--accent-red));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}

.course-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-gold);
}

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

.course-icon {
  font-size: clamp(2rem, 5vw, 2.5rem);
  margin-bottom: 1.5rem;
  color: var(--primary-gold);
}

.course-card h3 {
  color: var(--primary-gold);
  margin-bottom: 1rem;
  word-wrap: break-word;
}

.course-card p {
  color: var(--text-gray);
  margin-bottom: 1.5rem;
  line-height: 1.6;
  word-wrap: break-word;
}

.course-features {
  list-style: none;
  margin-bottom: 1.5rem;
}

.course-features li {
  color: var(--text-gray);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  word-wrap: break-word;
}

.course-features li::before {
  content: '✓';
  color: var(--primary-gold);
  font-weight: bold;
  flex-shrink: 0;
}

.course-price {
  font-size: clamp(1.5rem, 4vw, 1.8rem);
  font-weight: 700;
  color: var(--primary-gold);
  margin-bottom: 1rem;
  word-wrap: break-word;
}

.course-price span {
  font-size: clamp(0.85rem, 2.5vw, 1rem);
  color: var(--text-gray);
  font-weight: normal;
}

.course-card .btn {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

/* ===== CONTACT SECTION ===== */
.contact-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(500px, 100%), 1fr));
  gap: clamp(1.5rem, 4vw, 4rem);
  margin-top: 2rem;
  width: 100%;
}

.contact-info {
  padding: clamp(1.5rem, 4vw, 2rem);
  background: var(--overlay-light);
  border-radius: 15px;
  border: 1px solid rgba(197, 160, 89, 0.1);
  width: 100%;
  overflow: hidden;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding: 1rem;
  border-radius: 10px;
  transition: var(--transition);
  width: 100%;
  flex-wrap: wrap;
}

@media (min-width: 480px) {
  .contact-item {
    flex-wrap: nowrap;
  }
}

.contact-item:hover {
  background: rgba(197, 160, 89, 0.05);
}

.contact-icon {
  font-size: 1.5rem;
  color: var(--primary-gold);
  flex-shrink: 0;
}

.contact-item h3 {
  color: var(--primary-gold);
  margin-bottom: 0.3rem;
  font-size: 1.1rem;
}

.contact-item p,
.contact-item address {
  color: var(--text-gray);
  line-height: 1.5;
  font-style: normal;
  word-wrap: break-word;
}

.contact-item a {
  color: var(--text-gray);
  text-decoration: none;
  transition: var(--transition);
  word-wrap: break-word;
}

.contact-item a:hover {
  color: var(--primary-gold);
}

/* Map Container */
.map-container {
  width: 100%;
  height: 0;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  margin-top: 1.5rem;
  border: 1px solid rgba(197, 160, 89, 0.2);
}

.map-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ===== FORM STYLES ===== */
.contact-container > div:last-child {
  width: 100%;
  overflow: hidden;
}

form {
  width: 100%;
  max-width: 100%;
  padding: 0;
}

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

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--text-light);
  font-weight: 500;
  font-size: clamp(0.9rem, 2.5vw, 1rem);
  word-wrap: break-word;
}

.form-control {
  width: 100%;
  max-width: 100%;
  padding: 1rem;
  background: var(--primary-black);
  border: 2px solid rgba(197, 160, 89, 0.2);
  border-radius: 8px;
  color: var(--text-light);
  font-size: clamp(0.9rem, 2.5vw, 1rem);
  transition: var(--transition);
  box-sizing: border-box;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-gold);
  box-shadow: 0 0 0 3px rgba(197, 160, 89, 0.1);
}

.form-control:hover {
  border-color: rgba(197, 160, 89, 0.4);
}

textarea.form-control {
  min-height: 120px;
  max-height: 200px;
  resize: vertical;
  width: 100%;
  max-width: 100%;
}

/* ===== STYLED NATIVE DROPDOWN ===== */
select.form-control {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23c5a059' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 16px;
  padding-right: 2.5rem;
  cursor: pointer;
  width: 100%;
  max-width: 100%;
  text-overflow: ellipsis;
}

select.form-control option {
  background-color: var(--primary-black);
  color: var(--text-light);
  padding: 1rem;
  white-space: normal;
  word-wrap: break-word;
}

select.form-control:focus {
  border-color: var(--primary-gold);
  box-shadow: 0 0 0 3px rgba(197, 160, 89, 0.2);
}

/* Firefox specific */
select.form-control:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 var(--text-light);
}

/* ===== FOOTER ===== */
footer {
  background-color: var(--primary-black);
  padding: 3rem 5% 1.5rem;
  border-top: 1px solid rgba(197, 160, 89, 0.1);
  width: 100%;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section {
  width: 100%;
  overflow: hidden;
}

.footer-section h3 {
  color: var(--primary-gold);
  margin-bottom: 1.2rem;
  font-size: 1.2rem;
  word-wrap: break-word;
}

.footer-section p,
.footer-section ul li a {
  color: var(--text-gray);
  margin-bottom: 0.5rem;
  word-wrap: break-word;
}

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

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section ul li a {
  text-decoration: none;
  transition: var(--transition);
  display: inline-block;
  max-width: 100%;
  word-wrap: break-word;
}

.footer-section ul li a:hover {
  color: var(--primary-gold);
  padding-left: 5px;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
  flex-wrap: wrap;
  overflow: visible;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(197, 160, 89, 0.1);
  color: var(--primary-gold);
  text-decoration: none;
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--primary-gold);
  color: var(--primary-black);
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(197, 160, 89, 0.1);
  color: var(--text-gray);
  font-size: 0.9rem;
  word-wrap: break-word;
}

/* ===== UTILITY CLASSES ===== */
.text-center { text-align: center; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* Margin Utilities */
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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

/* ===== RESPONSIVE BREAKPOINTS ===== */

/* Tablet and below - Show hamburger menu */
@media (max-width: 768px) {
  .desktop-nav {
    display: none;
  }
  
  .menu-toggle {
    display: block;
  }
  
  header {
    padding: 0.8rem 5%;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .hero p {
    font-size: 1.1rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
  }
  
  .btn-outline {
    margin-left: 0;
  }
  
  .btn {
    padding: 0.8rem 2rem;
    font-size: 0.9rem;
    width: 100%;
    max-width: 300px;
  }
  
  .stats-container {
    grid-template-columns: 1fr;
  }
  
  .courses-grid {
    grid-template-columns: 1fr;
  }
  
  section {
    padding: 3rem 5%;
  }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
  :root {
    --section-padding: 2.5rem 1rem;
  }
  
  .container {
    padding: 0 1rem;
  }
  
  .hero {
    padding: 4rem 0.5rem;
  }
  
  .hero h1 {
    font-size: 1.8rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
  
  .btn {
    max-width: 280px;
    white-space: normal;
    padding: 0.8rem 1rem;
  }
  
  .contact-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  
  .contact-icon {
    margin-bottom: 0.3rem;
  }
  
  .map-container {
    margin-top: 1rem;
  }
  
  .stats-container {
    gap: 1rem;
  }
  
  .courses-grid {
    gap: 1rem;
  }
  
  .footer-content {
    gap: 1.5rem;
  }
  
  .footer-section {
    text-align: center;
  }
  
  .social-links {
    justify-content: center;
  }
}

/* Very Small Devices */
@media (max-width: 360px) {
  .hero h1 {
    font-size: 1.5rem;
  }
  
  .hero p {
    font-size: 0.9rem;
  }
  
  .btn {
    max-width: 240px;
    font-size: 0.8rem;
  }
  
  .stat-number {
    font-size: 1.8rem;
  }
  
  .course-price {
    font-size: 1.3rem;
  }
  
  .footer-section h3 {
    font-size: 1rem;
  }
  
  .footer-bottom {
    font-size: 0.8rem;
  }
  
  .mobile-nav {
    width: 85%;
    padding: 5rem 1.5rem 2rem;
  }
  
  .mobile-nav ul li a {
    font-size: 1.1rem;
  }
}

/* Landscape mode on mobile */
@media (max-height: 500px) and (orientation: landscape) {
  .hero {
    min-height: 120vh;
    padding: 6rem 1rem;
  }
  
  .hero h1 {
    font-size: 1.8rem;
  }
  
  .hero p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .hero-buttons {
    flex-direction: row;
  }
  
  .btn {
    width: auto;
    min-width: 150px;
  }
  
  .mobile-nav {
    padding: 4rem 2rem 2rem;
    overflow-y: auto;
  }
}

/* Tablets */
@media (min-width: 769px) and (max-width: 992px) {
  .contact-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .stats-container {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .btn {
    padding: 0.9rem 2rem;
  }
}

/* Large Tablets and Small Desktops */
@media (min-width: 993px) and (max-width: 1200px) {
  .container {
    padding: 0 3rem;
  }
}

/* ===== FIX FOR OVERFLOW ISSUES ===== */
img, iframe, video, embed, object {
  max-width: 100%;
  height: auto;
}

/* Ensure all content respects container width */
.container, section, div, article {
  max-width: 100%;
  overflow-x: hidden;
}