/* 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', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.6;
  color: #1a1a1a;
  background-color: #ffffff;
  overflow-x: hidden;
}

/* Monochrome Sophisticated Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: #000000;
  letter-spacing: -0.02em;
}

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

h2 {
  font-size: 32px;
  margin-bottom: 24px;
}

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

p {
  margin-bottom: 16px;
  color: #333333;
  font-size: 16px;
}

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

ul, ol {
  margin-bottom: 16px;
  padding-left: 24px;
}

li {
  margin-bottom: 8px;
  color: #333333;
}

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

/* Header Styles */
header {
  background-color: #ffffff;
  border-bottom: 2px solid #000000;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  flex-wrap: wrap;
}

.logo {
  display: flex;
  align-items: center;
}

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

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

.main-nav a {
  color: #000000;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}

.main-nav a:hover {
  border-bottom-color: #000000;
  opacity: 0.8;
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  background-color: #000000;
  color: #ffffff;
  border: none;
  width: 50px;
  height: 50px;
  font-size: 24px;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.mobile-menu-toggle:hover {
  background-color: #333333;
  transform: scale(1.05);
}

/* Mobile Menu Overlay */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 320px;
  height: 100vh;
  background-color: #ffffff;
  z-index: 1999;
  padding: 80px 32px 32px;
  overflow-y: auto;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.3);
  transition: right 0.4s ease;
  border-left: 2px solid #000000;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: #000000;
  color: #ffffff;
  border: none;
  width: 40px;
  height: 40px;
  font-size: 24px;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.3s ease;
}

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

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

.mobile-nav a {
  color: #000000;
  font-weight: 600;
  font-size: 16px;
  padding: 16px 0;
  border-bottom: 1px solid #e0e0e0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  padding-left: 16px;
  opacity: 0.7;
}

/* Button Styles - Monochrome Sophisticated */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-align: center;
  cursor: pointer;
  border: 2px solid #000000;
  transition: all 0.4s ease;
  margin: 8px 8px 8px 0;
}

.btn-primary {
  background-color: #000000;
  color: #ffffff;
}

.btn-primary:hover {
  background-color: #ffffff;
  color: #000000;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
  background-color: #ffffff;
  color: #000000;
}

