/* =========================================
   NOTE: Header, Hero, Animations, and Floating CTA
   styles are now inlined in <head> for critical CSS.
   This file contains only below-the-fold styles.
   ========================================= */

/* --- Basic Reset (fallback) --- */
* { margin: 0; padding: 0; box-sizing: border-box; }

html, body {
  width: 100%;
  /* Εφαρμογή System Fonts */
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background-color: #f6f4f0;
  overflow-x: hidden;
  color: #111;
  scroll-behavior: smooth;
}

/* =========================================
   General Typography & Utilities
   ========================================= */
.section-title {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: 28px;
  line-height: 1.1;
  text-align: center;
  color: #111;
  margin: 0 0 25px 0;
}

/* =========================================
   WHY CHOOSE US (Section 2)
   ========================================= */
.why {
  background: transparent !important;
  position: relative;
  z-index: 20;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 40px 16px;
}

.why-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.why-item {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background: #111;
  box-shadow: 0 10px 28px rgba(0,0,0,0.12);
  transform: translateZ(0);
}

.why-media {
  width: 100%;
  aspect-ratio: 16 / 10;
  position: relative;
}
.why-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.9) contrast(1.05);
}

.why-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.72), rgba(0,0,0,0.08) 55%, rgba(0,0,0,0.0));
  pointer-events: none;
}

.why-copy {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  color: rgba(255,255,255,0.92);
  text-align: center;
}

.why-copy h3 {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.2px;
  margin-bottom: 6px;
}
.why-copy p {
  font-size: 13px;
  line-height: 1.35;
  color: rgba(255,255,255,0.82);
}

.why-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  margin: 0 auto 10px auto;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.16);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.18);
}
.why-icon .svg-icon { font-size: 18px; color: rgba(255,255,255,0.92); width: 18px; height: 18px; }

/* =========================================
   TRANSFERS & FLEET (Section 3)
   ========================================= */
.fleet {
  background: transparent;
  padding-bottom: 40px;
}

.fleet-container {
}

