@charset "UTF-8";
/* ===================================
   淮虾匠 (Huaixiajiang) - 完整样式
   Author: 可龙
   =================================== */

/* Variables */
:root {
  --primary: #D4163C;
  --primary-dark: #B01030;
  --secondary: #E8A020;
  --accent: #FF6B35;
  --dark: #1A1A2E;
  --dark2: #2D2D44;
  --gray: #6B7280;
  --light-gray: #F3F4F6;
  --white: #FFFFFF;
  --bg-warm: #FFF8F0;
  --bg-light: #FAFAFA;
  --text: #333333;
  --text-light: #666666;
  --font-cn: "PingFang SC", "Microsoft YaHei", "Hiragino Sans GB", "Noto Sans SC", sans-serif;
  --font-num: "Arial", sans-serif;
  --shadow: 0 2px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 4px 40px rgba(0,0,0,0.12);
  --radius: 12px;
  --radius-sm: 8px;
  --max-width: 1200px;
  --header-h: 76px;
  --transition: all 0.3s ease;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body {
  font-family: var(--font-cn);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

/* Container */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* ==================== HEADER ==================== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  height: var(--header-h);
  transition: var(--transition);
}
.header.scrolled { box-shadow: var(--shadow); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
  flex-wrap: nowrap;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-icon {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 50%;
  display: flex;
  align-items: center; justify-content: center;
  color: var(--white);
  font-size: 22px;
  font-weight: 800;
  flex-shrink: 0;
}
.logo-text {
  font-size: 22px;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.2;
}
.logo-text a {
  color: inherit;
  text-decoration: none;
}
.logo-text a:hover {
  color: var(--primary);
}
.logo-text span { color: var(--primary); }
.logo-sub {
  font-size: 11px;
  color: var(--gray);
  letter-spacing: 1px;
}

.nav { display: flex; align-items: center; gap: 18px; flex-wrap: nowrap; overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
.nav::-webkit-scrollbar { display: none; }
.nav a {
  font-size: 14px;
  color: var(--text);
  font-weight: 500;
  transition: var(--transition);
  position: relative;
  padding: 4px 0;
  white-space: nowrap;
  flex-shrink: 0;
}
.nav a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: var(--primary);
  transition: var(--transition);
}
.nav a:hover, .nav a.active { color: var(--primary); }
.nav a:hover::after, .nav a.active::after { width: 100%; }

.header-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #D4163C, #FF4500);
  color: #fff !important;
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 15px;
  transition: all 0.3s ease;
  white-space: nowrap;
  flex-shrink: 0;
  letter-spacing: 1px;
  border: 2px solid rgba(255,255,255,0.15);
  position: relative;
  overflow: hidden;
}
.header-phone::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 60%);
  animation: phoneGlow 3s ease-in-out infinite;
}
@keyframes phoneGlow {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.1); opacity: 1; }
}
.header-phone:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 25px rgba(212,22,60,0.45);
  border-color: rgba(255,255,255,0.3);
}

/* Mobile Menu */
.menu-toggle {
  display: none;
  background: none; border: none;
  width: 32px; height: 24px;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  padding: 0;
}
.menu-toggle span {
  display: block;
  width: 100%; height: 3px;
  background: var(--dark);
  border-radius: 3px;
  transition: var(--transition);
}
.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(7px, 7px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(7px, -7px); }

/* ==================== HERO ==================== */
.hero {
  padding-top: var(--header-h);
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, rgba(26,26,46,0.85) 0%, rgba(45,45,68,0.75) 50%, rgba(212,22,60,0.7) 100%), url('/images/hero-bg.jpg') center/cover no-repeat;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -50%; right: -30%;
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(232,160,32,0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -30%; left: -20%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,107,53,0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-content { padding: 40px 0; }
.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 13px;
  letter-spacing: 1px;
  margin-bottom: 24px;
  border: 1px solid rgba(255,255,255,0.15);
}
.hero-title {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 20px;
}
.hero-title em {
  font-style: normal;
  background: linear-gradient(135deg, var(--secondary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-desc {
  font-size: 18px;
  line-height: 1.8;
  color: rgba(255,255,255,0.8);
  margin-bottom: 32px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 16px;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  font-family: var(--font-cn);
}
.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: var(--white);
  box-shadow: 0 4px 15px rgba(212,22,60,0.3);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212,22,60,0.4);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.3);
}
.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.1);
  transform: translateY(-2px);
}
.btn-secondary {
  background: var(--secondary);
  color: var(--dark);
}
.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(232,160,32,0.4);
}
.btn-white {
  background: var(--white);
  color: var(--primary);
}
.btn-white:hover { transform: translateY(-2px); }

