/* --- GRUNDLÄGGANDE INSTÄLLNINGAR --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
}

/* --- TYPOGRAFI --- */
h1 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

h2 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

p {
  margin-bottom: 1rem;
}

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

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

/* --- BEHÅLLARE & LAYOUT --- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* --- HEADER / NAVIGATION --- */
.header {
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid #e5e7eb;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.2rem;
  font-weight: bold;
  color: #1f2937;
}

.logo-icon {
  width: 32px;
  height: 32px;
  color: #2563eb;
}

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

.nav-menu a {
  color: #6b7280;
  transition: color 0.3s;
  font-weight: 500;
}

.nav-menu a:hover {
  color: #2563eb;
}

.nav-menu .btn {
  color: #fbbf24 !important;
}

.btn {
  background-color: #2563eb;
  color: #fbbf24;
  padding: 10px 24px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s;
  display: inline-block;
}

.btn:hover {
  background-color: #1d4ed8;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.btn-secondary {
  background-color: white;
  color: #2563eb;
  border: 2px solid #2563eb;
}

.btn-secondary:hover {
  background-color: #2563eb;
  color: white;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
}

/* --- HERO SECTION --- */
.hero {
  min-height: 80vh;
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
  display: flex;
  align-items: center;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('../images/service-1.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.15;
  z-index: 0;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-text h1 {
  font-size: 3rem;
  color: #1f2937;
  margin-bottom: 20px;
}

.hero-text h1 .highlight {
  color: #2563eb;
}

.hero-text h2 {
  font-size: 1.5rem;
  color: #4b5563;
  margin-bottom: 20px;
}

.hero-text p {
  font-size: 1.1rem;
  color: #6b7280;
  margin-bottom: 30px;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 30px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.check-icon {
  color: #10b981;
  font-size: 1.2rem;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.hero-image {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.hero-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* --- SECTIONS --- */
.section {
  padding: 80px 0;
}

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

.section-header h2 {
  color: #1f2937;
  margin-bottom: 15px;
}

.section-header p {
  font-size: 1.1rem;
  color: #6b7280;
  max-width: 700px;
  margin: 0 auto;
}

.bg-gray {
  background-color: #f9fafb;
}

.bg-blue {
  background-color: #2563eb;
  color: white;
}

/* --- SERVICES GRID --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-image {
  position: relative;
  height: 200px;
  background-color: #e5e7eb;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-content {
  padding: 24px;
}

.service-icon {
  color: #2563eb;
  font-size: 2rem;
  margin-bottom: 15px;
}

.service-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 10px;
}

.service-description {
  color: #6b7280;
  margin-bottom: 0;
}

/* --- FEATURES / BENEFITS --- */
.features-section {
  padding: 80px 0;
  background-color: white;
}

.features-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.feature-box {
  text-align: center;
  padding: 30px;
}

.feature-box-icon {
  font-size: 3rem;
  color: #2563eb;
  margin-bottom: 20px;
}

.feature-box h3 {
  color: #1f2937;
  margin-bottom: 15px;
}

.feature-box p {
  color: #6b7280;
}

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

.testimonial-card {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
}

.testimonial-card:hover {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.stars {
  display: flex;
  gap: 5px;
  margin-bottom: 15px;
  color: #fbbf24;
}

.testimonial-text {
  color: #4b5563;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  font-weight: 600;
  color: #1f2937;
}

/* --- CTA SECTION --- */
.cta-section {
  text-align: center;
  padding: 80px 0;
}

.cta-section h2 {
  color: white;
  margin-bottom: 15px;
}

.cta-section p {
  color: #dbeafe;
  font-size: 1.2rem;
  margin-bottom: 30px;
}

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

/* --- FOOTER --- */
.footer {
  background-color: #1f2937;
  color: white;
  padding: 60px 0 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section h3 {
  color: white;
  margin-bottom: 20px;
}

.footer-section p {
  color: #9ca3af;
  margin-bottom: 15px;
}

.footer-icon {
  width: 24px;
  height: 24px;
  color: #60a5fa;
  margin-right: 10px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-item {
  display: flex;
  align-items: center;
  color: #9ca3af;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: #9ca3af;
  transition: color 0.3s;
}

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

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid #374151;
  color: #9ca3af;
}

/* --- BOOKING FORM --- */
.booking-page {
  background-color: #f9fafb;
  padding: 60px 0;
}

.booking-container {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.booking-form-card {
  background: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.form-section {
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #e5e7eb;
}

.form-section:last-child {
  border-bottom: none;
}

.form-section h3 {
  color: #1f2937;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

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

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

.form-label {
  display: block;
  margin-bottom: 8px;
  color: #374151;
  font-weight: 500;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  font-size: 1rem;
  transition: border-color 0.3s;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

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

.form-help {
  font-size: 0.875rem;
  color: #6b7280;
  margin-top: 5px;
}

.required {
  color: #ef4444;
}

/* --- SIDEBAR --- */
.sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sidebar-card {
  background: white;
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.sidebar-card.blue {
  background-color: #2563eb;
  color: white;
}

.sidebar-card h3 {
  margin-bottom: 15px;
}

.benefits-list {
  list-style: none;
}

.benefits-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.opening-hours {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
}

.hours-day {
  color: #6b7280;
}

.hours-time {
  font-weight: 600;
  color: #1f2937;
}

.hours-time.closed {
  color: #ef4444;
}

/* --- PROMO SECTION (Homepage) --- */
.promo-section {
  position: relative;
  background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
  padding: 80px 20px;
  overflow: hidden;
}

.promo-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="dots" width="60" height="60" patternUnits="userSpaceOnUse"><circle cx="30" cy="30" r="2" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23dots)"/></svg>');
  opacity: 0.5;
}

.promo-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.promo-badge {
  display: inline-block;
  background: rgba(251, 191, 36, 0.2);
  color: #fbbf24;
  padding: 10px 24px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 20px;
  border: 2px solid rgba(251, 191, 36, 0.3);
}

.promo-title {
  color: white;
  font-size: 2.8rem;
  margin-bottom: 20px;
  line-height: 1.2;
}

.promo-highlight {
  color: #fbbf24;
}

.promo-description {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.2rem;
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.promo-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 50px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.promo-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  padding: 30px 20px;
  transition: all 0.3s;
  position: relative;
}

.promo-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(251, 191, 36, 0.5);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.promo-card-featured {
  background: rgba(251, 191, 36, 0.15);
  border: 2px solid #fbbf24;
  box-shadow: 0 8px 20px rgba(251, 191, 36, 0.3);
}

.promo-featured-label {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  color: #1f2937;
  padding: 6px 20px;
  border-radius: 20px;
  font-weight: bold;
  font-size: 0.75rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.promo-card-icon {
  font-size: 3rem;
  margin-bottom: 15px;
}

.promo-card h3 {
  color: white;
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.promo-price {
  color: #fbbf24;
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.promo-card p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  margin-bottom: 0;
}

.promo-buttons {
  margin-bottom: 40px;
}

.promo-features {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.promo-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
  font-size: 1.1rem;
}

.promo-check {
  width: 24px;
  height: 24px;
  background: #10b981;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  flex-shrink: 0;
}

/* --- MODERN OFFERS PAGE --- */

/* Offers Hero Section */
.offers-hero {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 50%, #3b82f6 100%);
  overflow: hidden;
}

.offers-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
}

.offers-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 60px 20px;
}

.offers-badge {
  display: inline-block;
  background: rgba(251, 191, 36, 0.2);
  color: #fbbf24;
  padding: 10px 24px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 20px;
  border: 2px solid rgba(251, 191, 36, 0.3);
}

.offers-hero h1 {
  color: white;
  font-size: 3rem;
  margin-bottom: 20px;
}

.offers-hero .highlight {
  color: #fbbf24;
}

.offers-hero-subtitle {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.3rem;
  margin-bottom: 40px;
}

.offers-hero-features {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.offers-hero-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
  font-size: 1.1rem;
}

.offers-hero-icon {
  width: 24px;
  height: 24px;
  background: #10b981;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  flex-shrink: 0;
}

/* Modern Offer Cards */
.modern-offer-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin-bottom: 50px;
  transition: all 0.4s ease;
  position: relative;
}

.modern-offer-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.modern-offer-featured {
  border: 3px solid #2563eb;
  box-shadow: 0 15px 40px rgba(37, 99, 235, 0.25);
}

.modern-featured-ribbon {
  position: absolute;
  top: 20px;
  right: -35px;
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  color: #1f2937;
  padding: 8px 45px;
  font-weight: bold;
  font-size: 0.85rem;
  transform: rotate(45deg);
  z-index: 10;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.modern-offer-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.modern-offer-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.modern-offer-card:hover .modern-offer-image img {
  transform: scale(1.05);
}

.modern-offer-price-tag {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: white;
  padding: 20px 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 8px 16px rgba(37, 99, 235, 0.4);
}

.modern-price-featured {
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  color: #1f2937;
}

.modern-price-diagnos {
  background: linear-gradient(135deg, #10b981, #059669);
}

.modern-price-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  opacity: 0.9;
  margin-bottom: 5px;
}

.modern-price-value {
  font-size: 2.2rem;
  font-weight: bold;
  line-height: 1;
  margin-bottom: 5px;
}

.modern-price-vat {
  font-size: 0.85rem;
  opacity: 0.9;
}

.modern-offer-content {
  padding: 40px;
}

.modern-offer-header {
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.modern-offer-title {
  font-size: 2rem;
  color: #1f2937;
  margin-bottom: 0;
  flex: 1;
}

.modern-offer-subtitle {
  font-size: 1.2rem;
  color: #f59e0b;
  font-weight: 600;
  margin-bottom: 10px;
}

.modern-offer-description {
  font-size: 1.1rem;
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 25px;
}

.modern-offer-features h3 {
  font-size: 1.3rem;
  color: #1f2937;
  margin-bottom: 20px;
}

.modern-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-bottom: 30px;
}

.modern-feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: #f9fafb;
  border-radius: 8px;
  transition: all 0.3s;
}

.modern-feature-item:hover {
  background: #eff6ff;
  transform: translateX(5px);
}

.modern-check {
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  flex-shrink: 0;
  font-size: 0.9rem;
}

.modern-offer-info {
  background: linear-gradient(135deg, #eff6ff, #dbeafe);
  padding: 25px;
  border-radius: 12px;
  border-left: 4px solid #2563eb;
  margin-bottom: 30px;
}

.modern-offer-info p {
  margin-bottom: 10px;
  color: #1f2937;
  line-height: 1.8;
}

.modern-offer-note {
  font-size: 0.9rem;
  color: #6b7280;
  margin-bottom: 0;
}

.modern-offer-btn {
  display: block;
  width: 100%;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: white;
  padding: 18px 32px;
  border-radius: 10px;
  text-align: center;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.modern-offer-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.4);
  background: linear-gradient(135deg, #1d4ed8, #1e40af);
}

.modern-btn-featured {
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  color: #1f2937;
}

.modern-btn-featured:hover {
  background: linear-gradient(135deg, #f59e0b, #d97706);
}

/* CTA Section */
.offers-cta-section {
  background: linear-gradient(135deg, #1e40af, #3b82f6);
  padding: 60px 20px;
  text-align: center;
}

.offers-cta-title {
  color: #ff8800;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 15px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.offers-cta-text {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.15rem;
  font-weight: 500;
  margin-bottom: 35px;
  letter-spacing: 0.3px;
}

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

.offers-cta-phone {
  font-size: 1.25rem !important;
  padding: 18px 45px !important;
  font-weight: 700 !important;
  letter-spacing: 0.5px;
  background: white !important;
  color: #1e40af !important;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.offers-cta-phone:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* --- SERVICES PAGE --- */
.services-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.service-detail-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
}

.service-detail-card:hover {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.service-detail-image {
  height: 250px;
  background-color: #e5e7eb;
  overflow: hidden;
}

.service-detail-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-detail-content {
  padding: 30px;
}

.service-features {
  list-style: none;
  margin: 20px 0;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  color: #4b5563;
}

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 768px) {
  .nav-menu {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background-color: white;
    flex-direction: column;
    gap: 0;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-top: 1px solid #e5e7eb;
  }
  
  .nav-menu.active {
    display: flex;
  }
  
  .nav-menu li {
    width: 100%;
    text-align: center;
    padding: 12px 0;
    border-bottom: 1px solid #f3f4f6;
  }
  
  .nav-menu li:last-child {
    border-bottom: none;
  }
  
  .nav-menu a {
    display: block;
    width: 100%;
  }
  
  .mobile-menu-btn {
    display: block;
    color: #2563eb;
  }
  
  .hero-content {
    grid-template-columns: 1fr;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .features-container {
    grid-template-columns: 1fr;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
  }
  
  .booking-container {
    grid-template-columns: 1fr;
  }
  
  .services-detail-grid {
    grid-template-columns: 1fr;
  }
  
  .offers-grid {
    grid-template-columns: 1fr;
  }
  
  .offer-card {
    padding: 30px 20px;
  }
  
  .offer-title {
    font-size: 1.5rem;
  }
  
  .offer-price {
    font-size: 1.75rem;
  }
  
  /* Promo Section Mobile */
  .promo-title {
    font-size: 1.8rem;
  }
  
  .promo-description {
    font-size: 1rem;
  }
  
  .promo-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .promo-features {
    flex-direction: column;
    gap: 15px;
  }
  
  /* Modern Offers Mobile */
  .offers-hero h1 {
    font-size: 2rem;
  }
  
  .offers-hero-subtitle {
    font-size: 1.1rem;
  }
  
  .offers-hero-features {
    flex-direction: column;
    gap: 15px;
  }
  
  .modern-offer-image {
    height: 200px;
  }
  
  .modern-offer-content {
    padding: 25px 20px;
  }
  
  .modern-offer-title {
    font-size: 1.5rem;
  }
  
  .modern-features-grid {
    grid-template-columns: 1fr;
  }
  
  .modern-offer-price-tag {
    padding: 15px 20px;
    bottom: 15px;
    right: 15px;
  }
  
  .modern-price-value {
    font-size: 1.8rem;
  }
  
  .modern-featured-ribbon {
    font-size: 0.75rem;
    padding: 6px 40px;
  }
  
  .offers-cta-title {
    font-size: 1.5rem;
  }
  
  .offers-cta-text {
    font-size: 1rem;
  }
  
  .offers-cta-buttons {
    flex-direction: column;
  }
  
  .offers-cta-phone {
    font-size: 1.1rem !important;
    padding: 16px 35px !important;
  }
  
  /* Flash Button Mobile */
  .flash-offer-btn {
    font-size: 1.1rem;
    padding: 16px 30px;
  }
  
  .flash-offer-icon {
    font-size: 1.3rem;
  }
  
  /* Badges Mobile */
  .offer-badge {
    width: 55px;
    height: 55px;
    top: -5px;
    left: 15px;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
}

/* --- LOADING & SUCCESS STATES --- */
.success-message {
  background-color: #10b981;
  color: white;
  padding: 15px 20px;
  border-radius: 8px;
  margin-bottom: 20px;
  display: none;
}

.success-message.show {
  display: block;
}

.error-message {
  background-color: #ef4444;
  color: white;
  padding: 15px 20px;
  border-radius: 8px;
  margin-bottom: 20px;
  display: none;
}

.error-message.show {
  display: block;
}

.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* --- FLASH OFFER BUTTON --- */
.flash-offer-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
  background: linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
}

.flash-offer-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #dc2626, #ef4444);
  color: white;
  padding: 20px 40px;
  border-radius: 50px;
  font-size: 1.3rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(220, 38, 38, 0.4);
  transition: all 0.3s ease;
  animation: pulse-glow 2s ease-in-out infinite;
  border: 3px solid rgba(255, 255, 255, 0.3);
}

.flash-offer-btn:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 12px 32px rgba(220, 38, 38, 0.5);
  animation: none;
}

.flash-offer-icon {
  font-size: 1.5rem;
  animation: bounce-icon 1.5s ease-in-out infinite;
}

.flash-offer-text {
  letter-spacing: 0.5px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 8px 24px rgba(220, 38, 38, 0.4), 0 0 0 0 rgba(220, 38, 38, 0.7);
  }
  50% {
    box-shadow: 0 8px 24px rgba(220, 38, 38, 0.4), 0 0 0 15px rgba(220, 38, 38, 0);
  }
}

@keyframes bounce-icon {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

/* --- OFFER BADGES --- */
.offer-badge {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.25));
  transition: transform 0.3s ease;
}

.modern-offer-card:hover .offer-badge {
  transform: scale(1.1) rotate(5deg);
}

.modern-offer-header {
  position: relative;
  padding-top: 15px;
}