.fleet-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.fleet-image-wrapper {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 24px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.fleet-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.fleet-subtitle {
  font-size: 20px;
  font-weight: 700;
  color: #111;
  margin-bottom: 8px;
}

.fleet-highlight {
  font-size: 16px;
  font-weight: 600;
  color: #444;
  margin-bottom: 18px;
}

.capacity-lines {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 18px;
  width: 100%;
  max-width: 420px;
  margin: 0 auto 26px auto;
}

.cap-item {
  font-size: 14px;
  font-weight: 600;
  color: #2a2a2a;
  letter-spacing: 0.1px;
  line-height: 1.25;
}

.cap-label { font-weight: 700; }
.cap-meta { font-weight: 600; color: #555; }

.fleet-features {
  display: flex;
  justify-content: space-around;
  width: 100%;
  max-width: 450px;
  margin: 0 auto;
  gap: 15px;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  font-size: 13px;
  color: #333;
  line-height: 1.3;
  font-weight: 500;
}

.feature-item span {
  display: block;
  text-align: center;
  width: 100%;
}

.feature-item .svg-icon {
  width: 24px;
  height: 24px;
  color: #a68a6d;
  margin-bottom: 10px;
}

/* Shared utility */
.email-bg { background-color: #a68a6d; color: #fff; border: none; }

/* =========================================
   DESTINATIONS / ROUTES (Section 4)
   ========================================= */
.destinations {
  background: transparent;
  padding-bottom: 60px;
}

.dest-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 850px;
  margin: 0 auto;
}

.dest-card {
  display: flex;
  flex-direction: row;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.dest-media {
  width: 38%;
  flex-shrink: 0;
  min-height: 140px;
  display: flex;
}

.dest-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.dest-info {
  width: 62%;
  padding: 15px 12px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.dest-name {
  font-size: 16px;
  font-weight: 700;
  color: #111;
  margin-bottom: 6px;
  line-height: 1.2;
}

.dest-desc {
  font-size: 12px;
  color: #444;
  line-height: 1.3;
  margin-bottom: 12px;
}

.dest-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 11px;
  font-weight: 600;
  color: #555;
  margin-bottom: 14px;
}

.dest-meta span {
  display: flex;
  align-items: center;
  gap: 4px;
}

.dest-meta .svg-icon {
  color: #a68a6d;
  width: 13px;
  height: 13px;
}

.dest-btn {
  display: block;
  text-align: center;
  background: #1A365D; /* Changed to solid navy blue */
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 13px;
  padding: 10px;
  border-radius: 30px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.dest-btn:active { transform: scale(0.98); }

/* =========================================
   PRICING SECTION
   ========================================= */
.pricing-section {
  background: transparent;
  padding: 20px 0 60px 0;
}

.pricing-subtitle {
  font-size: 16px;
  color: #444;
  text-align: center;
  margin-top: -15px;
  margin-bottom: 35px;
  font-weight: 500;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.price-table-container {
  background: #fdfbf8;
  border-radius: 16px;
  padding: 25px;
  border: 1px solid rgba(0,0,0,0.05);
  box-shadow: 0 4px 20px rgba(0,0,0,0.03);
  height: 100%;
}

.price-table-title {
  font-family: "Playfair Display", serif;
  font-size: 20px;
  color: #1a1a1a;
  margin-bottom: 16px;
  border-bottom: 2px solid #a68a6d;
  display: inline-block;
  padding-bottom: 6px;
}

.price-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.price-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px dashed rgba(0,0,0,0.1);
  font-size: 14px;
  color: #444;
}

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

.price-list li span:first-child {
  font-weight: 600;
  color: #111;
  padding-right: 15px;
}

.price-list li span:last-child {
  text-align: right;
  font-weight: 700;
  color: #a68a6d;
}

.price-list li em {
  font-size: 12px;
  color: #777;
  font-style: normal;
  font-weight: 400;
}

/* =========================================
   ABOUT SECTION
   ========================================= */
.about {
  background: transparent;
  padding-top: 60px;
  padding-bottom: 60px;
}

.about-container { max-width: 850px; margin: 0 auto; }

.about-subtitle {
  font-size: 16px;
  color: #111;
  text-align: center;
  margin-top: -15px;
  margin-bottom: 35px;
  font-weight: 500;
}

.about-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.about-image-wrapper { margin-bottom: 25px; }

.about-image {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  border: 3px solid #fff;
}

.about-text {
  text-align: center;
  color: #222;
  font-size: 15px;
  line-height: 1.6;
  max-width: 700px;
}

.about-text p { margin-bottom: 20px; }

.about-signature {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-size: 24px;
  color: #a68a6d;
  margin-top: 30px;
  font-weight: 600;
}

/* =========================================
   TESTIMONIALS
   ========================================= */
.testimonials {
  background: transparent;
  padding-bottom: 60px;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 30px;
}

.testimonials-subtitle {
  font-size: 16px;
  color: #111;
  margin-top: -15px;
  margin-bottom: 25px;
  font-weight: 500;
}

.overall-rating {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.rating-number {
  /* Εφαρμογή System Fonts */
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: #a68a6d;
  line-height: 1;
}

.rating-stars {
  color: #f4b400; /* Changed to uniform yellow */
  font-size: 24px;
  letter-spacing: 2px;
  display: flex;
  gap: 4px;
}

.rating-stars .svg-icon {
  width: 24px;
  height: 24px;
}

.rating-source {
  font-size: 14px;
  color: #333;
  font-weight: 500;
  margin-top: 5px;
}

.testimonials-slider {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 10px 0 20px 0;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.testimonials-slider::-webkit-scrollbar { display: none; }

.test-card {
  background: #fdfbf8;
  border-radius: 18px;
  padding: 25px 20px;
  min-width: 88%;
  max-width: 320px;
  min-height: 250px;
  scroll-snap-align: center;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(0,0,0,0.03);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.quote-icon {
  color: #a68a6d;
  line-height: 1;
  margin-bottom: -5px;
}

.quote-icon .svg-icon {
  width: 32px;
  height: 32px;
}

.card-stars {
  color: #f4b400; /* Changed to uniform yellow */
  font-size: 14px;
  letter-spacing: 1px;
  display: flex;
  gap: 2px;
}

.card-stars .svg-icon {
  width: 14px;
  height: 14px;
}

.test-text {
  font-size: 14px;
  line-height: 1.5;
  color: #222;
  font-weight: 500;
  flex-grow: 1;
  font-style: italic;
}

.test-author {
  font-size: 14px;
  color: #111;
  margin-top: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.test-author strong { font-weight: 700; }
.fb-color { color: #1877F2; }
.test-author .svg-icon { width: 16px; height: 16px; }

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 10px;
}

.slider-dots .dot {
  width: 8px;
  height: 8px;
  background: #d4c5b5;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.slider-dots .dot.active {
  background: #a68a6d;
  width: 24px;
  border-radius: 10px;
}

/* =========================================
   FAQ SECTION
   ========================================= */
.faq-section {
  background: transparent;
  padding-bottom: 70px;
}

.faq-container { max-width: 800px; margin: 0 auto; }

.faq-subtitle {
  font-size: 16px;
  color: #111;
  text-align: center;
  margin-top: -15px;
  margin-bottom: 35px;
  font-weight: 500;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 3px 12px rgba(0,0,0,0.04);
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.faq-item:hover { box-shadow: 0 6px 18px rgba(0,0,0,0.08); }

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  color: #111;
  font-family: inherit;
}

.faq-q-text {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.3;
  padding-right: 15px;
}

.faq-icon {
  color: #a68a6d;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
}

.faq-answer-wrapper {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
}

.faq-answer-wrapper > div { overflow: hidden; }

.faq-answer {
  padding: 0 20px;
  font-size: 14px;
  line-height: 1.5;
  color: #444;
}

.faq-item.active .faq-icon { transform: rotate(180deg); }
.faq-item.active .faq-answer-wrapper { grid-template-rows: 1fr; }
.faq-item.active .faq-answer { padding-bottom: 20px; }

/* =========================================
   CONTACT FORM SECTION
   ========================================= */
.contact-form-section {
  background: transparent;
  padding-bottom: 70px;
}

.contact-container {
  max-width: 800px;
  margin: 0 auto;
}

.contact-subtitle {
  font-size: 16px;
  color: #444;
  text-align: center;
  margin-top: -15px;
  margin-bottom: 35px;
  font-weight: 500;
}

.contact-wrapper {
  background: #ffffff;
  border-radius: 20px;
  padding: 45px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  border: 1px solid rgba(0,0,0,0.06);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 14px;
  font-weight: 600;
  color: #111;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 10px;
  background: #fff;
  font-family: inherit;
  font-size: 15px;
  color: #111;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #aaa;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #a68a6d;
  box-shadow: 0 0 0 3px rgba(166, 138, 109, 0.15);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.submit-btn {
  margin-top: 10px;
  border: none;
  cursor: pointer;
  background-color: #1A365D;
  color: #fff;
  align-self: center;
  width: auto;
  min-width: 240px;
  font-family: inherit;
}

/* =========================================
   FOOTER
   ========================================= */
.main-footer {
  background: #1a1a1a;
  color: #f6f4f0;
  padding: 60px 16px 30px 16px;
}

.footer-container { max-width: 1120px; margin: 0 auto; }

.footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand h3 {
  font-family: "Playfair Display", serif;
  font-size: 22px;
  margin-bottom: 12px;
  color: #fff;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.6;
  color: #bbb;
  max-width: 300px;
}

.footer-links-group h4,
.footer-contact h4 {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

.footer-nav a {
  color: #bbb;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s ease;
}

.footer-nav a:hover { color: #a68a6d; }

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-link {
  color: #bbb;
  text-decoration: none;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: color 0.2s ease;
}

.contact-link .svg-icon { width: 18px; height: 18px; }
.contact-link:hover { color: #fff; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 25px;
  font-size: 13px;
  color: #888;
}

/* Desktop fixed back-to-top */
.desktop-back-to-top {
  display: none;
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 1100;
  width: 44px;
  height: 44px;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.12);
  border-radius: 50%;
  place-items: center;
  color: #2c3632;
  text-decoration: none;
  box-shadow: 0 5px 18px rgba(0,0,0,0.12);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.3s ease, transform 0.3s ease, background 0.2s ease;
}
.desktop-back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.desktop-back-to-top:hover { background: #a68a6d; color: #fff; border-color: #a68a6d; }

/* Mobile scroll-top button inside floating-cta */
.floating-scroll-top {
  background: rgba(44, 54, 50, 0.85);
  color: #fff;
  border-color: rgba(255,255,255,0.15) !important;
}
.floating-scroll-top:hover { background: #a68a6d; }

/* =========================================
   SOCIAL PROOF STRIP
   ========================================= */
.social-proof-strip {
  background: #fff;
  border-top: 1px solid rgba(0,0,0,0.05);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  padding: 20px 0;
  margin: 30px 0;
}

.proof-inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  text-align: center;
}

.proof-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.proof-stars .svg-icon {
  width: 14px;
  height: 14px;
  color: #f5a623;
}

.proof-quote {
  font-size: 13px;
  color: #444;
  font-style: italic;
  margin: 0;
  line-height: 1.4;
}

.proof-author {
  font-size: 12px;
  font-weight: 600;
  color: #888;
}

.proof-divider {
  width: 40px;
  height: 1px;
  background: rgba(0,0,0,0.1);
}

/* =========================================
   FLEET NOTE
   ========================================= */
.fleet-note {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
  margin-top: 20px;
  padding: 16px 20px;
  background: rgba(166, 138, 109, 0.08);
  border-left: 3px solid #a68a6d;
  border-radius: 0 8px 8px 0;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

/* =========================================
   Desktop & Tablet (min-width: 768px)
   ========================================= */
@media (min-width: 768px) {

  .section-title { font-size: 52px; margin: 10px 0 40px 0; }

  /* SOCIAL PROOF STRIP - DESKTOP */
  .social-proof-strip { margin: 0; }
  .proof-inner {
    flex-direction: row;
    justify-content: center;
    gap: 0;
  }
  .proof-item {
    flex: 1;
    max-width: 320px;
    padding: 0 30px;
  }
  .proof-divider {
    width: 1px;
    height: 50px;
    align-self: center;
  }
  .proof-quote { font-size: 14px; }

  /* FLEET NOTE - DESKTOP */
  .fleet-note { font-size: 15px; }

  /* WHY CHOOSE US - DESKTOP */
  .why { margin-top: 0 !important; padding-top: 0 !important; }
  .why .container { max-width: 1060px; padding-top: 15px; }
  .why-list { gap: 26px; }

  .why-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    min-height: 220px;
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  }
  .why-media { aspect-ratio: auto; height: 100%; }
  .why-media::after { display: none; }

  .why-copy {
    position: relative;
    inset: auto;
    padding: 32px 36px;
    text-align: left;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .why-copy h3 { font-size: 24px; color: #1a1a1a; margin-bottom: 12px; }
  .why-copy p { font-size: 17px; line-height: 1.6; color: #444; }

  .why-icon {
    width: 52px; height: 52px;
    margin: 0 0 16px 0;
    background: rgba(26,26,26,0.04);
    border-radius: 14px;
    box-shadow: none;
    border: none;
    backdrop-filter: none;
  }
  .why-icon .svg-icon { color: #1a1a1a; width: 22px; height: 22px; }

  .why-item:nth-child(even) { grid-template-columns: 1fr 1fr; }
  .why-item:nth-child(even) .why-media { order: 2; }
  .why-item:nth-child(even) .why-copy { order: 1; }

  /* FLEET / TRANSFERS - DESKTOP */
  .fleet { padding-bottom: 80px; }
  .fleet-subtitle { font-size: 24px; margin-bottom: 12px; }
  .fleet-highlight { font-size: 18px; margin-bottom: 22px; }

  .capacity-lines {
    max-width: 520px;
    gap: 12px 28px;
    margin-bottom: 34px;
  }
  .cap-item { font-size: 16px; }

  .fleet-features { max-width: 600px; gap: 30px; }
  .feature-item { font-size: 15px; }
  .feature-item .svg-icon { width: 32px; height: 32px; margin-bottom: 12px; }

  .desktop-back-to-top { display: grid; }

  /* ROUTES / DESTINATIONS - DESKTOP */
  .dest-card { border-radius: 20px; }
  .dest-media { width: 35%; min-height: 220px; }
  .dest-info { width: 65%; padding: 30px; }
  .dest-name { font-size: 22px; margin-bottom: 8px; }
  .dest-name span { font-size: 15px !important; }
  .dest-desc { font-size: 15px; margin-bottom: 20px; line-height: 1.5; }
  .dest-meta { font-size: 14px; gap: 20px; margin-bottom: 25px; }
  .dest-meta .svg-icon { width: 16px; height: 16px; }
  .dest-btn { font-size: 15px; padding: 12px 25px; max-width: 200px; }
  .dest-btn:hover { transform: translateY(-3px); box-shadow: 0 6px 15px rgba(26, 54, 93, 0.4); } /* Updated shadow to match blue */

  /* PRICING - DESKTOP */
  .pricing-section { padding: 40px 0 80px 0; }
  .pricing-grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
  .price-table-container { padding: 30px; }
  .price-table-title { font-size: 22px; }
  .price-list li { font-size: 15px; padding: 14px 0; }
  .price-list li em { font-size: 13px; }

  /* ABOUT - DESKTOP */
  .about-subtitle { font-size: 18px; margin-bottom: 40px; }
  .about-image { width: 160px; height: 160px; }
  .about-text { font-size: 17px; max-width: 780px; }
  .about-signature { font-size: 28px; }

  /* TESTIMONIALS - DESKTOP */
  .rating-number { font-size: 56px; }

  .testimonials-slider {
    justify-content: center;
    overflow-x: visible;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 20px;
  }

  .test-card {
    min-width: 320px;
    max-width: 340px;
  }

  .slider-dots { display: none; }

  /* FAQ - DESKTOP */
  .faq-q-text { font-size: 17px; }
  .faq-answer { font-size: 15px; }
  .faq-question { padding: 25px; }
  .faq-answer { padding: 0 25px; }
  .faq-item.active .faq-answer { padding-bottom: 25px; }
  
  /* CONTACT FORM - DESKTOP */
  .contact-wrapper {
    padding: 45px;
  }
  
  .form-row {
    gap: 20px;
  }
  
  .submit-btn {
    align-self: flex-end;
    width: auto;
    min-width: 240px;
  }

  /* FOOTER - DESKTOP */
  .footer-top {
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
  }
}