/* ============================================
   AREL ELEKTRİK — Ana Stil Dosyası
   ============================================ */

:root {
  --navy: #0b1f3a;
  --navy-deep: #061528;
  --navy-mid: #14305a;
  --navy-soft: #1a3a66;
  --yellow: #ffc400;
  --yellow-hover: #ffd54f;
  --yellow-dim: rgba(255, 196, 0, 0.15);
  --white: #ffffff;
  --gray-50: #f7f9fc;
  --gray-100: #eef2f7;
  --gray-200: #dce3ed;
  --gray-400: #8a9bb0;
  --gray-600: #5a6b80;
  --gray-800: #2c3a4d;
  --text: #1a2433;
  --shadow-sm: 0 2px 8px rgba(11, 31, 58, 0.06);
  --shadow-md: 0 8px 24px rgba(11, 31, 58, 0.1);
  --shadow-lg: 0 16px 48px rgba(11, 31, 58, 0.14);
  --radius: 10px;
  --radius-lg: 16px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --header-h: 80px;
  --font-display: "Syne", sans-serif;
  --font-body: "Outfit", sans-serif;
  --container: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
  opacity: 0;
  animation: pageFadeIn 0.55s ease forwards;
}

@keyframes pageFadeIn {
  to { opacity: 1; }
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition), background var(--transition), transform var(--transition);
}

ul { list-style: none; }

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

.container {
  width: min(100% - 2.5rem, var(--container));
  margin-inline: auto;
}

.section {
  padding: 5.5rem 0;
}

.section--alt {
  background: var(--gray-50);
}

.section__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3.5rem;
}

.section__eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--yellow);
  background: var(--navy);
  padding: 0.35rem 0.9rem;
  border-radius: 4px;
  margin-bottom: 1rem;
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 0.85rem;
}

.section__desc {
  color: var(--gray-600);
  font-size: 1.05rem;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.75rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 6px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.btn--primary {
  background: var(--yellow);
  color: var(--navy);
}

.btn--primary:hover {
  background: var(--yellow-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 196, 0, 0.35);
}

.btn--outline {
  border: 2px solid var(--navy);
  color: var(--navy);
  background: transparent;
}

.btn--outline:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}

.btn--outline-light {
  border: 2px solid var(--white);
  color: var(--white);
}

.btn--outline-light:hover {
  background: var(--white);
  color: var(--navy);
}

.btn--sm {
  padding: 0.65rem 1.25rem;
  font-size: 0.875rem;
}

.btn--block {
  width: 100%;
}

/* ---------- Header ---------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition), height var(--transition);
}

.header.scrolled,
.header.header--solid {
  background: rgba(11, 31, 58, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
}

.header.scrolled {
  height: 68px;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 1001;
}

.logo img {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  object-fit: cover;
}

.logo__text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--white);
  line-height: 1.15;
}

.logo__text span {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--yellow);
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav__link {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  font-size: 0.92rem;
  padding: 0.5rem 0.9rem;
  border-radius: 6px;
  position: relative;
}

.nav__link::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--yellow);
  transition: width var(--transition), left var(--transition);
}

.nav__link:hover,
.nav__link.active {
  color: var(--white);
}

.nav__link:hover::after,
.nav__link.active::after {
  width: 60%;
  left: 20%;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 32px;
  z-index: 1001;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  height: 2.5px;
  width: 100%;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
  transform-origin: center;
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* ---------- Hero Slider ---------- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 560px;
  max-height: 900px;
  overflow: hidden;
  background: var(--navy-deep);
}

.hero__slides {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.9s ease, visibility 0.9s ease;
}

.hero__slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.08);
  transition: transform 7s ease;
}

.hero__slide.active .hero__bg {
  transform: scale(1);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(6, 21, 40, 0.92) 0%, rgba(11, 31, 58, 0.75) 45%, rgba(11, 31, 58, 0.45) 100%),
    linear-gradient(to top, rgba(6, 21, 40, 0.7) 0%, transparent 40%);
}

.hero__content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 680px;
  padding-top: var(--header-h);
}

.hero__brand {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
  opacity: 0;
  transform: translateY(24px);
}

.hero__brand em {
  font-style: normal;
  color: var(--yellow);
}

.hero__slide.active .hero__brand {
  animation: slideUp 0.7s 0.2s ease forwards;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.8vw, 1.85rem);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 1rem;
  opacity: 0;
  transform: translateY(24px);
}

.hero__slide.active .hero__title {
  animation: slideUp 0.7s 0.35s ease forwards;
}

.hero__text {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
  max-width: 480px;
  opacity: 0;
  transform: translateY(24px);
}

.hero__slide.active .hero__text {
  animation: slideUp 0.7s 0.5s ease forwards;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  opacity: 0;
  transform: translateY(24px);
}

.hero__slide.active .hero__actions {
  animation: slideUp 0.7s 0.65s ease forwards;
}

@keyframes slideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero__nav {
  position: absolute;
  z-index: 5;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: all var(--transition);
}

.hero__nav:hover {
  background: var(--yellow);
  color: var(--navy);
  border-color: var(--yellow);
}

.hero__nav--prev { left: 1.5rem; }
.hero__nav--next { right: 1.5rem; }

.hero__dots {
  position: absolute;
  z-index: 5;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.6rem;
}

.hero__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  border: none;
  transition: all var(--transition);
  cursor: pointer;
}

.hero__dot.active {
  background: var(--yellow);
  width: 28px;
  border-radius: 5px;
}

/* ---------- About Preview ---------- */
.about-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-preview__visual {
  position: relative;
}

