/* ============================================================
   FixIt London – style.css
   ============================================================ */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --gold: #e8a020;
  --gold-dark: #c98a18;
  --navy: #1a2332;
  --navy-dark: #0f1823;
  --white: #ffffff;
  --text-light: rgba(255,255,255,0.75);
  --text-muted: rgba(255,255,255,0.45);
  --body-bg: #f6f7f9;
  --card-bg: #ffffff;
  --card-border: #e2e5ea;
  --text-dark: #1a2332;
  --text-secondary: #5a6272;
  --radius: 10px;
  --radius-sm: 6px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Segoe UI', Arial, sans-serif;
  background: var(--body-bg);
  color: var(--text-dark);
  line-height: 1.6;
}

/* ---- HEADER ---- */
.header {
  background: var(--navy);
  padding: 14px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,0.25);
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-icon {
  width: 46px;
  height: 46px;
  background: var(--gold);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* If using an actual logo image */
.logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: var(--radius-sm);
}

.logo-text .brand {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.3px;
}

.logo-text .sub {
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav a {
  color: rgba(255,255,255,0.8);
  font-size: 14px;
  text-decoration: none;
  transition: color .2s;
}

.nav a:hover { color: var(--gold); }

.nav .cta {
  background: var(--gold);
  color: var(--white) !important;
  padding: 8px 20px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  transition: background .2s !important;
}

.nav .cta:hover { background: var(--gold-dark) !important; }

/* Hamburger (hidden on desktop) */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: .3s;
}

/* ---- SLIDER ---- */
.slider {
  position: relative;
  height: 690px;
  overflow: hidden;
  background: var(--navy);
}

.slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  opacity: 0;
  transition: opacity .7s ease;
}

.slide.active { opacity: 1; }

.slide-bg {
  position: absolute;
  inset: 0;
}

.slide-pattern {
  width: 100%;
  height: 100%;
  display: block;
}

/* If using real images */
.slide-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}

.slide-content {
  position: relative;
  z-index: 2;
  padding: 0 80px;
  max-width: 600px;
}

.slide-eyebrow {
  font-size: 12px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.slide-content h2 {
  font-size: 36px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 14px;
}

.slide-desc {
  font-size: 16px;
  color: var(--text-light);
  margin-bottom: 28px;
  max-width: 440px;
}

.slide-btn {
  display: inline-block;
  background: var(--gold);
  color: var(--white);
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: background .2s, transform .15s;
}

.slide-btn:hover {
  background: var(--gold-dark);
  transform: translateY(-1px);
}

.slide-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
}

.slide-arrow.prev { left: 20px; }
.slide-arrow.next { right: 20px; }
.slide-arrow:hover { background: rgba(232,160,32,0.5); }

.slider-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 3;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background .3s, transform .2s;
}

.dot.active {
  background: var(--gold);
  transform: scale(1.2);
}

/* ---- BADGE BAR ---- */
.badge-bar {
  background: var(--gold);
  padding: 10px 40px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 32px;
}

.badge-bar span {
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
}

/* ---- SERVICES ---- */
.section {
  padding: 60px 40px;
  background: var(--body-bg);
}

.section-header {
  text-align: center;
  margin-bottom: 36px;
}

.section-header h2 {
  font-size: 28px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.section-header p {
  font-size: 15px;
  color: var(--text-secondary);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  max-width: 960px;
  margin: 0 auto;
}

.service-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 24px 14px 18px;
  text-align: center;
  cursor: pointer;
  transition: border-color .2s, transform .2s, box-shadow .2s;
}

.service-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(232,160,32,0.12);
}

