/* ===================================
   Radiant Roamer - ELEGANT CLASSIC STYLES
   Design Style: Timeless elegant design with refined elements
   =================================== */

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

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

body {
  font-family: 'Georgia', 'Times New Roman', serif;
  line-height: 1.8;
  color: #2C3E50;
  background-color: #F8F6F3;
  overflow-x: hidden;
}

/* ELEGANT CLASSIC TYPOGRAPHY */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', 'Georgia', serif;
  font-weight: 600;
  color: #2C3E50;
  letter-spacing: 0.5px;
  line-height: 1.3;
}

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

h2 {
  font-size: 36px;
  margin-bottom: 32px;
  text-align: center;
}

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

h4 {
  font-size: 20px;
  margin-bottom: 12px;
}

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

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

a:hover {
  color: #D35400;
}

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

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

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

/* HEADER STYLES */
header {
  background-color: #FFFFFF;
  border-bottom: 1px solid #E5E1DA;
  padding: 24px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(44, 62, 80, 0.08);
}

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

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

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

.main-nav a {
  font-family: 'Georgia', serif;
  font-size: 15px;
  color: #2C3E50;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}

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

/* MOBILE MENU STYLES */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 1001;
  background-color: #2C3E50;
  color: #FFFFFF;
  border: none;
  font-size: 28px;
  width: 48px;
  height: 48px;
  border-radius: 4px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(44, 62, 80, 0.2);
  transition: all 0.3s ease;
}

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

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background-color: #FFFFFF;
  box-shadow: -4px 0 20px rgba(44, 62, 80, 0.15);
  z-index: 1000;
  padding: 80px 32px 32px;
  transition: right 0.4s ease;
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  font-size: 32px;
  color: #2C3E50;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

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

.mobile-nav a {
  font-family: 'Georgia', serif;
  font-size: 18px;
  color: #2C3E50;
  padding: 12px 0;
  border-bottom: 1px solid #E5E1DA;
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  color: #E67E22;
  padding-left: 8px;
}

/* HERO SECTION */
.hero {
  background: linear-gradient(135deg, #F8F6F3 0%, #ECF0F1 100%);
  padding: 80px 20px;
  margin-bottom: 60px;
  border-bottom: 3px solid #E5E1DA;
}

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

.hero h1 {
  font-size: 52px;
  color: #2C3E50;
  margin-bottom: 24px;
  line-height: 1.2;
}

.subheadline {
  font-size: 20px;
  color: #5A6C7D;
  margin-bottom: 40px;
  line-height: 1.6;
}

.mission {
  font-size: 20px;
  font-style: italic;
  color: #E67E22;
  margin-top: 32px;
  padding: 20px;
  border-left: 4px solid #E67E22;
  background-color: rgba(230, 126, 34, 0.05);
}

/* BUTTONS */
.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 32px;
}

.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 16px 40px;
  font-family: 'Georgia', serif;
  font-size: 16px;
  font-weight: 600;
  border-radius: 4px;
  border: 2px solid;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

.btn-primary {
  background-color: #E67E22;
  color: #FFFFFF;
  border-color: #E67E22;
}

.btn-primary:hover {
  background-color: #D35400;
  border-color: #D35400;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(230, 126, 34, 0.3);
}

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

.btn-secondary:hover {
  background-color: #2C3E50;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(44, 62, 80, 0.2);
}

/* SECTIONS */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* TRUST INDICATORS & STATS */
.trust-indicators,
.statistics {
  background-color: #FFFFFF;
  padding: 60px 20px;
  border-top: 1px solid #E5E1DA;
  border-bottom: 1px solid #E5E1DA;
}

.stats-grid {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.stat-item,
.stat {
  text-align: center;
  flex: 1 1 200px;
  min-width: 200px;
}

.stat-item h3,
.stat h3 {
  font-size: 48px;
  color: #E67E22;
  margin-bottom: 8px;
  font-weight: 700;
}

.stat-item p,
.stat p {
  font-size: 16px;
  color: #5A6C7D;
  font-style: italic;
}

/* HOW IT WORKS */
.how-it-works {
  background-color: #F8F6F3;
}

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

.step {
  flex: 1 1 280px;
  max-width: 400px;
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 4px;
  border: 1px solid #E5E1DA;
  box-shadow: 0 4px 12px rgba(44, 62, 80, 0.08);
  transition: all 0.3s ease;
  position: relative;
}

.step:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(44, 62, 80, 0.12);
  border-color: #E67E22;
}

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