.about-preview__img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--navy);
}

.about-preview__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-preview__badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1rem;
  background: var(--yellow);
  color: var(--navy);
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-weight: 700;
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.about-preview__badge strong {
  display: block;
  font-size: 2rem;
  line-height: 1;
}

.about-preview__badge span {
  font-size: 0.8rem;
  font-weight: 600;
}

.about-preview__content .section__eyebrow {
  margin-bottom: 1rem;
}

.about-preview__content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  color: var(--navy);
  margin-bottom: 1.25rem;
  line-height: 1.25;
}

.about-preview__content p {
  color: var(--gray-600);
  margin-bottom: 1rem;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 1.75rem 0 2rem;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.about-feature i {
  color: var(--yellow);
  background: var(--navy);
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.9rem;
}

.about-feature strong {
  display: block;
  font-size: 0.95rem;
  color: var(--navy);
}

.about-feature span {
  font-size: 0.8rem;
  color: var(--gray-600);
}

/* ---------- Cards Grid ---------- */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.card__img {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--navy-mid);
  position: relative;
}

.card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.card:hover .card__img img {
  transform: scale(1.06);
}

.card__body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.card__title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.6rem;
}

.card__text {
  color: var(--gray-600);
  font-size: 0.92rem;
  margin-bottom: 1.25rem;
  flex: 1;
}

