/* ===== Reset & Base ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --brand: #6BBF9E;
  --brand-dark: #4FA882;
  --brand-light: #e8f5ef;
  --text: #2d2d2d;
  --text-light: #555;
  --text-muted: #888;
  --bg: #fff;
  --bg-light: #f9fafb;
  --border: #e5e7eb;
  --shadow: 0 2px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.1);
  --radius: 12px;
  --max-width: 1200px;
  --font: 'Segoe UI', system-ui, -apple-system, sans-serif;
  --font-serif: Georgia, 'Times New Roman', serif;
}

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

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--brand-dark);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: var(--brand);
}

h1, h2, h3, h4 {
  line-height: 1.3;
  color: var(--text);
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ===== Skip Link ===== */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--brand);
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 0 0 var(--radius) var(--radius);
  z-index: 9999;
  font-weight: 600;
}

.skip-link:focus {
  top: 0;
  color: #fff;
}

/* ===== Header / Nav ===== */
.site-header {
  position: sticky;
  top: 0;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
  padding: 0.75rem 0;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  color: var(--text);
  font-size: 1.1rem;
  white-space: nowrap;
}

.logo-link img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.logo-link span {
  color: var(--brand-dark);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  margin: 5px 0;
  transition: all 0.3s;
  border-radius: 2px;
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.main-nav a {
  padding: 0.5rem 1rem;
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 500;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--brand-dark);
  background: var(--brand-light);
}

.nav-cta {
  background: var(--brand) !important;
  color: #fff !important;
  font-weight: 600 !important;
  padding: 0.5rem 1.25rem !important;
}

.nav-cta:hover {
  background: var(--brand-dark) !important;
}

/* Services dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  min-width: 260px;
  padding: 0.5rem;
  z-index: 100;
}

.nav-dropdown:hover .nav-dropdown-content,
.nav-dropdown:focus-within .nav-dropdown-content {
  display: block;
}

.nav-dropdown-content a {
  display: block;
  padding: 0.6rem 1rem;
  border-radius: 8px;
  font-size: 0.9rem;
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--brand-light) 0%, #fff 50%);
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.hero-content {
  max-width: 560px;
}

.hero-badge {
  display: inline-block;
  background: var(--brand-light);
  color: var(--brand-dark);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  margin-bottom: 0.5rem;
  line-height: 1.15;
}

.hero h1 .brand-text {
  color: var(--brand-dark);
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 2rem;
  font-weight: 400;
}

.hero-image {
  position: relative;
}

.hero-image img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
}

.btn-primary {
  background: var(--brand);
  color: #fff;
}

.btn-primary:hover {
  background: var(--brand-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(107,191,158,0.4);
}

.btn-outline {
  background: transparent;
  color: var(--brand-dark);
  border: 2px solid var(--brand);
}

.btn-outline:hover {
  background: var(--brand);
  color: #fff;
}

.btn-white {
  background: #fff;
  color: var(--brand-dark);
}

.btn-white:hover {
  background: var(--brand-light);
  color: var(--brand-dark);
}

.btn-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ===== Sections ===== */
.section {
  padding: 5rem 0;
}

.section-alt {
  background: var(--bg-light);
}

.section-brand {
  background: var(--brand);
  color: #fff;
}

.section-brand h2,
.section-brand h3 {
  color: #fff;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
}

.section-header h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  margin-bottom: 1rem;
}

.section-header p {
  color: var(--text-light);
  font-size: 1.1rem;
}

/* ===== Help Cards (6 cards grid) ===== */
.help-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.help-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 2rem;
  border: 1px solid var(--border);
  transition: transform 0.3s, box-shadow 0.3s;
}

.help-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.help-card-icon {
  width: 56px;
  height: 56px;
  background: var(--brand-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.help-card-icon img {
  width: 32px;
  height: 32px;
}

.help-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  color: var(--brand-dark);
}

.help-card p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ===== About Preview ===== */
.about-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-image {
  position: relative;
}

.about-image img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  width: 100%;
}

.about-image::after {
  content: '';
  position: absolute;
  bottom: -1rem;
  right: -1rem;
  width: 60%;
  height: 60%;
  background: var(--brand-light);
  border-radius: var(--radius);
  z-index: -1;
}

.about-text h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.about-text p {
  margin-bottom: 1rem;
  color: var(--text-light);
  font-size: 1.05rem;
}

.about-text .btn {
  margin-top: 1rem;
}

/* ===== Quotes Carousel ===== */
.quotes-section {
  background: var(--brand);
  color: #fff;
  padding: 4rem 0;
  overflow: hidden;
}

.quotes-track {
  display: flex;
  gap: 2rem;
  animation: scroll-quotes 30s linear infinite;
}

.quote-card {
  flex: 0 0 400px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(4px);
  border-radius: var(--radius);
  padding: 2rem;
  border: 1px solid rgba(255,255,255,0.2);
}