/* SERVICES */
.services-grid,
.benefits-grid,
.categories-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 40px;
}

.service-card,
.benefit,
.category-card {
  flex: 1 1 320px;
  max-width: 380px;
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 4px;
  border: 1px solid #E5E1DA;
  box-shadow: 0 4px 12px rgba(44, 62, 80, 0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  margin-bottom: 20px;
}

.service-card:hover,
.benefit:hover,
.category-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(44, 62, 80, 0.12);
  border-color: #E67E22;
}

.service-card h3,
.benefit h3,
.category-card h3 {
  color: #2C3E50;
  font-size: 22px;
}

.price {
  font-size: 18px;
  font-weight: 600;
  color: #E67E22;
  margin-top: 8px;
}

/* TESTIMONIALS */
.testimonials {
  background-color: #F8F6F3;
  padding: 60px 20px;
}

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

.testimonial-card {
  flex: 1 1 450px;
  max-width: 550px;
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 4px;
  border-left: 4px solid #E67E22;
  box-shadow: 0 4px 12px rgba(44, 62, 80, 0.08);
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  margin-bottom: 20px;
}

.testimonial-card p:first-child {
  font-size: 18px;
  font-style: italic;
  color: #2C3E50;
  line-height: 1.6;
}

.author {
  font-size: 15px;
  font-weight: 600;
  color: #5A6C7D;
  margin-top: 16px;
  font-style: normal;
}

.quote {
  font-size: 18px;
  font-style: italic;
  color: #2C3E50;
  line-height: 1.6;
}

/* DETAILED PROCESS */
.detailed-process {
  background-color: #FFFFFF;
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 40px;
}

.process-step {
  background-color: #F8F6F3;
  padding: 32px;
  border-radius: 4px;
  border-left: 4px solid #E67E22;
  box-shadow: 0 2px 8px rgba(44, 62, 80, 0.06);
  position: relative;
}

.process-step h3 {
  color: #E67E22;
  font-size: 24px;
  margin-bottom: 16px;
}

.time-estimate {
  font-size: 14px;
  font-weight: 600;
  color: #E67E22;
  margin-top: 16px;
  font-style: italic;
}

/* VERIFICATION */
.verification {
  background-color: #F8F6F3;
}

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

.verification-item,
.guarantee {
  flex: 1 1 280px;
  max-width: 320px;
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 4px;
  border: 1px solid #E5E1DA;
  text-align: center;
  box-shadow: 0 4px 12px rgba(44, 62, 80, 0.08);
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
}

.verification-item:hover,
.guarantee:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(44, 62, 80, 0.12);
}

/* FAQ */
.faq {
  background-color: #FFFFFF;
  padding: 60px 20px;
}

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

.faq-item {
  background-color: #F8F6F3;
  padding: 24px;
  border-radius: 4px;
  border-left: 3px solid #E67E22;
  box-shadow: 0 2px 8px rgba(44, 62, 80, 0.06);
  position: relative;
  margin-bottom: 20px;
}

.faq-item h3 {
  color: #2C3E50;
  font-size: 20px;
  margin-bottom: 12px;
}

.faq-item p {
  color: #5A6C7D;
  line-height: 1.6;
}

/* SERVICES DETAILED */
.services-detailed {
  background-color: #FFFFFF;
}

.services-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 40px;
}

.service-detailed {
  background-color: #F8F6F3;
  padding: 40px;
  border-radius: 4px;
  border-left: 4px solid #E67E22;
  box-shadow: 0 4px 12px rgba(44, 62, 80, 0.08);
  position: relative;
}

.service-detailed h3 {
  color: #2C3E50;
  font-size: 28px;
  margin-bottom: 16px;
}

.service-detailed ul {
  margin: 24px 0;
  padding-left: 0;
}

.service-detailed li {
  padding-left: 24px;
  position: relative;
}

.service-detailed li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #E67E22;
  font-weight: bold;
}