.card__meta {
  font-size: 0.8rem;
  color: var(--gray-400);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

/* Service cards */
.service-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  text-align: center;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.service-card__icon {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  background: var(--navy);
  color: var(--yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
  transition: all var(--transition);
}

.service-card:hover .service-card__icon {
  background: var(--yellow);
  color: var(--navy);
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 0.65rem;
}

.service-card p {
  color: var(--gray-600);
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
  flex: 1;
}

.service-card .link-arrow {
  color: var(--navy);
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.service-card .link-arrow:hover {
  color: var(--yellow);
}

.service-card .link-arrow i {
  transition: transform var(--transition);
}

.service-card .link-arrow:hover i {
  transform: translateX(4px);
}

/* ---------- Testimonials ---------- */
.testimonials {
  position: relative;
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  gap: 1.75rem;
  transition: transform 0.5s ease;
}

.testimonial {
  min-width: calc(33.333% - 1.17rem);
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
}

.testimonial__stars {
  color: var(--yellow);
  margin-bottom: 1rem;
  font-size: 0.95rem;
  letter-spacing: 2px;
}

.testimonial__text {
  color: var(--gray-800);
  font-size: 1rem;
  font-style: italic;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.testimonial__author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.testimonial__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
}

.testimonial__author strong {
  display: block;
  color: var(--navy);
  font-size: 0.95rem;
}

.testimonial__author span {
  font-size: 0.8rem;
  color: var(--gray-400);
}

.testimonials-controls {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2rem;
}

.testimonials-controls button {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2px solid var(--navy);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.testimonials-controls button:hover {
  background: var(--navy);
  color: var(--yellow);
}

/* ---------- Contact Section ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
}

.contact-info__item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-info__icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: var(--navy);
  color: var(--yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info__item h4 {
  font-family: var(--font-display);
  color: var(--navy);
  font-size: 0.95rem;
  margin-bottom: 0.2rem;
}

.contact-info__item p,
.contact-info__item a {
  color: var(--gray-600);
  font-size: 0.95rem;
}

.contact-info__item a:hover {
  color: var(--navy);
}

.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 220px;
  margin-top: 1.5rem;
  border: 1px solid var(--gray-200);
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.contact-form {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-100);
}

.form-group {
  margin-bottom: 1.15rem;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--gray-200);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--gray-50);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(11, 31, 58, 0.1);
  background: var(--white);
}

.form-group textarea {
  min-height: 130px;
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-message {
  padding: 0.85rem 1rem;
  border-radius: 8px;
  font-size: 0.9rem;
  margin-bottom: 1rem;
  display: none;
}

.form-message.success {
  display: block;
  background: #e8f5e9;
  color: #2e7d32;
  border: 1px solid #a5d6a7;
}

.form-message.error {
  display: block;
  background: #ffebee;
  color: #c62828;
  border: 1px solid #ef9a9a;
}

/* ---------- Page Hero (inner pages) ---------- */
.page-hero {
  background:
    linear-gradient(135deg, rgba(6, 21, 40, 0.92), rgba(11, 31, 58, 0.85)),
    url("../images/slider1.jpg") center / cover;
  padding: calc(var(--header-h) + 4rem) 0 4rem;
  text-align: center;
  color: var(--white);
  position: relative;
}

.page-hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--navy), var(--yellow), var(--navy));
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.75);
  max-width: 520px;
  margin: 0 auto;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.25rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
}

.breadcrumb a {
  color: var(--yellow);
}

.breadcrumb a:hover {
  text-decoration: underline;
}

/* ---------- Detail Pages ---------- */
.detail-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 3rem;
  align-items: start;
}

.detail-content__img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 2rem;
  aspect-ratio: 16 / 9;
  background: var(--navy);
}

.detail-content__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-content h2 {
  font-family: var(--font-display);
  color: var(--navy);
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.detail-content h3 {
  font-family: var(--font-display);
  color: var(--navy);
  font-size: 1.25rem;
  margin: 1.75rem 0 0.75rem;
}

.detail-content p {
  color: var(--gray-600);
  margin-bottom: 1rem;
}

.detail-content ul {
  margin: 1rem 0 1.5rem;
  padding-left: 0;
}

.detail-content ul li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.6rem;
  color: var(--gray-600);
}

.detail-content ul li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--yellow);
  background: var(--navy);
  width: 18px;
  height: 18px;
  border-radius: 50%;
  font-size: 0.55rem;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 18px;
  text-align: center;
}

.sidebar-box {
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  margin-bottom: 1.5rem;
}

.sidebar-box h3 {
  font-family: var(--font-display);
  color: var(--navy);
  font-size: 1.1rem;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--yellow);
}

.sidebar-box ul li {
  margin-bottom: 0.5rem;
}

.sidebar-box ul a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 0.75rem;
  border-radius: 6px;
  color: var(--gray-600);
  font-size: 0.9rem;
  transition: all var(--transition);
}

.sidebar-box ul a:hover,
.sidebar-box ul a.active {
  background: var(--navy);
  color: var(--white);
}

.sidebar-cta {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
}

.sidebar-cta h3 {
  font-family: var(--font-display);
  margin-bottom: 0.75rem;
  color: var(--white);
}

.sidebar-cta p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
}

/* About page */
.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: -3rem;
  position: relative;
  z-index: 2;
}

.stat-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem 1.25rem;
  text-align: center;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-100);
}

.stat-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.stat-card span {
  font-size: 0.85rem;
  color: var(--gray-600);
}

.about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.value-card {
  text-align: center;
  padding: 2rem 1.5rem;
}

