/* 
  Antalya Aşçılık Kursu - Premium SEO Website Rebuild
  Stylesheet: css/style.css
*/

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

:root {
  /* Premium Dark Theme Color Palette */
  --primary: #0b0f19;
  --primary-light: #121826;
  --primary-card: #182032;
  --accent: #d9a05b;
  --accent-dark: #b88243;
  --accent-light: #e5be88;
  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --text-dark: #0f172a;
  
  /* Styling Tokens */
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --border-radius-sm: 8px;
  --border-radius-md: 16px;
  --border-radius-lg: 24px;
  --border-accent: rgba(217, 160, 91, 0.15);
  --shadow-lux: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
  --shadow-accent: 0 4px 20px rgba(217, 160, 91, 0.15);
}

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

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

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

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

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

input, textarea, select, button {
  font-family: inherit;
  font-size: inherit;
}

/* Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

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

.text-gradient {
  background: linear-gradient(135deg, #ffffff 40%, var(--accent-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-accent {
  color: var(--accent);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px auto;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.1rem;
}

/* Header & Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(11, 15, 25, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  transition: var(--transition-smooth);
}

header.scrolled {
  background-color: var(--primary);
  border-bottom: 1px solid var(--border-accent);
  box-shadow: var(--shadow-lux);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-icon {
  font-size: 1.8rem;
  color: var(--accent);
  font-weight: 800;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.1;
}

.logo-text span {
  font-size: 0.8rem;
  display: block;
  color: var(--accent);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 32px;
}

.nav-link {
  font-weight: 500;
  color: var(--text-muted);
  font-size: 0.95rem;
  position: relative;
  padding: 8px 0;
}

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

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

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

.nav-cta {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: var(--border-radius-sm);
  transition: var(--transition-smooth);
  cursor: pointer;
  border: none;
  font-size: 0.95rem;
}

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

.btn-primary:hover {
  background-color: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-accent);
}

.btn-secondary {
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--text-main);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: var(--accent);
  transform: translateY(-2px);
}

/* Mobile Menu Toggle */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-main);
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero Section */
.hero {
  padding: 180px 0 100px 0;
  background: radial-gradient(circle at top right, rgba(217, 160, 91, 0.08), transparent 50%),
              radial-gradient(circle at bottom left, rgba(18, 24, 38, 0.8), var(--primary));
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
}

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

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: rgba(217, 160, 91, 0.1);
  border: 1px solid var(--border-accent);
  color: var(--accent);
  padding: 8px 16px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 24px;
}

.hero-desc {
  color: var(--text-muted);
  font-size: 1.2rem;
  margin-bottom: 40px;
  max-width: 580px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  gap: 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 32px;
}

.stat-item h3 {
  font-size: 2.2rem;
  color: var(--accent);
  font-weight: 800;
  margin-bottom: 4px;
}

.stat-item p {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-image-wrapper {
  position: relative;
}

.hero-image {
  border-radius: var(--border-radius-lg);
  border: 1px solid var(--border-accent);
  box-shadow: var(--shadow-lux);
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: transform 10s ease;
}

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

.hero-badge {
  position: absolute;
  bottom: 30px;
  left: -30px;
  background-color: var(--primary-card);
  border: 1px solid var(--border-accent);
  border-radius: var(--border-radius-md);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: var(--shadow-lux);
}

.hero-badge-icon {
  font-size: 2rem;
  color: var(--accent);
}

.hero-badge h4 {
  font-size: 1rem;
  margin-bottom: 2px;
}

.hero-badge p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Sections General */
.section-padding {
  padding: 100px 0;
}

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

/* Courses Section */
.courses-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.course-card {
  background-color: var(--primary-card);
  border: 1px solid rgba(255, 255, 255, 0.03);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.course-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-accent);
  box-shadow: var(--shadow-lux);
}

.course-card-image {
  height: 240px;
  overflow: hidden;
  position: relative;
}

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

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

.course-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: rgba(11, 15, 25, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border-accent);
  color: var(--accent);
  padding: 6px 12px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.course-card-content {
  padding: 30px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.course-card-content h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
  transition: var(--transition-smooth);
}

.course-card:hover .course-card-content h3 {
  color: var(--accent);
}

.course-card-content p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 24px;
  line-height: 1.6;
  flex-grow: 1;
}

