/* ========================================
   CUSTOM PROPERTIES
   ======================================== */

:root {
  --color-primary: #1a2a3a;
  --color-primary-light: #2c3e50;
  --color-accent: #e8712a;
  --color-accent-hover: #cf5f1b;
  --color-bg: #ffffff;
  --color-bg-alt: #f5f6f8;
  --color-bg-dark: #111b26;
  --color-text: #2d2d2d;
  --color-text-light: #5a6a7a;
  --color-text-inverse: #ffffff;
  --color-border: #e0e4e8;

  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Open Sans', sans-serif;

  --max-width: 1140px;
  --header-height: 72px;

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;

  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.12);

  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;

  --color-hero-from: #1a2a3a;
  --color-hero-to: #111b26;
}

/* ========================================
   DARK MODE
   ======================================== */

[data-theme="dark"] {
  --color-primary: #e4e9ef;
  --color-primary-light: #b8c4d0;
  --color-bg: #0f171f;
  --color-bg-alt: #162029;
  --color-bg-dark: #090e14;
  --color-text: #c5cdd6;
  --color-text-light: #8494a7;
  --color-text-inverse: #ffffff;
  --color-border: #253040;

  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.5);

  --color-hero-from: #0f171f;
  --color-hero-to: #090e14;
}

[data-theme="dark"] .header {
  background-color: rgba(15, 23, 31, 0.95);
  border-bottom-color: var(--color-border);
}

[data-theme="dark"] .nav {
  background: var(--color-bg);
  border-bottom-color: var(--color-border);
}

[data-theme="dark"] .hamburger span {
  background-color: var(--color-primary);
}

[data-theme="dark"] .card,
[data-theme="dark"] .value-card,
[data-theme="dark"] .contact-form,
[data-theme="dark"] .testimonial-card {
  background: var(--color-bg-alt);
}


[data-theme="dark"] .form-group input,
[data-theme="dark"] .form-group textarea {
  background: var(--color-bg);
  color: var(--color-text);
  border-color: var(--color-border);
}

[data-theme="dark"] .hero__decoration svg path {
  fill: var(--color-bg);
}


/* ========================================
   THEME TOGGLE
   ======================================== */

.theme-toggle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid var(--color-border);
  cursor: pointer;
  transition: background-color var(--transition-fast), border-color var(--transition-fast);
  flex-shrink: 0;
  order: 10;
  margin-left: 16px;
}

.theme-toggle:hover {
  background: var(--color-bg-alt);
  border-color: var(--color-accent);
}

.theme-toggle svg {
  width: 18px;
  height: 18px;
  stroke: var(--color-text-light);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke var(--transition-fast);
}

.theme-toggle:hover svg {
  stroke: var(--color-accent);
}

.theme-toggle .icon-sun { display: none; }
.theme-toggle .icon-moon { display: block; }

[data-theme="dark"] .theme-toggle .icon-sun { display: block; }
[data-theme="dark"] .theme-toggle .icon-moon { display: none; }

/* ========================================
   RESET & BASE
   ======================================== */

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-text);
  background-color: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* ========================================
   TYPOGRAPHY
   ======================================== */

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
  color: var(--color-primary);
}

h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.35rem); }

p {
  margin-bottom: 1rem;
  color: var(--color-text-light);
}

/* ========================================
   LAYOUT
   ======================================== */

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0;
}

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

.section__header {
  text-align: center;
  margin-bottom: 56px;
}

.section__header h2 {
  margin-bottom: 12px;
}

.section__header p {
  max-width: 560px;
  margin: 0 auto;
  font-size: 1.05rem;
}

.section__label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 8px;
}

/* ========================================
   BUTTONS
   ======================================== */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: background-color var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
}

.btn:hover {
  transform: scale(1.02);
}

.btn--primary {
  background-color: var(--color-accent);
  color: var(--color-text-inverse);
}

.btn--primary:hover {
  background-color: var(--color-accent-hover);
  box-shadow: 0 4px 16px rgba(232, 113, 42, 0.35);
}

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

.btn--outline:hover {
  background-color: var(--color-accent);
  color: var(--color-text-inverse);
}

.btn--white {
  background-color: var(--color-bg);
  color: var(--color-primary);
}

.btn--white:hover {
  background-color: #f0f0f0;
}

.btn--whatsapp {
  background-color: #25d366;
  color: #fff;
}

.btn--whatsapp:hover {
  background-color: #1fb855;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
}

