/* ==========================================
   Abdo Wahba - Tech Storytelling Coaching
   Style Sheet
   Colors: Deep Blue #083874, Deep Red #d31115,
           Deep Green #38761d, White #ffffff
   ========================================== */

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

:root {
  --blue: #083874;
  --blue-dark: #052a58;
  --blue-mid: #12427b;
  --blue-light: #265389;
  --red: #d31115;
  --red-dark: #a80e11;
  --red-light: #e15d5f;
  --red-pale: #ee9fa1;
  --green: #38761d;
  --green-dark: #2a5c16;
  --green-light: #4a9e27;
  --blue-grey: #9eb1c9;
  --white: #ffffff;
  --off-white: #f8f9fb;
  --gray-100: #f0f2f5;
  --gray-200: #e0e3e8;
  --gray-300: #c0c5cc;
  --gray-400: #8e95a0;
  --gray-500: #5c6370;
  --gray-600: #3a4050;
  --gray-700: #242b38;
  --gray-800: #1a2028;
  --black: #0d1117;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 16px;
  --shadow: 0 2px 8px rgba(8,56,116,0.08);
  --shadow-lg: 0 8px 32px rgba(8,56,116,0.12);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: var(--font);
  color: var(--gray-700);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--red); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--red-dark); }
ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--gray-500);
  max-width: 600px;
  margin: 0 auto;
}

.section-label {
  text-align: center;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray-400);
  margin-bottom: 40px;
  font-weight: 600;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  text-decoration: none;
}

.btn-primary {
  background: var(--red);
  color: var(--white) !important;
  border-color: var(--red);
}

.btn-primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(211,17,21,0.3);
}

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

.btn-outline:hover {
  background: var(--blue);
  color: var(--white) !important;
  transform: translateY(-2px);
}

.btn-sm { padding: 10px 20px; font-size: 0.9rem; }
.btn-lg { padding: 16px 36px; font-size: 1.1rem; }

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-200);
  padding: 12px 0;
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.logo-icon { font-size: 1.5rem; }
.logo-text { font-size: 1.25rem; font-weight: 700; color: var(--gray-800); }
.logo-highlight { color: var(--red); }
.logo-subtitle {
  display: none;
  font-size: 0.8rem;
  color: var(--gray-400);
  font-weight: 400;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  color: var(--gray-600);
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--red);
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--red);
  border-radius: 1px;
}

.nav-cta { display: none; }
.nav-cta-mobile { display: block; margin-top: 16px; }

.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gray-700);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile menu */
.nav-links.active {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 60px;
  left: 0;
  right: 0;
  background: var(--white);
  padding: 24px;
  border-bottom: 1px solid var(--gray-200);
  box-shadow: var(--shadow-lg);
  gap: 20px;
}

/* Hero Section */
.hero {
  padding: 140px 0 80px;
  background: linear-gradient(135deg, var(--white) 0%, var(--off-white) 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(8,56,116,0.03) 0%, transparent 70%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

.hero-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--red);
  font-weight: 600;
  margin-bottom: 16px;
}

.hero-content h1 {
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.1;
  color: var(--blue);
  margin-bottom: 20px;
  letter-spacing: -0.03em;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--gray-500);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 600px;
}

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

.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.stat {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--red);
  line-height: 1;
}

.stat-plus { font-size: 1.2rem; }
.stat-label { display: block; font-size: 0.85rem; color: var(--gray-400); margin-top: 4px; font-weight: 500; }

.hero-image {
  display: flex;
  justify-content: center;
}

.profile-photo-placeholder {
  position: relative;
  width: 280px;
  height: 280px;
}

.profile-photo-inner {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-mid) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  position: relative;
  z-index: 1;
}

.profile-photo-accent {
  position: absolute;
  top: -8px;
  left: -8px;
  right: -8px;
  bottom: -8px;
  border: 3px solid var(--red);
  border-radius: 50%;
  opacity: 0.3;
}

/* Companies Logo Section */
.companies {
  padding: 60px 0;
  background: var(--white);
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: center;
}

.logo-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 20px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  transition: all var(--transition);
  opacity: 0.7;
}

.logo-item:hover {
  opacity: 1;
  border-color: var(--blue-light);
  box-shadow: var(--shadow);
}

.logo-placeholder {
  width: 60px;
  height: 60px;
  background: var(--gray-100);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--blue);
}

.logo-name { font-size: 0.8rem; color: var(--gray-500); font-weight: 500; text-align: center; }

/* Testimonials */
.testimonials {
  padding: 80px 0;
  background: var(--off-white);
}

.testimonials-carousel {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease;
}