/* SEARCH & HERO SEARCH */
.hero-search {
  background: linear-gradient(135deg, #F8F6F3 0%, #ECF0F1 100%);
  padding: 80px 20px;
  text-align: center;
}

.search-wrapper {
  max-width: 700px;
  margin: 40px auto 0;
}

.search-form {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
}

.search-input {
  flex: 1 1 400px;
  padding: 16px 20px;
  font-size: 16px;
  font-family: 'Georgia', serif;
  border: 2px solid #E5E1DA;
  border-radius: 4px;
  background-color: #FFFFFF;
  color: #2C3E50;
  transition: all 0.3s ease;
}

.search-input:focus {
  outline: none;
  border-color: #E67E22;
  box-shadow: 0 0 0 3px rgba(230, 126, 34, 0.1);
}

/* POPULAR CATEGORIES */
.popular-categories {
  padding: 60px 20px;
}

.categories-grid .category-card {
  flex: 1 1 280px;
  max-width: 340px;
}

.category-card ul {
  list-style: none;
  padding: 0;
  margin-top: 16px;
}

.category-card li {
  font-size: 14px;
  padding: 4px 0;
  color: #5A6C7D;
}

/* TIMELINE */
.steps-timeline {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 40px;
}

.timeline-step {
  flex: 1 1 240px;
  max-width: 280px;
  text-align: center;
  padding: 24px;
  background-color: #FFFFFF;
  border-radius: 4px;
  border: 1px solid #E5E1DA;
  box-shadow: 0 4px 12px rgba(44, 62, 80, 0.08);
  position: relative;
  margin-bottom: 20px;
}

.timeline-step h3 {
  color: #E67E22;
  font-size: 20px;
  margin-bottom: 12px;
}

.time {
  display: block;
  margin-top: 12px;
  font-size: 14px;
  font-weight: 600;
  color: #5A6C7D;
  font-style: italic;
}

/* BENEFITS CHECKLIST */
.benefits-checklist {
  background-color: #F8F6F3;
  padding: 60px 20px;
}

.checklist {
  max-width: 700px;
  margin: 40px auto 0;
  list-style: none;
  padding: 0;
}

.checklist li {
  padding: 16px 16px 16px 48px;
  margin-bottom: 12px;
  background-color: #FFFFFF;
  border-radius: 4px;
  border-left: 3px solid #E67E22;
  position: relative;
  box-shadow: 0 2px 8px rgba(44, 62, 80, 0.06);
  color: #2C3E50;
}

.checklist li::before {
  content: "✓";
  position: absolute;
  left: 16px;
  color: #E67E22;
  font-size: 20px;
  font-weight: bold;
}

/* PRICING */
.pricing {
  background-color: #F8F6F3;
  padding: 60px 20px;
}

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

.pricing-card {
  flex: 1 1 320px;
  max-width: 380px;
  background-color: #FFFFFF;
  padding: 40px;
  border-radius: 4px;
  border: 2px solid #E5E1DA;
  text-align: center;
  box-shadow: 0 4px 12px rgba(44, 62, 80, 0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  margin-bottom: 20px;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(44, 62, 80, 0.12);
}

.pricing-card.recommended {
  border-color: #E67E22;
  border-width: 3px;
  box-shadow: 0 8px 24px rgba(230, 126, 34, 0.2);
}

.pricing-card h3 {
  font-size: 28px;
  color: #2C3E50;
  margin-bottom: 8px;
}

.pricing-card .price {
  font-size: 36px;
  color: #E67E22;
  font-weight: 700;
  margin: 16px 0;
}

.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 24px 0;
  text-align: left;
}

.pricing-card li {
  padding: 12px 0;
  border-bottom: 1px solid #E5E1DA;
  color: #5A6C7D;
}

.pricing-card li:last-child {
  border-bottom: none;
}

/* SUCCESS STORIES */
.success-stories {
  background-color: #FFFFFF;
  padding: 60px 20px;
}

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

.story-card {
  flex: 1 1 450px;
  max-width: 550px;
  background-color: #F8F6F3;
  padding: 32px;
  border-radius: 4px;
  border-left: 4px solid #E67E22;
  box-shadow: 0 4px 12px rgba(44, 62, 80, 0.08);
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  margin-bottom: 20px;
}

.stats {
  font-size: 14px;
  color: #E67E22;
  font-weight: 600;
}

/* REQUIREMENTS & VALUE PROPS */
.requirements,
.benefits-for-pros {
  padding: 60px 20px;
  background-color: #F8F6F3;
}

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

.requirement-section {
  flex: 1 1 400px;
  max-width: 550px;
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 4px;
  border: 1px solid #E5E1DA;
  box-shadow: 0 4px 12px rgba(44, 62, 80, 0.08);
  position: relative;
  margin-bottom: 20px;
}

.requirement-section h3 {
  color: #2C3E50;
  margin-bottom: 20px;
}

.requirement-section ul {
  list-style: none;
  padding: 0;
}

.requirement-section li {
  padding: 12px 0 12px 28px;
  position: relative;
  color: #5A6C7D;
}

.requirement-section li::before {
  content: "•";
  position: absolute;
  left: 8px;
  color: #E67E22;
  font-size: 24px;
}

.value-props {
  list-style: none;
  padding: 0;
  margin: 24px 0;
}

.value-props li {
  padding: 8px 0 8px 28px;
  position: relative;
  font-size: 18px;
  color: #5A6C7D;
}

.value-props li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #E67E22;
  font-weight: bold;
}