/* ========================================
   HEADER & NAV
   ======================================== */

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition-base), box-shadow var(--transition-base);
}

.header--scrolled {
  border-bottom-color: var(--color-border);
  box-shadow: var(--shadow-sm);
}

.header__inner {
  display: flex;
  align-items: center;
  height: 100%;
}

.logo {
  display: flex;
  align-items: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--color-primary);
  letter-spacing: 0.5px;
  gap: 6px;
}

.logo span {
  color: var(--color-accent);
}

.nav {
  margin-left: auto;
}

.nav__list {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav__link {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-text-light);
  position: relative;
  padding: 4px 0;
  transition: color var(--transition-fast);
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-accent);
  transition: width var(--transition-base);
}

.nav__link:hover,
.nav__link--active {
  color: var(--color-primary);
}

.nav__link:hover::after,
.nav__link--active::after {
  width: 100%;
}

.nav__cta {
  margin-left: 8px;
}


.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--color-primary);
  border-radius: 2px;
  transition: transform var(--transition-base), opacity var(--transition-fast);
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

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

.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ========================================
   HERO
   ======================================== */

.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 92vh;
  padding-top: var(--header-height);
  background: linear-gradient(135deg, var(--color-hero-from) 0%, var(--color-hero-to) 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 70%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(232, 113, 42, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero__content {
  position: relative;
  max-width: 640px;
}

.hero__label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 20px;
}

.hero h1 {
  color: var(--color-text-inverse);
  margin-bottom: 20px;
}

.hero h1 span {
  color: var(--color-accent);
}

.hero p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 36px;
  max-width: 480px;
}

.hero__buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero__decoration {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
}

.hero__decoration svg {
  display: block;
  width: 100%;
  height: auto;
}

/* Page Hero (alt sayfalardaki küçük hero) */

.page-hero {
  padding: 140px 0 60px;
  background: linear-gradient(135deg, var(--color-hero-from) 0%, var(--color-hero-to) 100%);
  text-align: center;
}

.page-hero h1 {
  color: var(--color-text-inverse);
  margin-bottom: 12px;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.1rem;
  max-width: 480px;
  margin: 0 auto;
}

/* ========================================
   CARDS
   ======================================== */

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.card {
  background: var(--color-bg);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  border: 1px solid var(--color-border);
  transition: box-shadow var(--transition-base), transform var(--transition-base);
}

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

.card__icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(232, 113, 42, 0.1), rgba(232, 113, 42, 0.05));
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
}

.card__icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--color-accent);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.card h3 {
  margin-bottom: 10px;
}

.card p {
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* ========================================
   WHY US / FEATURES
   ======================================== */

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 40px;
}

.feature {
  text-align: center;
}

.feature__number {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--color-accent);
  line-height: 1;
  margin-bottom: 8px;
}

.feature h3 {
  margin-bottom: 8px;
}

.feature p {
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* ========================================
   CTA BANNER
   ======================================== */

.cta-banner {
  background: linear-gradient(135deg, var(--color-hero-from) 0%, var(--color-hero-to) 100%);
  padding: 64px 0;
  text-align: center;
}

.cta-banner h2 {
  color: var(--color-text-inverse);
  margin-bottom: 12px;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 1.05rem;
  max-width: 480px;
  margin: 0 auto 28px;
}

.cta-banner .btn {
  margin: 0 8px;
}

/* ========================================
   ABOUT PAGE
   ======================================== */

.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.about-slider {
  border-radius: var(--radius-lg);
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 1px solid var(--color-border);
  position: relative;
}

.about-slider__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.4);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color var(--transition-fast);
}

.about-slider__btn:hover {
  background: rgba(0, 0, 0, 0.65);
}

.about-slider__btn svg {
  width: 20px;
  height: 20px;
  stroke: #fff;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.about-slider__prev { left: 10px; }
.about-slider__next { right: 10px; }

.about-slider__track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.4s ease;
}


.about-slider__slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.about-slider__dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}

.about-slider__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background-color var(--transition-fast), transform var(--transition-fast);
}

.about-slider__dot.active {
  background: var(--color-accent);
  transform: scale(1.3);
}

.about-story__text h2 {
  margin-bottom: 20px;
}

.about-story__text p {
  font-size: 1.02rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.value-card {
  text-align: center;
  padding: 40px 28px;
  background: var(--color-bg);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
}

.value-card__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(232, 113, 42, 0.12), rgba(232, 113, 42, 0.04));
  border-radius: 50%;
}

