/* =================================================================
   GLEAMING SANDS AUTO PARTS - MONOCHROME SOPHISTICATED DESIGN
   Sophisticated monochrome with dramatic black/white contrast
   ================================================================= */

/* CSS RESET & NORMALIZE */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  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-position: inside;
}

/* =================================================================
   TYPOGRAPHY - MONOCHROME SOPHISTICATED
   ================================================================= */

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

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

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

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

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

strong {
  font-weight: 700;
  color: #000000;
}

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

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

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* =================================================================
   HEADER - DRAMATIC MONOCHROME
   ================================================================= */

header {
  background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

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

.logo img {
  height: 50px;
  width: auto;
  filter: brightness(0) invert(1);
}

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

.main-nav a {
  color: #ffffff;
  font-weight: 500;
  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: #cccccc;
  color: #e0e0e0;
}

.header-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

/* =================================================================
   BUTTONS - SOPHISTICATED MONOCHROME
   ================================================================= */

.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 14px 32px;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 0;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid;
  text-align: center;
}

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

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

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

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

/* =================================================================
   MOBILE MENU - ELEGANT SLIDE-IN
   ================================================================= */

.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  background-color: #000000;
  color: #ffffff;
  border: 2px solid #ffffff;
  padding: 12px 16px;
  font-size: 24px;
  cursor: pointer;
  border-radius: 0;
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background-color: #ffffff;
  color: #000000;
  border-color: #000000;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: linear-gradient(180deg, #000000 0%, #1a1a1a 100%);
  z-index: 1999;
  padding: 80px 30px 30px;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.5);
  overflow-y: auto;
}

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

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

.mobile-menu-close:hover {
  background-color: #ffffff;
  color: #000000;
}

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

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

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

/* =================================================================
   HERO SECTION - DRAMATIC IMPACT
   ================================================================= */

.hero {
  background: linear-gradient(135deg, #000000 0%, #2a2a2a 50%, #1a1a1a 100%);
  padding: 100px 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.02) 10px,
    rgba(255, 255, 255, 0.02) 20px
  );
  pointer-events: none;
}

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

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

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

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

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

.trust-badges span {
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 8px 16px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background-color: rgba(255, 255, 255, 0.05);
}

/* =================================================================
   PAGE HERO - SOPHISTICATED BREADCRUMB
   ================================================================= */

.page-hero {
  background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
  padding: 60px 20px 40px;
  border-bottom: 4px solid #000000;
}

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

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

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

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

.page-hero .hero-subheadline {
  color: #333333;
  font-size: 18px;
}

.last-updated {
  color: #666666;
  font-size: 14px;
  font-style: italic;
}

/* =================================================================
   SECTION STYLES - CLEAN MONOCHROME
   ================================================================= */

.value-proposition,
.services-preview,
.trust-indicators,
.testimonials,
.services-detailed,
.brands-showcase,
.benefits,
.company-story,
.mission-vision,
.team,
.statistics,
.categories-detailed,
.brand-filter,
.manufacturers,
.guide-categories,
.featured-articles,
.articles-list,
.maintenance-schedule,
.seasonal-tips,
.contact-methods,
.location-info,
.team-contact,
.faq-contact {
  padding: 60px 20px;
  background-color: #ffffff;
}

.value-proposition {
  background-color: #fafafa;
}

.trust-indicators {
  background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
}

.trust-indicators h2 {
  color: #ffffff;
  text-align: center;
}

.testimonials {
  background-color: #f5f5f5;
}

.section-subheadline {
  text-align: center;
  font-size: 18px;
  color: #666666;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

/* =================================================================
   CARD GRIDS - FLEXBOX LAYOUTS
   ================================================================= */

.value-grid,
.services-grid,
.stats-grid,
.testimonials-grid,
.categories-grid,
.brands-grid,
.team-grid,
.contact-grid,
.articles-grid,
.seasons-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 40px;
}

/* =================================================================
   CARDS - SOPHISTICATED MONOCHROME DESIGN
   ================================================================= */

.value-card,
.service-card,
.service-card-full,
.stat-card,
.testimonial-card,
.category-card,
.team-member,
.contact-method,
.article-card,
.article-preview,
.season-card {
  background-color: #ffffff;
  padding: 32px;
  border: 2px solid #e0e0e0;
  transition: all 0.3s ease;
  position: relative;
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
}

.value-card:hover,
.service-card:hover,
.service-card-full:hover,
.category-card:hover,
.team-member:hover,
.contact-method:hover,
.article-card:hover,
.article-preview:hover,
.season-card:hover {
  border-color: #000000;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  transform: translateY(-4px);
}