.value-card i {
  font-size: 2rem;
  color: var(--yellow);
  background: var(--navy);
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.value-card h3 {
  font-family: var(--font-display);
  color: var(--navy);
  margin-bottom: 0.65rem;
}

.value-card p {
  color: var(--gray-600);
  font-size: 0.92rem;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.75);
  padding-top: 4rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr;
  gap: 3rem;
  padding-bottom: 3rem;
}

.footer__brand .logo {
  margin-bottom: 1.25rem;
}

.footer__brand p {
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
  max-width: 320px;
}

.footer h4 {
  font-family: var(--font-display);
  color: var(--white);
  font-size: 1.05rem;
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: 0.75rem;
}

.footer h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 36px;
  height: 3px;
  background: var(--yellow);
  border-radius: 2px;
}

.footer__menu a {
  display: block;
  padding: 0.35rem 0;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.65);
}

.footer__menu a:hover {
  color: var(--yellow);
  padding-left: 6px;
}

.footer__contact li {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.92rem;
  align-items: flex-start;
}

.footer__contact i {
  color: var(--yellow);
  margin-top: 0.2rem;
  width: 18px;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.5rem 0;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.45);
}

/* ---------- Floating Social ---------- */
.float-social {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.float-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.4rem;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  transition: transform var(--transition), box-shadow var(--transition);
}

.float-btn:hover {
  transform: scale(1.12) translateY(-2px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
}

.float-btn--whatsapp {
  background: #25d366;
}

.float-btn--instagram {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

/* ---------- Scroll Animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ---------- CTA Banner ---------- */
.cta-banner {
  background:
    linear-gradient(120deg, var(--navy-deep), var(--navy-mid)),
    url("../images/slider2.jpg") center / cover;
  background-blend-mode: multiply;
  padding: 4.5rem 0;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 196, 0, 0.08), transparent);
  animation: shimmer 4s ease infinite;
}

@keyframes shimmer {
  0%, 100% { transform: translateX(-30%); }
  50% { transform: translateX(30%); }
}

.cta-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 0.75rem;
  position: relative;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 1.75rem;
  position: relative;
}

.cta-banner .btn {
  position: relative;
}

/* ---------- Blog date badge ---------- */
.card__img .date-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--yellow);
  color: var(--navy);
  padding: 0.4rem 0.75rem;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  z-index: 1;
}

/* ---------- Utility ---------- */
.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.mb-2 { margin-bottom: 2rem; }

/* Placeholder visual for missing images */
.img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--navy-mid), var(--navy));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--yellow);
  font-size: 2.5rem;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonial {
    min-width: calc(50% - 0.875rem);
  }

  .about-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .detail-layout {
    grid-template-columns: 1fr;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 900px) {
  .nav-toggle {
    display: flex;
  }

  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(320px, 85vw);
    height: 100vh;
    background: var(--navy-deep);
    flex-direction: column;
    align-items: stretch;
    padding: 6rem 1.5rem 2rem;
    gap: 0.25rem;
    transition: right 0.35s ease;
    box-shadow: -8px 0 32px rgba(0, 0, 0, 0.3);
  }

  .nav.open {
    right: 0;
  }

  .nav__link {
    padding: 0.9rem 1rem;
    font-size: 1.05rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .nav__link::after {
    display: none;
  }

  .about-preview {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .about-preview__badge {
    right: 1rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .about-values {
    grid-template-columns: 1fr;
  }

  .hero__nav {
    display: none;
  }
}

@media (max-width: 640px) {
  :root {
    --header-h: 68px;
  }

  .section {
    padding: 3.5rem 0;
  }

  .cards-grid {
    grid-template-columns: 1fr;
  }

  .testimonial {
    min-width: 100%;
  }

  .about-features {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-stats {
    grid-template-columns: 1fr 1fr;
    margin-top: -2rem;
  }

  .hero {
    min-height: 520px;
  }

  .float-btn {
    width: 46px;
    height: 46px;
    font-size: 1.2rem;
  }
}

/* Body scroll lock when menu open */
body.menu-open {
  overflow: hidden;
}

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
}

.nav-overlay.active {
  opacity: 1;
  visibility: visible;
}