.value-card__icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--color-accent);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.value-card h3 {
  margin-bottom: 10px;
}

.value-card p {
  font-size: 0.92rem;
  margin-bottom: 0;
}

/* ========================================
   CONTACT PAGE
   ======================================== */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
}

.contact-info__item {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
}

.contact-info__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(232, 113, 42, 0.1), rgba(232, 113, 42, 0.05));
  border-radius: var(--radius-sm);
}

.contact-info__icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--color-accent);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-info__text h4 {
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.contact-info__text p {
  font-size: 0.9rem;
  margin-bottom: 0;
}

.contact-form {
  background: var(--color-bg);
  padding: 36px;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
}

.contact-form h3 {
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-text);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: var(--color-bg);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(232, 113, 42, 0.1);
}

.form-group input:-webkit-autofill,
.form-group input:-webkit-autofill:hover,
.form-group input:-webkit-autofill:focus,
.form-group input:-webkit-autofill:active,
.form-group textarea:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 1000px var(--color-bg) inset !important;
  -webkit-text-fill-color: var(--color-text) !important;
  box-shadow: 0 0 0 1000px var(--color-bg) inset !important;
  caret-color: var(--color-text);
}

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

.form-group input.error,
.form-group textarea.error {
  border-color: #e74c3c;
}

.form-group .error-text {
  font-size: 0.8rem;
  color: #e74c3c;
  margin-top: 4px;
}

.map-container {
  margin-top: 48px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--color-border);
}

.map-container iframe {
  display: block;
  width: 100%;
  height: 360px;
  border: none;
}

/* ========================================
   FOOTER
   ======================================== */

.footer {
  background-color: var(--color-bg-dark);
  padding: 64px 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer h4 {
  font-size: 1rem;
  color: var(--color-text-inverse);
  margin-bottom: 20px;
}

.footer p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
}

.footer__about .logo {
  margin-bottom: 16px;
  color: var(--color-text-inverse);
}

.footer__links a {
  display: block;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  padding: 4px 0;
  transition: color var(--transition-fast);
}

.footer__links a:hover {
  color: var(--color-accent);
}

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
}

.footer__contact-item svg {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  stroke: var(--color-accent);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  margin-top: 3px;
}

.footer__bottom {
  text-align: center;
  padding: 20px 0;
}

.footer__bottom p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 0;
}

/* ========================================
   ANIMATIONS
   ======================================== */

.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.hero__content .hero__label,
.hero__content h1,
.hero__content p,
.hero__content .hero__buttons {
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeUp 0.6s ease forwards;
}

.hero__content .hero__label { animation-delay: 0.1s; }
.hero__content h1 { animation-delay: 0.25s; }
.hero__content p { animation-delay: 0.4s; }
.hero__content .hero__buttons { animation-delay: 0.55s; }

@keyframes heroFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.stagger-1 { transition-delay: 0.05s; }
.stagger-2 { transition-delay: 0.12s; }
.stagger-3 { transition-delay: 0.19s; }
.stagger-4 { transition-delay: 0.26s; }
.stagger-5 { transition-delay: 0.33s; }
.stagger-6 { transition-delay: 0.40s; }
.stagger-7 { transition-delay: 0.47s; }
.stagger-8 { transition-delay: 0.54s; }
.stagger-9 { transition-delay: 0.61s; }