.course-meta {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 20px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.course-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.course-meta-item i {
  color: var(--accent);
}

/* Experience / Why Us Section */
.experience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.experience-content h2 {
  font-size: 2.8rem;
  margin-bottom: 24px;
}

.experience-content .lead-text {
  font-size: 1.2rem;
  color: var(--accent-light);
  margin-bottom: 20px;
}

.experience-content p {
  color: var(--text-muted);
  margin-bottom: 30px;
  font-size: 1.05rem;
}

.feature-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.feature-item {
  display: flex;
  gap: 16px;
}

.feature-item-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--border-radius-sm);
  background-color: rgba(217, 160, 91, 0.1);
  border: 1px solid var(--border-accent);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.feature-item-text h4 {
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.feature-item-text p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

.experience-image-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.exp-img-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.exp-img-col:nth-child(2) {
  padding-top: 40px;
}

.exp-img-item {
  border-radius: var(--border-radius-md);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.03);
}

.exp-img-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Call to Action Section */
.cta-section {
  background: linear-gradient(rgba(11, 15, 25, 0.9), rgba(11, 15, 25, 0.9)), url('../assets/hero_chef.png') no-repeat center center/cover;
  border-top: 1px solid var(--border-accent);
  border-bottom: 1px solid var(--border-accent);
  padding: 100px 0;
  text-align: center;
}

.cta-box {
  max-width: 800px;
  margin: 0 auto;
}

.cta-box h2 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.cta-box p {
  color: var(--text-muted);
  font-size: 1.2rem;
  margin-bottom: 40px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

/* Subpages General styles */
.page-hero {
  padding: 150px 0 80px 0;
  background: linear-gradient(180deg, var(--primary-light) 0%, var(--primary) 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  text-align: center;
}

.page-hero h1 {
  font-size: 3rem;
  margin-bottom: 16px;
}

.breadcrumbs {
  display: flex;
  justify-content: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.breadcrumbs a:hover {
  color: var(--accent);
}

.breadcrumbs span {
  color: var(--text-main);
}

/* About Page Specific */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}

.about-image {
  border-radius: var(--border-radius-lg);
  border: 1px solid var(--border-accent);
  overflow: hidden;
  box-shadow: var(--shadow-lux);
}

.about-text h2 {
  font-size: 2.2rem;
  margin-bottom: 24px;
}

.about-text p {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 24px;
}

.mission-vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 80px;
}

.mv-card {
  background-color: var(--primary-card);
  border: 1px solid rgba(255, 255, 255, 0.03);
  border-radius: var(--border-radius-md);
  padding: 40px;
  transition: var(--transition-smooth);
}

.mv-card:hover {
  border-color: var(--border-accent);
  transform: translateY(-5px);
}

.mv-icon {
  font-size: 2.5rem;
  color: var(--accent);
  margin-bottom: 20px;
}

.mv-card h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.mv-card p {
  color: var(--text-muted);
  font-size: 0.98rem;
}

.values-section {
  text-align: center;
  margin-top: 100px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.value-card {
  background-color: var(--primary-light);
  border-radius: var(--border-radius-md);
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.02);
  transition: var(--transition-smooth);
}

.value-card:hover {
  border-color: var(--border-accent);
  background-color: var(--primary-card);
}

.value-num {
  font-size: 2.5rem;
  font-weight: 800;
  color: rgba(217, 160, 91, 0.15);
  margin-bottom: 16px;
}

.value-card h4 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.value-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Course Detail Page Specific */
.course-detail-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 60px;
}

.course-detail-main h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  margin-top: 40px;
}

.course-detail-main h2:first-child {
  margin-top: 0;
}

.course-detail-main p {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 30px;
}

.course-syllabus {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 40px;
}

.syllabus-item {
  background-color: var(--primary-light);
  padding: 20px;
  border-radius: var(--border-radius-sm);
  border-left: 3px solid var(--accent);
  display: flex;
  align-items: center;
  gap: 12px;
}

.syllabus-item i {
  color: var(--accent);
  font-size: 1.1rem;
}

.syllabus-item span {
  font-weight: 500;
}

.who-should-attend {
  list-style: none;
  margin-bottom: 40px;
}

.attend-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 16px;
}

.attend-item i {
  color: var(--accent);
  margin-top: 5px;
}

.attend-item p {
  margin-bottom: 0;
  font-size: 1.05rem;
}

.sidebar-card {
  background-color: var(--primary-card);
  border: 1px solid var(--border-accent);
  border-radius: var(--border-radius-md);
  padding: 40px;
  position: sticky;
  top: 120px;
}

.sidebar-card h3 {
  font-size: 1.5rem;
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 16px;
}

.sidebar-info-list {
  list-style: none;
  margin-bottom: 32px;
}

.sidebar-info-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  font-size: 1rem;
}

.sidebar-info-item span:first-child {
  color: var(--text-muted);
}

.sidebar-info-item span:last-child {
  font-weight: 600;
}