/* STORY & MILESTONES */
.story {
  background-color: #FFFFFF;
  padding: 60px 20px;
}

.story p {
  font-size: 18px;
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto 40px;
  text-align: center;
  color: #5A6C7D;
}

.milestones {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.milestone {
  background-color: #F8F6F3;
  padding: 32px;
  border-radius: 4px;
  border-left: 4px solid #E67E22;
  box-shadow: 0 4px 12px rgba(44, 62, 80, 0.08);
  position: relative;
}

.milestone h3 {
  color: #E67E22;
  font-size: 24px;
  margin-bottom: 12px;
}

/* VALUES */
.values {
  background-color: #F8F6F3;
  padding: 60px 20px;
}

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

.value {
  flex: 1 1 280px;
  max-width: 340px;
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 4px;
  border: 1px solid #E5E1DA;
  text-align: center;
  box-shadow: 0 4px 12px rgba(44, 62, 80, 0.08);
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
}

.value:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(44, 62, 80, 0.12);
}

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

/* TEAM */
.team {
  background-color: #FFFFFF;
  padding: 60px 20px;
}

.team > p {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
  font-size: 18px;
}

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

.team-member {
  flex: 1 1 320px;
  max-width: 380px;
  background-color: #F8F6F3;
  padding: 32px;
  border-radius: 4px;
  text-align: center;
  border: 1px solid #E5E1DA;
  box-shadow: 0 4px 12px rgba(44, 62, 80, 0.08);
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
}

.team-member:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(44, 62, 80, 0.12);
}

.team-member h3 {
  color: #2C3E50;
  font-size: 24px;
  margin-bottom: 8px;
}

.role {
  font-size: 16px;
  font-weight: 600;
  color: #E67E22;
  margin-bottom: 16px;
}

/* CONTACT INFO & METHODS */
.contact-info,
.contact-methods {
  background-color: #F8F6F3;
  padding: 60px 20px;
}

.contact-details {
  max-width: 600px;
  margin: 40px auto 0;
  background-color: #FFFFFF;
  padding: 40px;
  border-radius: 4px;
  border-left: 4px solid #E67E22;
  box-shadow: 0 4px 12px rgba(44, 62, 80, 0.08);
}

.contact-details p {
  margin-bottom: 24px;
  font-size: 16px;
  line-height: 1.8;
}

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

.method-card {
  flex: 1 1 400px;
  max-width: 500px;
  background-color: #FFFFFF;
  padding: 40px;
  border-radius: 4px;
  border: 2px solid #E5E1DA;
  text-align: center;
  box-shadow: 0 4px 12px rgba(44, 62, 80, 0.08);
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
}

.method-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(44, 62, 80, 0.12);
  border-color: #E67E22;
}

.method-card h3 {
  color: #2C3E50;
  font-size: 26px;
  margin-bottom: 16px;
}

.contact-value {
  font-size: 20px;
  font-weight: 600;
  color: #E67E22;
  margin: 16px 0;
}

.availability,
.note {
  font-size: 15px;
  color: #5A6C7D;
  font-style: italic;
}

/* DEPARTMENTS */
.specialized-contacts {
  background-color: #FFFFFF;
  padding: 60px 20px;
}

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

.department {
  flex: 1 1 280px;
  max-width: 320px;
  background-color: #F8F6F3;
  padding: 32px;
  border-radius: 4px;
  border-left: 4px solid #E67E22;
  box-shadow: 0 4px 12px rgba(44, 62, 80, 0.08);
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
}

.department:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(44, 62, 80, 0.12);
}

