/* ===================================
   TRUE VERTEX - ELEGANT CLASSIC CSS
   Design Style: Timeless Elegance
   =================================== */

/* ===================================
   CSS RESET & NORMALIZE
   =================================== */
* {
  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;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul, ol {
  list-style-position: inside;
}

/* ===================================
   TYPOGRAPHY - ELEGANT CLASSIC
   =================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Garamond', 'Georgia', serif;
  font-weight: 600;
  line-height: 1.3;
  color: #2C3E50;
  margin-bottom: 24px;
  letter-spacing: 0.5px;
}

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

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

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

h4 {
  font-size: 18px;
  margin-bottom: 16px;
}

p {
  font-size: 16px;
  margin-bottom: 16px;
  line-height: 1.8;
}

strong {
  font-weight: 600;
  color: #2C3E50;
}

em {
  font-style: italic;
  color: #6B7C8F;
}

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

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

/* ===================================
   HEADER - ELEGANT & REFINED
   =================================== */
.site-header {
  background-color: #FFFFFF;
  border-bottom: 1px solid #D4C5B9;
  padding: 24px 0;
  position: sticky;
  top: 0;
  z-index: 900;
  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: 50px;
  width: auto;
}

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

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

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

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

.mobile-menu-toggle:hover {
  background-color: #E8C547;
  color: #2C3E50;
}

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

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 32px;
  color: #2C3E50;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s ease;
}

.mobile-menu-close:hover {
  color: #E8C547;
}

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

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

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

@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: block;
  }
  
  .mobile-menu {
    display: block;
  }
  
  .main-nav {
    display: none;
  }
}

/* ===================================
   HERO SECTION - REFINED ELEGANCE
   =================================== */
.hero {
  background: linear-gradient(135deg, #F8F6F3 0%, #EDE8E3 100%);
  border-bottom: 1px solid #D4C5B9;
  padding: 80px 20px;
  margin-bottom: 60px;
}

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

.hero h1 {
  font-size: 48px;
  color: #2C3E50;
  margin-bottom: 24px;
  letter-spacing: 1px;
}

.hero-subheadline {
  font-size: 18px;
  color: #6B7C8F;
  margin-bottom: 32px;
  line-height: 1.8;
}

.hero p {
  font-size: 16px;
  color: #6B7C8F;
  margin-bottom: 24px;
}

.stats {
  font-size: 18px;
  color: #E8C547;
  font-weight: 600;
  margin-top: 32px;
}

.trust-badge {
  display: inline-block;
  background-color: #FFFFFF;
  color: #2C3E50;
  padding: 12px 24px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  margin-top: 32px;
  border: 1px solid #D4C5B9;
  letter-spacing: 0.5px;
}

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

.btn {
  display: inline-block;
  padding: 14px 32px;
  font-family: 'Garamond', 'Georgia', serif;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  letter-spacing: 0.5px;
}

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

.btn-primary:hover {
  background-color: #E8C547;
  border-color: #E8C547;
  color: #2C3E50;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(232, 197, 71, 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 4px 12px rgba(44, 62, 80, 0.2);
}

/* ===================================
   CARD LAYOUTS - FLEXBOX ONLY
   =================================== */
.benefits-grid,
.services-grid,
.testimonials-grid,
.values-grid,
.contact-grid,
.expertise-grid,
.pillars-grid,
.principles-grid,
.process-steps,
.suggestions-grid,
.steps-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 40px;
}

.benefit-card,
.service-card,
.testimonial-card,
.value-card,
.contact-card,
.expertise-card,
.pillar,
.principle-card,
.step,
.suggestion,
.project-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  background-color: #FFFFFF;
  border: 1px solid #D4C5B9;
  border-radius: 4px;
  padding: 32px;
  margin-bottom: 24px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(44, 62, 80, 0.06);
}

.benefit-card:hover,
.service-card:hover,
.value-card:hover,
.contact-card:hover,
.expertise-card:hover,
.pillar:hover,
.principle-card:hover,
.suggestion:hover,
.project-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(44, 62, 80, 0.12);
  border-color: #E8C547;
}

.service-card h3,
.benefit-card h3,
.value-card h3,
.contact-card h3,
.expertise-card h4,
.pillar h4,
.principle-card h3,
.project-card h3 {
  color: #2C3E50;
  margin-bottom: 16px;
  font-size: 20px;
}

.service-card p,
.benefit-card p,
.value-card p,
.contact-card p,
.pillar p,
.principle-card p,
.project-card p {
  color: #6B7C8F;
  font-size: 15px;
  line-height: 1.7;
}