.testimonial-card {
  min-width: 100%;
  padding: 40px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.testimonial-stars { color: #f59e0b; font-size: 1.2rem; margin-bottom: 20px; letter-spacing: 2px; }

.testimonial-text {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--gray-600);
  font-style: italic;
  margin-bottom: 24px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 1.1rem;
}

.testimonial-info strong { display: block; color: var(--gray-700); font-size: 0.95rem; }
.testimonial-info span { font-size: 0.85rem; color: var(--gray-400); }

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 24px;
}

.carousel-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--gray-200);
  background: var(--white);
  cursor: pointer;
  font-size: 1.1rem;
  color: var(--gray-600);
  transition: all var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-btn:hover {
  border-color: var(--red);
  color: var(--red);
}

.carousel-dots {
  display: flex;
  gap: 8px;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gray-200);
  cursor: pointer;
  transition: all var(--transition);
  border: none;
}

.carousel-dot.active { background: var(--red); width: 28px; border-radius: 5px; }

/* Services Section */
.services {
  padding: 80px 0;
  background: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.service-card {
  padding: 40px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
}

.service-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--blue-light);
  transform: translateY(-4px);
}

.service-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.service-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 12px;
}

.service-card p {
  color: var(--gray-500);
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-features li {
  font-size: 0.9rem;
  color: var(--gray-600);
  padding-left: 20px;
  position: relative;
}

.service-features li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--red);
  font-weight: 600;
}

/* Method Section */
.method {
  padding: 80px 0;
  background: var(--off-white);
}

.method-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}

.method-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  align-items: start;
  padding: 32px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.step-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--green);
  line-height: 1;
  opacity: 0.5;
}

.step-content h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 8px;
}

.step-content p {
  color: var(--gray-500);
  line-height: 1.7;
}

/* Formats Section */
.formats {
  padding: 80px 0;
  background: var(--white);
}

.formats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.format-card {
  padding: 40px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: all var(--transition);
}

.format-card:hover {
  box-shadow: var(--shadow-lg);
}

.format-card-accent {
  background: var(--green);
  border-color: var(--green);
  color: var(--white);
}

.format-card-accent h3 { color: var(--white); }
.format-card-accent p { color: rgba(255,255,255,0.85); }

.format-icon { font-size: 2.5rem; margin-bottom: 16px; }
.format-card h3 { font-size: 1.4rem; font-weight: 700; color: var(--blue); margin-bottom: 12px; }
.format-card p { color: var(--gray-500); line-height: 1.7; margin-bottom: 24px; }

/* Videos Section */
.videos, .talks {
  padding: 80px 0;
  background: var(--off-white);
}

.talks { background: var(--white); }

.videos-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.video-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all var(--transition);
}

.video-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.video-card h4 {
  padding: 16px 20px;
  font-size: 0.95rem;
  color: var(--gray-700);
  font-weight: 600;
}

/* Conferences Section */
.conferences {
  padding: 80px 0;
  background: var(--off-white);
}

.conference-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.conference-badge {
  padding: 12px 24px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--blue);
  transition: all var(--transition);
}

.conference-badge:hover {
  border-color: var(--blue);
  background: var(--blue);
  color: var(--white);
  transform: translateY(-2px);
}

/* CTA Section */
.cta-section {
  padding: 80px 0;
  background: var(--white);
}

.cta-card {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-mid) 100%);
  border-radius: var(--radius-lg);
  padding: 60px 40px;
  text-align: center;
  color: var(--white);
}

.cta-card h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.cta-card p {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta-card .btn-primary {
  background: var(--white);
  color: var(--blue) !important;
  border-color: var(--white);
}

.cta-card .btn-primary:hover {
  background: transparent;
  color: var(--white) !important;
  border-color: var(--white);
}

/* Footer */
.footer {
  padding: 60px 0 30px;
  background: var(--gray-800);
  color: rgba(255,255,255,0.8);
}

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

.footer-brand h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 16px;
}

.footer-social a {
  color: rgba(255,255,255,0.6);
  transition: all var(--transition);
}

.footer-social a:hover {
  color: var(--white);
}

.footer-links h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 16px;
}

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

.footer-links a {
  color: rgba(255,255,255,0.6);
  font-size: 0.95rem;
}

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

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
}

/* ========== PAGE-SPECIFIC STYLES ========== */

/* Page Header */
.page-header {
  padding: 140px 0 60px;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-mid) 100%);
  color: var(--white);
  text-align: center;
}

.page-header h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.page-header p {
  font-size: 1.1rem;
  opacity: 0.9;
}

/* Booking Page */
.booking-section {
  padding: 80px 0;
  background: var(--off-white);
}

.booking-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}

.booking-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
  transition: all var(--transition);
}