.value-card h3,
.service-card h3,
.service-card-full h3,
.category-card h3,
.team-member h3,
.contact-method h3,
.article-card h3,
.article-preview h3,
.season-card h3 {
  color: #000000;
  margin-bottom: 12px;
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.value-card p,
.service-card p,
.service-card-full p,
.category-card p,
.team-member p,
.contact-method p,
.article-card p,
.season-card p {
  color: #555555;
  line-height: 1.7;
}

.service-card-full {
  flex: 1 1 calc(50% - 24px);
}

.service-card-full .price {
  font-size: 24px;
  font-weight: 700;
  color: #000000;
  margin: 16px 0;
}

.service-card-full ul {
  margin-top: 16px;
  padding-left: 0;
}

.service-card-full ul li {
  color: #555555;
  margin-bottom: 8px;
  padding-left: 24px;
  position: relative;
}

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

/* =================================================================
   STATS CARDS - DRAMATIC IMPACT
   ================================================================= */

.stat-card {
  background: linear-gradient(135deg, #ffffff 0%, #f5f5f5 100%);
  border: 3px solid #000000;
  text-align: center;
  padding: 40px 24px;
  flex: 1 1 calc(25% - 24px);
  min-width: 200px;
}

.stat-card strong {
  display: block;
  font-size: 48px;
  font-weight: 800;
  color: #000000;
  margin-bottom: 8px;
  line-height: 1;
}

.stat-card span {
  display: block;
  font-size: 14px;
  color: #666666;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* =================================================================
   TESTIMONIALS - READABLE CONTRAST
   ================================================================= */

.testimonial-card {
  background-color: #ffffff;
  border: 2px solid #e0e0e0;
  border-left: 4px solid #000000;
  padding: 32px;
  flex: 1 1 calc(50% - 24px);
  min-width: 300px;
}

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

.testimonial-card .author {
  display: block;
  font-weight: 700;
  color: #000000;
  font-style: normal;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

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

/* =================================================================
   BRANDS & MANUFACTURERS - SOPHISTICATED GRID
   ================================================================= */

.brands-grid,
.manufacturers-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-top: 40px;
}

.brands-grid span,
.manufacturers-grid span {
  padding: 16px 32px;
  background-color: #ffffff;
  border: 2px solid #e0e0e0;
  font-weight: 700;
  font-size: 16px;
  color: #000000;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
  flex: 0 1 auto;
}

.brands-grid span:hover,
.manufacturers-grid span:hover {
  border-color: #000000;
  background-color: #000000;
  color: #ffffff;
  transform: scale(1.05);
}

.quality-statement {
  text-align: center;
  font-size: 14px;
  color: #666666;
  margin-top: 32px;
  font-style: italic;
}

/* =================================================================
   BENEFITS & LISTS - CLEAN TYPOGRAPHY
   ================================================================= */

.benefits-list,
.schedule-list,
.help-options {
  max-width: 800px;
  margin: 32px auto;
  padding-left: 0;
}

.benefits-list li,
.schedule-list li,
.help-options li {
  color: #1a1a1a;
  margin-bottom: 16px;
  padding-left: 32px;
  position: relative;
  line-height: 1.7;
}

.benefits-list li::before,
.schedule-list li::before,
.help-options li::before {
  content: '■';
  position: absolute;
  left: 0;
  color: #000000;
  font-size: 14px;
  font-weight: 700;
}

/* =================================================================
   CONTENT SECTIONS - ELEGANT LAYOUTS
   ================================================================= */

.text-section {
  max-width: 900px;
  margin: 0 auto 40px;
}

.text-section h2 {
  text-align: left;
  margin-top: 40px;
  margin-bottom: 16px;
}

.text-section p {
  margin-bottom: 20px;
  line-height: 1.8;
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  margin-top: 40px;
}

.content-block {
  flex: 1 1 calc(50% - 32px);
  min-width: 300px;
  background-color: #f5f5f5;
  padding: 32px;
  border-left: 4px solid #000000;
}

.content-block h3 {
  color: #000000;
  margin-bottom: 16px;
}

.values {
  margin-top: 40px;
  background-color: #fafafa;
  padding: 40px;
  border: 2px solid #e0e0e0;
}

.values h3 {
  color: #000000;
  margin-bottom: 24px;
  text-align: center;
}

.values ul {
  max-width: 700px;
  margin: 0 auto;
  padding-left: 0;
}

.values ul li {
  color: #1a1a1a;
  margin-bottom: 16px;
  padding-left: 32px;
  position: relative;
  line-height: 1.7;
}

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

/* =================================================================
   MILESTONES - TIMELINE DESIGN
   ================================================================= */

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

.milestone {
  background-color: #000000;
  color: #ffffff;
  padding: 24px 32px;
  text-align: center;
  border: 2px solid #000000;
  flex: 1 1 200px;
  transition: all 0.3s ease;
}

.milestone:hover {
  background-color: #ffffff;
  color: #000000;
  transform: translateY(-4px);
}

.milestone strong {
  display: block;
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 8px;
  color: inherit;
}

.milestone span {
  display: block;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* =================================================================
   ARTICLE CARDS - MAGAZINE STYLE
   ================================================================= */

.article-preview {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1 1 calc(50% - 24px);
}

.article-preview .category,
.article-preview .time {
  display: inline-block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #666666;
  font-weight: 600;
}

.article-preview .category {
  background-color: #000000;
  color: #ffffff;
  padding: 4px 12px;
  margin-right: 8px;
}

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

.contact-method {
  flex: 1 1 calc(50% - 24px);
  min-width: 300px;
  text-align: center;
}

.contact-method strong {
  display: block;
  font-size: 18px;
  margin-bottom: 12px;
  color: #000000;
}

.form-info {
  max-width: 700px;
  margin: 32px auto;
  padding: 40px;
  background-color: #f5f5f5;
  border-left: 4px solid #000000;
}

.form-info p {
  margin-bottom: 16px;
  color: #1a1a1a;
}

.location-details {
  max-width: 700px;
  margin: 32px auto;
  padding: 40px;
  background-color: #fafafa;
  border: 2px solid #e0e0e0;
  text-align: center;
}

.address {
  font-size: 20px;
  margin-bottom: 24px;
}

.hours {
  margin: 24px 0;
}

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

.parking-info {
  margin-top: 24px;
  font-style: italic;
  color: #666666;
}

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

.faq-list {
  max-width: 800px;
  margin: 32px auto;
}

.faq-item {
  background-color: #ffffff;
  padding: 24px;
  margin-bottom: 16px;
  border: 2px solid #e0e0e0;
  border-left: 4px solid #000000;
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

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

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

/* =================================================================
   CTA SECTIONS - POWERFUL CALL-TO-ACTION
   ================================================================= */

.cta-section {
  background: linear-gradient(135deg, #000000 0%, #2a2a2a 100%);
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::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.02) 10px,
    rgba(255, 255, 255, 0.02) 20px
  );
  pointer-events: none;
}

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

.cta-section p {
  color: #e0e0e0;
  font-size: 18px;
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}

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

.contact-hours,
.additional-info {
  color: #cccccc;
  font-size: 14px;
  margin-top: 24px;
  position: relative;
  z-index: 1;
}

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

.thank-you-hero {
  background: linear-gradient(135deg, #000000 0%, #2a2a2a 100%);
  padding: 80px 20px;
  text-align: center;
}

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

.thank-you-hero .hero-subheadline {
  color: #e0e0e0;
}

.thank-you-message,
.thank-you-content {
  padding: 60px 20px;
  text-align: center;
}

.next-steps,
.quick-links {
  max-width: 600px;
  margin: 32px auto;
  text-align: left;
}

.next-steps h3,
.quick-links h3 {
  color: #000000;
  margin-bottom: 16px;
}

.next-steps ul,
.quick-links ul {
  padding-left: 0;
}

.next-steps ul li,
.quick-links ul li {
  margin-bottom: 12px;
  padding-left: 24px;
  position: relative;
}

.next-steps ul li::before,
.quick-links ul li::before {
  content: '■';
  position: absolute;
  left: 0;
  color: #000000;
}

.next-steps ul li a,
.quick-links ul li a {
  color: #000000;
  font-weight: 600;
  text-decoration: underline;
}

.next-steps ul li a:hover,
.quick-links ul li a:hover {
  color: #666666;
}

.contact-reminder {
  background-color: #fafafa;
  padding: 60px 20px;
  text-align: center;
}

.contact-info {
  max-width: 600px;
  margin: 24px auto;
}

.contact-info p {
  margin-bottom: 12px;
  color: #1a1a1a;
}

/* =================================================================
   SEARCH INTERFACE
   ================================================================= */

.search-interface {
  padding: 60px 20px;
  background-color: #fafafa;
  text-align: center;
}

.search-info {
  max-width: 700px;
  margin: 32px auto;
  padding: 32px;
  background-color: #ffffff;
  border: 2px solid #e0e0e0;
}

.search-info p {
  margin-bottom: 20px;
  color: #1a1a1a;
}

/* =================================================================
   HELP SECTION
   ================================================================= */

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

.help-section h2 {
  margin-bottom: 32px;
}

/* =================================================================
   FOOTER - SOPHISTICATED MONOCHROME
   ================================================================= */

footer {
  background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
  color: #ffffff;
  padding: 60px 20px 20px;
  margin-top: 60px;
}

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

.footer-column {
  flex: 1 1 250px;
}

.footer-column h3 {
  color: #ffffff;
  font-size: 18px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-column p {
  color: #cccccc;
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 12px;
}

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

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

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

.footer-legal {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  text-align: center;
}

.footer-legal nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-bottom: 16px;
}

.footer-legal nav a {
  color: #cccccc;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-legal nav a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.footer-legal p {
  color: #999999;
  font-size: 12px;
}

/* =================================================================
   COOKIE CONSENT BANNER - SOPHISTICATED DESIGN
   ================================================================= */

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

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

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

.cookie-text {
  flex: 1 1 400px;
  color: #e0e0e0;
  font-size: 14px;
  line-height: 1.6;
}

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

.cookie-buttons button {
  padding: 12px 24px;
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 0;
  cursor: pointer;
  border: 2px solid;
  transition: all 0.3s ease;
}

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

.cookie-accept:hover {
  background-color: transparent;
  color: #ffffff;
}

.cookie-reject {
  background-color: transparent;
  color: #ffffff;
  border-color: #ffffff;
}

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

.cookie-settings {
  background-color: transparent;
  color: #cccccc;
  border-color: #666666;
}

.cookie-settings:hover {
  border-color: #ffffff;
  color: #ffffff;
}

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

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

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

.cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background-color: transparent;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: #000000;
  padding: 8px;
  line-height: 1;
}

.cookie-modal-close:hover {
  color: #666666;
}

.cookie-modal h2 {
  color: #000000;
  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 {
  color: #000000;
  margin-bottom: 8px;
  font-size: 18px;
}

.cookie-category p {
  color: #555555;
  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 {
  cursor: pointer;
  color: #1a1a1a;
  font-weight: 600;
}

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

.cookie-modal-buttons button {
  padding: 14px 28px;
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 0;
  cursor: pointer;
  border: 2px solid;
  transition: all 0.3s ease;
}

.cookie-save {
  background-color: #000000;
  color: #ffffff;
  border-color: #000000;
}

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

/* =================================================================
   RESPONSIVE DESIGN - MOBILE FIRST
   ================================================================= */

@media (max-width: 768px) {
  /* Mobile Menu Visibility */
  .mobile-menu-toggle {
    display: block;
  }

  .main-nav,
  .header-cta {
    display: none;
  }

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

  h2 {
    font-size: 24px;
  }

  h3 {
    font-size: 20px;
  }

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

  /* Hero Mobile */
  .hero {
    padding: 60px 20px;
  }

  .hero-cta {
    flex-direction: column;
  }

  .trust-badges {
    flex-direction: column;
  }

  /* Cards Mobile */
  .value-card,
  .service-card,
  .service-card-full,
  .stat-card,
  .testimonial-card,
  .category-card,
  .team-member,
  .contact-method,
  .article-card,
  .article-preview,
  .season-card {
    flex: 1 1 100%;
  }

  /* Content Grid Mobile */
  .content-block {
    flex: 1 1 100%;
  }

  /* Footer Mobile */
  .footer-grid {
    flex-direction: column;
  }

  .footer-column {
    flex: 1 1 100%;
  }

  /* Cookie Banner Mobile */
  .cookie-content {
    flex-direction: column;
  }

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

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

  .cookie-modal-content {
    padding: 24px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  /* Tablet adjustments */
  .value-card,
  .service-card,
  .category-card,
  .article-card,
  .season-card {
    flex: 1 1 calc(50% - 24px);
  }

  .stat-card {
    flex: 1 1 calc(50% - 24px);
  }
}

/* =================================================================
   UTILITY CLASSES
   ================================================================= */

.text-center {
  text-align: center;
}

.mt-20 {
  margin-top: 20px;
}

.mb-20 {
  margin-bottom: 20px;
}

.hidden {
  display: none;
}

/* =================================================================
   ANIMATIONS
   ================================================================= */

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

.hero-content,
.page-hero {
  animation: fadeIn 0.8s ease;
}

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

@media print {
  header,
  footer,
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-consent,
  .cookie-modal,
  .cta-section {
    display: none;
  }

  body {
    font-size: 12pt;
    color: #000000;
  }

  a {
    text-decoration: underline;
  }
}

/* =================================================================
   ACCESSIBILITY ENHANCEMENTS
   ================================================================= */

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

button:focus-visible,
a:focus-visible {
  outline: 3px solid #000000;
  outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .value-card,
  .service-card,
  .category-card {
    border-width: 3px;
  }
}

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