.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-image-inner {
  width: 100%;
  max-width: 480px;
  aspect-ratio: 1;
  background: radial-gradient(circle at 30% 30%, rgba(232,160,32,0.2), rgba(212,22,60,0.1));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.hero-image-inner .big-lobster {
  font-size: 180px;
  filter: drop-shadow(0 10px 40px rgba(232,160,32,0.3));
  animation: float 4s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.hero-stat-num {
  font-size: 28px;
  font-weight: 900;
  font-family: var(--font-num);
}
.hero-stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  margin-top: 2px;
}

/* ==================== PHONE BAR ==================== */
.phone-bar {
  background: linear-gradient(90deg, #D4163C, #FF4500, #E8A020);
  background-size: 200% 100%;
  animation: barMove 4s ease infinite;
  padding: 16px 0;
  text-align: center;
  color: #fff;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
@keyframes barMove {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
.phone-bar a {
  font-size: 24px;
  font-weight: 900;
  letter-spacing: 3px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease;
  text-shadow: 0 2px 8px rgba(0,0,0,0.2);
  position: relative;
}
.phone-bar a::after {
  content: '📞';
  font-size: 20px;
  animation: shake 2s ease-in-out infinite;
}
@keyframes shake {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(15deg); }
  75% { transform: rotate(-15deg); }
}
.phone-bar a:hover {
  text-shadow: 0 0 30px rgba(255,255,255,0.5);
  transform: scale(1.03);
}

/* ==================== SECTION COMMON ==================== */
.section {
  padding: 100px 0;
}
.section-dark {
  background: var(--dark);
  color: var(--white);
}
.section-warm {
  background: var(--bg-warm);
}
.section-gray {
  background: var(--light-gray);
}
.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-tag {
  display: inline-block;
  color: var(--primary);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section-tag.light { color: var(--secondary); }
.section-title {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.25;
}
.section-desc {
  font-size: 16px;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}
.section-dark .section-desc { color: rgba(255,255,255,0.7); }

/* ==================== TASTE GRID ==================== */
.taste-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 40px;
}
.taste-item {
  background: var(--white);
  border: 2px solid #f0f0f0;
  border-radius: var(--radius);
  padding: 20px 12px;
  text-align: center;
  transition: var(--transition);
}
.taste-item:hover {
  border-color: var(--primary);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.taste-item .taste-icon {
  font-size: 36px;
  margin-bottom: 8px;
  display: block;
}
.taste-item .taste-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}

/* ==================== FEATURES ==================== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.feature-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 30px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid #f0f0f0;
}
.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.feature-icon {
  width: 64px; height: 64px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 16px;
  display: flex;
  align-items: center; justify-content: center;
  font-size: 28px;
  color: var(--white);
}
.feature-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}
.feature-card p {
  color: var(--text-light);
  font-size: 15px;
  line-height: 1.7;
}

/* ==================== COURSES ==================== */
.courses-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.course-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid #f0f0f0;
}
.course-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.course-image {
  height: 200px;
  background: linear-gradient(135deg, var(--primary), var(--dark2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  color: var(--white);
}
.course-body {
  padding: 24px;
}
.course-body h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}
.course-body p {
  color: var(--text-light);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 16px;
}
.course-body .course-meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.course-body .course-meta span {
  font-size: 13px;
  color: var(--gray);
  display: flex;
  align-items: center;
  gap: 4px;
}

/* ==================== PRODUCTS ==================== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.product-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid #f0f0f0;
}
.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.product-image {
  height: 180px;
  background: linear-gradient(135deg, var(--secondary), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  color: var(--white);
}
.product-body {
  padding: 20px;
}
.product-body h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
}
.product-body .product-spec {
  font-size: 13px;
  color: var(--gray);
  margin-bottom: 6px;
}
.product-body .product-price {
  font-size: 20px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 12px;
}
.product-body .product-desc {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.6;
}

/* ==================== STEPS ==================== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
}
.step-item {
  text-align: center;
  position: relative;
}
.step-number {
  width: 56px; height: 56px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--secondary), var(--accent));
  border-radius: 50%;
  display: flex;
  align-items: center; justify-content: center;
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  position: relative;
  z-index: 1;
}
.step-item h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}
.step-item p {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
}

/* ==================== FRANCHISE ==================== */
.franchise-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.franchise-image {
  background: linear-gradient(135deg, var(--primary), var(--dark2));
  border-radius: var(--radius);
  padding: 60px 40px;
  text-align: center;
  color: var(--white);
  min-height: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.franchise-image .f-icon {
  font-size: 80px;
  margin-bottom: 24px;
}
.franchise-image h3 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 12px;
}
.franchise-image p {
  color: rgba(255,255,255,0.7);
  font-size: 15px;
}
.franchise-benefits {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.franchise-benefit {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.franchise-benefit .fb-icon {
  width: 44px; height: 44px;
  min-width: 44px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 12px;
  display: flex;
  align-items: center; justify-content: center;
  font-size: 20px;
  color: var(--white);
}
.franchise-benefit h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
}
.franchise-benefit p {
  font-size: 14px;
  color: var(--text-light);
}

/* ==================== ABOUT ==================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-image {
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(135deg, var(--primary), var(--dark2));
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
  color: var(--white);
  position: relative;
}
.about-content h2 {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.3;
}
.about-content p {
  color: var(--text-light);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 16px;
}

/* ==================== TESTIMONIALS ==================== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  border: 1px solid #f0f0f0;
}
.testimonial-card .t-stars {
  color: var(--secondary);
  font-size: 16px;
  margin-bottom: 12px;
}
.testimonial-card blockquote {
  font-size: 14px;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 16px;
  font-style: italic;
}
.testimonial-card .t-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-card .t-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex;
  align-items: center; justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 18px;
}
.testimonial-card .t-name {
  font-weight: 600;
  font-size: 14px;
}
.testimonial-card .t-title {
  font-size: 12px;
  color: var(--gray);
}

/* ==================== CTA ==================== */
.cta-section {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  padding: 80px 0;
  text-align: center;
  color: var(--white);
}
.cta-section h2 {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 800;
  margin-bottom: 16px;
}
.cta-section p {
  font-size: 18px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 32px;
}
.cta-section .btn-white {
  padding: 16px 40px;
  font-size: 18px;
}

/* ==================== CONTACT ==================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}
.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.contact-item .ci-icon {
  width: 48px; height: 48px;
  min-width: 48px;
  background: var(--light-gray);
  border-radius: 12px;
  display: flex;
  align-items: center; justify-content: center;
  font-size: 22px;
  color: var(--primary);
}
.contact-item h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
}
.contact-item p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
}
.contact-item a {
  color: var(--primary);
  font-weight: 600;
}
.contact-item a:hover { text-decoration: underline; }

.contact-form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
  border: 1px solid #f0f0f0;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text);
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e5e7eb;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-family: var(--font-cn);
  transition: var(--transition);
  background: var(--white);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(212,22,60,0.1);
}
.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

/* ==================== FOOTER ==================== */
.footer {
  background: var(--dark);
  color: var(--white);
  padding: 60px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand .logo-text { color: var(--white); }
.footer-brand p {
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  line-height: 1.7;
  margin-top: 16px;
}
.footer h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--white);
}
.footer-links li {
  margin-bottom: 10px;
}
.footer-links a {
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  transition: var(--transition);
}
.footer-links a:hover {
  color: var(--secondary);
  padding-left: 4px;
}
.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom p {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}

/* ==================== BREADCRUMB ==================== */
.breadcrumb-nav {
  padding-top: calc(var(--header-h) + 12px);
  background: var(--bg-light);
  border-bottom: 1px solid #e5e7eb;
}
.breadcrumb-nav ol {
  display: flex;
  align-items: center;
  list-style: none;
  padding: 10px 0;
  gap: 8px;
  font-size: 13px;
  color: var(--gray);
  flex-wrap: wrap;
}
.breadcrumb-nav a {
  color: var(--gray);
  transition: var(--transition);
}
.breadcrumb-nav a:hover { color: var(--primary); }
.breadcrumb-nav li:not(:last-child)::after {
  content: '/';
  margin-left: 8px;
  color: #ccc;
}

/* ==================== FLOATING PHONE ==================== */
.float-phone {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  width: 64px; height: 64px;
  background: linear-gradient(135deg, #D4163C, #FF4500);
  border-radius: 50%;
  display: none;
  align-items: center; justify-content: center;
  color: #fff;
  font-size: 28px;
  box-shadow: 0 6px 25px rgba(212,22,60,0.5);
  transition: all 0.3s ease;
  animation: floatPulse 2s ease-in-out infinite;
  border: 2px solid rgba(255,255,255,0.2);
}
.float-phone:hover {
  transform: scale(1.12);
  box-shadow: 0 8px 35px rgba(212,22,60,0.6);
}
@keyframes floatPulse {
  0%, 100% { box-shadow: 0 6px 25px rgba(212,22,60,0.4); transform: scale(1); }
  50% { box-shadow: 0 6px 45px rgba(212,22,60,0.7); transform: scale(1.05); }
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .courses-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; }
  .franchise-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .nav {
    position: fixed;
    top: var(--header-h); left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 20px;
    gap: 16px;
    box-shadow: var(--shadow);
    transform: translateY(-100%);
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
    overflow-x: visible;
  }
  .nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
  .nav .header-phone {
    margin-top: 8px;
    width: 100%;
    justify-content: center;
  }
  .menu-toggle { display: flex; }
  .float-phone { display: flex; }
  .phone-bar a { font-size: 18px; }
}

@media (max-width: 768px) {
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-content { padding: 20px 0; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-image { display: none; }

  .features-grid { grid-template-columns: 1fr; }
  .courses-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .section { padding: 60px 0; }
  .section-header { margin-bottom: 36px; }
  .taste-grid { grid-template-columns: repeat(2, 1fr); }

  .phone-bar a { font-size: 18px; }
  .float-phone { display: flex; }

  .contact-form { padding: 24px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 28px; }
  .hero-stats { flex-direction: column; gap: 16px; }
  .products-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .taste-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ==================== ANIMATIONS ==================== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Mid-size: shrink nav so 9 items fit */
@media (min-width: 901px) and (max-width: 1200px) {
  .nav { gap: 8px; }
  .nav a { font-size: 13px; }
  .header-phone { font-size: 12px; padding: 5px 10px; }
  .logo-text { font-size: 17px; }
  .logo-sub { display: none; }
  .logo-icon { width: 34px; height: 34px; font-size: 16px; }
}