.sidebar-card .btn {
  width: 100%;
  margin-bottom: 16px;
}

.sidebar-card .btn:last-child {
  margin-bottom: 0;
}

/* Contact Page Specific */
.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 60px;
}

.contact-info-card {
  background-color: var(--primary-card);
  border-radius: var(--border-radius-md);
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.02);
}

.contact-info-card h3 {
  font-size: 1.5rem;
  margin-bottom: 30px;
}

.contact-item {
  display: flex;
  gap: 20px;
  margin-bottom: 32px;
}

.contact-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--border-radius-sm);
  background-color: rgba(217, 160, 91, 0.1);
  border: 1px solid var(--border-accent);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.contact-details h4 {
  font-size: 1.1rem;
  margin-bottom: 6px;
}

.contact-details p, .contact-details a {
  color: var(--text-muted);
  font-size: 0.95rem;
}

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

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.social-btn {
  width: 40px;
  height: 40px;
  border-radius: var(--border-radius-sm);
  background-color: rgba(255, 255, 255, 0.03);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.social-btn:hover {
  background-color: var(--accent);
  color: var(--primary);
  border-color: var(--accent);
  transform: translateY(-3px);
}

/* Contact Form */
.contact-form-wrapper {
  background-color: var(--primary-light);
  border-radius: var(--border-radius-md);
  padding: 50px;
  border: 1px solid rgba(255, 255, 255, 0.02);
}

.contact-form-wrapper h3 {
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.contact-form-wrapper p {
  color: var(--text-muted);
  margin-bottom: 40px;
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  font-size: 0.9rem;
}

.form-control {
  width: 100%;
  background-color: var(--primary-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--border-radius-sm);
  padding: 14px 18px;
  color: var(--text-main);
  transition: var(--transition-smooth);
}

.form-control:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(217, 160, 91, 0.15);
}

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

/* Map Section */
.map-section {
  width: 100%;
  height: 450px;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-accent);
  margin-top: 80px;
}

.map-section iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Footer */
footer {
  background-color: var(--primary-light);
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  padding: 80px 0 30px 0;
  margin-top: auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-logo {
  margin-bottom: 24px;
}

.footer-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 24px;
  line-height: 1.6;
}

.footer-title {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 12px;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 35px;
  height: 2px;
  background-color: var(--accent);
}

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

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.95rem;
}

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

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

.footer-info li {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.footer-info i {
  color: var(--accent);
  margin-top: 4px;
}

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

.footer-bottom p {
  color: var(--text-muted);
  font-size: 0.88rem;
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  color: var(--text-muted);
  font-size: 0.88rem;
}

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

/* Floating widgets */
.floating-widget {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}

.floating-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: var(--transition-smooth);
}

.floating-btn:hover {
  transform: scale(1.1) rotate(5deg);
}

.float-whatsapp {
  background-color: #25d366;
}

.float-phone {
  background-color: var(--accent);
  color: var(--primary);
}

/* Form success alert */
.alert-success {
  background-color: rgba(37, 211, 102, 0.1);
  border: 1px solid #25d366;
  color: #25d366;
  padding: 16px;
  border-radius: var(--border-radius-sm);
  margin-bottom: 24px;
  font-weight: 500;
  display: none;
}

/* Iconfont Mock - to avoid missing assets causing layout break */
[class^="icofont-"], [class*=" icofont-"], .fas, .fab {
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .hero-desc {
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .hero-stats {
    justify-content: center;
  }
  
  .hero-image-wrapper {
    max-width: 500px;
    margin: 0 auto;
  }
  
  .hero-badge {
    left: -15px;
  }
  
  .courses-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .experience-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background-color: var(--primary);
    flex-direction: column;
    padding: 40px;
    gap: 24px;
    transition: var(--transition-smooth);
    border-top: 1px solid var(--border-accent);
  }
  
  .nav-menu.open {
    left: 0;
  }
  
  .mobile-toggle {
    display: block;
  }
  
  .nav-cta {
    display: none;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .courses-grid {
    grid-template-columns: 1fr;
  }
  
  .course-detail-grid {
    grid-template-columns: 1fr;
  }
  
  .values-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .course-syllabus {
    grid-template-columns: 1fr;
  }
  
  .contact-form-wrapper {
    padding: 30px 20px;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 2.2rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 12px;
  }
  
  .hero-stats {
    flex-direction: column;
    gap: 20px;
  }
  
  .cta-box h2 {
    font-size: 2rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    gap: 12px;
  }
  
  .values-grid {
    grid-template-columns: 1fr;
  }
  
  .feature-list {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
}
