/* ============================================================
   SIVAS POYRAZ HALI YIKAMA — style.css
   ============================================================ */

:root {
  --navy: #0d1b2a;
  --blue: #1a6fb5;
  --blue-light: #2a8fd6;
  --gold: #c8982a;
  --gold-light: #e8b84b;
  --cream: #f8f5ef;
  --gray: #6b7280;
  --gray-light: #f3f4f6;
  --white: #ffffff;
  --radius: 14px;
  --shadow: 0 4px 24px rgba(13,27,42,.10);
  --shadow-lg: 0 12px 48px rgba(13,27,42,.18);
  --transition: .3s cubic-bezier(.4,0,.2,1);
  --font-heading: 'Playfair Display', serif;
  --font-body: 'DM Sans', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--navy);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* BUTTONS */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  color: var(--white);
  padding: 13px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: .95rem;
  transition: var(--transition);
  box-shadow: 0 4px 18px rgba(26,111,181,.30);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(26,111,181,.45); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  padding: 13px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: .95rem;
  border: 2px solid rgba(255,255,255,.55);
  transition: var(--transition);
}
.btn-outline:hover { background: rgba(255,255,255,.15); border-color: var(--white); }

.btn-large { padding: 16px 38px; font-size: 1.05rem; }

/* TOPBAR */
.topbar {
  background: var(--navy);
  color: rgba(255,255,255,.75);
  font-size: .82rem;
  padding: 8px 0;
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.topbar-phone { color: var(--gold-light); font-weight: 600; }
.topbar-phone:hover { color: var(--white); }

/* NAVBAR */
.navbar {
  position: sticky;
  top: 0;
  z-index: 999;
  background: var(--white);
  border-bottom: 1px solid rgba(13,27,42,.08);
  box-shadow: 0 2px 16px rgba(13,27,42,.06);
  transition: var(--transition);
}
.navbar.scrolled { box-shadow: var(--shadow); }

.nav-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  padding-top: 14px;
  padding-bottom: 14px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-icon {
  font-size: 1.8rem;
  color: var(--blue);
  line-height: 1;
}
.logo strong { display: block; font-size: 1.2rem; font-family: var(--font-heading); color: var(--navy); line-height: 1; }
.logo small { font-size: .72rem; color: var(--gray); letter-spacing: .06em; text-transform: uppercase; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}
.nav-links a {
  font-size: .92rem;
  font-weight: 500;
  color: var(--navy);
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 2px;
  background: var(--blue);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-links a:hover, .nav-links a.active { color: var(--blue); }

.dropdown { position: relative; }
.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 12px);
  left: -16px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  min-width: 200px;
  padding: 8px 0;
  border: 1px solid rgba(13,27,42,.06);
}
.dropdown-menu a {
  display: block;
  padding: 10px 20px;
  font-size: .9rem;
}
.dropdown-menu a:hover { background: var(--cream); color: var(--blue); }
.dropdown:hover .dropdown-menu { display: block; }

.nav-cta { margin-left: 8px; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  transition: var(--transition);
}

.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 16px 24px 20px;
  border-top: 1px solid var(--gray-light);
  gap: 4px;
}
.mobile-menu a {
  padding: 10px 0;
  font-weight: 500;
  border-bottom: 1px solid var(--gray-light);
  font-size: .95rem;
}
.mobile-menu .btn-primary { margin-top: 12px; justify-content: center; }

/* HERO */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(13,27,42,.88) 40%, rgba(26,111,181,.35) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding-top: 60px;
  padding-bottom: 60px;
}
.hero-badge {
  display: inline-block;
  background: rgba(200,152,42,.2);
  border: 1px solid var(--gold);
  color: var(--gold-light);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 22px;
}
.hero-content h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
}
.hero-content h1 em { color: var(--gold-light); font-style: normal; }
.hero-content p {
  color: rgba(255,255,255,.80);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 540px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255,255,255,.5);
  font-size: 1.4rem;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* STATS */
.stats {
  background: var(--navy);
  padding: 50px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item {
  text-align: center;
  padding: 20px 16px;
  border-right: 1px solid rgba(255,255,255,.1);
}
.stat-item:last-child { border-right: none; }
.stat-item strong {
  display: inline-block;
  font-size: 2.6rem;
  font-family: var(--font-heading);
  font-weight: 900;
  color: var(--gold-light);
  line-height: 1;
}
.stat-item span { color: var(--gold-light); font-size: 1.8rem; font-weight: 700; }
.stat-item p { color: rgba(255,255,255,.65); font-size: .88rem; margin-top: 6px; }

/* SECTION HEADER */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.2;
}
.section-header h2 em { color: var(--blue); font-style: normal; }
.section-header p { color: var(--gray); font-size: 1.05rem; max-width: 520px; margin: 0 auto; }
.section-header.light h2 { color: var(--white); }
.section-header.light p { color: rgba(255,255,255,.70); }

.section-tag {
  display: inline-block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--blue);
  background: rgba(26,111,181,.10);
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 12px;
}
.section-header.light .section-tag { background: rgba(255,255,255,.15); color: var(--gold-light); }