@media (prefers-reduced-motion: reduce) {
  .fade-up {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .hero__content .hero__label,
  .hero__content h1,
  .hero__content p,
  .hero__content .hero__buttons {
    opacity: 1;
    transform: none;
    animation: none;
  }
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 992px) {
  .about-story {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

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

@media (max-width: 768px) {
  .section {
    padding: 56px 0;
  }

  .nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    width: 100%;
    background: var(--color-bg);
    border-bottom: 1px solid var(--color-border);
    padding: 16px 24px;
    transform: translateY(-110%);
    opacity: 0;
    transition: transform var(--transition-base), opacity var(--transition-base);
    box-shadow: var(--shadow-md);
  }

  .nav.open {
    transform: translateY(0);
    opacity: 1;
  }

  .nav__list {
    flex-direction: column;
    gap: 0;
  }

  .nav__link {
    display: block;
    padding: 12px 0;
    font-size: 1rem;
  }

  .nav__cta {
    margin-left: 0;
    margin-top: 8px;
  }

  .hamburger {
    display: flex;
  }

  .theme-toggle {
    width: 36px;
    height: 36px;
    order: unset;
    margin-left: auto;
  }

  .hamburger {
    margin-left: 12px;
  }

  .hero {
    min-height: 80vh;
  }

  .hero__buttons {
    flex-direction: column;
  }

  .hero__buttons .btn {
    text-align: center;
    justify-content: center;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

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

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

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

  .section__header {
    margin-bottom: 40px;
  }

  .contact-form {
    padding: 24px 20px;
  }
}

/* ========================================
   SKIP LINK (Accessibility)
   ======================================== */

.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 9999;
  padding: 12px 24px;
  background: var(--color-accent);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: var(--radius-sm);
  transition: top var(--transition-fast);
}

.skip-link:focus {
  top: 12px;
}

/* ========================================
   FOCUS STYLES (Accessibility)
   ======================================== */

*:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

button:focus-visible,
.btn:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
  box-shadow: 0 0 0 4px rgba(232, 113, 42, 0.2);
}

/* ========================================
   HERO OUTLINE LIGHT (moved from inline)
   ======================================== */

.btn--outline-light {
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  background: transparent;
}

.btn--outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.6);
}

/* ========================================
   TEXT UTILITIES
   ======================================== */

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

/* ========================================
   FLOATING WHATSAPP BUTTON
   ======================================== */

.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 900;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  fill: #fff;
}

/* ========================================
   BACK TO TOP BUTTON
   ======================================== */

.back-to-top {
  position: fixed;
  bottom: 24px;
  right: 92px;
  z-index: 900;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity var(--transition-base), visibility var(--transition-base), transform var(--transition-base), background-color var(--transition-fast);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background-color: var(--color-accent);
}

.back-to-top svg {
  width: 20px;
  height: 20px;
  stroke: #fff;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ========================================
   TESTIMONIALS
   ======================================== */

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.testimonial-card {
  background: var(--color-bg);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  border: 1px solid var(--color-border);
  position: relative;
  display: flex;
  flex-direction: column;
}

.testimonial-card .testimonial-author {
  margin-top: auto;
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 16px;
  right: 24px;
  font-size: 4rem;
  line-height: 1;
  font-family: Georgia, serif;
  color: rgba(232, 113, 42, 0.12);
}

.testimonial-card p {
  font-size: 0.95rem;
  font-style: italic;
  margin-bottom: 20px;
  position: relative;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-hover));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

.testimonial-author strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  color: var(--color-primary);
}

.testimonial-author span {
  font-size: 0.8rem;
  color: var(--color-text-light);
}

.testimonial-stars {
  color: #f5a623;
  font-size: 0.85rem;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

/* ========================================
   COOKIE BANNER
   ======================================== */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 950;
  background: var(--color-bg-dark);
  padding: 20px 0;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

.cookie-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-banner p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.88rem;
  margin-bottom: 0;
  flex: 1;
  min-width: 240px;
}

.cookie-banner .btn {
  padding: 10px 24px;
  font-size: 0.85rem;
  white-space: nowrap;
}

/* ========================================
   FORM SUCCESS MESSAGE
   ======================================== */

.form-success {
  text-align: center;
  padding: 40px 20px;
}

.form-success__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.15), rgba(37, 211, 102, 0.05));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.form-success__icon svg {
  width: 32px;
  height: 32px;
  stroke: #25d366;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.form-success h3 {
  margin-bottom: 8px;
}

.form-success p {
  font-size: 0.95rem;
}


/* ========================================
   404 PAGE
   ======================================== */

.error-page {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: var(--header-height);
}

.error-page__code {
  font-family: var(--font-heading);
  font-size: clamp(5rem, 15vw, 10rem);
  font-weight: 700;
  color: var(--color-accent);
  line-height: 1;
  margin-bottom: 12px;
}

.error-page h1 {
  margin-bottom: 12px;
}

.error-page p {
  max-width: 400px;
  margin: 0 auto 28px;
}

/* ========================================
   RESPONSIVE - NEW ELEMENTS
   ======================================== */

@media (max-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

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

  .whatsapp-float {
    bottom: 16px;
    right: 16px;
    width: 50px;
    height: 50px;
  }

  .back-to-top {
    right: 78px;
    bottom: 16px;
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 480px) {
  .whatsapp-float {
    bottom: 12px;
    right: 12px;
  }

  .back-to-top {
    right: 72px;
    bottom: 12px;
  }
}

