/* ===================================
   GLOWING BROOK INTERIOR DESIGN
   Modern Bold Design System
   =================================== */

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

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: #1a1a1a;
  background-color: #ffffff;
  overflow-x: hidden;
}

/* Typography - Bold Modern Style */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 800;
  line-height: 1.2;
  color: #000000;
  margin-bottom: 24px;
}

h1 {
  font-size: 56px;
  letter-spacing: -1px;
}

h2 {
  font-size: 42px;
  letter-spacing: -0.5px;
}

h3 {
  font-size: 32px;
}

h4 {
  font-size: 24px;
}

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

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

ul {
  list-style-position: inside;
  margin-bottom: 16px;
}

li {
  margin-bottom: 8px;
  font-size: 18px;
}

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

/* Header - Bold & High Contrast */
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;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

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

/* Main Navigation - Bold Typography */
.main-nav {
  display: flex;
  gap: 32px;
  align-items: center;
}

.main-nav a {
  color: #ffffff;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 8px 16px;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.main-nav a:hover {
  color: #FFD700;
  border-bottom: 2px solid #FFD700;
  transform: translateY(-2px);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1100;
  background: #FF4500;
  color: #ffffff;
  border: none;
  font-size: 28px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(255, 69, 0, 0.4);
  font-weight: bold;
  transition: all 0.3s ease;
}

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

/* Mobile Menu Overlay */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 400px;
  height: 100vh;
  background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
  z-index: 1050;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: -5px 0 30px rgba(0, 0, 0, 0.5);
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #FF4500;
  color: #ffffff;
  border: none;
  font-size: 32px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  font-weight: bold;
  transition: all 0.3s ease;
}

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

.mobile-nav {
  display: flex;
  flex-direction: column;
  padding: 80px 30px 30px;
  gap: 0;
}

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

.mobile-nav a:hover {
  color: #FFD700;
  padding-left: 15px;
  background: rgba(255, 215, 0, 0.1);
}

/* Hero Section - Bold & Impactful */
.hero {
  background: linear-gradient(135deg, #FF4500 0%, #FF6347 50%, #FFD700 100%);
  padding: 100px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect width="100" height="100" fill="%23000" opacity="0.05"/><circle cx="50" cy="50" r="30" fill="%23fff" opacity="0.1"/></svg>');
  opacity: 0.3;
}

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

.hero h1 {
  color: #000000;
  font-size: 64px;
  margin-bottom: 24px;
  text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.3);
  font-weight: 900;
}

.hero-subheadline {
  font-size: 24px;
  color: #1a1a1a;
  margin-bottom: 40px;
  font-weight: 600;
}

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

.trust-badge {
  background: rgba(0, 0, 0, 0.8);
  color: #FFD700;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 700;
  display: inline-block;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Buttons - Bold & Bright */
.btn {
  display: inline-block;
  padding: 16px 32px;
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 3px solid transparent;
  text-align: center;
}

.btn-primary {
  background: #000000;
  color: #FFD700;
  border-color: #000000;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.btn-primary:hover {
  background: #FFD700;
  color: #000000;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

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

.btn-secondary:hover {
  background: #000000;
  color: #FFD700;
  transform: translateY(-3px);
}

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

.page-hero {
  background: linear-gradient(135deg, #000000 0%, #FF4500 100%);
  padding: 80px 20px;
  text-align: center;
  margin-bottom: 60px;
}

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

.page-hero p {
  color: #FFD700;
  font-size: 22px;
  font-weight: 600;
}

.section-subheadline {
  font-size: 20px;
  color: #555555;
  margin-bottom: 40px;
  text-align: center;
  font-weight: 600;
}

/* Value Proposition */
.value-proposition {
  background: #f8f8f8;
  padding: 60px 20px;
  margin-bottom: 60px;
}

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

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

.value-card {
  background: #ffffff;
  padding: 32px;
  border-radius: 12px;
  flex: 1 1 250px;
  max-width: 280px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  border: 3px solid #000000;
  transition: all 0.3s ease;
  position: relative;
}

.value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #FF4500, #FFD700);
  border-radius: 12px 12px 0 0;
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(255, 69, 0, 0.3);
  border-color: #FF4500;
}

.value-card h3 {
  font-size: 24px;
  margin-bottom: 16px;
  color: #000000;
}

.value-card p {
  font-size: 16px;
  color: #333333;
  line-height: 1.6;
}

/* Service Cards */
.services-preview {
  padding: 60px 20px;
  background: #ffffff;
  margin-bottom: 60px;
}

.services-preview h2 {
  text-align: center;
  font-size: 48px;
  margin-bottom: 48px;
}

.service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-bottom: 40px;
}

.service-card {
  background: linear-gradient(135deg, #ffffff 0%, #f8f8f8 100%);
  padding: 40px;
  border-radius: 16px;
  flex: 1 1 300px;
  max-width: 380px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
  border: 4px solid #FFD700;
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(255, 69, 0, 0.3);
  border-color: #FF4500;
}

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

.service-card .price {
  font-size: 36px;
  font-weight: 900;
  color: #FF4500;
  margin-bottom: 16px;
}

.service-card p {
  font-size: 17px;
  color: #333333;
  line-height: 1.7;
}

/* Process Steps */
.process {
  background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
  padding: 60px 20px;
  margin-bottom: 60px;
}

.process h2 {
  text-align: center;
  font-size: 48px;
  margin-bottom: 48px;
  color: #000000;
}

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

.step {
  background: #ffffff;
  padding: 32px;
  border-radius: 12px;
  flex: 1 1 250px;
  max-width: 280px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  border: 3px solid #000000;
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
}

.step:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.3);
}