.department h3 {
  color: #2C3E50;
  font-size: 20px;
  margin-bottom: 12px;
}

.email {
  font-size: 16px;
  font-weight: 600;
  color: #E67E22;
  margin: 12px 0;
}

.response-time {
  font-size: 14px;
  color: #5A6C7D;
  font-style: italic;
  margin-top: 12px;
}

/* OFFICE LOCATION */
.office-location {
  background-color: #F8F6F3;
  padding: 60px 20px;
}

.location-info {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 40px;
  margin-bottom: 40px;
}

.address-card,
.hours-card {
  flex: 1 1 300px;
  max-width: 400px;
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 4px;
  border: 1px solid #E5E1DA;
  box-shadow: 0 4px 12px rgba(44, 62, 80, 0.08);
  position: relative;
  margin-bottom: 20px;
}

.visit-info {
  flex: 1 1 100%;
  max-width: 800px;
  background-color: #FFFFFF;
  padding: 24px;
  border-radius: 4px;
  border-left: 4px solid #E67E22;
  text-align: center;
}

.directions {
  max-width: 800px;
  margin: 0 auto;
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 4px;
  border: 1px solid #E5E1DA;
}

.directions h3 {
  color: #2C3E50;
  margin-bottom: 20px;
}

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

.directions li {
  padding: 12px 0;
  border-bottom: 1px solid #E5E1DA;
}

.directions li:last-child {
  border-bottom: none;
}

/* CONTACT FORM SECTION */
.contact-form-section {
  background-color: #FFFFFF;
  padding: 60px 20px;
}

.form-info {
  max-width: 700px;
  margin: 0 auto 32px;
  text-align: center;
}

.form-note {
  max-width: 700px;
  margin: 32px auto 0;
  padding: 24px;
  background-color: #FFF3CD;
  border-left: 4px solid #E67E22;
  border-radius: 4px;
}

/* THANK YOU PAGE */
.thank-you-hero,
.thank-you-section {
  background: linear-gradient(135deg, #F8F6F3 0%, #ECF0F1 100%);
  padding: 80px 20px;
  text-align: center;
}

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

.success-icon {
  width: 80px;
  height: 80px;
  background-color: #27AE60;
  color: #FFFFFF;
  font-size: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
  box-shadow: 0 8px 24px rgba(39, 174, 96, 0.3);
}

.thank-you-content h1 {
  font-size: 48px;
  color: #2C3E50;
  margin-bottom: 24px;
}

.message {
  font-size: 20px;
  color: #5A6C7D;
  margin-bottom: 40px;
}

.next-steps {
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 4px;
  border: 1px solid #E5E1DA;
  margin-top: 40px;
  text-align: left;
}

.next-steps h2 {
  font-size: 24px;
  color: #2C3E50;
  margin-bottom: 20px;
  text-align: center;
}

.next-steps ul {
  list-style: none;
  padding: 0;
}

.next-steps li {
  padding: 12px 0 12px 32px;
  position: relative;
  color: #5A6C7D;
}

.next-steps li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #27AE60;
  font-weight: bold;
  font-size: 20px;
}

/* NEXT ACTIONS */
.next-actions {
  background-color: #FFFFFF;
  padding: 60px 20px;
}

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

.action-card {
  flex: 1 1 300px;
  max-width: 350px;
  background-color: #F8F6F3;
  padding: 32px;
  border-radius: 4px;
  border: 1px solid #E5E1DA;
  text-align: center;
  box-shadow: 0 4px 12px rgba(44, 62, 80, 0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: space-between;
  align-items: center;
  position: relative;
  margin-bottom: 20px;
}

.action-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(44, 62, 80, 0.12);
}

/* CONTACT ALTERNATIVES */
.contact-alternatives {
  background-color: #F8F6F3;
  padding: 60px 20px;
  text-align: center;
}

.alternatives {
  max-width: 600px;
  margin: 32px auto 0;
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 4px;
  border: 1px solid #E5E1DA;
}

.alternatives p {
  font-size: 18px;
  margin-bottom: 12px;
}

/* LEGAL CONTENT */
.legal-content {
  background-color: #FFFFFF;
  padding: 60px 20px;
}

.legal-content h1 {
  text-align: center;
  margin-bottom: 16px;
}

.last-updated {
  text-align: center;
  font-size: 14px;
  color: #5A6C7D;
  font-style: italic;
  margin-bottom: 40px;
}