.quote-card blockquote {
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.quote-card cite {
  font-style: normal;
  font-weight: 600;
  font-size: 0.9rem;
  opacity: 0.9;
}

@keyframes scroll-quotes {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== Services Cards ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.service-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.service-card-img {
  height: 220px;
  overflow: hidden;
}

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.service-card:hover .service-card-img img {
  transform: scale(1.05);
}

.service-card-body {
  padding: 1.75rem;
}

.service-card-body h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.service-card-body p {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
}

.service-card-body .btn {
  font-size: 0.9rem;
  padding: 0.6rem 1.5rem;
}

/* ===== Testimonials ===== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testimonial-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 2rem;
  border: 1px solid var(--border);
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  font-size: 4rem;
  color: var(--brand-light);
  position: absolute;
  top: 0.5rem;
  left: 1.25rem;
  font-family: var(--font-serif);
  line-height: 1;
}

.testimonial-card p {
  font-size: 0.95rem;
  color: var(--text-light);
  margin-bottom: 1.25rem;
  padding-top: 1.5rem;
  line-height: 1.7;
}

.testimonial-author {
  font-weight: 700;
  color: var(--brand-dark);
  font-size: 0.9rem;
}

/* ===== Contact Section ===== */
.contact-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-info h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-icon {
  width: 44px;
  height: 44px;
  background: var(--brand-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--brand-dark);
  font-size: 1.1rem;
}

.contact-detail h4 {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}

.contact-detail a,
.contact-detail p {
  color: var(--text);
  font-size: 1rem;
}

.contact-form {
  background: #fff;
  border-radius: var(--radius);
  padding: 2.5rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
  color: var(--text);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: var(--font);
  font-size: 1rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  background: var(--bg-light);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(107,191,158,0.15);
}

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

.form-privacy {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  font-size: 0.85rem;
  color: var(--text-light);
}

.form-privacy input[type="checkbox"] {
  margin-top: 0.25rem;
  accent-color: var(--brand);
}

/* ===== Footer ===== */
.site-footer {
  background: var(--bg-light);
  border-top: 1px solid var(--border);
  padding: 2rem 0;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-links a:hover {
  color: var(--brand-dark);
}

.footer-copy {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.footer-social a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--border);
  border-radius: 50%;
  color: var(--text-light);
  font-size: 0.9rem;
  transition: background 0.2s, color 0.2s;
}

.footer-social a:hover {
  background: var(--brand);
  color: #fff;
}

.footer-eu {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  margin-top: 1rem;
}

.footer-eu p {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 1rem;
}

.footer-eu-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
}

.footer-eu img {
  height: 48px;
  width: auto;
}

/* ===== Service Pages (inner) ===== */
.page-hero {
  background: linear-gradient(135deg, var(--brand-light) 0%, #fff 70%);
  padding: 4rem 0;
}

.page-hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.page-hero h1 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  margin-bottom: 0.75rem;
  color: var(--brand-dark);
}

.page-hero h2 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-light);
  font-style: italic;
  margin-bottom: 1.5rem;
}

.page-hero p {
  color: var(--text-light);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.page-hero-image img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

/* ===== About Page ===== */
.about-full {
  max-width: 800px;
  margin: 0 auto;
}

.about-full h1 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: var(--brand-dark);
  margin-bottom: 2rem;
  text-align: center;
}

.about-full p {
  margin-bottom: 1.25rem;
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.8;
}

.about-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin: 3rem 0;
}

.about-photos img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  width: 100%;
  height: 400px;
  object-fit: cover;
}

/* ===== Legal Pages ===== */
.legal-page {
  max-width: 800px;
  margin: 0 auto;
  padding: 3rem 1.5rem 5rem;
}

.legal-page h1 {
  font-size: 2rem;
  color: var(--brand-dark);
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--brand-light);
}

.legal-page h2 {
  font-size: 1.3rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: var(--text);
}

.legal-page h3 {
  font-size: 1.1rem;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.legal-page p {
  margin-bottom: 1rem;
  color: var(--text-light);
  line-height: 1.8;
  font-size: 0.95rem;
}

.legal-page ul, .legal-page ol {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

.legal-page li {
  margin-bottom: 0.5rem;
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.7;
}

.legal-page table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 0.9rem;
}

.legal-page th,
.legal-page td {
  text-align: left;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
}

.legal-page th {
  background: var(--brand-light);
  color: var(--brand-dark);
  font-weight: 600;
}

.legal-page td {
  color: var(--text-light);
}

/* ===== CTA Banner ===== */
.cta-banner {
  background: var(--brand);
  color: #fff;
  text-align: center;
  padding: 4rem 0;
}

.cta-banner h2 {
  font-size: 2rem;
  color: #fff;
  margin-bottom: 1.5rem;
}

/* ===== Mobile Responsive ===== */
@media (max-width: 1024px) {
  .help-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: #fff;
    flex-direction: column;
    padding: 5rem 1.5rem 2rem;
    gap: 0.25rem;
    transition: right 0.3s ease;
    box-shadow: -4px 0 20px rgba(0,0,0,0.1);
    align-items: stretch;
    overflow-y: auto;
  }

  .main-nav.open {
    right: 0;
  }

  .main-nav a {
    padding: 0.75rem 1rem;
    font-size: 1rem;
  }

  .nav-dropdown-content {
    position: static;
    box-shadow: none;
    border: none;
    padding-left: 1rem;
    display: none;
    min-width: unset;
  }

  .nav-dropdown.open .nav-dropdown-content {
    display: block;
  }

  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-image {
    order: -1;
    max-width: 400px;
    margin: 0 auto;
  }

  .btn-group {
    justify-content: center;
  }

  .help-grid {
    grid-template-columns: 1fr;
  }

  .about-preview {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-image {
    max-width: 400px;
    margin: 0 auto;
  }

  .services-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .contact-section {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .page-hero .container {
    grid-template-columns: 1fr;
  }

  .page-hero-image {
    order: -1;
    max-width: 400px;
    margin: 0 auto;
  }

  .about-photos {
    grid-template-columns: 1fr;
  }

  .about-photos img {
    height: 300px;
  }

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

  .footer-links {
    justify-content: center;
  }

  .footer-eu-logos {
    flex-direction: column;
    gap: 1.5rem;
  }

  .quote-card {
    flex: 0 0 300px;
  }

  .section {
    padding: 3rem 0;
  }
}

@media (max-width: 375px) {
  html {
    font-size: 15px;
  }

  .hero h1 {
    font-size: 1.75rem;
  }

  .btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
  }
}

/* ===== Nav overlay ===== */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 999;
}

.nav-overlay.active {
  display: block;
}