.step-number {
  display: block;
  font-size: 48px;
  font-weight: 900;
  color: #FF4500;
  margin-bottom: 16px;
}

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

.step p {
  font-size: 16px;
  color: #333333;
}

/* Testimonials - High Contrast */
.testimonials {
  background: #1a1a1a;
  padding: 60px 20px;
  margin-bottom: 60px;
}

.testimonials h2 {
  text-align: center;
  font-size: 48px;
  margin-bottom: 48px;
  color: #FFD700;
}

.testimonial-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.testimonial-card {
  background: #ffffff;
  padding: 32px;
  border-radius: 12px;
  flex: 1 1 400px;
  max-width: 550px;
  box-shadow: 0 6px 25px rgba(255, 215, 0, 0.3);
  border-left: 6px solid #FF4500;
  margin-bottom: 20px;
}

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

.testimonial-card .author {
  font-weight: 700;
  color: #000000;
  font-style: normal;
  font-size: 16px;
}

/* CTA Banner - Bold Call-to-Action */
.cta-banner {
  background: linear-gradient(135deg, #FF4500 0%, #000000 100%);
  padding: 60px 20px;
  text-align: center;
  margin-bottom: 60px;
}

.cta-banner h2 {
  color: #ffffff;
  font-size: 42px;
  margin-bottom: 16px;
}

.cta-banner p {
  color: #FFD700;
  font-size: 20px;
  margin-bottom: 32px;
  font-weight: 600;
}

/* Service Detail Cards */
.services-detail {
  padding: 60px 20px;
}

.services-detail h2 {
  text-align: center;
  font-size: 48px;
  margin-bottom: 16px;
}

.service-detail-card {
  background: #ffffff;
  padding: 40px;
  border-radius: 16px;
  margin-bottom: 32px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
  border: 4px solid #000000;
  position: relative;
}

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

.service-detail-card .price {
  font-size: 42px;
  font-weight: 900;
  color: #FF4500;
  margin-bottom: 16px;
}

.service-detail-card h4 {
  font-size: 22px;
  margin-top: 24px;
  margin-bottom: 16px;
  color: #000000;
}

.service-detail-card ul {
  margin-bottom: 24px;
}

.service-detail-card li {
  font-size: 17px;
  color: #333333;
  margin-bottom: 12px;
  padding-left: 8px;
}

.service-detail-card strong {
  color: #000000;
  font-weight: 800;
}

.badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #FFD700;
  color: #000000;
  padding: 8px 16px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 10px rgba(255, 215, 0, 0.4);
}

/* Addon Services */
.addon-services {
  margin-top: 48px;
}

.addon-card {
  background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 100%);
  padding: 24px;
  border-radius: 12px;
  margin-bottom: 20px;
  border: 3px solid #FFD700;
  transition: all 0.3s ease;
}