.btn-secondary:hover {
  background-color: #000000;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Section Spacing */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* Hero Section - Monochrome Dramatic */
.hero {
  background: linear-gradient(135deg, #000000 0%, #333333 100%);
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 10px,
    rgba(255, 255, 255, 0.03) 10px,
    rgba(255, 255, 255, 0.03) 20px
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

.hero h1 {
  color: #ffffff;
  font-size: 56px;
  margin-bottom: 24px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
  font-size: 20px;
  color: #e0e0e0;
  margin-bottom: 32px;
  font-weight: 300;
}

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

.trust-badge {
  color: #cccccc;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}

/* Page Hero */
.page-hero {
  background-color: #f5f5f5;
  padding: 60px 20px;
  text-align: center;
  border-bottom: 2px solid #000000;
}

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

.page-hero p {
  font-size: 18px;
  color: #555555;
  max-width: 700px;
  margin: 0 auto;
}

/* Value Proposition Section */
.value-proposition {
  padding: 60px 20px;
  background-color: #ffffff;
}

.value-proposition h2 {
  text-align: center;
  margin-bottom: 16px;
}

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

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

.benefits-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.benefit-item {
  flex: 1 1 calc(50% - 24px);
  min-width: 250px;
  padding: 32px 24px;
  background-color: #f9f9f9;
  border: 2px solid #e0e0e0;
  text-align: center;
  transition: all 0.3s ease;
}

.benefit-item:hover {
  background-color: #000000;
  border-color: #000000;
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.benefit-item:hover h3 {
  color: #ffffff;
}

.benefit-item h3 {
  font-size: 18px;
  transition: color 0.3s ease;
}

/* Services Grid */
.services-overview {
  padding: 60px 20px;
  background-color: #f5f5f5;
}

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

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 40px;
}

.service-card {
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  background-color: #ffffff;
  padding: 32px 24px;
  border: 2px solid #e0e0e0;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  margin-bottom: 20px;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background-color: #000000;
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
  border-color: #000000;
}

.service-card h3 {
  margin-bottom: 16px;
}

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

/* Process Steps */
.process {
  padding: 60px 20px;
  background-color: #ffffff;
}

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

.process-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.step {
  flex: 1 1 calc(25% - 24px);
  min-width: 220px;
  padding: 32px 24px;
  background-color: #f9f9f9;
  border-left: 4px solid #000000;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.step:hover {
  background-color: #000000;
  transform: translateX(8px);
}

.step:hover h3,
.step:hover p {
  color: #ffffff;
}

.step h3 {
  margin-bottom: 12px;
  font-size: 20px;
  transition: color 0.3s ease;
}

.step p {
  font-size: 14px;
  transition: color 0.3s ease;
}

/* Social Proof - High Contrast Testimonials */
.social-proof {
  padding: 60px 20px;
  background-color: #000000;
  color: #ffffff;
}

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

.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
}

.testimonial-card {
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  background-color: #ffffff;
  color: #000000;
  padding: 32px 24px;
  border-left: 4px solid #666666;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  border-left-color: #000000;
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.1);
}

.testimonial-card p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 16px;
  color: #1a1a1a;
}

.author {
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #000000 !important;
}

.trust-indicators {
  text-align: center;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #cccccc;
}

/* Location Info */
.location-info {
  padding: 60px 20px;
  background-color: #f9f9f9;
}

.location-info h2 {
  text-align: center;
  margin-bottom: 32px;
}

.location-details {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.location-details p {
  margin-bottom: 16px;
  font-size: 16px;
}

/* Final CTA */
.final-cta {
  padding: 80px 20px;
  background-color: #000000;
  color: #ffffff;
  text-align: center;
}

.final-cta h2 {
  color: #ffffff;
  margin-bottom: 16px;
}

.final-cta p {
  color: #e0e0e0;
  font-size: 18px;
  margin-bottom: 32px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.contact-info {
  color: #cccccc;
  font-size: 14px;
}

/* Service Detail Pages */
.service-detail {
  padding: 60px 20px;
  background-color: #ffffff;
  border-bottom: 1px solid #e0e0e0;
}

.service-detail:nth-child(even) {
  background-color: #f9f9f9;
}

.service-detail h2 {
  margin-bottom: 16px;
}

.duration {
  font-size: 14px;
  color: #666666;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.badge {
  display: inline-block;
  background-color: #000000;
  color: #ffffff;
  padding: 6px 16px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  margin-bottom: 16px;
}

.service-detail ul {
  margin-bottom: 32px;
  list-style: none;
  padding-left: 0;
}

.service-detail ul li {
  padding-left: 28px;
  position: relative;
  margin-bottom: 12px;
}

.service-detail ul li::before {
  content: '■';
  position: absolute;
  left: 0;
  color: #000000;
  font-size: 12px;
}

.service-guarantee {
  padding: 60px 20px;
  background-color: #f5f5f5;
  text-align: center;
}

.service-guarantee h2 {
  margin-bottom: 32px;
}

.service-guarantee ul {
  max-width: 600px;
  margin: 0 auto;
  list-style: none;
  padding-left: 0;
}

.service-guarantee ul li {
  padding: 16px;
  border-bottom: 1px solid #e0e0e0;
  font-weight: 600;
}

/* Package Cards */
.packages-intro {
  padding: 60px 20px;
  background-color: #ffffff;
}

.packages-intro h2 {
  text-align: center;
  margin-bottom: 24px;
}

.packages-intro p {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 32px;
  font-size: 16px;
}

.packages-intro ul {
  max-width: 600px;
  margin: 0 auto;
  list-style: none;
  padding-left: 0;
}

.packages-intro ul li {
  padding-left: 28px;
  position: relative;
  margin-bottom: 12px;
}

.packages-intro ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #000000;
  font-weight: 700;
}

.package-featured {
  padding: 60px 20px;
  background-color: #f9f9f9;
}

.packages-list {
  padding: 60px 20px;
  background-color: #ffffff;
}

.packages-list .container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.package-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 300px;
  background-color: #ffffff;
  border: 2px solid #e0e0e0;
  padding: 40px 32px;
  position: relative;
  margin-bottom: 20px;
  transition: all 0.4s ease;
}

.package-card:hover {
  border-color: #000000;
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.package-card .badge {
  position: absolute;
  top: -12px;
  right: 24px;
}

.package-card h2 {
  margin-bottom: 24px;
  font-size: 24px;
}

.original-price {
  font-size: 16px;
  color: #999999;
  text-decoration: line-through;
  margin-bottom: 8px;
}

.savings {
  font-size: 14px;
  color: #000000;
  font-weight: 700;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.package-card ul {
  margin-bottom: 24px;
  list-style: none;
  padding-left: 0;
}

.package-card ul li {
  padding-left: 28px;
  position: relative;
  margin-bottom: 12px;
  font-size: 14px;
}

.package-card ul li::before {
  content: '■';
  position: absolute;
  left: 0;
  color: #000000;
  font-size: 10px;
}

.bonus {
  background-color: #f5f5f5;
  padding: 16px;
  margin-bottom: 24px;
  font-size: 14px;
  font-weight: 600;
  border-left: 4px solid #000000;
}

/* Company Story */
.company-story {
  padding: 60px 20px;
  background-color: #ffffff;
}

.company-story h2 {
  margin-bottom: 24px;
}

.company-story ul {
  margin-top: 32px;
  list-style: none;
  padding-left: 0;
}

.company-story ul li {
  padding: 16px;
  border-left: 4px solid #000000;
  margin-bottom: 16px;
  background-color: #f9f9f9;
  font-weight: 600;
}

/* Mission & Vision */
.mission-vision {
  padding: 60px 20px;
  background-color: #f5f5f5;
}

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

.mission,
.values {
  max-width: 700px;
  margin: 0 auto 40px;
}

.mission h3,
.values h3 {
  margin-bottom: 16px;
  text-align: center;
}

.values ul {
  list-style: none;
  padding-left: 0;
}

.values ul li {
  padding: 16px;
  border-bottom: 1px solid #e0e0e0;
  text-align: center;
  font-weight: 600;
}

/* Team Section */
.team {
  padding: 60px 20px;
  background-color: #ffffff;
  text-align: center;
}

.team h2 {
  margin-bottom: 24px;
}

.team p {
  max-width: 700px;
  margin: 0 auto 16px;
}

/* Quality Standards */
.quality-standards {
  padding: 60px 20px;
  background-color: #000000;
  color: #ffffff;
}

.quality-standards h2 {
  color: #ffffff;
  text-align: center;
  margin-bottom: 32px;
}

.quality-standards ul {
  max-width: 600px;
  margin: 0 auto 32px;
  list-style: none;
  padding-left: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.quality-standards ul li {
  flex: 1 1 calc(50% - 16px);
  min-width: 200px;
  background-color: #1a1a1a;
  padding: 24px;
  text-align: center;
  font-weight: 600;
  color: #ffffff;
  border: 1px solid #333333;
}

.quality-standards p {
  text-align: center;
  color: #e0e0e0;
  font-size: 18px;
}

/* Location */
.location {
  padding: 60px 20px;
  background-color: #f9f9f9;
  text-align: center;
}

.location h2 {
  margin-bottom: 32px;
}

.location p {
  max-width: 600px;
  margin: 0 auto 16px;
}

/* Gallery Pages */
.gallery-intro {
  padding: 60px 20px;
  background-color: #ffffff;
}

.gallery-intro h2 {
  text-align: center;
  margin-bottom: 24px;
}

.gallery-intro p {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 16px;
}

.project-showcase {
  padding: 60px 20px;
  background-color: #f9f9f9;
  border-top: 2px solid #e0e0e0;
}

.project-showcase:nth-child(even) {
  background-color: #ffffff;
}

.project-showcase h2 {
  margin-bottom: 24px;
}

.project-showcase p {
  margin-bottom: 16px;
}

.testimonial {
  background-color: #000000;
  color: #ffffff;
  padding: 24px;
  margin-top: 32px;
  font-style: italic;
  border-left: 4px solid #666666;
}

.gallery-stats {
  padding: 60px 20px;
  background-color: #000000;
  color: #ffffff;
}

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

.gallery-stats ul {
  max-width: 600px;
  margin: 0 auto;
  list-style: none;
  padding-left: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.gallery-stats ul li {
  flex: 1 1 calc(50% - 16px);
  min-width: 200px;
  background-color: #1a1a1a;
  padding: 24px;
  text-align: center;
  font-weight: 700;
  font-size: 18px;
  color: #ffffff;
  border: 1px solid #333333;
}

.gallery-cta {
  padding: 60px 20px;
  background-color: #f9f9f9;
  text-align: center;
}

/* Contact Pages */
.contact-intro {
  padding: 60px 20px;
  background-color: #ffffff;
}

.contact-intro h2 {
  text-align: center;
  margin-bottom: 24px;
}

.contact-intro p {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 16px;
}

.contact-methods {
  padding: 60px 20px;
  background-color: #f5f5f5;
}

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

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

.contact-method {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 250px;
  background-color: #ffffff;
  padding: 32px 24px;
  text-align: center;
  border: 2px solid #e0e0e0;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.contact-method:hover {
  border-color: #000000;
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.contact-method h3 {
  margin-bottom: 16px;
}

.contact-form-section {
  padding: 60px 20px;
  background-color: #ffffff;
}

.contact-form-section h2 {
  text-align: center;
  margin-bottom: 24px;
}

.form-notice {
  max-width: 600px;
  margin: 0 auto;
  background-color: #f9f9f9;
  padding: 32px;
  border-left: 4px solid #000000;
}

.form-notice p {
  margin-bottom: 12px;
}

.location-map {
  padding: 60px 20px;
  background-color: #f5f5f5;
}

.location-map h2 {
  text-align: center;
  margin-bottom: 32px;
}

.location-map p {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 16px;
}

.opening-hours {
  padding: 60px 20px;
  background-color: #000000;
  color: #ffffff;
  text-align: center;
}

.opening-hours h2 {
  color: #ffffff;
  margin-bottom: 32px;
}

.opening-hours p {
  color: #e0e0e0;
  font-size: 18px;
  font-weight: 600;
}

.faq-contact {
  padding: 60px 20px;
  background-color: #ffffff;
}

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

.faq-item {
  max-width: 700px;
  margin: 0 auto 32px;
  padding: 24px;
  background-color: #f9f9f9;
  border-left: 4px solid #000000;
}

.faq-item h3 {
  margin-bottom: 12px;
  font-size: 18px;
}

.faq-item p {
  color: #555555;
}

/* Legal Content */
.legal-content {
  padding: 60px 20px;
  background-color: #ffffff;
}

.legal-content h2 {
  margin-top: 40px;
  margin-bottom: 24px;
  font-size: 24px;
}

.legal-content h3 {
  margin-top: 24px;
  margin-bottom: 16px;
  font-size: 18px;
}

.legal-content p,
.legal-content li {
  color: #333333;
  line-height: 1.8;
}

.legal-content ul,
.legal-content ol {
  margin-bottom: 24px;
}

.legal-content a {
  color: #000000;
  text-decoration: underline;
}

.legal-content a:hover {
  opacity: 0.7;
}

/* Thank You Pages */
.thank-you-hero {
  padding: 80px 20px;
  background-color: #000000;
  color: #ffffff;
  text-align: center;
}

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

.subtitle {
  font-size: 20px;
  color: #e0e0e0;
}

.confirmation {
  padding: 60px 20px;
  background-color: #ffffff;
  text-align: center;
}

.confirmation p {
  max-width: 700px;
  margin: 0 auto 16px;
  font-size: 16px;
}

.confirmation h2 {
  text-align: center;
  margin-top: 48px;
  margin-bottom: 24px;
}

.confirmation ol {
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
}

.confirmation ol li {
  margin-bottom: 16px;
  font-weight: 600;
}

.alternative-actions {
  padding: 60px 20px;
  background-color: #f5f5f5;
}

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

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

.action-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 250px;
  background-color: #ffffff;
  padding: 32px 24px;
  text-align: center;
  border: 2px solid #e0e0e0;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.action-card:hover {
  border-color: #000000;
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.action-card h3 {
  margin-bottom: 24px;
}

.back-home {
  padding: 60px 20px;
  background-color: #ffffff;
  text-align: center;
}

/* Footer */
footer {
  background-color: #1a1a1a;
  color: #e0e0e0;
  padding: 60px 20px 32px;
  border-top: 4px solid #000000;
}

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

.footer-section {
  flex: 1 1 300px;
}

.footer-section h3 {
  color: #ffffff;
  margin-bottom: 16px;
  font-size: 18px;
}

.footer-section p {
  color: #cccccc;
  font-size: 14px;
  line-height: 1.8;
}

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

.footer-nav a {
  color: #cccccc;
  font-size: 14px;
  transition: all 0.3s ease;
}

.footer-nav a:hover {
  color: #ffffff;
  padding-left: 8px;
}

.copyright {
  text-align: center;
  color: #999999;
  font-size: 14px;
  padding-top: 32px;
  border-top: 1px solid #333333;
}

/* Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #000000;
  color: #ffffff;
  padding: 24px 20px;
  z-index: 1998;
  border-top: 2px solid #333333;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-banner.active {
  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;
}

.cookie-text p {
  margin-bottom: 0;
  font-size: 14px;
  color: #e0e0e0;
}

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

.cookie-btn {
  padding: 10px 24px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: 2px solid #ffffff;
  background-color: transparent;
  color: #ffffff;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-btn:hover {
  background-color: #ffffff;
  color: #000000;
}

.cookie-btn-accept {
  background-color: #ffffff;
  color: #000000;
}

.cookie-btn-accept:hover {
  background-color: #e0e0e0;
}

/* Cookie Settings Modal */
.cookie-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

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

.cookie-modal-content {
  background-color: #ffffff;
  color: #000000;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  padding: 40px 32px;
  position: relative;
  border: 2px solid #000000;
}

.cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background-color: #000000;
  color: #ffffff;
  border: none;
  width: 32px;
  height: 32px;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

.cookie-modal h2 {
  margin-bottom: 24px;
}

.cookie-category {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid #e0e0e0;
}

.cookie-category:last-child {
  border-bottom: none;
}

.cookie-category h3 {
  margin-bottom: 8px;
  font-size: 18px;
}

.cookie-category p {
  font-size: 14px;
  color: #666666;
  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;
  cursor: pointer;
}

.cookie-modal-buttons {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  flex-wrap: wrap;
}

/* Responsive Design - Mobile First */
@media (max-width: 768px) {
  /* Typography */
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  h3 {
    font-size: 18px;
  }
  
  .hero h1 {
    font-size: 36px;
  }
  
  /* Navigation */
  .main-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .mobile-menu {
    display: block;
  }
  
  /* Hero */
  .hero {
    padding: 60px 20px;
  }
  
  .hero-subtitle {
    font-size: 16px;
  }
  
  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }
  
  .hero-cta .btn {
    width: 100%;
    margin: 8px 0;
  }
  
  /* Buttons */
  .btn {
    padding: 12px 24px;
    font-size: 13px;
  }
  
  /* Grid Layouts */
  .benefits-grid,
  .services-grid,
  .process-steps,
  .testimonials-grid,
  .contact-grid,
  .actions-grid {
    flex-direction: column;
  }
  
  .benefit-item,
  .service-card,
  .step,
  .testimonial-card,
  .contact-method,
  .action-card,
  .package-card {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  .footer-section {
    flex: 1 1 100%;
  }
  
  /* Cookie Banner */
  .cookie-content {
    flex-direction: column;
    align-items: stretch;
  }
  
  .cookie-buttons {
    flex-direction: column;
  }
  
  .cookie-btn {
    width: 100%;
  }
  
  /* Stats and Quality Standards */
  .gallery-stats ul,
  .quality-standards ul {
    flex-direction: column;
  }
  
  .gallery-stats ul li,
  .quality-standards ul li {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  /* CTA Buttons */
  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  
  .cta-buttons .btn {
    width: 100%;
    margin: 8px 0;
  }
}

/* Tablet */
@media (min-width: 769px) and (max-width: 1024px) {
  .benefit-item,
  .service-card,
  .package-card {
    flex: 1 1 calc(50% - 24px);
  }
  
  .step {
    flex: 1 1 calc(50% - 24px);
  }
}

/* Large Screens */
@media (min-width: 1400px) {
  .container {
    max-width: 1400px;
  }
}

/* Print Styles */
@media print {
  .mobile-menu,
  .mobile-menu-toggle,
  .cookie-banner,
  .cookie-modal {
    display: none !important;
  }
  
  header {
    position: relative;
  }
  
  .btn {
    border: 1px solid #000000;
  }
}