.price {
  display: block;
  font-size: 18px;
  font-weight: 600;
  color: #E8C547;
  margin-top: 16px;
  font-family: 'Garamond', 'Georgia', serif;
}

.category {
  display: inline-block;
  font-size: 13px;
  color: #95A5A6;
  background-color: #F8F6F3;
  padding: 6px 12px;
  border-radius: 3px;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ===================================
   TESTIMONIALS - HIGH CONTRAST
   =================================== */
.testimonials {
  background-color: #F8F6F3;
  padding: 60px 20px;
  margin-bottom: 60px;
  border-top: 1px solid #D4C5B9;
  border-bottom: 1px solid #D4C5B9;
}

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

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

.testimonial-card cite {
  display: block;
  font-style: normal;
  font-weight: 600;
  color: #2C3E50;
  font-size: 14px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #E8E4DF;
}

/* ===================================
   SERVICE DETAIL PAGES
   =================================== */
.service-detail {
  background-color: #FFFFFF;
  border: 1px solid #D4C5B9;
  border-radius: 4px;
  padding: 40px;
  margin-bottom: 32px;
  box-shadow: 0 2px 8px rgba(44, 62, 80, 0.06);
}

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

.service-detail p {
  color: #6B7C8F;
  margin-bottom: 20px;
}

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

.service-detail li {
  color: #6B7C8F;
  margin-bottom: 12px;
  line-height: 1.7;
}

.service-detail .btn {
  margin-top: 24px;
}

/* ===================================
   CTA SECTIONS - ELEGANT FOCAL POINT
   =================================== */
.cta-section {
  background: linear-gradient(135deg, #2C3E50 0%, #34495E 100%);
  color: #FFFFFF;
  text-align: center;
  padding: 60px 20px;
  margin: 60px 0;
  border-radius: 4px;
}

.cta-section h2 {
  color: #FFFFFF;
  font-size: 36px;
  margin-bottom: 20px;
}

.cta-section p {
  color: #ECF0F1;
  font-size: 18px;
  margin-bottom: 32px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-section .btn-primary {
  background-color: #E8C547;
  border-color: #E8C547;
  color: #2C3E50;
}

.cta-section .btn-primary:hover {
  background-color: #FFFFFF;
  border-color: #FFFFFF;
  color: #2C3E50;
}

.availability {
  font-size: 14px;
  color: #ECF0F1;
  margin-top: 24px;
  font-style: italic;
}

/* ===================================
   TIMELINE & MILESTONES
   =================================== */
.timeline {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 40px;
  padding: 32px;
  background-color: #FFFFFF;
  border-left: 3px solid #E8C547;
  border-radius: 4px;
}

.milestone {
  padding: 16px;
  background-color: #F8F6F3;
  border-radius: 3px;
  font-size: 15px;
  color: #2C3E50;
  transition: all 0.3s ease;
}

.milestone:hover {
  background-color: #E8C547;
  color: #2C3E50;
  transform: translateX(8px);
}

.milestone strong {
  display: block;
  font-size: 16px;
  margin-bottom: 4px;
  color: #2C3E50;
}

/* ===================================
   LEGAL CONTENT PAGES
   =================================== */
.legal-content {
  background-color: #FFFFFF;
  padding: 60px 40px;
  border-radius: 4px;
  border: 1px solid #D4C5B9;
  margin: 40px auto;
  max-width: 900px;
}

.legal-content h2 {
  color: #2C3E50;
  font-size: 28px;
  margin-top: 40px;
  margin-bottom: 20px;
  padding-top: 32px;
  border-top: 1px solid #E8E4DF;
}

.legal-content h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.legal-content h3 {
  color: #2C3E50;
  font-size: 20px;
  margin-top: 24px;
  margin-bottom: 12px;
}

.legal-content p {
  color: #6B7C8F;
  margin-bottom: 16px;
  line-height: 1.8;
}

.legal-content ul,
.legal-content ol {
  margin: 20px 0;
  padding-left: 32px;
}

.legal-content li {
  color: #6B7C8F;
  margin-bottom: 10px;
  line-height: 1.7;
}

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

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

/* ===================================
   CONTACT FORMS & INFO
   =================================== */
.contact-form-section {
  background-color: #FFFFFF;
  padding: 60px 40px;
  border-radius: 4px;
  border: 1px solid #D4C5B9;
  margin: 40px 0;
}

.form-note {
  background-color: #F8F6F3;
  border-left: 4px solid #E8C547;
  padding: 24px;
  border-radius: 4px;
  margin-top: 32px;
}

.form-note p {
  color: #6B7C8F;
  font-size: 15px;
}

.form-note a {
  color: #E8C547;
  font-weight: 600;
}

.form-note a:hover {
  color: #2C3E50;
}

.office-info {
  background-color: #F8F6F3;
  padding: 60px 20px;
  border-top: 1px solid #D4C5B9;
}

.office-info p {
  margin-bottom: 20px;
  color: #6B7C8F;
}

.office-info strong {
  display: block;
  color: #2C3E50;
  margin-bottom: 8px;
  font-size: 16px;
}

/* ===================================
   THANK YOU / CONFIRMATION PAGES
   =================================== */
.confirmation {
  background-color: #E8F8E8;
  border: 1px solid #A8D5A8;
  border-radius: 4px;
  padding: 20px;
  margin-top: 24px;
  color: #2C5E2C;
  font-weight: 600;
  text-align: center;
}

.next-steps,
.explore-more,
.consultation-process {
  padding: 60px 20px;
  margin: 40px 0;
}

/* ===================================
   FOOTER - REFINED & ELEGANT
   =================================== */
.site-footer {
  background-color: #2C3E50;
  color: #ECF0F1;
  padding: 60px 20px 32px;
  border-top: 3px solid #E8C547;
  margin-top: 80px;
}

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

.footer-info,
.footer-nav,
.footer-legal {
  flex: 1 1 250px;
}

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

.footer-info p,
.footer-nav a,
.footer-legal a {
  color: #BDC3C7;
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 8px;
}

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

.footer-nav h4,
.footer-legal h4 {
  color: #FFFFFF;
  font-size: 16px;
  margin-bottom: 16px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.footer-nav a:hover,
.footer-legal a:hover,
.footer-info a:hover {
  color: #E8C547;
}

.copyright {
  text-align: center;
  color: #95A5A6;
  font-size: 13px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* ===================================
   COOKIE CONSENT BANNER
   =================================== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #2C3E50;
  color: #FFFFFF;
  padding: 24px 20px;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.15);
  z-index: 999;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  border-top: 2px solid #E8C547;
}

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

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

.cookie-banner p {
  flex: 1 1 300px;
  font-size: 14px;
  color: #ECF0F1;
  margin: 0;
}

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

.cookie-banner .btn {
  padding: 10px 20px;
  font-size: 14px;
  white-space: nowrap;
}

.cookie-settings-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(44, 62, 80, 0.9);
  z-index: 1001;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

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

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

.cookie-modal-content h2 {
  color: #2C3E50;
  margin-bottom: 24px;
}

.cookie-category {
  padding: 20px;
  background-color: #F8F6F3;
  border-radius: 4px;
  margin-bottom: 16px;
  border: 1px solid #D4C5B9;
}

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

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

.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 {
  color: #2C3E50;
  cursor: pointer;
  font-size: 14px;
}

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

/* ===================================
   RESPONSIVE DESIGN - MOBILE FIRST
   =================================== */
@media (max-width: 768px) {
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  .hero {
    padding: 60px 20px;
  }
  
  .hero h1 {
    font-size: 32px;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  
  .btn {
    width: 100%;
  }
  
  .benefit-card,
  .service-card,
  .testimonial-card,
  .value-card,
  .contact-card,
  .expertise-card,
  .pillar,
  .principle-card,
  .step,
  .suggestion,
  .project-card {
    flex: 1 1 100%;
  }
  
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  .cookie-banner-content {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .cookie-banner-buttons {
    width: 100%;
  }
  
  .cookie-banner-buttons .btn {
    flex: 1;
  }
  
  .service-detail {
    padding: 24px;
  }
  
  .legal-content {
    padding: 32px 20px;
  }
  
  section {
    padding: 32px 16px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .benefit-card,
  .service-card,
  .value-card,
  .expertise-card,
  .pillar,
  .principle-card,
  .project-card {
    flex: 1 1 calc(50% - 24px);
  }
  
  .testimonial-card {
    flex: 1 1 calc(50% - 24px);
  }
}

/* ===================================
   ANIMATIONS & TRANSITIONS
   =================================== */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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

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

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

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

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

/* ===================================
   PRINT STYLES
   =================================== */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cookie-settings-modal,
  .cta-section {
    display: none;
  }
  
  body {
    background-color: #FFFFFF;
  }
  
  .site-header {
    position: static;
    box-shadow: none;
  }
}