/* SERVICES */
.services { padding: 90px 0; background: var(--cream); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.service-img-wrap {
  position: relative;
  height: 210px;
  overflow: hidden;
}
.service-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.service-card:hover .service-img-wrap img { transform: scale(1.06); }
.service-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,27,42,.5) 0%, transparent 60%);
}
.service-badge {
  position: absolute;
  top: 14px; right: 14px;
  font-size: 1.4rem;
  background: var(--white);
  width: 42px; height: 42px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow);
}
.service-body { padding: 22px 22px 26px; }
.service-body h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--navy);
}
.service-body p { color: var(--gray); font-size: .9rem; line-height: 1.6; margin-bottom: 16px; }
.service-link {
  color: var(--blue);
  font-weight: 600;
  font-size: .9rem;
  transition: gap var(--transition);
}
.service-link:hover { text-decoration: underline; }

/* ABOUT STRIP */
.about-strip { padding: 90px 0; background: var(--white); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-img-side {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
}
.about-img-side img {
  width: 100%; height: 480px;
  object-fit: cover;
  border-radius: var(--radius);
}
.about-badge-float {
  position: absolute;
  bottom: 28px; right: -20px;
  background: var(--gold);
  color: var(--navy);
  border-radius: var(--radius);
  padding: 18px 24px;
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.about-badge-float strong { display: block; font-size: 2.2rem; font-family: var(--font-heading); font-weight: 900; line-height: 1; }
.about-badge-float span { font-size: .8rem; font-weight: 600; }

.about-text-side h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 18px;
  line-height: 1.2;
  color: var(--navy);
}
.about-text-side h2 em { color: var(--blue); font-style: normal; }
.about-text-side p { color: var(--gray); line-height: 1.75; margin-bottom: 14px; }

.about-features {
  margin: 20px 0 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.about-features li { color: var(--navy); font-weight: 500; font-size: .92rem; }

/* WHY US */
.why-us { padding: 90px 0; background: var(--cream); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.why-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 34px 26px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: var(--transition);
  border-bottom: 3px solid transparent;
}
.why-card:hover { transform: translateY(-4px); border-color: var(--blue); box-shadow: var(--shadow-lg); }
.why-icon { font-size: 2.4rem; margin-bottom: 16px; }
.why-card h3 { font-family: var(--font-heading); font-size: 1.15rem; margin-bottom: 10px; color: var(--navy); }
.why-card p { color: var(--gray); font-size: .9rem; line-height: 1.65; }

/* PROCESS */
.process { padding: 90px 0; background: var(--navy); }
.process-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.step {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  flex: 1;
  min-width: 160px;
  max-width: 220px;
  transition: var(--transition);
}
.step:hover { background: rgba(255,255,255,.12); }
.step-num {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 14px;
}
.step h3 { color: var(--white); font-size: 1rem; font-weight: 600; margin-bottom: 8px; }
.step p { color: rgba(255,255,255,.60); font-size: .85rem; }
.step-arrow {
  color: var(--gold);
  font-size: 1.6rem;
  margin-top: 48px;
  flex-shrink: 0;
}

/* TESTIMONIALS */
.testimonials { padding: 90px 0; background: var(--white); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.review-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 32px 28px;
  border-left: 4px solid var(--blue);
  transition: var(--transition);
}
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.review-stars { color: var(--gold); font-size: 1.1rem; margin-bottom: 14px; letter-spacing: 2px; }
.review-card p { color: var(--gray); font-size: .95rem; line-height: 1.7; margin-bottom: 16px; font-style: italic; }
.review-card strong { color: var(--navy); font-weight: 600; }

/* CTA BAND */
.cta-band {
  background: linear-gradient(135deg, var(--blue) 0%, #0d4f8a 100%);
  padding: 60px 0;
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-inner h2 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: var(--white);
  font-weight: 700;
}
.cta-inner p { color: rgba(255,255,255,.75); font-size: 1.05rem; margin-top: 6px; }

.cta-band .btn-primary {
  background: var(--gold);
  color: var(--navy);
  box-shadow: 0 6px 28px rgba(200,152,42,.45);
}
.cta-band .btn-primary:hover { background: var(--gold-light); }

.pulse { animation: pulse 2s infinite; }
@keyframes pulse {
  0%,100% { box-shadow: 0 6px 28px rgba(200,152,42,.45); }
  50% { box-shadow: 0 6px 40px rgba(200,152,42,.75); }
}

/* FOOTER */
.footer { background: var(--navy); padding: 72px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.3fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand .logo strong { color: var(--white); }
.footer-brand .logo small { color: rgba(255,255,255,.45); }
.footer-brand .logo-icon { color: var(--gold-light); }
.footer-brand p { color: rgba(255,255,255,.55); font-size: .9rem; margin-top: 16px; line-height: 1.7; }
.footer-phone {
  display: inline-block;
  margin-top: 18px;
  color: var(--gold-light);
  font-weight: 600;
  font-size: 1rem;
}

.footer-col h4 {
  color: var(--white);
  font-size: .88rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a { color: rgba(255,255,255,.55); font-size: .9rem; transition: color var(--transition); }
.footer-col ul a:hover { color: var(--gold-light); }
.footer-col p { color: rgba(255,255,255,.55); font-size: .9rem; margin-bottom: 8px; }
.footer-col p a { color: rgba(255,255,255,.55); }
.footer-col p a:hover { color: var(--gold-light); }

.footer-bottom {
  padding: 20px 0;
}
.footer-bottom p { color: rgba(255,255,255,.35); font-size: .82rem; text-align: center; }

/* FLOATING BUTTONS */
.whatsapp-float, .phone-float {
  position: fixed;
  z-index: 888;
  border-radius: 50%;
  width: 54px; height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,.25);
  transition: transform .2s ease, box-shadow .2s ease;
}
.whatsapp-float:hover, .phone-float:hover { transform: scale(1.1); }
.whatsapp-float { background: #25d366; bottom: 100px; right: 22px; }
.phone-float { background: var(--blue); bottom: 34px; right: 22px; font-size: 1.4rem; }

/* ============================================================
   INNER PAGES — hakkimizda, hizmet, iletisim
   ============================================================ */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, #1a3a5c 100%);
  padding: 80px 0 70px;
  text-align: center;
}
.page-hero .breadcrumb { color: rgba(255,255,255,.45); font-size: .85rem; margin-bottom: 14px; }
.page-hero .breadcrumb a { color: rgba(255,255,255,.6); }
.page-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--white);
  font-weight: 700;
}
.page-hero h1 em { color: var(--gold-light); font-style: normal; }

.inner-section { padding: 80px 0; }
.inner-section.bg-cream { background: var(--cream); }

.content-block h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
}
.content-block h2 em { color: var(--blue); font-style: normal; }
.content-block p { color: var(--gray); line-height: 1.75; margin-bottom: 14px; }

/* SERVICE PAGE */
.service-page-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}
.service-page-img img {
  width: 100%; height: 420px;
  object-fit: cover;
  border-radius: var(--radius);
}
.service-features { margin-top: 24px; }
.service-features li {
  padding: 10px 0;
  border-bottom: 1px solid var(--gray-light);
  color: var(--navy);
  font-size: .95rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.service-features li::before {
  content: '✓';
  color: var(--blue);
  font-weight: 700;
  flex-shrink: 0;
}

/* CONTACT */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: start;
}
.contact-info-card {
  background: var(--navy);
  border-radius: var(--radius);
  padding: 36px;
  color: var(--white);
}
.contact-info-card h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin-bottom: 28px;
  color: var(--gold-light);
}
.contact-item {
  display: flex;
  gap: 14px;
  margin-bottom: 22px;
  align-items: flex-start;
}
.contact-item-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.contact-item-text strong { display: block; font-size: .8rem; letter-spacing: .06em; text-transform: uppercase; color: rgba(255,255,255,.45); margin-bottom: 4px; }
.contact-item-text a, .contact-item-text span { color: var(--white); font-size: .97rem; }

