/* ===========================
   CONVERT MEDIA — STYLESHEET
   =========================== */

:root {
  --gold: #C9A227;
  --gold-light: #F0C040;
  --gold-dark: #A07C10;
  --orange: #F97316;
  --orange-light: #FDBA74;
  --yellow: #FDE047;
  --yellow-light: #FEF9C3;
  --white: #FFFFFF;
  --off-white: #FAFAF7;
  --gray-50: #F9FAFB;
  --gray-100: #F3F4F6;
  --gray-200: #E5E7EB;
  --gray-400: #9CA3AF;
  --gray-600: #4B5563;
  --gray-800: #1F2937;
  --dark: #111827;
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Nunito', sans-serif;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.12);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

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

a { text-decoration: none; color: inherit; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 { font-family: var(--font-heading); line-height: 1.2; }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 800; }
h2 { font-size: clamp(1.75rem, 4vw, 2.75rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); font-weight: 600; }

.highlight {
  background: linear-gradient(135deg, var(--gold), var(--orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--orange));
  color: white;
  box-shadow: 0 4px 20px rgba(201, 162, 39, 0.4);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201, 162, 39, 0.5);
}

.btn-outline {
  background: transparent;
  color: var(--dark);
  border: 2px solid var(--gray-200);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold-dark);
  transform: translateY(-2px);
}

.btn-nav {
  background: linear-gradient(135deg, var(--gold), var(--orange));
  color: white;
  padding: 10px 22px;
  font-size: 0.875rem;
}

.btn-lg { padding: 16px 32px; font-size: 1.05rem; }
.btn-xl { padding: 18px 40px; font-size: 1.1rem; width: 100%; max-width: 400px; }

.btn-white {
  background: white;
  color: var(--dark);
  font-weight: 700;
}
.btn-white:hover { background: var(--yellow-light); }

.btn-white-outline {
  background: transparent;
  color: white;
  border: 2px solid rgba(255,255,255,0.6);
  font-size: 0.85rem;
  padding: 8px 18px;
}

.btn-contact {
  background: var(--gray-100);
  color: var(--dark);
  border: 2px solid var(--gray-200);
  padding: 12px 24px;
}
.btn-contact:hover {
  background: var(--yellow-light);
  border-color: var(--gold);
}

/* ===== LAYOUT ===== */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 96px 0;
}

.section-tag {
  display: inline-block;
  background: linear-gradient(135deg, var(--yellow-light), #FED7AA);
  color: var(--gold-dark);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.section-title {
  margin-bottom: 16px;
}

.section-sub {
  font-size: 1.1rem;
  color: var(--gray-600);
  max-width: 640px;
  margin-bottom: 48px;
}

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-100);
  transition: box-shadow 0.3s ease;
}
.nav.scrolled { box-shadow: var(--shadow); }

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo img { height: 40px; width: auto; }

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

.nav-links a:not(.btn) {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--gray-600);
  transition: color 0.2s;
}
.nav-links a:not(.btn):hover { color: var(--gold-dark); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 24px 80px;
  max-width: 1200px;
  margin: 0 auto;
  gap: 60px;
}

.hero-content { flex: 1; min-width: 0; }

.hero-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--yellow), var(--orange-light));
  color: var(--dark);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 24px;
}

.hero h1 { margin-bottom: 20px; }
.hero-sub {
  font-size: 1.15rem;
  color: var(--gray-600);
  margin-bottom: 36px;
  max-width: 520px;
}

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

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
}

.stat { display: flex; flex-direction: column; }
.stat-num {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--gold), var(--orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label { font-size: 0.8rem; color: var(--gray-600); font-weight: 600; }
.stat-divider { width: 1px; height: 40px; background: var(--gray-200); }

.hero-image {
  flex: 1;
  min-width: 0;
  display: flex;
  justify-content: center;
}
.hero-image img {
  width: 100%;
  max-width: 520px;
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
}

/* ===== PROBLEM SECTION ===== */
.problem-section { background: var(--off-white); }

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 64px;
}

.stat-card {
  background: white;
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-100);
  transition: transform 0.3s ease;
}
.stat-card:hover { transform: translateY(-4px); }

.stat-icon { font-size: 2rem; margin-bottom: 12px; }
.stat-big {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--gold), var(--orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}
.stat-card p { font-size: 0.875rem; color: var(--gray-600); }

.pain-points h3 {
  font-size: 1.5rem;
  margin-bottom: 28px;
  color: var(--dark);
}

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

.pain-item {
  display: flex;
  gap: 16px;
  background: white;
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--orange);
}

.pain-icon { font-size: 2rem; flex-shrink: 0; }
.pain-item strong { display: block; font-family: var(--font-heading); font-size: 1rem; margin-bottom: 6px; }
.pain-item p { font-size: 0.9rem; color: var(--gray-600); }

/* ===== SOLUTION SECTION ===== */
.solution-section { background: white; }