.booking-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.booking-icon {
  font-size: 3rem;
  margin-bottom: 16px;
}

.booking-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 12px;
}

.booking-card p {
  color: var(--gray-500);
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

/* Contact Page */
.contact-section {
  padding: 80px 0;
  background: var(--off-white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  max-width: 800px;
  margin: 0 auto;
}

.contact-info h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 12px;
}

.contact-info p {
  color: var(--gray-500);
  line-height: 1.7;
  margin-bottom: 24px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--gray-600);
}

.contact-detail strong {
  color: var(--blue);
  min-width: 80px;
}

.contact-form {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

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

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--gray-700);
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-size: 1rem;
  transition: border-color var(--transition);
  background: var(--white);
  color: var(--gray-700);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--blue);
}

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

.form-message {
  padding: 16px;
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.form-message.success {
  background: var(--green);
  color: var(--white);
}

.form-message.error {
  background: var(--red);
  color: var(--white);
}

/* Blog Page */
.blog-section {
  padding: 80px 0;
  min-height: 60vh;
  background: var(--off-white);
}

.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.blog-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all var(--transition);
}

.blog-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.blog-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.blog-card h3 a {
  color: var(--blue);
}

.blog-card h3 a:hover {
  color: var(--red);
}

.blog-meta {
  font-size: 0.85rem;
  color: var(--gray-400);
  margin-bottom: 12px;
}

.blog-excerpt {
  color: var(--gray-500);
  line-height: 1.7;
  margin-bottom: 16px;
}

.blog-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.blog-tag {
  padding: 4px 12px;
  background: var(--gray-100);
  border-radius: 50px;
  font-size: 0.8rem;
  color: var(--gray-500);
  font-weight: 500;
}

.blog-empty {
  text-align: center;
  padding: 80px 0;
  color: var(--gray-400);
}

.blog-empty h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
  color: var(--gray-500);
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 40px;
}

.pagination a, .pagination span {
  padding: 8px 16px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  color: var(--gray-600);
}

.pagination a:hover {
  border-color: var(--blue);
  color: var(--blue);
}

.pagination span.active {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}

/* Single Post */
.post-section {
  padding: 80px 0;
  background: var(--off-white);
}

.post-article {
  max-width: 800px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow);
}

.post-article h1 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 16px;
  line-height: 1.2;
}

.post-content {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--gray-600);
}

.post-content h2 { font-size: 1.5rem; color: var(--blue); margin: 32px 0 16px; }
.post-content h3 { font-size: 1.2rem; color: var(--blue); margin: 24px 0 12px; }
.post-content p { margin-bottom: 16px; }
.post-content ul, .post-content ol { margin-bottom: 16px; padding-left: 24px; }
.post-content li { margin-bottom: 8px; }
.post-content strong { color: var(--gray-700); }
.post-content a { color: var(--red); text-decoration: underline; }

/* Privacy */
.privacy-section {
  padding: 80px 0;
  background: var(--off-white);
}

.privacy-content {
  max-width: 800px;
  margin: 0 auto;
  background: var(--white);
  padding: 48px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  line-height: 1.8;
  color: var(--gray-600);
}

.privacy-content h2 {
  color: var(--blue);
  font-size: 1.4rem;
  margin: 32px 0 12px;
}

.privacy-content h3 {
  color: var(--blue);
  font-size: 1.15rem;
  margin: 24px 0 8px;
}

.privacy-content p {
  margin-bottom: 12px;
}

.privacy-content ul {
  padding-left: 24px;
  margin-bottom: 12px;
}

.privacy-content li {
  margin-bottom: 6px;
}

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

@media (min-width: 768px) {
  .hero-grid { grid-template-columns: 1fr 1fr; }
  .hero-content h1 { font-size: 3.5rem; }
  .hero-stats { grid-template-columns: repeat(4, 1fr); }
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .formats-grid { grid-template-columns: repeat(3, 1fr); }
  .videos-grid { grid-template-columns: repeat(2, 1fr); }
  .logo-grid { grid-template-columns: repeat(6, 1fr); }
  .booking-grid { grid-template-columns: repeat(3, 1fr); }
  .contact-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 2fr 1fr 1fr; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-section .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .nav-links { display: flex; }
  .nav-toggle { display: none; }
  .nav-cta { display: inline-flex; }
  .nav-cta-mobile { display: none; }
  .logo-subtitle { display: inline; margin-left: 4px; }
}

@media (min-width: 1024px) {
  .hero-content h1 { font-size: 4rem; }
  .videos-grid { grid-template-columns: repeat(4, 1fr); }
  .blog-section .blog-grid { grid-template-columns: repeat(3, 1fr); }
}
