/* =========================================
   FUZZYSKILL - MONOCHROME SOPHISTICATED DESIGN
   Professional Pet Care Website Styles
   Design Style: Monochrome Sophisticated
   ========================================= */

/* =========================================
   CSS RESET & 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;
}

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

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

ul, ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* =========================================
   TYPOGRAPHY - MONOCHROME ELEGANT
   ========================================= */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: #000000;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

h1 {
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -1px;
}

h2 {
  font-size: 32px;
  font-weight: 700;
}

h3 {
  font-size: 24px;
  font-weight: 600;
}

h4 {
  font-size: 18px;
  font-weight: 600;
}

p {
  margin-bottom: 16px;
  color: #333333;
  line-height: 1.7;
}

/* =========================================
   CONTAINER & LAYOUT
   ========================================= */

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

/* =========================================
   HEADER & NAVIGATION
   ========================================= */

header {
  background: #ffffff;
  border-bottom: 2px solid #000000;
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

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

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

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

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

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

/* =========================================
   MOBILE MENU
   ========================================= */

.mobile-menu-toggle {
  display: none;
  font-size: 28px;
  background: #000000;
  color: #ffffff;
  padding: 10px 16px;
  border-radius: 4px;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1100;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

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

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: #000000;
  z-index: 1200;
  transition: right 0.4s ease;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  padding: 80px 30px 30px;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 32px;
  color: #ffffff;
  background: transparent;
  padding: 10px;
  transition: all 0.3s ease;
}

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

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

.mobile-nav a {
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  padding: 12px 0;
  border-bottom: 1px solid #333333;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

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

/* =========================================
   BUTTONS - MONOCHROME STYLE
   ========================================= */

.cta-button,
.cta-primary,
.cta-secondary {
  display: inline-block;
  padding: 14px 32px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 0;
  transition: all 0.3s ease;
  text-align: center;
  border: 2px solid #000000;
}

.cta-button,
.cta-primary {
  background: #000000;
  color: #ffffff;
}

.cta-button:hover,
.cta-primary:hover {
  background: #ffffff;
  color: #000000;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

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

.cta-secondary:hover {
  background: #000000;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* =========================================
   HERO SECTION
   ========================================= */

.hero {
  background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
  padding: 100px 20px;
  text-align: center;
  border-bottom: 3px solid #000000;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: rgba(0, 0, 0, 0.03);
  border-radius: 50%;
  z-index: 0;
}

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

.hero h1 {
  margin-bottom: 24px;
  color: #000000;
}

.hero-subheadline {
  font-size: 20px;
  color: #333333;
  margin-bottom: 40px;
  font-weight: 400;
}

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

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

.trust-indicators span {
  font-size: 14px;
  font-weight: 600;
  color: #1a1a1a;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* =========================================
   SECTIONS
   ========================================= */

section {
  padding: 80px 20px;
  margin-bottom: 0;
}

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

/* =========================================
   SERVICE CARDS - FLEXBOX LAYOUT
   ========================================= */

.services-overview {
  background: #ffffff;
}

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

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-bottom: 40px;
}

.service-card {
  background: #ffffff;
  border: 2px solid #000000;
  padding: 40px 30px;
  flex: 1 1 320px;
  max-width: 360px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.service-card img {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  filter: brightness(0);
}

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

.service-card p {
  margin-bottom: 24px;
  color: #555555;
  font-size: 14px;
}

.service-card .price {
  display: block;
  font-size: 24px;
  font-weight: 700;
  color: #000000;
  margin-top: 20px;
}

/* =========================================
   FEATURES GRID - FLEXBOX
   ========================================= */

.why-choose-us {
  background: #f5f5f5;
  border-top: 2px solid #000000;
  border-bottom: 2px solid #000000;
}

.why-choose-us h2 {
  text-align: center;
  margin-bottom: 60px;
}

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

.feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1 1 250px;
  max-width: 280px;
  gap: 20px;
}

.feature img {
  width: 80px;
  height: 80px;
  filter: brightness(0);
}

.feature h3 {
  margin-bottom: 8px;
  color: #000000;
}

.feature p {
  color: #555555;
  font-size: 14px;
}

/* =========================================
   TESTIMONIALS - HIGH CONTRAST
   ========================================= */

.testimonials {
  background: #1a1a1a;
  color: #ffffff;
}

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

.testimonial-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-bottom: 40px;
}

.testimonial-card {
  background: #ffffff;
  border: 2px solid #000000;
  padding: 30px;
  flex: 1 1 400px;
  max-width: 500px;
  color: #1a1a1a;
  position: relative;
}

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

.testimonial-author {
  font-weight: 600;
  color: #000000;
  margin-bottom: 10px;
}

.rating {
  color: #000000;
  font-size: 18px;
  letter-spacing: 2px;
}

.rating-summary {
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
}

/* =========================================
   CTA BANNER
   ========================================= */

.cta-banner {
  background: #000000;
  color: #ffffff;
  text-align: center;
  padding: 80px 20px;
}

.cta-banner h2 {
  color: #ffffff;
  margin-bottom: 20px;
}

.cta-banner p {
  color: #cccccc;
  font-size: 18px;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

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

.cta-banner .cta-primary {
  background: #ffffff;
  color: #000000;
  border-color: #ffffff;
}

.cta-banner .cta-primary:hover {
  background: transparent;
  color: #ffffff;
}

.cta-banner .cta-secondary {
  background: transparent;
  color: #ffffff;
  border-color: #ffffff;
}

.cta-banner .cta-secondary:hover {
  background: #ffffff;
  color: #000000;
}

/* =========================================
   CONTACT INFO
   ========================================= */

.contact-info {
  background: #f5f5f5;
}

.contact-info h2 {
  text-align: center;
  margin-bottom: 50px;
}

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

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  flex: 1 1 300px;
  max-width: 350px;
}

.contact-item img {
  width: 48px;
  height: 48px;
  filter: brightness(0);
  flex-shrink: 0;
}

.contact-item p {
  margin: 0;
  color: #1a1a1a;
}

.contact-item a {
  color: #000000;
  font-weight: 600;
  border-bottom: 1px solid #000000;
}

.contact-item a:hover {
  color: #666666;
}

/* =========================================
   FOOTER
   ========================================= */

footer {
  background: #000000;
  color: #ffffff;
  padding: 60px 20px 30px;
  border-top: 3px solid #ffffff;
}

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

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

.footer-logo {
  height: 50px;
  margin-bottom: 20px;
  filter: brightness(0) invert(1);
}

.tagline {
  color: #cccccc;
  font-size: 14px;
  margin-bottom: 0;
}

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

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

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

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

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid #333333;
}

.footer-bottom p {
  color: #888888;
  font-size: 14px;
  margin: 0;
}

/* =========================================
   PAGE HERO
   ========================================= */

.page-hero {
  background: #f5f5f5;
  padding: 60px 20px 40px;
  border-bottom: 2px solid #000000;
}

.breadcrumb {
  font-size: 14px;
  color: #666666;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.breadcrumb a {
  color: #000000;
  font-weight: 600;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

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

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

/* =========================================
   SERVICE DETAIL CARDS
   ========================================= */

.services-detailed {
  background: #ffffff;
}

.service-detail-card {
  background: #f5f5f5;
  border: 2px solid #000000;
  padding: 50px 40px;
  margin-bottom: 40px;
  position: relative;
}

.service-detail-card img {
  width: 64px;
  height: 64px;
  margin-bottom: 24px;
  filter: brightness(0);
}

.service-detail-card h2 {
  margin-bottom: 20px;
  color: #000000;
}

.service-detail-card > p {
  margin-bottom: 30px;
  color: #333333;
  font-size: 16px;
}

.service-features {
  margin: 30px 0;
  padding-left: 0;
}

.service-features li {
  padding: 12px 0;
  padding-left: 30px;
  color: #1a1a1a;
  font-size: 15px;
  border-bottom: 1px solid #cccccc;
  position: relative;
}

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

.service-meta {
  display: flex;
  gap: 30px;
  align-items: center;
  margin: 30px 0;
  flex-wrap: wrap;
}

.service-meta .price {
  font-size: 32px;
  font-weight: 700;
  color: #000000;
}

.service-meta .duration {
  font-size: 14px;
  color: #666666;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* =========================================
   STORY & VALUES
   ========================================= */

.story {
  background: #ffffff;
}

.story h2 {
  text-align: center;
  margin-bottom: 40px;
}

.story p {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 24px;
  font-size: 16px;
  color: #333333;
}

.values {
  background: #f5f5f5;
  border-top: 2px solid #000000;
  border-bottom: 2px solid #000000;
}

.values h2 {
  text-align: center;
  margin-bottom: 50px;
}

.values-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.value-card {
  background: #ffffff;
  border: 2px solid #000000;
  padding: 40px 30px;
  text-align: center;
  flex: 1 1 250px;
  max-width: 280px;
  transition: all 0.3s ease;
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.value-card img {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  filter: brightness(0);
}

.value-card h3 {
  margin-bottom: 12px;
  color: #000000;
}

.value-card p {
  color: #555555;
  font-size: 14px;
  margin: 0;
}

/* =========================================
   TEAM
   ========================================= */

.team {
  background: #ffffff;
}

.team h2 {
  text-align: center;
  margin-bottom: 20px;
}

.team-intro {
  text-align: center;
  font-size: 18px;
  color: #666666;
  margin-bottom: 50px;
}

.team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
}

.team-member {
  background: #f5f5f5;
  border: 2px solid #000000;
  padding: 40px 30px;
  text-align: center;
  flex: 1 1 300px;
  max-width: 400px;
}

.team-member h3 {
  margin-bottom: 8px;
  color: #000000;
}

.team-member .role {
  font-size: 14px;
  font-weight: 600;
  color: #666666;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

.team-member p {
  color: #333333;
  font-size: 14px;
  margin: 0;
}

/* =========================================
   BLOG GRID
   ========================================= */

.blog-content {
  background: #ffffff;
}

.blog-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.blog-card {
  background: #f5f5f5;
  border: 2px solid #000000;
  padding: 40px 30px;
  flex: 1 1 320px;
  max-width: 380px;
  transition: all 0.3s ease;
  position: relative;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.blog-card .category {
  display: inline-block;
  background: #000000;
  color: #ffffff;
  padding: 6px 12px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.blog-card h2 {
  font-size: 22px;
  margin-bottom: 16px;
  color: #000000;
}

.blog-card p {
  color: #555555;
  font-size: 14px;
  margin-bottom: 20px;
}

.read-more {
  font-weight: 700;
  color: #000000;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.read-more:hover {
  color: #666666;
}

/* =========================================
   NEWSLETTER
   ========================================= */

.newsletter {
  background: #1a1a1a;
  color: #ffffff;
  text-align: center;
  padding: 80px 20px;
}

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

.newsletter p {
  color: #cccccc;
  font-size: 16px;
  margin-bottom: 40px;
}

.newsletter-form-placeholder {
  max-width: 500px;
  margin: 0 auto;
  padding: 40px;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid #ffffff;
}

.form-note {
  color: #cccccc;
  font-size: 14px;
  font-style: italic;
  margin: 8px 0;
}

/* =========================================
   PRICING TABLE
   ========================================= */

.pricing-table {
  background: #ffffff;
}

.pricing-intro {
  text-align: center;
  font-size: 14px;
  color: #666666;
  margin-bottom: 50px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-bottom: 40px;
}

.pricing-card {
  background: #f5f5f5;
  border: 2px solid #000000;
  padding: 40px 30px;
  flex: 1 1 300px;
  max-width: 360px;
  text-align: center;
  transition: all 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.pricing-card h3 {
  margin-bottom: 20px;
  color: #000000;
}

.pricing-card .price {
  font-size: 36px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 30px;
  display: block;
}

.pricing-card ul {
  text-align: left;
  margin-bottom: 30px;
  padding-left: 0;
}

.pricing-card li {
  padding: 12px 0;
  padding-left: 30px;
  border-bottom: 1px solid #cccccc;
  font-size: 14px;
  color: #333333;
  position: relative;
}

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

.pricing-card .duration {
  display: block;
  font-size: 12px;
  color: #666666;
  text-transform: uppercase;
  margin-top: 10px;
  letter-spacing: 0.5px;
}

/* =========================================
   PACKAGES
   ========================================= */

.packages {
  background: #f5f5f5;
  border-top: 2px solid #000000;
}

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

.package-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
}

.package-card {
  background: #ffffff;
  border: 3px solid #000000;
  padding: 50px 40px;
  flex: 1 1 350px;
  max-width: 450px;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
}

.package-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.badge {
  position: absolute;
  top: -15px;
  right: 20px;
  background: #000000;
  color: #ffffff;
  padding: 8px 16px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.package-card h3 {
  margin-bottom: 12px;
  color: #000000;
}

.package-card > p {
  color: #666666;
  margin-bottom: 24px;
  font-size: 14px;
}

.package-price {
  font-size: 42px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 30px;
}

/* =========================================
   PAYMENT OPTIONS
   ========================================= */

.payment-options {
  background: #ffffff;
  text-align: center;
}

.payment-options h2 {
  margin-bottom: 40px;
}

.payment-methods {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.payment-method {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.payment-method img {
  width: 64px;
  height: 64px;
  filter: brightness(0);
}

.payment-method p {
  font-weight: 600;
  color: #1a1a1a;
  margin: 0;
}

.payment-note {
  font-size: 14px;
  color: #666666;
  max-width: 600px;
  margin: 0 auto;
}

/* =========================================
   CONTACT METHODS
   ========================================= */

.contact-methods {
  background: #ffffff;
}

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

.contact-method {
  background: #f5f5f5;
  border: 2px solid #000000;
  padding: 40px 30px;
  text-align: center;
  flex: 1 1 350px;
  max-width: 450px;
}

.contact-method img {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  filter: brightness(0);
}

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

.contact-method p {
  color: #333333;
  margin-bottom: 12px;
}

.contact-method a {
  color: #000000;
  font-weight: 600;
  border-bottom: 1px solid #000000;
}

.contact-method a:hover {
  color: #666666;
}

.contact-method .meta {
  font-size: 14px;
  color: #666666;
  margin-top: 16px;
}

/* =========================================
   CONTACT FORM
   ========================================= */

.contact-form-section {
  background: #f5f5f5;
  border-top: 2px solid #000000;
  border-bottom: 2px solid #000000;
}

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

.form-intro {
  text-align: center;
  font-size: 16px;
  color: #666666;
  margin-bottom: 40px;
}

.form-placeholder {
  max-width: 600px;
  margin: 0 auto;
  padding: 50px;
  background: #ffffff;
  border: 2px solid #000000;
}

/* =========================================
   LOCATION INFO
   ========================================= */

.location-info {
  background: #ffffff;
}

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

.location-details {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  max-width: 900px;
  margin: 0 auto;
}

.address-block,
.hours-block,
.transport-block {
  flex: 1 1 250px;
  background: #f5f5f5;
  padding: 30px;
  border: 2px solid #000000;
}

.address-block h3,
.hours-block h3,
.transport-block h3 {
  margin-bottom: 16px;
  color: #000000;
  font-size: 18px;
}

.address-block p,
.hours-block p,
.transport-block p {
  color: #333333;
  font-size: 14px;
  line-height: 1.8;
  margin: 0;
}

/* =========================================
   FAQ
   ========================================= */

.faq,
.faq-contact {
  background: #f5f5f5;
}

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

.faq-item {
  background: #ffffff;
  border: 2px solid #000000;
  padding: 30px;
  margin-bottom: 20px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.faq-item p {
  color: #333333;
  font-size: 14px;
  margin: 0;
}

/* =========================================
   LEGAL PAGES
   ========================================= */

.legal-page {
  background: #ffffff;
  padding: 60px 20px;
}

.legal-page h1 {
  margin-bottom: 12px;
}

.legal-page .last-updated,
.legal-page .subtitle {
  font-size: 14px;
  color: #666666;
  margin-bottom: 40px;
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
}

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

.legal-content h3 {
  margin-top: 30px;
  margin-bottom: 16px;
  color: #000000;
  font-size: 20px;
}

.legal-content p {
  margin-bottom: 20px;
  color: #333333;
  line-height: 1.8;
}

.legal-content ul {
  margin-bottom: 20px;
  padding-left: 30px;
}

.legal-content li {
  padding: 8px 0;
  color: #333333;
  line-height: 1.7;
  list-style: disc;
}

.legal-content a {
  color: #000000;
  font-weight: 600;
  border-bottom: 1px solid #000000;
}

.legal-content a:hover {
  color: #666666;
}

/* =========================================
   THANK YOU PAGE
   ========================================= */

.thank-you-hero {
  background: #f5f5f5;
  padding: 80px 20px;
  text-align: center;
  border-bottom: 2px solid #000000;
}

.success-icon {
  width: 100px;
  height: 100px;
  background: #000000;
  color: #ffffff;
  font-size: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 auto 30px;
  font-weight: 700;
}

.thank-you-hero h1 {
  margin-bottom: 20px;
}

.confirmation-text {
  font-size: 18px;
  color: #333333;
  margin-bottom: 16px;
}

.response-time {
  font-size: 14px;
  color: #666666;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.next-steps {
  background: #ffffff;
  padding: 80px 20px;
}

.next-steps h2 {
  text-align: center;
  margin-bottom: 50px;
}

.steps-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  max-width: 1000px;
  margin: 0 auto;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1 1 220px;
  max-width: 240px;
  padding: 30px;
  background: #f5f5f5;
  border: 2px solid #000000;
}

.step-number {
  width: 60px;
  height: 60px;
  background: #000000;
  color: #ffffff;
  font-size: 28px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-bottom: 20px;
}

.step h3 {
  margin-bottom: 12px;
  color: #000000;
  font-size: 18px;
}

.step p {
  color: #555555;
  font-size: 14px;
  margin: 0;
}

.while-waiting {
  background: #f5f5f5;
  border-top: 2px solid #000000;
}

.while-waiting h2 {
  text-align: center;
  margin-bottom: 50px;
}

.suggestions-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.suggestion-card {
  background: #ffffff;
  border: 2px solid #000000;
  padding: 40px 30px;
  flex: 1 1 300px;
  max-width: 350px;
  text-align: center;
}

.suggestion-card h3 {
  margin-bottom: 16px;
  color: #000000;
}

.suggestion-card p {
  margin-bottom: 20px;
  color: #555555;
  font-size: 14px;
}

.link-arrow {
  font-weight: 700;
  color: #000000;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.link-arrow:hover {
  color: #666666;
}

.contact-reminder {
  background: #ffffff;
  text-align: center;
}

.contact-reminder h2 {
  margin-bottom: 20px;
}

.contact-reminder > p {
  font-size: 16px;
  color: #666666;
  margin-bottom: 40px;
}

.contact-options {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 700px;
  margin: 0 auto;
}

.contact-option {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  flex: 1 1 280px;
}

.contact-option img {
  width: 48px;
  height: 48px;
  filter: brightness(0);
  flex-shrink: 0;
}

.contact-option p {
  text-align: left;
  color: #333333;
  font-size: 14px;
  margin: 0;
}

.contact-option a {
  color: #000000;
  font-weight: 600;
  border-bottom: 1px solid #000000;
}

.navigation-options {
  background: #f5f5f5;
  text-align: center;
  padding: 60px 20px;
}

.navigation-options h2 {
  margin-bottom: 30px;
}

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

/* =========================================
   COOKIE CONSENT BANNER
   ========================================= */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #000000;
  color: #ffffff;
  padding: 24px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  z-index: 2000;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  border-top: 3px solid #ffffff;
}

.cookie-banner.active {
  transform: translateY(0);
}

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

.cookie-text {
  flex: 1 1 400px;
}

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

.cookie-text a {
  color: #ffffff;
  font-weight: 600;
  border-bottom: 1px solid #ffffff;
}

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

.cookie-btn {
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 0;
  transition: all 0.3s ease;
  border: 2px solid #ffffff;
}

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

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

.cookie-btn-reject,
.cookie-btn-settings {
  background: transparent;
  color: #ffffff;
}

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

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

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

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

.cookie-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 28px;
  color: #000000;
  background: transparent;
  padding: 5px 10px;
  transition: all 0.3s ease;
}

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

.cookie-modal h2 {
  margin-bottom: 30px;
  color: #000000;
}

.cookie-category {
  padding: 20px;
  margin-bottom: 20px;
  background: #f5f5f5;
  border: 2px solid #000000;
}

.cookie-category h3 {
  margin-bottom: 12px;
  color: #000000;
  font-size: 18px;
}

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

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

.cookie-toggle input[type="checkbox"] {
  width: 50px;
  height: 26px;
  cursor: pointer;
  accent-color: #000000;
}

.cookie-toggle label {
  font-size: 14px;
  font-weight: 600;
  color: #1a1a1a;
}

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

/* =========================================
   RESPONSIVE MEDIA QUERIES
   ========================================= */

@media (max-width: 768px) {
  /* Mobile Typography */
  h1 { font-size: 32px; }
  h2 { font-size: 26px; }
  h3 { font-size: 20px; }
  
  /* Show Mobile Menu */
  .mobile-menu-toggle {
    display: block;
  }
  
  .main-nav {
    display: none;
  }
  
  /* Hero Adjustments */
  .hero {
    padding: 60px 20px;
  }
  
  .hero-cta {
    flex-direction: column;
  }
  
  .trust-indicators {
    flex-direction: column;
    gap: 16px;
  }
  
  /* Section Padding */
  section {
    padding: 50px 20px;
  }
  
  /* Flexbox Stacking */
  .services-grid,
  .features-grid,
  .testimonial-grid,
  .contact-grid,
  .pricing-grid,
  .package-grid,
  .blog-grid,
  .values-grid,
  .team-grid {
    flex-direction: column;
    align-items: center;
  }
  
  .service-card,
  .feature,
  .testimonial-card,
  .contact-item,
  .pricing-card,
  .package-card,
  .blog-card,
  .value-card,
  .team-member {
    max-width: 100%;
    width: 100%;
  }
  
  /* Footer Columns */
  .footer-content {
    flex-direction: column;
    gap: 30px;
  }
  
  .footer-column {
    min-width: 100%;
  }
  
  /* Cookie Banner */
  .cookie-banner-content {
    flex-direction: column;
    align-items: stretch;
  }
  
  .cookie-buttons {
    flex-direction: column;
  }
  
  .cookie-btn {
    width: 100%;
  }
  
  /* Modal */
  .cookie-modal-content {
    padding: 30px 20px;
  }
  
  /* Steps Grid */
  .steps-grid {
    flex-direction: column;
    align-items: center;
  }
  
  .step {
    max-width: 100%;
    width: 100%;
  }
  
  /* Contact Options */
  .contact-options {
    flex-direction: column;
  }
  
  .contact-option {
    flex-direction: row;
    text-align: left;
  }
  
  /* Location Details */
  .location-details {
    flex-direction: column;
  }
  
  /* Service Meta */
  .service-meta {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  h1 { font-size: 28px; }
  h2 { font-size: 22px; }
  h3 { font-size: 18px; }
  
  .hero {
    padding: 40px 16px;
  }
  
  section {
    padding: 40px 16px;
  }
  
  .container {
    padding: 0 16px;
  }
  
  .service-detail-card,
  .package-card,
  .form-placeholder {
    padding: 30px 20px;
  }
  
  .cookie-modal-content {
    padding: 20px 16px;
  }
  
  .pricing-card .price {
    font-size: 28px;
  }
  
  .package-price {
    font-size: 32px;
  }
}

/* =========================================
   PRINT STYLES
   ========================================= */

@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cookie-modal,
  header,
  footer,
  .cta-banner,
  .hero-cta,
  .cta-button,
  .cta-primary,
  .cta-secondary {
    display: none !important;
  }
  
  body {
    background: white;
    color: black;
  }
  
  section {
    page-break-inside: avoid;
  }
}

/* =========================================
   ACCESSIBILITY IMPROVEMENTS
   ========================================= */

:focus {
  outline: 3px solid #000000;
  outline-offset: 2px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* High Contrast Support */
@media (prefers-contrast: high) {
  body {
    color: #000000;
    background: #ffffff;
  }
  
  a {
    text-decoration: underline;
  }
  
  .cta-button,
  .cta-primary {
    border-width: 3px;
  }
}