.content-wrapper {
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.8;
}

.content-wrapper h2 {
  font-size: 28px;
  color: #2C3E50;
  margin-top: 40px;
  margin-bottom: 20px;
  text-align: left;
}

.content-wrapper h3 {
  font-size: 22px;
  color: #2C3E50;
  margin-top: 32px;
  margin-bottom: 16px;
}

.content-wrapper ul {
  margin: 20px 0;
  padding-left: 32px;
}

.content-wrapper li {
  margin-bottom: 12px;
  color: #5A6C7D;
}

/* CTA SECTIONS */
.cta-final,
.cta {
  background: linear-gradient(135deg, #2C3E50 0%, #34495E 100%);
  color: #FFFFFF;
  padding: 80px 20px;
  text-align: center;
}

.cta-final h2,
.cta h2 {
  color: #FFFFFF;
  font-size: 42px;
  margin-bottom: 20px;
}

.cta-final p,
.cta p {
  color: #ECF0F1;
  font-size: 20px;
  margin-bottom: 32px;
}

.cta-final .btn-primary,
.cta .btn-primary {
  background-color: #E67E22;
  border-color: #E67E22;
}

.cta-final .btn-primary:hover,
.cta .btn-primary:hover {
  background-color: #D35400;
  border-color: #D35400;
}

/* FOOTER */
footer {
  background-color: #2C3E50;
  color: #ECF0F1;
  padding: 60px 0 24px;
  border-top: 3px solid #E67E22;
}

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

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

.footer-section h4 {
  color: #E67E22;
  font-size: 20px;
  margin-bottom: 20px;
  font-family: 'Playfair Display', 'Georgia', serif;
}

.footer-section p {
  color: #BDC3C7;
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 12px;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

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

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

.footer-section a:hover {
  color: #E67E22;
  padding-left: 4px;
}

.footer-bottom {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid #34495E;
}

.footer-bottom p {
  color: #95A5A6;
  font-size: 14px;
}

/* COOKIE CONSENT BANNER */
#cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #FFFFFF;
  border-top: 3px solid #E67E22;
  padding: 24px;
  box-shadow: 0 -4px 20px rgba(44, 62, 80, 0.15);
  z-index: 999;
  display: none;
}

#cookie-consent.show {
  display: block;
  animation: slideUp 0.4s ease;
}

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

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

.cookie-text {
  flex: 1 1 400px;
  color: #2C3E50;
  font-size: 15px;
  line-height: 1.6;
}

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

.cookie-buttons button {
  padding: 12px 24px;
  font-family: 'Georgia', serif;
  font-size: 14px;
  font-weight: 600;
  border-radius: 4px;
  border: 2px solid;
  cursor: pointer;
  transition: all 0.3s ease;
}

#accept-all {
  background-color: #E67E22;
  color: #FFFFFF;
  border-color: #E67E22;
}

#accept-all:hover {
  background-color: #D35400;
  border-color: #D35400;
}

#reject-all {
  background-color: transparent;
  color: #2C3E50;
  border-color: #2C3E50;
}

#reject-all:hover {
  background-color: #2C3E50;
  color: #FFFFFF;
}

#cookie-settings {
  background-color: transparent;
  color: #E67E22;
  border-color: #E67E22;
}

#cookie-settings:hover {
  background-color: #E67E22;
  color: #FFFFFF;
}

/* COOKIE MODAL */
#cookie-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(44, 62, 80, 0.8);
  z-index: 1002;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

#cookie-modal.show {
  display: flex;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.modal-content {
  background-color: #FFFFFF;
  padding: 40px;
  border-radius: 4px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 8px 32px rgba(44, 62, 80, 0.3);
  position: relative;
}

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

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

.cookie-category {
  margin-bottom: 24px;
  padding: 20px;
  background-color: #F8F6F3;
  border-radius: 4px;
  border-left: 3px solid #E67E22;
}

.cookie-category h3 {
  color: #2C3E50;
  font-size: 18px;
  margin-bottom: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.cookie-category p {
  color: #5A6C7D;
  font-size: 14px;
  margin-bottom: 0;
}

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

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

.cookie-toggle input[type="checkbox"]:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

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

.modal-actions button {
  padding: 12px 24px;
  font-family: 'Georgia', serif;
  font-size: 14px;
  font-weight: 600;
  border-radius: 4px;
  border: 2px solid;
  cursor: pointer;
  transition: all 0.3s ease;
}

#save-preferences {
  background-color: #E67E22;
  color: #FFFFFF;
  border-color: #E67E22;
}