.service-icon {
  width: 48px;
  height: 48px;
  background: rgba(232,160,32,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  color: var(--gold);
  transition: background .2s;
}

.service-card:hover .service-icon {
  background: rgba(232,160,32,0.2);
}

.service-card span {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.4;
  display: block;
}

/* ---- CONTACT SECTION ---- */
.contact-section {
  background: var(--navy);
  padding: 60px 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.london-visual {
  border-radius: var(--radius);
  overflow: hidden;
  height: 260px;
  background: var(--navy-dark);
}

.london-visual svg { display: block; }

.contact-info h2 {
  font-size: 26px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 6px;
}

.contact-sub {
  font-size: 13px;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 24px;
}

.contact-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.ci-icon {
  width: 36px;
  height: 36px;
  background: rgba(232,160,32,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}

.ci-label {
  font-size: 10px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  line-height: 1;
  margin-bottom: 2px;
}

.ci-val {
  font-size: 14px;
  color: var(--white);
  font-weight: 500;
}

.call-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  background: var(--gold);
  color: var(--white);
  border: none;
  padding: 13px 28px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: background .2s, transform .15s;
}

.call-btn:hover {
  background: var(--gold-dark);
  transform: translateY(-1px);
}

/* ---- FOOTER ---- */
.footer-bar {
  background: var(--navy-dark);
  padding: 16px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-bar > span {
  font-size: 12px;
  color: var(--text-muted);
}

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links a {
  font-size: 12px;
  color: var(--text-muted);
  text-decoration: none;
  transition: color .2s;
}

.footer-links a:hover { color: var(--gold); }

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* Tablet */
@media (max-width: 900px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .contact-section {
    grid-template-columns: 1fr;
  }

  .london-visual {
    height: 200px;
  }

  .slide-content {
    padding: 0 56px;
  }

  .slide-content h2 { font-size: 28px; }
}

/* Mobile */
@media (max-width: 640px) {
  .header {
    padding: 12px 20px;
    flex-wrap: wrap;
  }

  .nav {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    width: 100%;
    padding: 16px 0 8px;
  }

  .nav.open { display: flex; }

  .nav-toggle { display: flex; }

  .slider { height: 320px; }

  .slide-content {
    padding: 0 28px;
  }

  .slide-content h2 { font-size: 22px; }
  .slide-desc { font-size: 14px; }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .section { padding: 40px 20px; }

  .contact-section {
    padding: 40px 20px;
    grid-template-columns: 1fr;
  }

  .badge-bar {
    padding: 10px 20px;
    gap: 6px 16px;
  }

  .footer-bar {
    padding: 14px 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
}

@media (max-width: 400px) {
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .slide { transition: none; }
  .slide-btn, .call-btn, .service-card { transition: none; }
}



/* ============================================================
   Services Page — services.css
   Mevcut style.css'e ekle ya da ayrı dosya olarak link ver.
   ============================================================ */

.services-page {
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 40px;
}

/* Section header */
.sp-header {
  text-align: center;
  margin-bottom: 64px;
}

.sp-header h1 {
  font-size: 34px;
  font-weight: 700;
  color: var(--navy, #1a2332);
  margin-bottom: 12px;
}

.sp-header p {
  font-size: 16px;
  color: var(--text-secondary, #5a6272);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Each service block */
.sp-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-bottom: 72px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
  background: #ffffff;
}

.sp-item:last-child {
  margin-bottom: 0;
}

/* Reversed: text left, image right */
.sp-item.sp-reverse {
  direction: rtl;
}

.sp-item.sp-reverse > * {
  direction: ltr;
}

/* Image side */
.sp-img {
  position: relative;
  overflow: hidden;
  min-height: 320px;
  background: #e2e5ea;
}

.sp-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}

.sp-item:hover .sp-img img {
  transform: scale(1.04);
}

/* Text side */
.sp-body {
  padding: 44px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.sp-number {
  font-size: 13px;
  font-weight: 700;
  color: var(--gold, #e8a020);
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.sp-body h2 {
  font-size: 26px;
  font-weight: 700;
  color: var(--navy, #1a2332);
  margin-bottom: 14px;
  line-height: 1.25;
}

.sp-body p {
  font-size: 15px;
  color: var(--text-secondary, #5a6272);
  line-height: 1.75;
  margin-bottom: 20px;
}

.sp-body ul {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 16px;
}

.sp-body ul li {
  font-size: 13px;
  color: var(--navy, #1a2332);
  font-weight: 500;
  padding-left: 18px;
  position: relative;
}

.sp-body ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold, #e8a020);
}

.sp-btn {
  display: inline-block;
  align-self: flex-start;
  background: var(--gold, #e8a020);
  color: #ffffff;
  padding: 11px 24px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: background .2s, transform .15s;
}

.sp-btn:hover {
  background: var(--gold-dark, #c98a18);
  transform: translateY(-1px);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 820px) {
  .sp-item,
  .sp-item.sp-reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }

  .sp-img {
    min-height: 240px;
  }

  .sp-body {
    padding: 32px 28px;
  }

  .sp-body ul {
    grid-template-columns: 1fr;
  }

  .services-page {
    padding: 40px 20px;
  }

  .sp-header {
    margin-bottom: 40px;
  }

  .sp-item {
    margin-bottom: 48px;
  }
}

@media (max-width: 480px) {
  .sp-header h1 { font-size: 26px; }
  .sp-body h2   { font-size: 22px; }
  .sp-body      { padding: 24px 20px; }
}

/* ============================================================
   Gallery Page — gallery.css
   9 dikey görsel için 3 sütunlu grid + lightbox
   ============================================================ */

.gallery-page {
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 40px;
}

/* Header */
.gp-header {
  text-align: center;
  margin-bottom: 48px;
}

.gp-header h1 {
  font-size: 34px;
  font-weight: 700;
  color: var(--navy, #1a2332);
  margin-bottom: 12px;
}

.gp-header p {
  font-size: 16px;
  color: var(--text-secondary, #5a6272);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.7;
}

/* 3x3 grid — dikey görseller için sabit oran */
.gp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.gp-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  cursor: pointer;
  background: #e2e5ea;
  /* Dikey görsel oranı — 3:4 */
  aspect-ratio: 3 / 4;
}

.gp-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}

.gp-item:hover img {
  transform: scale(1.06);
}

/* Hover overlay */
.gp-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 35, 50, 0.55);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity .3s ease;
}

.gp-item:hover .gp-overlay {
  opacity: 1;
}

.gp-overlay span {
  font-size: 13px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: var(--gold, #e8a020);
  padding: 5px 12px;
  border-radius: 4px;
}

/* CTA */
.gp-cta {
  text-align: center;
  margin-top: 52px;
  padding: 40px 32px;
  background: var(--navy, #1a2332);
  border-radius: 12px;
}

.gp-cta p {
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 20px;
}

.gp-btn {
  display: inline-block;
  background: var(--gold, #e8a020);
  color: #ffffff;
  padding: 13px 32px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, transform .15s;
}

.gp-btn:hover {
  background: var(--gold-dark, #c98a18);
  transform: translateY(-1px);
}

/* ============================================================
   LIGHTBOX
   ============================================================ */

.lb-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}

.lb-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.lb-img {
  max-height: 88vh;
  max-width: 72vw;
  object-fit: contain;
  border-radius: 6px;
  display: block;
  box-shadow: 0 24px 64px rgba(0,0,0,0.6);
}

.lb-close {
  position: fixed;
  top: 20px;
  right: 28px;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 40px;
  line-height: 1;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity .2s;
  z-index: 1001;
}

.lb-close:hover { opacity: 1; }

.lb-arrow {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: #ffffff;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
  z-index: 1001;
}

.lb-arrow:hover { background: rgba(232,160,32,0.5); }
.lb-prev { left: 20px; }
.lb-next { right: 20px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 820px) {
  .gp-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .gallery-page {
    padding: 40px 20px;
  }

  .gp-header { margin-bottom: 32px; }

  .lb-img {
    max-width: 90vw;
    max-height: 82vh;
  }

  .lb-arrow { display: none; }
}

@media (max-width: 480px) {
  .gp-header h1 { font-size: 26px; }

  .gp-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .gp-overlay { opacity: 1; }

  .gp-cta { padding: 28px 20px; }
  .gp-cta p { font-size: 16px; }
}

/* ============================================================
   About Us Page — about.css
   ============================================================ */

.about-page {
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 40px;
}

/* ---- HERO ---- */
.ab-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  margin-bottom: 80px;
}

.ab-hero-img {
  position: relative;
  border-radius: 12px;
  overflow: visible;
}

.ab-hero-img img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.ab-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--gold, #e8a020);
  border-radius: 10px;
  padding: 18px 22px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(232,160,32,0.3);
}

.ab-badge-num {
  display: block;
  font-size: 32px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1;
}

.ab-badge-txt {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
  line-height: 1.4;
}

.ab-eyebrow {
  font-size: 12px;
  font-weight: 700;
  color: var(--gold, #e8a020);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.ab-hero-body h1 {
  font-size: 34px;
  font-weight: 700;
  color: var(--navy, #1a2332);
  line-height: 1.2;
  margin-bottom: 18px;
}

.ab-lead {
  font-size: 16px;
  color: var(--text-secondary, #5a6272);
  line-height: 1.8;
  margin-bottom: 36px;
}

.ab-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.ab-stat {
  background: #f6f7f9;
  border-radius: 8px;
  padding: 16px 12px;
  text-align: center;
  border: 1px solid #e2e5ea;
}

.ab-stat strong {
  display: block;
  font-size: 24px;
  font-weight: 700;
  color: var(--navy, #1a2332);
  line-height: 1;
  margin-bottom: 5px;
}

.ab-stat span {
  font-size: 11px;
  color: var(--text-secondary, #5a6272);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  line-height: 1.3;
}

/* ---- STORY / TIMELINE ---- */
.ab-story {
  margin-bottom: 72px;
}

.ab-story-inner {
  max-width: 720px;
  margin: 0 auto;
}

.ab-timeline {
  position: relative;
  padding-left: 32px;
}

.ab-timeline::before {
  content: '';
  position: absolute;
  left: 7px;
  top: 6px;
  bottom: 0;
  width: 2px;
  background: #e2e5ea;
}

.ab-tl-item {
  position: relative;
  margin-bottom: 48px;
}

.ab-tl-item:last-child {
  margin-bottom: 0;
}

.ab-tl-dot {
  position: absolute;
  left: -32px;
  top: 5px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--gold, #e8a020);
  border: 3px solid #ffffff;
  box-shadow: 0 0 0 2px var(--gold, #e8a020);
  z-index: 1;
}

.ab-tl-year {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  color: var(--gold, #e8a020);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: rgba(232,160,32,0.1);
  padding: 3px 10px;
  border-radius: 4px;
  margin-bottom: 10px;
}

.ab-tl-content h3 {
  font-size: 19px;
  font-weight: 700;
  color: var(--navy, #1a2332);
  margin-bottom: 10px;
}

.ab-tl-content p {
  font-size: 15px;
  color: var(--text-secondary, #5a6272);
  line-height: 1.8;
}

/* ---- VALUES ---- */
.ab-values {
  margin-bottom: 72px;
}

.ab-values-header {
  text-align: center;
  margin-bottom: 36px;
}

.ab-values-header h2 {
  font-size: 28px;
  font-weight: 700;
  color: var(--navy, #1a2332);
}

.ab-values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.ab-value-card {
  background: #ffffff;
  border: 1px solid #e2e5ea;
  border-radius: 12px;
  padding: 28px 22px;
  text-align: center;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}

.ab-value-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.07);
  border-color: var(--gold, #e8a020);
}

.ab-value-icon {
  width: 56px;
  height: 56px;
  background: rgba(232,160,32,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--gold, #e8a020);
  transition: background .2s;
}

.ab-value-card:hover .ab-value-icon {
  background: rgba(232,160,32,0.2);
}

.ab-value-card h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy, #1a2332);
  margin-bottom: 10px;
}

.ab-value-card p {
  font-size: 13px;
  color: var(--text-secondary, #5a6272);
  line-height: 1.7;
}

/* ---- CTA ---- */
.ab-cta {
  background: var(--navy, #1a2332);
  border-radius: 14px;
  padding: 2px;
  background: linear-gradient(135deg, #1a2332 60%, #243347 100%);
}

.ab-cta-inner {
  text-align: center;
  padding: 52px 40px;
}

.ab-cta-inner h2 {
  font-size: 28px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
}

.ab-cta-inner p {
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  max-width: 480px;
  margin: 0 auto 28px;
  line-height: 1.7;
}

.ab-cta-btn {
  display: inline-block;
  background: var(--gold, #e8a020);
  color: #ffffff;
  padding: 14px 36px;
  border-radius: 7px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, transform .15s;
}

.ab-cta-btn:hover {
  background: var(--gold-dark, #c98a18);
  transform: translateY(-1px);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 900px) {
  .ab-hero {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .ab-hero-img img { height: 340px; }

  .ab-badge {
    right: 16px;
    bottom: -16px;
  }

  .ab-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .ab-values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .about-page {
    padding: 40px 20px;
  }

  .ab-hero-body h1 { font-size: 26px; }

  .ab-values-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .ab-cta-inner { padding: 36px 20px; }
  .ab-cta-inner h2 { font-size: 22px; }

  .ab-story-inner { padding-left: 0; }
}

@media (max-width: 420px) {
  .ab-values-grid {
    grid-template-columns: 1fr;
  }

  .ab-stats {
    grid-template-columns: 1fr 1fr;
  }
}
/* ============================================================
   Contact Page — contact.css
   ============================================================ */

/* ---- MAP ---- */
.cp-map {
  width: 100%;
  line-height: 0;
}

.cp-map iframe {
  width: 100%;
  height: 500px;
  border: 0;
  display: block;
}

/* ---- BODY (form + info) ---- */
.contact-page {
  background: #f6f7f9;
}

.cp-body {
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 40px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: start;
}

/* ---- SHARED HEADINGS ---- */
.cp-form-wrap h2,
.cp-info-wrap h2 {
  font-size: 24px;
  font-weight: 700;
  color: var(--navy, #1a2332);
  margin-bottom: 6px;
}

.cp-sub {
  font-size: 14px;
  color: var(--text-secondary, #5a6272);
  margin-bottom: 28px;
  line-height: 1.6;
}

/* ---- FORM ---- */
.cp-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cp-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.cp-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.cp-field label {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy, #1a2332);
}

.cp-field input,
.cp-field select,
.cp-field textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid #dde0e7;
  border-radius: 7px;
  font-size: 14px;
  font-family: inherit;
  color: var(--navy, #1a2332);
  background: #ffffff;
  transition: border-color .2s, box-shadow .2s;
  appearance: none;
  -webkit-appearance: none;
  outline: none;
}

.cp-field input::placeholder,
.cp-field textarea::placeholder {
  color: #b0b5c0;
}

.cp-field input:focus,
.cp-field select:focus,
.cp-field textarea:focus {
  border-color: var(--gold, #e8a020);
  box-shadow: 0 0 0 3px rgba(232,160,32,0.12);
}

.cp-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235a6272' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}

.cp-field textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.6;
}

.cp-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--gold, #e8a020);
  color: #ffffff;
  border: none;
  padding: 14px 28px;
  border-radius: 7px;
  font-size: 15px;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: background .2s, transform .15s;
  margin-top: 4px;
}

.cp-submit:hover {
  background: var(--gold-dark, #c98a18);
  transform: translateY(-1px);
}

.cp-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.cp-note {
  font-size: 12px;
  color: var(--text-secondary, #5a6272);
  text-align: center;
  margin-top: 2px;
}

/* Spinner */
.cp-spinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255,255,255,0.4);
  border-top-color: #ffffff;
  border-radius: 50%;
  animation: spin .7s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

/* Success state */
.cp-success {
  text-align: center;
  padding: 48px 24px;
  background: #ffffff;
  border-radius: 10px;
  border: 1.5px solid #d4edda;
}

.cp-success svg {
  color: #28a745;
  margin-bottom: 16px;
}

.cp-success h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy, #1a2332);
  margin-bottom: 8px;
}

.cp-success p {
  font-size: 14px;
  color: var(--text-secondary, #5a6272);
}

/* ---- INFO CARDS ---- */
.cp-info-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.cp-info-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #ffffff;
  border: 1px solid #e2e5ea;
  border-radius: 10px;
  padding: 16px 20px;
  text-decoration: none;
  color: inherit;
  transition: border-color .2s, transform .2s, box-shadow .2s;
}

.cp-info-card:hover {
  border-color: var(--gold, #e8a020);
  transform: translateX(3px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

.cp-info-icon {
  width: 48px;
  height: 48px;
  background: rgba(232,160,32,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold, #e8a020);
  flex-shrink: 0;
  transition: background .2s;
}

.cp-info-card:hover .cp-info-icon {
  background: rgba(232,160,32,0.2);
}

.cp-info-label {
  font-size: 10px;
  font-weight: 700;
  color: var(--gold, #e8a020);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 2px;
}

.cp-info-val {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy, #1a2332);
  line-height: 1.3;
}

.cp-info-hint {
  font-size: 12px;
  color: var(--text-secondary, #5a6272);
  margin-top: 1px;
}

/* WhatsApp button */
.cp-whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #25D366;
  color: #ffffff;
  padding: 14px 20px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, transform .15s;
}

.cp-whatsapp:hover {
  background: #1ebe5a;
  transform: translateY(-1px);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 820px) {
  .cp-body {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 40px 20px;
  }

  .cp-map iframe { height: 360px; }
}

@media (max-width: 520px) {
  .cp-row {
    grid-template-columns: 1fr;
  }

  .cp-map iframe { height: 280px; }
}