/* ========================================
   PetCare Smart - Luxury Premium CSS Styles
   Design Style: Luxury and Premium Brand Aesthetic
   ======================================== */

/* CSS Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: 'Open Sans', 'Segoe UI', Tahoma, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #1a1a1a;
  background-color: #ffffff;
  overflow-x: hidden;
}

/* Typography - Luxury Premium Style */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Georgia', serif;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #1a1a1a;
  margin-bottom: 16px;
  line-height: 1.3;
}

h1 {
  font-size: 48px;
  margin-bottom: 24px;
  letter-spacing: 1px;
}

h2 {
  font-size: 36px;
  margin-bottom: 20px;
  position: relative;
}

h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #D4AF37 0%, #F4E5C3 100%);
  margin-top: 16px;
}

h3 {
  font-size: 24px;
  margin-bottom: 16px;
}

h4 {
  font-size: 18px;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

p {
  margin-bottom: 16px;
  color: #2a2a2a;
}

a {
  color: #2C5F8D;
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: #D4AF37;
}

ul {
  list-style: none;
}

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

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

/* Buttons - Luxury Premium Style */
.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 16px 40px;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border: 2px solid transparent;
  border-radius: 0;
  cursor: pointer;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  font-family: 'Montserrat', sans-serif;
}

.btn-primary {
  background: linear-gradient(135deg, #2C5F8D 0%, #1a3d5f 100%);
  color: #ffffff;
  border-color: #2C5F8D;
  box-shadow: 0 4px 15px rgba(44, 95, 141, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #D4AF37 0%, #B8941F 100%);
  border-color: #D4AF37;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(212, 175, 55, 0.4);
}

.btn-secondary {
  background: transparent;
  color: #2C5F8D;
  border-color: #2C5F8D;
}

.btn-secondary:hover {
  background: #2C5F8D;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(44, 95, 141, 0.3);
}

.btn-center {
  display: block;
  margin: 32px auto 0;
  width: fit-content;
}

.btn-link {
  display: inline-block;
  margin-top: 24px;
  color: #2C5F8D;
  font-weight: 600;
  text-decoration: underline;
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1001;
  background: linear-gradient(135deg, #2C5F8D 0%, #1a3d5f 100%);
  color: #ffffff;
  border: none;
  padding: 12px 16px;
  font-size: 24px;
  cursor: pointer;
  border-radius: 4px;
  box-shadow: 0 4px 15px rgba(44, 95, 141, 0.3);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background: linear-gradient(135deg, #D4AF37 0%, #B8941F 100%);
  transform: scale(1.05);
}

/* Mobile Menu Overlay */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 350px;
  height: 100vh;
  background: linear-gradient(180deg, #1a1a1a 0%, #2a2a2a 100%);
  z-index: 1002;
  padding: 80px 30px 30px;
  transition: right 0.4s ease;
  overflow-y: auto;
  box-shadow: -5px 0 25px rgba(0, 0, 0, 0.5);
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  color: #ffffff;
  border: 2px solid #D4AF37;
  padding: 8px 16px;
  font-size: 24px;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background: #D4AF37;
  transform: rotate(90deg);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.mobile-nav a {
  color: #ffffff;
  padding: 16px 0;
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  color: #D4AF37;
  padding-left: 10px;
}

/* Header - Luxury Premium Style */
header {
  background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
  padding: 24px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border-bottom: 2px solid #D4AF37;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

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

.logo img {
  height: 50px;
  width: auto;
}

.tagline {
  font-size: 12px;
  color: #666;
  font-style: italic;
  letter-spacing: 0.5px;
}

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

.main-nav a {
  color: #1a1a1a;
  font-weight: 600;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 8px 0;
  position: relative;
  transition: all 0.3s ease;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #D4AF37 0%, #F4E5C3 100%);
  transition: width 0.3s ease;
}

.main-nav a:hover {
  color: #D4AF37;
}

.main-nav a:hover::after {
  width: 100%;
}

.header-cta {
  display: flex;
  gap: 16px;
}

/* Hero Section - Luxury Premium */
.hero {
  background: linear-gradient(135deg, #F0F4F8 0%, #E8EEF3 100%);
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 56px;
  margin-bottom: 24px;
  color: #1a1a1a;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.05);
}

.hero-subheadline {
  font-size: 20px;
  color: #2a2a2a;
  margin-bottom: 32px;
  line-height: 1.6;
}

.hero-cta {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.trust-badges {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
}

.badge,
.badge-featured {
  background: linear-gradient(135deg, #D4AF37 0%, #F4E5C3 100%);
  color: #1a1a1a;
  padding: 10px 24px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.badge-featured {
  position: absolute;
  top: 20px;
  right: 20px;
}

/* Page Hero */
.page-hero {
  background: linear-gradient(135deg, #2C5F8D 0%, #1a3d5f 100%);
  padding: 60px 20px;
  color: #ffffff;
  text-align: center;
}

.page-hero h1 {
  color: #ffffff;
  margin-bottom: 16px;
}

.subheadline {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  max-width: 700px;
  margin: 0 auto;
}

.breadcrumbs {
  margin-bottom: 24px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}

.breadcrumbs a {
  color: #D4AF37;
  text-decoration: underline;
}

/* Sections - General Spacing */
section {
  margin-bottom: 60px;
  padding: 60px 20px;
}

.section-intro {
  text-align: center;
  font-size: 18px;
  color: #666;
  max-width: 700px;
  margin: 0 auto 48px;
}

/* Features Grid - Flexbox Only */
.features {
  background: #ffffff;
}

.features h2 {
  text-align: center;
  margin-bottom: 48px;
}

.features-grid,
.benefits-grid,
.services-grid,
.products {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.feature-card,
.benefit-card,
.service-card,
.product-card {
  flex: 1 1 250px;
  max-width: 350px;
  background: #ffffff;
  padding: 32px;
  border-radius: 8px;
  text-align: center;
  transition: all 0.4s ease;
  border: 2px solid #E8EEF3;
  position: relative;
  margin-bottom: 20px;
}

.feature-card:hover,
.benefit-card:hover,
.service-card:hover,
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(44, 95, 141, 0.15);
  border-color: #D4AF37;
}

.feature-card img {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  filter: drop-shadow(0 4px 8px rgba(212, 175, 55, 0.3));
}

.feature-card h3,
.benefit-card h3 {
  margin-bottom: 16px;
  color: #1a1a1a;
}

.feature-card p,
.benefit-card p {
  color: #666;
  font-size: 15px;
}

/* Services Overview */
.services-overview {
  background: linear-gradient(135deg, #F0F4F8 0%, #E8EEF3 100%);
}

.services-overview h2 {
  text-align: center;
  margin-bottom: 16px;
}

.service-card {
  background: #ffffff;
  border: 2px solid #E8EEF3;
}

.service-card.featured {
  border: 3px solid #D4AF37;
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.25);
  transform: scale(1.05);
}

.service-card h3 {
  color: #1a1a1a;
  margin-bottom: 16px;
}

.price {
  font-size: 32px;
  font-weight: 700;
  color: #D4AF37;
  margin-bottom: 16px;
  font-family: 'Montserrat', sans-serif;
}

.savings {
  color: #FF8C42;
  font-weight: 600;
  margin-bottom: 16px;
}

/* Product Cards */
.product-grid {
  background: #ffffff;
}

.product-card {
  position: relative;
}

.product-card.premium {
  border: 3px solid #D4AF37;
  background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
}

.product-features {
  text-align: left;
  margin: 24px 0;
  padding: 0;
}

.product-features li {
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
  color: #2a2a2a;
  font-size: 15px;
}

.product-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #D4AF37;
  font-weight: 700;
}

/* Benefits Section */
.benefits {
  background: #ffffff;
}

.benefits h2 {
  text-align: center;
  margin-bottom: 48px;
}

/* Testimonials - CRITICAL: Readable Text */
.testimonials {
  background: linear-gradient(135deg, #F0F4F8 0%, #E8EEF3 100%);
}

.testimonials h2 {
  text-align: center;
  margin-bottom: 48px;
}

.testimonials-grid,
.reviews-list {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-bottom: 32px;
}

.testimonial-card,
.review-card {
  flex: 1 1 400px;
  max-width: 500px;
  background: #ffffff;
  padding: 32px;
  border-radius: 8px;
  border-left: 4px solid #D4AF37;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  margin-bottom: 20px;
}

.testimonial-card p,
.review-text {
  font-size: 16px;
  color: #1a1a1a;
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: #2a2a2a;
  font-weight: 600;
}

.rating-display,
.rating-summary {
  text-align: center;
  margin: 32px 0;
  font-size: 18px;
  color: #1a1a1a;
}

.rating-display strong,
.rating-summary strong {
  color: #D4AF37;
  font-size: 24px;
}

/* Review Cards */
.review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  flex-wrap: wrap;
  gap: 8px;
}

.review-header strong {
  color: #1a1a1a;
  font-size: 16px;
}

.rating {
  color: #D4AF37;
  font-size: 18px;
}

.review-product {
  color: #2C5F8D;
  font-weight: 600;
  margin-bottom: 8px;
}

.review-date {
  color: #666;
  font-size: 14px;
  margin-bottom: 16px;
}

/* Rating Overview */
.rating-overview {
  background: #ffffff;
}

.rating-breakdown {
  display: flex;
  gap: 48px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 800px;
  margin: 0 auto;
}

.overall-rating {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.rating-number {
  font-size: 64px;
  font-weight: 700;
  color: #D4AF37;
  font-family: 'Montserrat', sans-serif;
}

.rating-text {
  color: #666;
  font-size: 16px;
}

.rating-bars {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
  min-width: 300px;
}

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

.rating-bar span:first-child {
  color: #D4AF37;
  font-weight: 600;
  min-width: 30px;
}

.bar {
  flex: 1;
  height: 8px;
  background: #E8EEF3;
  border-radius: 4px;
  overflow: hidden;
}

.fill {
  height: 100%;
  background: linear-gradient(90deg, #D4AF37 0%, #F4E5C3 100%);
  border-radius: 4px;
}

.recommendation {
  text-align: center;
  margin-top: 32px;
  font-size: 18px;
  color: #1a1a1a;
  font-weight: 600;
}

/* Process Steps - Flexbox Layout */
.process-overview {
  background: #ffffff;
}

.steps-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.step-card {
  flex: 1 1 220px;
  max-width: 280px;
  text-align: center;
  padding: 32px 24px;
  background: linear-gradient(180deg, #ffffff 0%, #F0F4F8 100%);
  border-radius: 8px;
  border: 2px solid #E8EEF3;
  position: relative;
  margin-bottom: 20px;
}

.step-number {
  display: block;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #D4AF37 0%, #F4E5C3 100%);
  color: #1a1a1a;
  font-size: 28px;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

/* Guide Sections */
.detailed-guide {
  background: linear-gradient(135deg, #F0F4F8 0%, #E8EEF3 100%);
}

.guide-section {
  background: #ffffff;
  padding: 32px;
  margin-bottom: 24px;
  border-radius: 8px;
  border-left: 4px solid #D4AF37;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.guide-section h3 {
  margin-bottom: 16px;
  color: #1a1a1a;
}

.guide-section ul {
  padding-left: 0;
}

.guide-section li {
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
  color: #2a2a2a;
}

.guide-section li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: #D4AF37;
  font-weight: 700;
}

/* App Features */
.app-features {
  background: #ffffff;
}

.features-list {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.feature-item {
  flex: 1 1 250px;
  max-width: 350px;
  padding: 24px;
  background: linear-gradient(180deg, #ffffff 0%, #F0F4F8 100%);
  border-radius: 8px;
  border: 2px solid #E8EEF3;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 20px;
}

.feature-item h3 {
  color: #1a1a1a;
  margin-bottom: 8px;
}

/* Contact Methods */
.contact-methods {
  background: #ffffff;
}

.contact-grid,
.info-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.contact-card,
.info-card {
  flex: 1 1 280px;
  max-width: 350px;
  background: linear-gradient(180deg, #ffffff 0%, #F0F4F8 100%);
  padding: 32px;
  border-radius: 8px;
  text-align: center;
  border: 2px solid #E8EEF3;
  margin-bottom: 20px;
}

.contact-card img {
  width: 60px;
  height: 60px;
  margin: 0 auto 16px;
  filter: drop-shadow(0 4px 8px rgba(212, 175, 55, 0.3));
}

.contact-detail {
  color: #D4AF37;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 12px;
}

.contact-hours {
  color: #666;
  font-size: 14px;
  margin-bottom: 16px;
}

/* Stats Section */
.stats {
  background: linear-gradient(135deg, #2C5F8D 0%, #1a3d5f 100%);
  color: #ffffff;
}

.stats h2 {
  color: #ffffff;
  text-align: center;
  margin-bottom: 48px;
}

.stats h2::after {
  background: linear-gradient(90deg, #D4AF37 0%, #F4E5C3 100%);
  margin-left: auto;
  margin-right: auto;
}

.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.stat-card {
  flex: 1 1 200px;
  max-width: 250px;
  text-align: center;
  padding: 32px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  border: 2px solid rgba(212, 175, 55, 0.3);
  margin-bottom: 20px;
}

.stat-card strong {
  display: block;
  font-size: 48px;
  color: #D4AF37;
  margin-bottom: 12px;
  font-family: 'Montserrat', sans-serif;
}

.stat-card p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
}

.stats-inline {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 32px 0;
}

.stats-inline span {
  color: #2a2a2a;
  font-weight: 600;
}

/* Mission and Vision */
.mission-vision {
  background: linear-gradient(135deg, #F0F4F8 0%, #E8EEF3 100%);
}

.mission-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.mission-card {
  flex: 1 1 400px;
  max-width: 550px;
  background: #ffffff;
  padding: 40px;
  border-radius: 8px;
  border-left: 4px solid #D4AF37;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  margin-bottom: 20px;
}

.mission-card h3 {
  color: #1a1a1a;
  margin-bottom: 16px;
}

.mission-card ul {
  padding-left: 0;
}

.mission-card li {
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
  color: #2a2a2a;
}

.mission-card li::before {
  content: '◆';
  position: absolute;
  left: 0;
  color: #D4AF37;
}

/* About Story */
.about-story {
  background: #ffffff;
}

.about-story p {
  max-width: 800px;
  margin: 0 auto 24px;
  font-size: 17px;
  line-height: 1.8;
  color: #2a2a2a;
}

/* Product Services */
.product-services {
  background: linear-gradient(135deg, #F0F4F8 0%, #E8EEF3 100%);
}

.services-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}

.service-item {
  background: #ffffff;
  padding: 32px;
  border-radius: 8px;
  border-left: 4px solid #D4AF37;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.service-item h3 {
  color: #1a1a1a;
  margin-bottom: 12px;
}

.service-note {
  text-align: center;
  margin-top: 32px;
  color: #666;
  font-style: italic;
}

/* Purchase Benefits */
.purchase-benefits {
  background: #ffffff;
}

.benefit {
  text-align: center;
}

.benefit h3 {
  color: #1a1a1a;
  margin-bottom: 12px;
}

/* Text Sections (Legal Content) */
.legal-content {
  background: #ffffff;
  padding: 60px 20px;
}

.text-section {
  max-width: 800px;
  margin: 0 auto 40px;
  padding: 32px;
  background: #fafafa;
  border-radius: 8px;
  border-left: 4px solid #D4AF37;
}

.text-section h2 {
  color: #1a1a1a;
  margin-bottom: 16px;
}

.text-section p,
.text-section ul {
  color: #2a2a2a;
  line-height: 1.8;
}

.text-section li {
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
}

.text-section li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #D4AF37;
  font-size: 20px;
}

/* Thank You Page */
.thank-you-hero {
  background: linear-gradient(135deg, #2C5F8D 0%, #1a3d5f 100%);
  padding: 80px 20px;
  text-align: center;
  color: #ffffff;
}

.thank-you-content {
  max-width: 700px;
  margin: 0 auto;
}

.icon-checkmark {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #D4AF37 0%, #F4E5C3 100%);
  color: #1a1a1a;
  font-size: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.4);
}

.thank-you-hero h1 {
  color: #ffffff;
}

.next-steps,
.while-you-wait {
  background: #ffffff;
}

.steps-list {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  max-width: 900px;
  margin: 0 auto;
}

.step-item {
  flex: 1 1 250px;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px;
  background: linear-gradient(180deg, #ffffff 0%, #F0F4F8 100%);
  border-radius: 8px;
  border: 2px solid #E8EEF3;
}

.timeline {
  text-align: center;
  margin-top: 32px;
  color: #666;
  font-weight: 600;
}

.actions-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.action-card {
  flex: 1 1 280px;
  max-width: 350px;
  background: linear-gradient(180deg, #ffffff 0%, #F0F4F8 100%);
  padding: 32px;
  text-align: center;
  border-radius: 8px;
  border: 2px solid #E8EEF3;
  margin-bottom: 20px;
}

.action-card h3 {
  margin-bottom: 16px;
  color: #1a1a1a;
}

.urgent-contact {
  background: linear-gradient(135deg, #F0F4F8 0%, #E8EEF3 100%);
  text-align: center;
}

.contact-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 24px 0;
}

.phone-hours,
.hours-reminder {
  color: #666;
  font-size: 14px;
  margin-top: 16px;
}

/* CTA Section - Luxury Premium */
.cta-section {
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
  padding: 80px 20px;
  text-align: center;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-section h2 {
  color: #ffffff;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.cta-section h2::after {
  background: linear-gradient(90deg, #D4AF37 0%, #F4E5C3 100%);
  margin-left: auto;
  margin-right: auto;
}

.cta-subheadline {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}

.trust-elements {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 32px 0;
  position: relative;
  z-index: 1;
}

.trust-elements span {
  color: #D4AF37;
  font-weight: 600;
  font-size: 15px;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.signature {
  font-style: italic;
  color: #D4AF37;
  margin-top: 24px;
  position: relative;
  z-index: 1;
}

/* Footer - Luxury Premium */
footer {
  background: linear-gradient(180deg, #1a1a1a 0%, #0a0a0a 100%);
  color: rgba(255, 255, 255, 0.8);
  padding: 60px 20px 20px;
  border-top: 2px solid #D4AF37;
}

.footer-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  margin-bottom: 40px;
}

.footer-column {
  flex: 1 1 200px;
  min-width: 200px;
}

.footer-column h4 {
  color: #D4AF37;
  margin-bottom: 16px;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.footer-column ul {
  padding: 0;
}

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

.footer-column a {
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
}

.footer-column a:hover {
  color: #D4AF37;
  padding-left: 5px;
}

.footer-column p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 8px;
}

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  text-align: center;
}

.footer-links {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-links a:hover {
  color: #D4AF37;
}

.copyright {
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
}

/* Cookie Consent Banner */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, #1a1a1a 0%, #0a0a0a 100%);
  color: #ffffff;
  padding: 24px 20px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  z-index: 999;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  border-top: 2px solid #D4AF37;
}

.cookie-consent.show {
  transform: translateY(0);
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-text {
  flex: 1 1 300px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
}

.cookie-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-buttons button {
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cookie-accept {
  background: linear-gradient(135deg, #D4AF37 0%, #B8941F 100%);
  color: #1a1a1a;
}

.cookie-accept:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.cookie-reject {
  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.cookie-reject:hover {
  background: rgba(255, 255, 255, 0.1);
}

.cookie-settings {
  background: transparent;
  color: #D4AF37;
  text-decoration: underline;
}

/* Cookie Modal */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1003;
  padding: 20px;
}

.cookie-modal.show {
  display: flex;
}

.cookie-modal-content {
  background: #ffffff;
  max-width: 600px;
  width: 100%;
  padding: 40px;
  border-radius: 8px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
}

.cookie-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: #666;
  transition: all 0.3s ease;
}

.cookie-modal-close:hover {
  color: #D4AF37;
  transform: rotate(90deg);
}

.cookie-category {
  padding: 20px;
  margin-bottom: 16px;
  background: #F0F4F8;
  border-radius: 8px;
  border-left: 4px solid #D4AF37;
}

.cookie-category h3 {
  margin-bottom: 8px;
  color: #1a1a1a;
}

.cookie-category p {
  color: #666;
  font-size: 14px;
  margin-bottom: 12px;
}

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

.cookie-toggle input[type="checkbox"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.cookie-toggle label {
  font-weight: 600;
  color: #2a2a2a;
  cursor: pointer;
}

.cookie-modal-buttons {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 24px;
  flex-wrap: wrap;
}

/* Responsive Design - Mobile First */
@media (max-width: 768px) {
  /* Show mobile menu toggle */
  .mobile-menu-toggle {
    display: block;
  }

  /* Hide desktop navigation */
  .main-nav {
    display: none;
  }

  .header-cta {
    display: none;
  }

  /* Typography adjustments */
  h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 20px;
  }

  .hero h1 {
    font-size: 36px;
  }

  .hero-subheadline {
    font-size: 16px;
  }

  /* Flex containers to column on mobile */
  .header-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-cta,
  .cta-buttons,
  .contact-buttons {
    flex-direction: column;
    width: 100%;
  }

  .hero-cta .btn-primary,
  .hero-cta .btn-secondary,
  .cta-buttons .btn-primary,
  .cta-buttons .btn-secondary {
    width: 100%;
  }

  /* Grid adjustments */
  .features-grid,
  .benefits-grid,
  .services-grid,
  .products,
  .testimonials-grid,
  .steps-grid,
  .contact-grid,
  .info-grid,
  .stats-grid,
  .mission-grid,
  .features-list,
  .actions-grid {
    flex-direction: column;
  }

  .feature-card,
  .benefit-card,
  .service-card,
  .product-card,
  .testimonial-card,
  .review-card,
  .step-card,
  .contact-card,
  .info-card,
  .stat-card,
  .mission-card,
  .feature-item,
  .action-card {
    max-width: 100%;
  }

  .service-card.featured {
    transform: scale(1);
  }

  /* Footer adjustments */
  .footer-columns {
    flex-direction: column;
  }

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

  /* Rating breakdown */
  .rating-breakdown {
    flex-direction: column;
    gap: 24px;
  }

  .rating-bars {
    min-width: 100%;
  }

  /* Cookie consent */
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }

  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }

  .cookie-buttons button {
    width: 100%;
  }

  /* Modal adjustments */
  .cookie-modal-content {
    padding: 24px;
  }

  /* Sections padding */
  section {
    padding: 40px 20px;
  }

  .hero {
    padding: 60px 20px;
  }

  .cta-section {
    padding: 60px 20px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .features-grid,
  .benefits-grid,
  .services-grid,
  .products {
    gap: 24px;
  }

  .feature-card,
  .benefit-card,
  .service-card,
  .product-card {
    flex: 1 1 calc(50% - 24px);
    max-width: calc(50% - 24px);
  }
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInRight {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(0);
  }
}

@keyframes slideInUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

/* Smooth scrolling for all links */
html {
  scroll-behavior: smooth;
}

/* Print styles */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-consent,
  .cookie-modal,
  header,
  footer {
    display: none;
  }
}