.addon-card:hover {
  border-color: #FF4500;
  transform: translateX(5px);
  box-shadow: 0 4px 15px rgba(255, 69, 0, 0.2);
}

.addon-card h4 {
  font-size: 20px;
  margin-bottom: 8px;
  color: #000000;
}

.addon-card .price {
  font-size: 24px;
  font-weight: 900;
  color: #FF4500;
  margin-bottom: 8px;
}

.addon-card p {
  font-size: 16px;
  color: #333333;
}

/* Portfolio Showcase */
.portfolio-showcase {
  padding: 60px 20px;
}

.project-card {
  background: #ffffff;
  padding: 40px;
  border-radius: 16px;
  margin-bottom: 40px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
  border-left: 8px solid #FF4500;
  position: relative;
}

.project-card h2 {
  font-size: 36px;
  margin-bottom: 12px;
  color: #000000;
}

.project-meta {
  font-size: 16px;
  color: #666666;
  margin-bottom: 20px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.project-card p {
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 16px;
}

.quote {
  background: #f8f8f8;
  padding: 20px;
  border-left: 4px solid #FFD700;
  font-style: italic;
  margin: 24px 0;
  color: #1a1a1a;
}

/* Statistics */
.statistics {
  background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
  padding: 60px 20px;
  margin-bottom: 60px;
}

.statistics h2 {
  text-align: center;
  font-size: 48px;
  margin-bottom: 48px;
  color: #FFD700;
}

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

.stat {
  text-align: center;
  flex: 1 1 200px;
  max-width: 250px;
}

.stat-number {
  font-size: 64px;
  font-weight: 900;
  color: #FF4500;
  margin-bottom: 8px;
}

.stat p {
  font-size: 18px;
  color: #FFD700;
  font-weight: 600;
}

/* About Us Sections */
.story, .mission-vision, .approach {
  padding: 60px 20px;
  margin-bottom: 60px;
}

.story h2, .mission-vision h2, .approach h2 {
  font-size: 42px;
  margin-bottom: 24px;
  color: #000000;
}

.story p {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #333333;
}

.mission-vision {
  background: #f8f8f8;
}

.mission, .values {
  margin-bottom: 40px;
}

.value-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 32px;
}

.value {
  background: #ffffff;
  padding: 24px;
  border-radius: 12px;
  flex: 1 1 240px;
  max-width: 280px;
  border: 3px solid #000000;
  margin-bottom: 20px;
}

.value h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: #FF4500;
}

.value p {
  font-size: 16px;
  color: #333333;
}

/* Team Section */
.team {
  padding: 60px 20px;
  background: #ffffff;
  margin-bottom: 60px;
}

.team h2 {
  text-align: center;
  font-size: 48px;
  margin-bottom: 16px;
}

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

.team-member {
  background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 100%);
  padding: 32px;
  border-radius: 16px;
  flex: 1 1 400px;
  max-width: 550px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
  border: 4px solid #FFD700;
  margin-bottom: 20px;
}

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

.role {
  font-size: 18px;
  color: #FF4500;
  font-weight: 700;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.credentials {
  font-size: 15px;
  color: #666666;
  font-style: italic;
  margin-top: 16px;
}

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

.approach-item {
  background: #ffffff;
  padding: 32px;
  border-radius: 12px;
  flex: 1 1 300px;
  max-width: 380px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  border: 3px solid #000000;
  margin-bottom: 20px;
}

.approach-item h3 {
  font-size: 24px;
  margin-bottom: 16px;
  color: #FF4500;
}

/* Pricing Sections */
.pricing-philosophy {
  padding: 60px 20px;
  background: #f8f8f8;
  margin-bottom: 60px;
}

.pricing-philosophy h2 {
  font-size: 42px;
  margin-bottom: 24px;
  text-align: center;
}

.pricing-packages {
  padding: 60px 20px;
}

.pricing-packages h2, .pricing-packages h3 {
  text-align: center;
  margin-bottom: 40px;
}

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

.pricing-card {
  background: #ffffff;
  padding: 40px;
  border-radius: 16px;
  flex: 1 1 320px;
  max-width: 380px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
  border: 4px solid #000000;
  position: relative;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(255, 69, 0, 0.3);
}

.pricing-card.featured {
  border-color: #FF4500;
  transform: scale(1.05);
}

.pricing-card h3 {
  font-size: 26px;
  margin-bottom: 16px;
  color: #000000;
}

.pricing-card .price {
  font-size: 42px;
  font-weight: 900;
  color: #FF4500;
  margin-bottom: 16px;
}

.pricing-card ul {
  margin: 24px 0;
}

.pricing-card li {
  font-size: 16px;
  margin-bottom: 12px;
  color: #333333;
}

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

.addon {
  background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 100%);
  padding: 24px;
  border-radius: 12px;
  flex: 1 1 280px;
  max-width: 350px;
  border: 3px solid #FFD700;
  text-align: center;
  margin-bottom: 20px;
}