.contact-form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow);
}
.contact-form h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 24px;
}
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}
.form-group input, .form-group textarea, .form-group select {
  width: 100%;
  border: 1.5px solid #e5e7eb;
  border-radius: 8px;
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--navy);
  transition: border-color var(--transition);
  background: var(--white);
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none;
  border-color: var(--blue);
}
.form-group textarea { min-height: 120px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-success {
  display: none;
  background: #d1fae5;
  color: #065f46;
  padding: 14px 18px;
  border-radius: 8px;
  font-weight: 600;
  margin-top: 12px;
}

/* MAP */
.map-wrap {
  margin-top: 56px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.map-wrap iframe { display: block; width: 100%; height: 380px; border: 0; }

/* ============================================================
   ANIMATIONS
   ============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .about-grid { gap: 40px; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .mobile-menu.open { display: flex; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.1); }
  .stat-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,.1); }
  .stat-item:last-child { border-bottom: none; }

  .services-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .about-img-side img { height: 300px; }
  .about-badge-float { right: 16px; }
  .why-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-inner { flex-direction: column; text-align: center; }

  .process-steps { flex-direction: column; align-items: center; }
  .step-arrow { display: none; }
  .step { max-width: 100%; width: 100%; }

  .contact-grid { grid-template-columns: 1fr; }
  .service-page-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .about-features { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }

  .topbar-inner span { display: none; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   HERO SLIDER
   ============================================================ */
.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease;
}
.hero-slide.active { opacity: 1; }

.slider-dots {
  position: absolute;
  bottom: 70px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 10px;
}
.dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,.4);
  border: none;
  cursor: pointer;
  transition: background .3s, transform .3s;
  padding: 0;
}
.dot.active { background: var(--gold-light); transform: scale(1.3); }

/* Fix: ensure service cards images display properly */
.service-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Fix: about section image */
.about-img-side img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius);
  display: block;
}

/* Fix: service page image */
.service-page-img img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius);
  display: block;
}