#save-preferences:hover {
  background-color: #D35400;
  border-color: #D35400;
}

/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
  h1 {
    font-size: 42px;
  }
  
  h2 {
    font-size: 32px;
  }
  
  .hero h1 {
    font-size: 44px;
  }
}

@media (max-width: 768px) {
  /* MOBILE MENU */
  .mobile-menu-toggle {
    display: block;
  }
  
  .main-nav {
    display: none;
  }
  
  .mobile-menu {
    display: block;
  }
  
  /* TYPOGRAPHY */
  h1 {
    font-size: 36px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  h3 {
    font-size: 22px;
  }
  
  .hero h1 {
    font-size: 38px;
  }
  
  .subheadline {
    font-size: 18px;
  }
  
  /* SECTIONS */
  section {
    padding: 32px 16px;
    margin-bottom: 40px;
  }
  
  .hero {
    padding: 60px 16px;
  }
  
  /* BUTTONS */
  .cta-buttons {
    flex-direction: column;
    gap: 16px;
  }
  
  .btn-primary,
  .btn-secondary {
    width: 100%;
    padding: 14px 32px;
  }
  
  /* GRIDS */
  .stats-grid,
  .steps-grid,
  .services-grid,
  .benefits-grid,
  .categories-grid,
  .testimonials-grid,
  .verification-grid,
  .guarantees-grid,
  .pricing-grid,
  .stories-grid,
  .values-grid,
  .team-grid,
  .methods-grid,
  .departments-grid,
  .location-info,
  .actions-grid {
    gap: 20px;
  }
  
  /* CARDS */
  .service-card,
  .benefit,
  .category-card,
  .pricing-card,
  .team-member,
  .method-card,
  .department,
  .action-card {
    padding: 24px;
  }
  
  /* SEARCH */
  .search-form {
    flex-direction: column;
  }
  
  .search-input {
    width: 100%;
  }
  
  /* FOOTER */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  .footer-section {
    min-width: 100%;
  }
  
  /* COOKIE BANNER */
  .cookie-content {
    flex-direction: column;
    gap: 16px;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-buttons button {
    width: 100%;
  }
  
  /* MODAL */
  .modal-content {
    padding: 24px;
  }
  
  .modal-actions {
    flex-direction: column;
  }
  
  .modal-actions button {
    width: 100%;
  }
  
  /* TIMELINE */
  .steps-timeline {
    flex-direction: column;
  }
  
  /* TEXT-IMAGE SECTIONS */
  .text-image-section {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }
  
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 26px;
  }
  
  .hero h1 {
    font-size: 34px;
  }
  
  .container {
    padding: 0 16px;
  }
  
  .mobile-menu {
    width: 100%;
  }
  
  .cta-final h2,
  .cta h2 {
    font-size: 32px;
  }
}

/* ACCESSIBILITY */
*:focus {
  outline: 2px solid #E67E22;
  outline-offset: 2px;
}

button:focus,
a:focus,
input:focus {
  outline: 2px solid #E67E22;
  outline-offset: 2px;
}

/* PRINT STYLES */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  #cookie-consent,
  #cookie-modal {
    display: none !important;
  }
  
  header {
    position: static;
  }
  
  * {
    box-shadow: none !important;
  }
}

/* SMOOTH ANIMATIONS */
* {
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

button,
a,
.card,
.service-card,
.benefit,
.testimonial-card {
  transition: all 0.3s ease;
}

/* UTILITY CLASSES */
.text-center {
  text-align: center;
}

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

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

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

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

/* ELEGANT CLASSIC ENHANCEMENTS */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('data:image/svg+xml,%3Csvg width="20" height="20" xmlns="http://www.w3.org/2000/svg",%3E%3Cg fill="%23E5E1DA" fill-opacity="0.05"%3E%3Cpath d="M0 0h20v20H0z"/%3E%3C/g%3E%3C/svg%3E');
  pointer-events: none;
  z-index: -1;
}

/* DECORATIVE ELEMENTS */
.hero::after,
.cta-final::after,
.cta::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: #E67E22;
}

.hero,
.cta-final,
.cta {
  position: relative;
}

/* END OF STYLES */