.solution-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.solution-card {
  background: linear-gradient(135deg, var(--yellow-light), #FFF7ED);
  border-radius: var(--radius);
  padding: 32px;
  border: 1px solid rgba(201, 162, 39, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.solution-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.solution-icon { font-size: 2.5rem; margin-bottom: 16px; }
.solution-card h3 { margin-bottom: 12px; }
.solution-card p { color: var(--gray-600); font-size: 0.95rem; }

/* ===== SEO SECTION ===== */
.seo-section { background: var(--dark); color: white; }
.seo-section .section-tag { background: rgba(201,162,39,0.2); color: var(--gold-light); }
.seo-section .section-title { color: white; }
.seo-section .section-sub { color: rgba(255,255,255,0.7); }

.seo-tabs { margin-bottom: 40px; }

.seo-tab-buttons {
  display: flex;
  gap: 12px;
  margin-bottom: 32px;
}

.tab-btn {
  padding: 12px 28px;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: 2px solid rgba(255,255,255,0.2);
  background: transparent;
  color: rgba(255,255,255,0.6);
  transition: all 0.25s;
}
.tab-btn.active {
  background: linear-gradient(135deg, var(--gold), var(--orange));
  border-color: transparent;
  color: white;
}
.tab-btn:hover:not(.active) {
  border-color: var(--gold);
  color: var(--gold-light);
}

.tab-content { display: none; }
.tab-content.active { display: block; }

.tab-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.tab-text h3 { color: white; margin-bottom: 16px; }
.tab-text p { color: rgba(255,255,255,0.75); margin-bottom: 16px; font-size: 0.95rem; }

.check-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.check-list li { color: rgba(255,255,255,0.85); font-size: 0.95rem; }

/* Google mock */
.google-mock {
  background: white;
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow-lg);
}
.google-bar {
  background: var(--gray-100);
  border-radius: 8px;
  padding: 10px 16px;
  font-size: 0.85rem;
  color: var(--gray-600);
  margin-bottom: 16px;
}
.google-result {
  padding: 12px 0;
  border-bottom: 1px solid var(--gray-100);
  position: relative;
}
.google-result:last-child { border-bottom: none; }
.result-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold), var(--orange));
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
  margin-bottom: 4px;
}
.result-title { font-weight: 700; color: #1a0dab; font-size: 0.95rem; }
.result-url { color: #006621; font-size: 0.8rem; }
.result-desc { color: var(--gray-600); font-size: 0.8rem; margin-top: 4px; }
.google-result.faded { opacity: 0.4; }

/* AI mock */
.ai-mock {
  background: #1E293B;
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid rgba(255,255,255,0.1);
}
.ai-header {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  margin-bottom: 16px;
}
.ai-dot {
  width: 8px;
  height: 8px;
  background: #10B981;
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.ai-question {
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 12px 16px;
  color: rgba(255,255,255,0.9);
  font-size: 0.9rem;
  margin-bottom: 16px;
}
.ai-response {
  background: rgba(201,162,39,0.1);
  border-radius: 8px;
  padding: 16px;
  border-left: 3px solid var(--gold);
}
.ai-response p { color: rgba(255,255,255,0.85); font-size: 0.9rem; margin-bottom: 10px; }
.ai-source { color: var(--gold-light); font-size: 0.8rem; }

.seo-cta-box {
  background: linear-gradient(135deg, rgba(201,162,39,0.15), rgba(249,115,22,0.15));
  border: 1px solid rgba(201,162,39,0.3);
  border-radius: var(--radius);
  padding: 24px 32px;
  color: rgba(255,255,255,0.9);
  font-size: 1rem;
}
.seo-cta-box strong { color: var(--gold-light); }

/* ===== PORTFOLIO ===== */
.portfolio-section { background: var(--off-white); }

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.portfolio-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.portfolio-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.portfolio-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
}
.portfolio-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.portfolio-card:hover .portfolio-img-wrap img { transform: scale(1.05); }

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.portfolio-card:hover .portfolio-overlay { opacity: 1; }

.portfolio-info { padding: 20px 24px; }
.portfolio-info h4 { font-size: 1.1rem; margin-bottom: 6px; }
.portfolio-info p { font-size: 0.875rem; color: var(--gray-600); margin-bottom: 12px; }

.portfolio-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.portfolio-tags span {
  background: var(--yellow-light);
  color: var(--gold-dark);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
}

/* ===== TESTIMONIALS ===== */
.testimonials-section { background: white; }

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

.testimonial-card {
  background: var(--gray-50);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid var(--gray-100);
  transition: transform 0.3s ease;
}
.testimonial-card:hover { transform: translateY(-4px); }
.testimonial-card.featured {
  background: linear-gradient(135deg, var(--dark), #374151);
  color: white;
  border-color: transparent;
  box-shadow: var(--shadow-lg);
}
.testimonial-card.featured p { color: rgba(255,255,255,0.85); }

.stars { color: var(--gold); font-size: 1.1rem; margin-bottom: 14px; }
.testimonial-card p { font-size: 0.9rem; color: var(--gray-600); margin-bottom: 20px; font-style: italic; }

.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--orange));
  color: white;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.testimonial-author strong { display: block; font-size: 0.9rem; }
.testimonial-author span { font-size: 0.8rem; color: var(--gray-400); }
.testimonial-card.featured .testimonial-author span { color: rgba(255,255,255,0.5); }
.testimonial-card.featured .testimonial-author strong { color: white; }

/* ===== ABOUT ===== */
.about-section { background: var(--off-white); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 48px;
}

.about-card {
  background: white;
  border-radius: var(--radius);
  padding: 36px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease;
}
.about-card:hover { transform: translateY(-4px); }

.about-avatar {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 20px;
  border: 4px solid transparent;
  background: linear-gradient(white, white) padding-box,
              linear-gradient(135deg, var(--gold), var(--orange)) border-box;
}
.about-avatar img { width: 100%; height: 100%; object-fit: cover; }

.about-card h3 { font-size: 1.4rem; margin-bottom: 4px; }
.about-role {
  color: var(--gold-dark);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}
.about-card p { color: var(--gray-600); font-size: 0.95rem; }

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

.value-item {
  background: white;
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  font-weight: 600;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow);
}
.value-item span { font-size: 1.3rem; }