.addon h4 {
  font-size: 20px;
  margin-bottom: 12px;
  color: #000000;
}

.addon .price {
  font-size: 28px;
  font-weight: 900;
  color: #FF4500;
  margin-bottom: 8px;
}

/* FAQ Section */
.faq {
  padding: 60px 20px;
  background: #f8f8f8;
  margin-bottom: 60px;
}

.faq h2 {
  text-align: center;
  font-size: 42px;
  margin-bottom: 40px;
}

.faq-item {
  background: #ffffff;
  padding: 32px;
  border-radius: 12px;
  margin-bottom: 24px;
  border-left: 6px solid #FF4500;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

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

.faq-item p {
  font-size: 17px;
  color: #333333;
  line-height: 1.7;
}

/* Contact Sections */
.contact-options {
  padding: 60px 20px;
  margin-bottom: 60px;
}

.contact-options h2 {
  text-align: center;
  font-size: 42px;
  margin-bottom: 40px;
}

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

.option-card {
  background: linear-gradient(135deg, #ffffff 0%, #f8f8f8 100%);
  padding: 40px;
  border-radius: 16px;
  flex: 1 1 300px;
  max-width: 380px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
  border: 4px solid #FFD700;
  text-align: center;
  margin-bottom: 20px;
}

.option-card h3 {
  font-size: 24px;
  margin-bottom: 16px;
  color: #000000;
}

.option-card p {
  font-size: 17px;
  margin-bottom: 24px;
  color: #333333;
}

.contact-info {
  background: #f8f8f8;
  padding: 60px 20px;
  margin-bottom: 60px;
}

.contact-info h2 {
  text-align: center;
  font-size: 42px;
  margin-bottom: 40px;
}

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

.info-block {
  background: #ffffff;
  padding: 32px;
  border-radius: 12px;
  flex: 1 1 300px;
  max-width: 380px;
  border: 3px solid #000000;
  margin-bottom: 20px;
}

.info-block h3 {
  font-size: 22px;
  margin-bottom: 16px;
  color: #FF4500;
}

.info-block p {
  font-size: 17px;
  color: #333333;
  line-height: 1.7;
}

.info-block em {
  color: #666666;
  font-size: 15px;
}

/* Thank You Page */
.thank-you-page {
  padding: 80px 20px;
}

.thank-you-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.thank-you-content h1 {
  font-size: 56px;
  color: #FF4500;
  margin-bottom: 24px;
}

.lead {
  font-size: 24px;
  color: #333333;
  margin-bottom: 32px;
  font-weight: 600;
}

.next-steps {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin: 48px 0;
  align-items: center;
}

.next-steps .step {
  background: #ffffff;
  padding: 32px;
  border-radius: 12px;
  border: 4px solid #FFD700;
  max-width: 600px;
  width: 100%;
}

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

.time {
  font-weight: 700;
  color: #FF4500;
  font-size: 16px;
  margin-top: 12px;
}

.note {
  background: #fff3cd;
  padding: 20px;
  border-radius: 8px;
  border-left: 4px solid #FFD700;
  margin: 32px 0;
  color: #856404;
  font-weight: 600;
}

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

.resource-link {
  background: #000000;
  color: #FFD700;
  padding: 16px 32px;
  border-radius: 8px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  border: 3px solid #000000;
}

.resource-link:hover {
  background: #FFD700;
  color: #000000;
  transform: translateY(-3px);
}

.contact-reminder {
  background: #f8f8f8;
  padding: 40px;
  border-radius: 16px;
  margin: 40px 0;
  border: 3px solid #000000;
}

.contact-reminder h2 {
  font-size: 32px;
  margin-bottom: 16px;
}

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

.links a {
  background: #FF4500;
  color: #ffffff;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 700;
  transition: all 0.3s ease;
}

.links a:hover {
  background: #FF6347;
  transform: scale(1.05);
}

/* Legal Pages */
.legal-page {
  padding: 60px 20px;
  margin-bottom: 60px;
}

.legal-page h1 {
  font-size: 48px;
  margin-bottom: 24px;
  color: #000000;
}

.legal-page h2 {
  font-size: 32px;
  margin-top: 40px;
  margin-bottom: 16px;
  color: #000000;
}

.legal-page h3 {
  font-size: 24px;
  margin-top: 24px;
  margin-bottom: 12px;
  color: #FF4500;
}

.legal-page p {
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 16px;
  color: #333333;
}

.legal-page ul {
  margin: 16px 0 16px 24px;
}

.legal-page li {
  font-size: 17px;
  margin-bottom: 8px;
  color: #333333;
}

/* Footer - Bold & Clear */
footer {
  background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
  color: #ffffff;
  padding: 60px 20px 20px;
}

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

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

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

.footer-section h4 {
  color: #FFD700;
  font-size: 18px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

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

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

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

.footer-copyright {
  text-align: center;
  padding-top: 20px;
  border-top: 2px solid rgba(255, 215, 0, 0.3);
  color: #999999;
  font-size: 14px;
}

/* Cookie Consent Banner */
#cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
  padding: 24px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  border-top: 4px solid #FFD700;
}

#cookie-consent.show {
  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 300px;
  color: #ffffff;
  font-size: 16px;
}

.cookie-text strong {
  color: #FFD700;
}

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

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

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

.cookie-accept:hover {
  background: #FFA500;
  transform: scale(1.05);
}

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

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

.cookie-settings {
  background: #FF4500;
  color: #ffffff;
}

.cookie-settings:hover {
  background: #FF6347;
}

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

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

.modal-content {
  background: #ffffff;
  padding: 40px;
  border-radius: 16px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
  border: 4px solid #FFD700;
}

.modal-content h2 {
  font-size: 32px;
  margin-bottom: 24px;
  color: #000000;
}

.cookie-category {
  margin-bottom: 24px;
  padding: 20px;
  background: #f8f8f8;
  border-radius: 8px;
  border-left: 4px solid #FF4500;
}

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

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

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

.cookie-toggle label {
  font-weight: 600;
  cursor: pointer;
}

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

/* Responsive Design - Mobile First */
@media (max-width: 768px) {
  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 32px;
  }

  h3 {
    font-size: 24px;
  }

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

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

  .main-nav {
    display: none;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .hero-cta {
    flex-direction: column;
    gap: 16px;
  }

  .btn {
    width: 100%;
    max-width: 300px;
  }

  .value-cards, .service-cards, .process-steps, .testimonial-cards {
    flex-direction: column;
    align-items: center;
  }

  .value-card, .service-card, .step, .testimonial-card {
    max-width: 100%;
  }

  .footer-content {
    flex-direction: column;
    gap: 32px;
  }

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

  .cookie-content {
    flex-direction: column;
    text-align: center;
  }

  .cookie-buttons {
    justify-content: center;
    width: 100%;
  }

  .cookie-btn {
    flex: 1;
    min-width: 120px;
  }

  .stats-grid {
    flex-direction: column;
    align-items: center;
  }

  .pricing-grid, .option-grid, .info-grid {
    flex-direction: column;
    align-items: center;
  }

  .modal-content {
    padding: 24px;
  }

  .modal-buttons {
    flex-direction: column;
  }

  .modal-buttons .btn {
    width: 100%;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .container {
    padding: 0 32px;
  }

  h1 {
    font-size: 48px;
  }

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

  .value-cards, .service-cards {
    justify-content: space-around;
  }
}

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

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

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

/* Utility Classes */
.text-center {
  text-align: center;
}

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

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

/* Focus States for Accessibility */
a:focus, button:focus, input:focus {
  outline: 3px solid #FFD700;
  outline-offset: 2px;
}

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

  body {
    color: #000000;
    background: #ffffff;
  }

  a {
    text-decoration: underline;
  }
}