/* ===== BIG CTA ===== */
.big-cta-section {
  background: linear-gradient(135deg, #FFFBEB, #FFF7ED, #FEFCE8);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.big-cta-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(201,162,39,0.15), transparent 70%);
  pointer-events: none;
}

.cta-emoji { font-size: 4rem; margin-bottom: 16px; }
.cta-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  margin-bottom: 16px;
  background: linear-gradient(135deg, var(--dark), var(--gold-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.cta-sub {
  font-size: 1.1rem;
  color: var(--gray-600);
  max-width: 600px;
  margin: 0 auto 48px;
}

.cta-form-wrap {
  max-width: 680px;
  margin: 0 auto 48px;
}

.booking-form {
  background: white;
  border-radius: 24px;
  padding: 40px;
  box-shadow: var(--shadow-lg);
  text-align: left;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}
.form-group:last-of-type { margin-bottom: 28px; }

.form-group label {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--gray-800);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--dark);
  background: var(--gray-50);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,162,39,0.15);
  background: white;
}

.form-group textarea { resize: vertical; }

.booking-form .btn-xl {
  background: linear-gradient(135deg, var(--gold), var(--orange));
  color: white;
  font-size: 1.05rem;
  box-shadow: 0 6px 24px rgba(201,162,39,0.4);
  margin: 0 auto;
  display: block;
}
.booking-form .btn-xl:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(201,162,39,0.5);
}

.form-note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--gray-400);
  margin-top: 16px;
}

.form-success {
  background: white;
  border-radius: 24px;
  padding: 60px 40px;
  box-shadow: var(--shadow-lg);
  text-align: center;
}
.success-icon { font-size: 4rem; margin-bottom: 16px; }
.form-success h3 { font-size: 1.75rem; margin-bottom: 12px; }
.form-success p { color: var(--gray-600); }

.contact-alternatives { text-align: center; }
.contact-alternatives p { color: var(--gray-600); margin-bottom: 16px; font-weight: 600; }
.contact-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===== FOOTER ===== */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
  padding: 48px 24px;
  text-align: center;
}
.footer-inner { max-width: 800px; margin: 0 auto; }
.footer-logo img { height: 36px; margin: 0 auto 16px; filter: brightness(0) invert(1); }
.footer-tagline { margin-bottom: 24px; font-size: 0.95rem; }
.footer-links {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.footer-links a { font-size: 0.875rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--gold-light); }
.footer-contact { margin-bottom: 20px; }
.footer-contact a { color: var(--gold-light); font-weight: 600; }
.footer-copy { font-size: 0.8rem; color: rgba(255,255,255,0.4); }

/* ===== STICKY CTA ===== */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: white;
  padding: 12px 24px;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
  display: none;
  z-index: 99;
  text-align: center;
}
.sticky-cta .btn { width: 100%; max-width: 400px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}

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

  .nav-links {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    box-shadow: var(--shadow-lg);
    border-top: 1px solid var(--gray-100);
  }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }

  .hero {
    flex-direction: column;
    padding: 100px 24px 60px;
    text-align: center;
    gap: 40px;
  }
  .hero-sub { margin: 0 auto 36px; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-image { order: -1; }
  .hero-image img { max-width: 320px; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .pain-grid { grid-template-columns: 1fr; }
  .solution-grid { grid-template-columns: 1fr; }
  .tab-inner { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .about-values { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .booking-form { padding: 24px; }

  .sticky-cta { display: block; }
  .section { padding-bottom: 80px; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .hero-stats { gap: 16px; }
  .stat-num { font-size: 1.4rem; }
}
