/* ============================================
   Garantili Oto Servis - Custom Styles
   Bootstrap 5 Theme Override & Custom Components
   ============================================ */

/* ---------- CSS Variables / Design Tokens ---------- */
/* Figma Atomic Design System - Garantili Oto Servis */
:root {
  /* Primary Green (Olive/Lime) */
  --gos-primary-50: #F3F9EC;
  --gos-primary-100: #D8E0C4;
  --gos-primary-200: #C9E3A7;
  --gos-primary-300: #81D77F;
  --gos-primary-400: #A1CF66;
  --gos-primary-500: #8AC340;
  --gos-primary-600: #7EB13A;
  --gos-primary-700: #628A2D;
  --gos-primary-800: #4C6B23;
  --gos-primary-900: #3A521B;

  /* Secondary Green (Dark Forest) */
  --gos-secondary-50: #E6ECE9;
  --gos-secondary-100: #B5C4BB;
  --gos-secondary-200: #8CA79A;
  --gos-secondary-300: #587F6C;
  --gos-secondary-400: #376640;
  --gos-secondary-500: #054033;
  --gos-secondary-600: #053A30;
  --gos-secondary-700: #042D19;
  --gos-secondary-800: #033513;
  --gos-secondary-900: #03180F;

  /* Base White */
  --gos-base-white-100: #FFFFFF;
  --gos-base-white-200: #F1F1F1;
  --gos-base-white-300: #F3F3F3;

  /* Base Dark */
  --gos-base-dark-100: #02190E;
  --gos-base-dark-200: #021B0F;
  --gos-base-dark-300: #35493F;

  /* Grey */
  --gos-grey-50: #FDFDFD;
  --gos-grey-100: #F9F9F9;
  --gos-grey-200: #F6F6F6;
  --gos-grey-300: #F2F3F2;
  --gos-grey-400: #EFEFEF;
  --gos-grey-500: #EBEBEB;
  --gos-grey-600: #D6D6D6;
  --gos-grey-700: #A7A7A7;
  --gos-grey-800: #818181;
  --gos-grey-900: #636363;

  /* Dark Grey */
  --gos-darkgrey-500: #4A4A4A;
  --gos-darkgrey-700: #353535;
  --gos-darkgrey-900: #1F1F1F;

  /* Semantic shortcuts */
  --gos-green: #8AC340;
  --gos-green-hover: #7EB13A;
  --gos-green-dark: #628A2D;
  --gos-green-darker: #4C6B23;
  --gos-bg-dark: #02190E;
  --gos-bg-dark-lighter: #054033;
  --gos-green-medium: #A1CF66;
  --gos-green-soft: #C9E3A7;
  --gos-green-light: #D8E0C4;
  --gos-green-lighter: #F3F9EC;
  --gos-green-bg: #F3F9EC;
  --gos-white: #FFFFFF;
  --gos-text-dark: #02190E;
  --gos-text-body: #4A4A4A;
  --gos-text-gray: #818181;
  --gos-text-muted: #A7A7A7;
  --gos-border: #EBEBEB;
  --gos-shadow: 0 4px 20px rgba(2, 25, 14, 0.06);
  --gos-shadow-lg: 0 8px 40px rgba(2, 25, 14, 0.10);
  --gos-radius: 12px;
  --gos-radius-lg: 20px;
  --gos-radius-xl: 28px;
  --gos-transition: all 0.3s ease;
}

/* ---------- Global Styles ---------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Manrope', sans-serif;
  color: var(--gos-text-body);
  background-color: var(--gos-white);
  overflow-x: hidden;
  line-height: 1.7;
  font-size: 16px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Brother 1816', 'Manrope', sans-serif;
  color: var(--gos-text-dark);
  font-weight: 600;
}

h1 {
  font-size: 3rem;
  line-height: 1.1;
}

h2 {
  font-size: 1.75rem;
  line-height: 1.17;
}

h3 {
  font-size: 1.5rem;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--gos-transition);
}
p span {
        font-size: 1.05rem;
    /* color: #444; */
    line-height: 1.9;
}

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

section {
  padding: 80px 0;
  position: relative;
}

.text-gos-green {
  color: var(--gos-green) !important;
}

.bg-gos-green {
  background-color: var(--gos-green) !important;
}

.bg-gos-light {
  background-color: var(--gos-green-lighter) !important;
}

.bg-gos-dark {
  background-color: var(--gos-bg-dark) !important;
}

/* ---------- Badge / Label Styles ---------- */
.gos-badge {
  display: inline-block;
  padding: 6px 20px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 500;
  border: 1px solid var(--gos-green);
  color: var(--gos-green);
  background: var(--gos-white);
}

.gos-badge-filled {
  background: var(--gos-green);
  color: var(--gos-white);
  border-color: var(--gos-green);
}

/* ---------- Section Title ---------- */
.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--gos-text-gray);
  max-width: 600px;
}

/* ---------- Buttons ---------- */
.btn-gos {
  background-color: var(--gos-green);
  color: var(--gos-white);
  border: none;
  border-radius: 50px;
  padding: 12px 32px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--gos-transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-gos:hover {
  background-color: var(--gos-green-hover);
  color: var(--gos-white);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(138, 195, 64, 0.4);
}

.btn-gos-outline {
  background: transparent;
  color: var(--gos-text-dark);
  border: 2px solid var(--gos-border);
  border-radius: 50px;
  padding: 10px 28px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--gos-transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-gos-outline:hover {
  border-color: var(--gos-green);
  color: var(--gos-green);
  transform: translateY(-2px);
}

.btn-gos-sm {
  padding: 8px 20px;
  font-size: 0.85rem;
}

.btn-gos-nav {
  padding: 14px 32px;
  font-size: 1rem;
  border-radius: 100px;
}

/* ---------- Navbar ---------- */
.gos-navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(to bottom, var(--gos-white) 50%, transparent 50%);
  padding: 12px 0;
  transition: var(--gos-transition);
  z-index: 1050;
}

/* .gos-navbar.scrolled {
  box-shadow: 0 2px 20px rgba(2, 25, 14, 0.06);
} */

.gos-navbar .navbar-brand img {
  height: 100px;
}

.gos-navbar .navbar-collapse {
  background: #FAFBFD;
  border: 1px solid var(--gos-grey-300);
  border-radius: 100px;
  padding: 4px 8px;
  margin-left: 1.5rem;
  position: relative;
}

.gos-navbar .navbar-nav {
  position: relative;
}

.gos-navbar .nav-link {
  color: #587F6C;
  font-weight: 600;
  font-size: 1rem;
  padding: 12px 18px !important;
  transition: var(--gos-transition);
  white-space: nowrap;
}

.gos-navbar .nav-link:hover,
.gos-navbar .nav-link.active {
  color: var(--gos-primary-500);
}

.gos-navbar .dropdown-menu {
  border: none;
  box-shadow: var(--gos-shadow);
  border-radius: var(--gos-radius);
  padding: 12px 0;
  margin-top: 12px;
}

.gos-navbar .dropdown-item {
  padding: 8px 20px;
  font-size: 0.9rem;
  transition: var(--gos-transition);
  color: #587F6C;
}

.gos-navbar .dropdown-item:hover {
  background-color: var(--gos-primary-50);
  color: var(--gos-primary-600);
}

.navbar-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 8px;
}

.navbar-mail-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--gos-primary-500);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gos-white);
  font-size: 1.2rem;
  transition: var(--gos-transition);
}

.navbar-mail-btn:hover {
  background: var(--gos-primary-600);
  color: var(--gos-white);
}

/* ---------- Hizmetlerimiz Mega Menu ---------- */
.gos-mega-dropdown {
  position: static;
}

.gos-mega-dropdown > .nav-link {
  position: relative;
}

.gos-mega-dropdown.show > .nav-link::before {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -15px;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 10px solid #8ac340;
  z-index: 2;
}

.gos-mega-menu {
  position: absolute !important;
  top: calc(100% + 16px) !important;
  width: 940px;
  left: 50% !important;
  right: auto !important;
  transform: translateX(-50%) !important;
  border: 1px solid #edf2ee !important;
  box-shadow: 0 24px 50px rgba(5, 64, 35, 0.08), 0 8px 18px rgba(5, 64, 35, 0.04);
  border-radius: 24px !important;
  padding: 18px 20px 18px !important;
  margin-top: 0 !important;
  background: linear-gradient(90deg, #ffffff 0%, #ffffff 76%, #f4f9eb 100%) !important;
}

.gos-mega-menu::before {
  display: none;
}

.gos-mega-inner {
  display: flex;
  align-items: stretch;
  gap: 14px;
}

.gos-mega-services {
  flex: 1;
  min-width: 0;
}

.gos-mega-title {
  font-size: 12px;
  font-weight: 600;
  color: #054023;
  text-transform: none;
  letter-spacing: 0.2px;
  margin-bottom: 14px;
  padding-left: 4px;
}

.gos-mega-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 12px;
}

.gos-mega-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  background: #ffffff;
  border-radius: 12px;
  text-decoration: none;
  color: #37664f;
  transition: all 0.18s ease;
  border: 1px solid #edf2ee;
  box-shadow: 0 10px 22px rgba(7, 40, 22, 0.04);
  min-height: 50px;
}

.gos-mega-item:hover {
  background: #f8fcf2;
  border-color: #d4e8b4;
  box-shadow: 0 14px 28px rgba(7, 40, 22, 0.07);
  transform: none;
  color: #054023;
}

.gos-mega-item-icon {
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8ac340;
  font-size: 16px;
  flex-shrink: 0;
}

.gos-mega-item-text {
  flex: 1;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.25;
}

.gos-mega-item-arrow {
  font-size: 12px;
  color: #bec9c2;
  flex-shrink: 0;
  transition: all 0.2s ease;
}

.gos-mega-item:hover .gos-mega-item-arrow {
  color: #8fb16a;
  transform: none;
}

.gos-mega-promo {
  width: 220px;
  flex-shrink: 0;
}

.gos-mega-promo-card {
  background: #f7f7f7;
  border-radius: 12px;
  border: 1px solid #e7ece7;
  box-shadow: 0 12px 24px rgba(7, 40, 22, 0.04);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.gos-mega-promo-media {
  position: relative;
  flex: 1;
  min-height: 0;
}

.gos-mega-promo-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 12px;
}

/* Figma: play butonu 48x48, bg #002613 */
.gos-mega-promo-play {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #002613;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.1rem;
  transition: all 0.25s ease;
}

.gos-mega-promo-play:hover {
  background: #054023;
  transform: translateX(-50%) scale(1.08);
}

/* ---------- Hero Section ---------- */
.hero-section {
  padding: 154px 0 30px;
  background: var(--gos-white);
  position: relative;
  overflow: hidden;
  min-height: 70vh;
}


.hero-content {
  position: relative;
  z-index: 2;
}

.hero-guarantee-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0px;
  background: transparent;
  border-radius: 85px;
  font-size: 1rem;
  color: #37664F;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.hero-guarantee-badge strong {
  font-weight: 800;
}

.hero-guarantee-badge i {
  color: var(--gos-primary-500);
}

.hero-title {
  font-size: 3rem;
  font-weight: 400;
  line-height: 1.03;
  margin-bottom: 1.5rem;
  color: #292929;
  letter-spacing: -0.64px;
}

.hero-title .highlight {
  display: block;
  height: 160px;
  font-size: 4.5rem;
  font-weight: 800;
  letter-spacing: -0.72px;
  background: linear-gradient(90deg, #054023 0%, #548A71 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 1rem;
  color: #8CA79A;
  margin-bottom: 2rem;
  max-width: 700px;
  line-height: 1.4;
  font-weight: 500;
}

.hero-description strong {
  color: #37664F;
  font-weight: 600;
}

.hero-tse-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 24px;
  background: transparent;
  border-radius: 16px;
  font-size: 1.25rem;
  color: #587F6C;
  font-weight: 500;
}

.hero-tse-badge strong {
  font-weight: 800;
}

.hero-right {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-slider-img {
  max-width: 110%;
  width: 700px;
  height: auto;
  position: relative;
  z-index: 2;
  margin-right: -60px;
}

.hero-price-orijinal {
  bottom: 20px;
  left: 0;
}

.hero-price-alternatif {
  bottom: 20px;
  right: 0;
}

/* Hero review card */
.hero-review-card {
  background: var(--gos-white);
  border-radius: var(--gos-radius);
  box-shadow: var(--gos-shadow);
  padding: 18px;
  max-width: 450px;
  margin-top: 20px;
}

.hero-review-card .review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.hero-review-card .review-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.hero-review-card .review-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--gos-text-dark);
}

.hero-review-card .review-service {
  font-size: 0.75rem;
  color: var(--gos-text-muted);
}

.hero-review-card .review-stars {
  color: #FFC107;
  font-size: 0.85rem;
}

.hero-review-card .review-text {
  font-size: 0.82rem;
  color: var(--gos-text-gray);
  line-height: 1.6;
}

.hero-review-card .quote-icon {
  color: var(--gos-green);
  font-size: 1.5rem;
  float: right;
  opacity: 0.3;
}

/* ---------- Customers / Testimonials Section ---------- */
.testimonials-section {
  padding: 60px 0 0;
  position: relative;
  overflow: hidden;
  --testimonial-card-width: 268px;
  --testimonial-card-active-width: 360px;
  --testimonial-slider-height: 640px;
}

.testimonials-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
  z-index: 0;
  background: url('../assets/img/Background-Design.png') no-repeat center top;
  background-size: cover;
}

.testimonials-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 45%;
  /* background: var(--gos-white); */
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
}

.testimonials-content {
  position: relative;
  z-index: 2;
}

.testimonials-section .section-title {
  text-align: center;
  color: var(--gos-white);
}

.testimonials-section .section-subtitle {
  text-align: center;
  /* margin: 0 auto 3rem; */
  color: var(--gos-white);
}

.carousel-nav-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--gos-white);
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: var(--gos-transition);
  color: var(--gos-white);
}

.carousel-nav-btn:hover {
  background: var(--gos-white);
  border-color: var(--gos-white);
  color: var(--gos-base-dark-100);
}

.carousel-nav-btn.active,
.carousel-nav-btn-filled {
  background: var(--gos-base-dark-100);
  border-color: var(--gos-base-dark-100);
  color: var(--gos-white);
}

.testimonial-card {
  background: #F7F7F7;
  border: 2px solid #E6EEEA;
  border-radius: 28px 28px 20px 20px;
  overflow: hidden;
  transition: width 0.45s cubic-bezier(0.25, 0.1, 0.25, 1), transform 0.3s ease, box-shadow 0.3s ease;
  width: var(--testimonial-card-width);
  flex-shrink: 0;
}

.testimonials-section .fake-container-slider {
  min-height: var(--testimonial-slider-height);
}

.testimonials-section .fake-container-track {
  min-height: var(--testimonial-slider-height);
  align-items: center;
}

.testimonial-featured {
  width: var(--testimonial-card-active-width);
  align-self: center;
}

.testimonial-preview-video {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  border-radius: 26px 26px 0 0;
  display: none;
}

.testimonial-video .testimonial-poster {
  display: block;
}

.testimonial-video.testimonial-featured .testimonial-poster {
  display: none;
}

.testimonial-video.testimonial-featured .testimonial-preview-video {
  display: block;
}

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

.testimonial-card-img {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  border-radius: 26px 26px 0 0;
}

/* Video testimonial */
.testimonial-video {
  position: relative;
  cursor: pointer;
}

.testimonial-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: rgba(0, 0, 0, 0.55);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.8rem;
  transition: var(--gos-transition);
  pointer-events: auto;
  z-index: 3;
}

.testimonial-video:hover .testimonial-play-btn {
  background: var(--gos-primary-500);
  transform: translate(-50%, -50%) scale(1.1);
}

.testimonial-play-btn.is-audio-toggle {
  top: 18px;
  right: 18px;
  left: auto;
  transform: none;
  width: 44px;
  height: 44px;
  background: rgba(5, 64, 51, 0.82);
  font-size: 1.15rem;
  backdrop-filter: blur(10px);
}

.testimonial-video:hover .testimonial-play-btn.is-audio-toggle {
  background: rgba(5, 64, 51, 0.96);
  transform: scale(1.06);
}

/* Video modal */
.testimonial-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.testimonial-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.testimonial-modal-content {
  position: relative;
  height: 85vh;
  aspect-ratio: 9 / 16;
  max-width: 90vw;
}

.testimonial-modal-content video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  background: #000;
}

.testimonial-modal-close {
  position: absolute;
  top: -40px;
  right: 0;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 4px 8px;
}

.testimonial-card-footer {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 10px 14px;
  font-size: 0.72rem;
  color: #6E6E6E;
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
}

.testimonial-card-footer .stars {
  display: flex;
  align-items: center;
  gap: 3px;
  color: #FFC107;
}

.testimonial-card-footer .stars .rating-num {
  color: #6E6E6E;
  margin-left: 4px;
}

.testimonial-card-footer .stat-item {
  display: flex;
  align-items: center;
  gap: 4px;
}

.testimonial-card-footer .like-count {
  color: #F03D3D;
}

.testimonial-card-footer .share-btn {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: #8AC340;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gos-white);
  font-size: 0.85rem;
  margin-left: auto;
}

/* Carousel dots */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 2rem;
  padding-bottom: 2rem;
}

.carousel-dots .dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--gos-grey-500);
  cursor: pointer;
  transition: var(--gos-transition);
  border: none;
}

.carousel-dots .dot.active {
  background: var(--gos-primary-500);
}

/* ---------- GOS Nedir Section ---------- */
.gos-nedir-section {
  padding: 0;
  position: relative;
  overflow: hidden;
}

.gos-nedir-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.gos-nedir-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gos-nedir-content {
  position: relative;
  z-index: 2;
  padding: 80px 0;
}

.gos-nedir-section .section-title {
  font-size: 3rem;
  color: var(--gos-white);
  line-height: 1.12;
  letter-spacing: -0.64px;
}

.gos-nedir-section .section-title strong {
  color: var(--gos-white);
}

.gos-nedir-text {
  font-size: 1.25rem;
  color: var(--gos-white);
  line-height: 1.46;
  max-width: 700px;
  font-weight: 600;
  letter-spacing: -0.24px;
}

.gos-nedir-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--gos-white);
  font-weight: 500;
  margin-top: 1.5rem;
  padding: 16px 24px;
  background: rgba(0, 81, 43, 0.2);
  border: none;
  border-radius: 104px;
  transition: var(--gos-transition);
  font-size: 1.5rem;
}

.gos-nedir-link:hover {
  background: rgba(0, 81, 43, 0.35);
  color: var(--gos-white);
}

.gos-nedir-link .arrow-circle {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gos-white);
  font-size: 1rem;
}

.gos-video-card {
  border-radius: 36px;
  overflow: hidden;
  position: relative;
  border: 10px solid var(--gos-white);
}

.gos-video-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 26px;
}

.gos-video-card .play-btn {
  position: absolute;
  top: 20px;
  left: 20px;
  background: #FF0000;
  color: var(--gos-white);
  padding: 8px 18px;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(255, 0, 0, 0.3);
  transition: background 0.2s;
}

.gos-video-card .play-btn i {
  font-size: 1.2rem;
}

.gos-video-card .play-btn:hover {
  background: #CC0000;
  color: var(--gos-white);
}

/* Row positioning for SVG connector */
.gos-nedir-row {
  position: relative;
}

/* Dashed bracket connector between button and video card */
.gos-dashed-svg {
  position: absolute;
  left: 21%;
  bottom: -4%;
  width: 28%;
  height: 90px;
  z-index: 3;
  pointer-events: none;
  overflow: visible;
}

/* ---------- 4 Steps Section ---------- */
.steps-section {
  padding: 80px 0;
  background: var(--gos-white);
  overflow: visible;
  /* Butonlar için */
}

.steps-section .section-title {
  font-size: 2.8rem;
}

/* Row container - butonlar için overflow visible */
.steps-section .row {
  overflow: visible;
  margin-top: 30px;
  /* Butonlar için üst boşluk */
}

/* Column container - butonlar için overflow visible */
.steps-section .col-md-6 {
  overflow: visible;
}

/* Step Cards - Figma'dan tam uyumlu: 242px height, 36px radius */
.step-card {
  background: #FDFDFD;
  border-radius: 36px;
  padding: 22px;
  height: 242px;
  position: relative;
  overflow: visible;
  /* Butonlar dışarı taşabilir */
  transition: var(--gos-transition);
  display: flex;
  flex-direction: column;
  margin-top: 30px;
  /* Üstte buton için boşluk */
}

.step-card:hover {
  transform: translateY(-4px);
  box-shadow: 8px 8px 30px -10px rgba(132, 132, 132, 0.15);
}

/* Dark Card (1, 4. kartlar) - #054023 */
.step-card.step-dark {
  background: #054023;
  color: var(--gos-white);
}

.step-card.step-dark h4,
.step-card.step-dark p {
  color: var(--gos-white);
}

/* Light Cards (2, 3. kartlar) - #FDFDFD */
.step-card.step-light {
  background: #FDFDFD;
  box-shadow: 8px 8px 30px -10px rgba(132, 132, 132, 0.2);
}

.step-card.step-light h4 {
  color: #37664F;
}

.step-card.step-light p {
  color: #8CA79A;
}

/* Mask Overlay - Arka plan deseni - KARTTAN TAŞMAMALI */
.step-mask-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  pointer-events: none;
  opacity: 0.4;
  z-index: 1;
  border-radius: 36px;
  /* Kartın border'ını takip et */
  overflow: hidden;
}

.step-card.step-dark .step-mask-overlay {
  background-image: url('../assets/img/mask-dark-card.png');
}

.step-card.step-light .step-mask-overlay {
  background-image: url('../assets/img/mask-light-card.png');
}

/* Step Content - İçerik wrapper */
.step-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  /* Mask için */
}

/* Step Number Container - Basitleştirilmiş icon yapısı */
.step-number-container {
  width: 80px;
  height: 60px;
  margin-bottom: 19px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Step Icon - Temiz numara icon'ları - CSS ile ZORLA eşitliyoruz */
.step-icon {
  width: 60px !important;
  height: 60px !important;

  object-fit: contain;
  display: block;
}

/* Step Titles - 24px font, -0.24px tracking */
.step-card h4 {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 26px;
  margin-bottom: 12px;
  max-height: 52px;
  /* 2 satır için */
}

/* Step Text - 14px font, -0.14px tracking */
.step-card p {
  font-family: 'Manrope', sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 16px;
  letter-spacing: -0.14px;
  margin-bottom: 0;
  max-height: 48px;
  /* 3 satır: 16px * 3 */
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

/* CTA Buttons - Sağ üstte, kart dışına taşar (Figma: -22px) */
.step-card .step-cta {
  position: absolute;
  top: -22px;
  right: 22px;
  z-index: 10;
  /* Daha yüksek z-index */
}

/* Beyaz Buton - 1. kartta */
.btn-step-white {
  background: var(--gos-white);
  color: var(--gos-green);
  border: 1px solid #F6F6F6;
  border-radius: 104px;
  padding: 5px 20px;
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 30px;
  text-align: center;
  text-decoration: none;
  box-shadow: 10px 10px 30px 0px rgba(0, 0, 0, 0.05);
  transition: var(--gos-transition);
  display: inline-block;
}

.btn-step-white:hover {
  background: #f8f8f8;
  color: var(--gos-green);
  transform: translateY(-2px);
  box-shadow: 10px 15px 35px 0px rgba(0, 0, 0, 0.08);
}

/* Yeşil Buton - 2, 3. kartlarda */
.btn-step-green {
  background: var(--gos-green);
  color: var(--gos-white);
  border: none;
  border-radius: 104px;
  padding: 5px 20px;
  font-family: 'Manrope', sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 30px;
  text-align: center;
  text-decoration: none;
  transition: var(--gos-transition);
  display: inline-block;
}

.btn-step-green:hover {
  background: var(--gos-green-hover);
  color: var(--gos-white);
  transform: translateY(-2px);
}

/* Ortada Buton - 3. kartta (şimdilik kullanılmıyor) */
.step-center-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
}

/* Phone Mockup - Left-Design.png */
.phone-mockup {
  max-width: 380px;
  margin: 0 auto;
}

.phone-mockup img {
  width: 100%;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
}

/* ---------- Services Section ---------- */
.services-section {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  background: url('../assets/img/Light.png') no-repeat center center;
  background-size: cover;
}

.services-section .section-title {
  color: var(--gos-white);
  font-size: 3rem;
  line-height: 1.03;
  letter-spacing: -0.64px;
  margin-bottom: 0.5rem;
}

.services-line {
  width: 420px;
  max-width: 100%;
  height: 5px;
  border-radius: 30px;
  background: linear-gradient(to right, rgba(138, 195, 64, 0) 10%, #8AC340 100%);
  margin-bottom: 1rem;
}

.services-section .section-subtitle {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.3rem;
  line-height: 1.46;
  letter-spacing: -0.24px;
  font-weight: 600;
}

.services-left {
  padding-right: 2rem;
}

.btn-services {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 24px;
  border-radius: 104px;
  background: rgba(0, 81, 43, 0.2);
  color: var(--gos-white);
  font-family: 'Manrope', sans-serif;
  font-weight: 500;
  font-size: 1.35rem;
  line-height: 1.07;
  text-decoration: none;
  width: fit-content;
  margin-top: 1.5rem;
  transition: var(--gos-transition);
}

.btn-services:hover {
  background: rgba(0, 81, 43, 0.35);
  color: var(--gos-white);
}

.btn-services-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  transform: rotate(-45deg);
}

/* Service Cards Grid */
.services-grid {
  align-items: flex-start;
}

.service-col-offset {
  margin-top: -64px;
}

.service-card {
  background: var(--gos-white);
  border-radius: 24px;
  padding: 24px;
  box-shadow: 15px 15px 24px -20px rgba(0, 0, 0, 0.05);
  height: 273px;
  transition: var(--gos-transition);
  border: 1px solid transparent;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.12);
}

.service-card .service-icon {
  width: 70px;
  height: 70px;
  min-height: 70px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.service-card .service-icon img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

/* Title styling */
.service-card h5 {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.24px;
  margin-bottom: 0.5rem;
}

.service-card p {
  font-size: 0.875rem;
  color: #a7a7a7;
  line-height: 1.14;
  letter-spacing: -0.14px;
  font-weight: 500;
  margin-bottom: 0;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
}

/* Title color spans */
.sc-green {
  color: var(--gos-primary-500);
}

.sc-dark {
  color: #1e1e1e;
}

.sc-light {
  color: #ededed;
}

.sc-white {
  color: var(--gos-white);
}

/* ---- Service Card: TRANSPARENT/DARK (Ara Bakım) ---- */
.service-card-dark {
  background: var(--gos-secondary-500);
  box-shadow: none;
  border-color: transparent;
}

.service-card-dark:hover {
  transform: translateY(-4px);
  box-shadow: none;
}

.service-card-dark p {
  color: var(--gos-white);
}

/* ---- Service Card: GREEN (+45 Hizmet) ---- */
.service-card-green {
  background: #8AC340;
}

.service-card-green p {
  color: var(--gos-white);
}

/* ---- Icon Background Variants ---- */
.service-icon-green {
  background: var(--gos-primary-500);
}

.service-icon-white {
  background: var(--gos-base-white-100);
}

.service-icon-dark {
  background: var(--gos-secondary-500);
}

/* ---- Icon Color Filters ---- */
/* White SVG → Green (#8AC340) for icons on light backgrounds */
.icon-filter-green {
  filter: invert(64%) sepia(30%) saturate(1100%) hue-rotate(55deg) brightness(95%) contrast(90%);
}

/* Green SVG → White for icons on green backgrounds */
.icon-filter-white {
  filter: brightness(0) invert(1);
}

/* ---------- Pricing Section ---------- */
.pricing-section {
  padding: 80px 0 0 0;
  background: var(--gos-grey-50);
  overflow: hidden;
}

/* Pricing cards row - overlaps the green bg */
.pricing-cards-row {
  position: relative;
  z-index: 2;
}

/* Dark green background wrapper */
.pricing-bg-wrapper {
  position: relative;
  margin-top: -180px;
  padding: 220px 0 80px 0;
  background: url(../assets/img/price-background.png) center top / 100% 50% no-repeat;
  overflow: hidden;
}

/* Decorative green gradient blobs */
.pricing-decor {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.pricing-decor-1 {
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(138, 195, 64, 0.35) 0%, transparent 70%);
  right: -60px;
  top: 40%;
  filter: blur(40px);
}

.pricing-decor-2 {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(138, 195, 64, 0.25) 0%, transparent 70%);
  right: 20px;
  bottom: 10%;
  filter: blur(30px);
}

/* Package description cards - on dark bg */
.pricing-bg-wrapper .package-desc-card {
  position: relative;
  z-index: 1;
}

/* Decorative Icon-Rotate under desc cards */
.desc-card-icon-rotate {
  text-align: center;
  margin-top: -45px;
}

.icon-rotate-decor {
  width: 80px;
  height: 80px;
  animation: rotate-slow 10s linear infinite;
  /* opacity: 0.5;
  filter: brightness(0) invert(1); */
}

@keyframes rotate-slow {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.pricing-section .section-title {
  font-family: 'Manrope', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  font-style: normal;
  line-height: 66px;
  letter-spacing: -0.64px;
  text-align: center;
  background: linear-gradient(30deg, #034722 1.02%, #5D9079 100.97%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pricing-section .section-title .title-light {
  font-weight: 400;
}

/* Pricing section özel badge stili */
.pricing-glass-badge {
  display: inline-block;
  background: linear-gradient(174deg, rgb(196 196 196 / 20%) 0%, rgba(255, 255, 255, 0.55) 100%);
  backdrop-filter: blur(32px);
  -webkit-backdrop-filter: blur(32px);
  border: 1px solid rgb(255 255 255);
  padding: 8px 24px;
  border-radius: 69px;
  font-size: 1rem;
  font-weight: 500;
  box-shadow: 0 8px 32px rgba(3, 71, 34, 0.06), inset 0 1px 2px rgba(255, 255, 255, 0.8);
}

.pricing-glass-badge span {
  background: linear-gradient(30deg, #034722 1.02%, #5D9079 100.97%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pricing-section .section-subtitle {
  color: #587F6C;
  font-weight: 500;
  line-height: 1.3rem;
  font-size: 1.1rem;
  max-width: 620px;
}

.pricing-features {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.pricing-feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gos-secondary-400);
  background: linear-gradient(174deg, rgb(196 196 196 / 20%) 0%, rgba(255, 255, 255, 0.55) 100%);
  backdrop-filter: blur(32px);
  -webkit-backdrop-filter: blur(32px);
  border: 1px solid rgb(255 255 255);
  padding: 12px 20px;
  border-radius: 85px;
}

.pricing-feature-item .feature-icon {
  width: 24px;
  height: auto;
  flex-shrink: 0;
}

.pricing-feature-item i {
  color: var(--gos-secondary-400);
  font-size: 1.1rem;
}

.pricing-feature-separator {
  color: var(--gos-secondary-400);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
}

.pricing-feature-separator .separator-icon {
  width: 24px;
  height: 24px;
}

/* Pricing Card Images */
.pricing-card-img {
  width: 100%;
  height: auto;
  border-radius: 24px;
  transition: var(--gos-transition);
}

.pricing-card-img:hover {
  transform: translateY(-6px);
}

/* Package description cards */
.package-desc-card {
  background: var(--gos-white);
  border-radius: var(--gos-radius-lg);
  padding: 28px;
  box-shadow: var(--gos-shadow);
}

.package-desc-card.premium-desc {
  background: linear-gradient(160deg, var(--gos-secondary-500) 0%, var(--gos-primary-600) 100%);
  color: var(--gos-white);
}

.package-desc-card .desc-icon-circle {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.package-desc-card .desc-icon-circle.icon-bg-light {
  background: var(--gos-grey-200);
}

.package-desc-card .desc-icon-circle.icon-bg-light i {
  color: var(--gos-base-dark-300);
  font-size: 1.2rem;
}

.package-desc-card .desc-icon-circle.icon-bg-green {
  background: rgba(255, 255, 255, 0.2);
}

.package-desc-card .desc-icon-circle.icon-bg-green i {
  color: var(--gos-white);
  font-size: 1.2rem;
}

.package-desc-card h5 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.package-desc-card p {
  font-size: 0.85rem;
  line-height: 1.7;
}

/* ---------- Map / Nearest Service Section ---------- */
.map-section {
  padding: 80px 0;
  background: var(--gos-grey-50);
}

.map-title {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.map-subtitle {
  color: #8CA79A;
  font-size: 1.3rem;
  line-height: 1.6;
}

.map-search-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--gos-white);
  padding: 8px 8px 8px 24px;
  border-radius: 50px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

.map-search-bar input {
  border: none;
  outline: none;
  flex: 1;
  font-size: 1rem;
  color: #B0B0B0;
  background: transparent;
}

.map-search-bar input::placeholder {
  color: #B0B0B0;
}

.map-search-bar .search-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--gos-green);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gos-white);
  font-size: 1.3rem;
  flex-shrink: 0;
}

.map-container {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  height: 380px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.map-container .map-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stat-card {
  background: var(--gos-white);
  border-radius: 16px;
  padding: 20px 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  gap: 40px;
  flex: 1;
}

.stat-card .stat-icon {
  width: 72px;
  height: 72px;
  border-radius: 30%;
  background: var(--gos-white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.stat-card .stat-icon-img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.stat-card .stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--gos-text-dark);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-card .stat-label {
  font-size: 0.85rem;
  color: #A7A7A7;
  font-weight: 500;
  font-size: 0.8rem;
  color: var(--gos-text-muted);
}

/* ---------- News Section ---------- */
/* ---------- News Section ---------- */
.news-section {
  padding: 80px 0;
  background: var(--gos-white);
  position: relative;
}

.news-section::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 55%;
  background: #F3F4F6;
  border-radius: 40px 40px 0 0;
  z-index: 0;
}

.news-section .container {
  position: relative;
  z-index: 1;
}

.news-section .fake-container-slider {
  position: relative;
  z-index: 1;
}

.news-section .carousel-nav-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: #E5E5E5;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: var(--gos-transition);
  color: var(--gos-text-dark);
  cursor: pointer;
}

.news-section .carousel-nav-btn:hover {
  background: #D5D5D5;
}

.news-section .carousel-nav-btn-filled {
  background: var(--gos-secondary-500);
  color: var(--gos-white);
}

.news-section .carousel-nav-btn-filled:hover {
  background: var(--gos-secondary-600);
}

.news-card {
  background: var(--gos-white);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  height: 100%;
  transition: var(--gos-transition);
  border: 1px solid #f0f0f0;
}

.news-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.news-card-wrapper {
  position: relative;
  flex-shrink: 0;
  width: 380px;
}

.news-card-img-wrapper {
  position: relative;
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.news-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-badge {
  position: absolute;
  bottom: 210px;
  right: 16px;
  z-index: 10;
  /* width: 48px;
  height: 48px; */
  /* background: var(--gos-white); */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  /* box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15); */
}

.news-badge-icon {
  width: 82px;
  height: 82px;
  object-fit: contain;
}

.news-card-body {
  padding: 20px 24px;
}

.news-card-body h5 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  line-height: 1.4;
  color: var(--gos-text-dark);
}

.news-card-body p {
  font-size: 0.875rem;
  color: var(--gos-text-gray);
  line-height: 1.6;
  margin-bottom: 0;
}

.news-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 24px 20px;
}

.news-card-footer .news-date {
  font-size: 0.8rem;
  color: var(--gos-text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

.news-card-footer .news-link {
  font-size: 0.875rem;
  color: var(--gos-green);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: var(--gos-transition);
}

.news-card-footer .news-link:hover {
  gap: 8px;
}

/* ---------- Quality Guarantee Section ---------- */
.quality-section {
  padding: 80px 0;
  background: var(--gos-white);
}

.quality-img {
  width: 100%;
  height: 566px;
  object-fit: cover;
  border-radius: 36px;
  flex-shrink: 0;
}

.quality-right-content {
  padding-bottom: 2rem;
}

.quality-title {
  font-family: 'Manrope', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.56px;
  color: var(--gos-green);
  margin-bottom: 1.5rem;
}

.quality-desc p {
  font-family: 'Manrope', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: #818181;
  line-height: 1.46;
  letter-spacing: -0.24px;
  margin-bottom: 1rem;
}

.quality-desc strong {
  font-weight: 700;
  color: #818181;
}

.quality-card {
  background: var(--gos-white);
  border-radius: 36px;
  padding: 32px;
  border: 2px solid #EBEBEB;
  box-shadow: 25px 17px 100px -39px rgba(0, 0, 0, 0.05);
  transition: var(--gos-transition);
  display: flex;
  flex-direction: column;
}

.quality-card:hover {
  transform: translateY(-4px);
  box-shadow: 25px 17px 80px -30px rgba(0, 0, 0, 0.1);
}

.quality-card-header {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}

.quality-card-header h5 {
  margin-bottom: 0;
}

.quality-icon {
  width: 103px;
  height: 103px;
  border-radius: 16px;
  background: #E6ECE9;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.quality-icon-img {
  width: 55px;
  height: 67px;
  object-fit: contain;
}

.quality-card h5 {
  font-family: 'Manrope', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gos-secondary-500);
  letter-spacing: -0.36px;
  line-height: 1.22;
}

.quality-card p {
  font-family: 'Manrope', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #818181;
  line-height: 1.46;
  letter-spacing: -0.24px;
  flex: 1;
}

.quality-card .quality-link {
  margin-top: -1rem;
  display: flex;
  justify-content: flex-end;
}

.quality-card .quality-link a {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: transparent;
  border: 2px solid #EBEBEB;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gos-secondary-500);
  font-size: 1rem;
  transition: var(--gos-transition);
}

.quality-card .quality-link a:hover {
  background: var(--gos-green);
  border-color: var(--gos-green);
  color: var(--gos-white);
  transform: scale(1.05);
}

/* ---------- Instagram Section ---------- */
.instagram-section {
  padding: 80px 0 0;
  background: linear-gradient(to bottom, var(--gos-white) 57%, #032313 57%);
}

.instagram-section .gos-badge {
  background: #E6EEEA;
  border-color: transparent;
  color: #548A71;
}

.instagram-section .carousel-nav-btn {
  border-color: #DADADA;
  color: var(--gos-secondary-500);
}

.instagram-section .carousel-nav-btn:hover {
  background: var(--gos-secondary-500);
  border-color: var(--gos-secondary-500);
  color: var(--gos-white);
}

.instagram-section .carousel-nav-btn-filled {
  background: var(--gos-secondary-500);
  border-color: var(--gos-secondary-500);
  color: var(--gos-white);
}

.instagram-section .carousel-nav-btn-filled:hover {
  background: var(--gos-green);
  border-color: var(--gos-green);
}

.instagram-section .section-title {
  font-family: 'Outfit', sans-serif;
  font-size: 3rem;
  font-weight: 400;
  color: var(--gos-secondary-500);
}

.instagram-section .section-subtitle {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: #292929;
  max-width: 665px;
}

.instagram-card {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--gos-shadow);
  transition: var(--gos-transition);
  background: var(--gos-white);
  min-width: 346px;
  flex-shrink: 0;
}

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

.instagram-card-img {
  width: 100%;
  height: 433px;
  object-fit: cover;
}

.instagram-section .carousel-dots {
  padding-bottom: 48px;
}

/* ---------- FAQ Section ---------- */
.faq-section {
  padding: 80px 0;
  background: var(--gos-white);
}

.faq-badge {
  background: #E6EEEA;
  border-color: transparent;
  color: #548A71;
}

.faq-section .section-title {
  font-family: 'Outfit', sans-serif;
  font-size: 3rem;
  font-weight: 400;
  color: var(--gos-secondary-500);
}

.faq-section .section-subtitle {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 400;
  color: #818181;
  /* max-width: 845px; */
}

.faq-section .accordion-item {
  border: none;
  border-radius: 16px !important;
  margin-bottom: 12px;
  overflow: hidden;
  box-shadow: none;
}

.faq-section .accordion-button {
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 1.5rem;
  color: #37664f;
  background: var(--gos-white);
  padding: 18px 28px;
  border-radius: 16px !important;
  box-shadow: none !important;
  min-height: 80px;
}

.faq-section .accordion-button:not(.collapsed) {
  background: var(--gos-green);
  color: var(--gos-white);
}

.faq-section .accordion-button::after {
  background: none;
  content: '+';
  font-size: 1.5rem;
  font-weight: 300;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid #37664f;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #37664f;
  transform: none;
  line-height: 1;
  flex-shrink: 0;
}

.faq-section .accordion-button:not(.collapsed)::after {
  content: '−';
  border-color: var(--gos-white);
  color: var(--gos-white);
}

.faq-section .accordion-body {
  padding: 16px 28px 24px;
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: #818181;
  line-height: 1.375;
  background: var(--gos-white);
}

/* --- FAQ CTA Card --- */
.faq-cta-card {
  border-radius: 36px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  background: var(--gos-white);
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.08);
}

.faq-cta-top {
  background: linear-gradient(150deg, #042d19 0%, #37664f 40%, #8ac340 100%);
  padding: 40px 40px 48px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  flex: 1;
}

.faq-cta-icon {
  width: 70px;
  height: 70px;
  background: var(--gos-white);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--gos-green);
  margin-bottom: 1.5rem;
}

.faq-cta-top h3 {
  font-family: 'Manrope', sans-serif;
  color: #fbfbfb;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.03;
  margin: 0;
}

.faq-cta-bottom {
  background: var(--gos-white);
  padding: 28px 40px 36px;
}

.faq-cta-bottom p {
  font-family: 'Outfit', sans-serif;
  font-size: 1.125rem;
  font-weight: 400;
  color: #818181;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.faq-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  background: #054023;
  color: var(--gos-white);
  font-family: 'Manrope', sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  padding: 16px 28px;
  border-radius: 12px;
  text-decoration: none;
  transition: var(--gos-transition);
}

.faq-cta-btn:hover {
  background: #032313;
  color: var(--gos-white);
}

/* ---------- Newsletter ---------- */
/* ---------- Newsletter (inside footer) ---------- */
.newsletter-box {
  background: #021b0f;
  border-radius: 24px;
  padding: 40px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.newsletter-box h4 {
  font-family: 'Manrope', sans-serif;
  color: #e6ece9;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.newsletter-box p {
  font-family: 'Manrope', sans-serif;
  color: #e6ece9;
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 0;
}

.newsletter-form {
  display: flex;
  align-items: center;
  gap: 0;
  background: #054023;
  border-radius: 12px;
  padding: 16px 16px 16px 24px;
  flex: 1;
  min-width: 300px;
  max-width: 480px;
}

.newsletter-form input {
  border: none;
  outline: none;
  background: transparent;
  color: var(--gos-white);
  padding: 0;
  font-family: 'Manrope', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  flex: 1;
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.newsletter-form button {
  background: var(--gos-white);
  color: #054023;
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  transition: var(--gos-transition);
  white-space: nowrap;
}

.newsletter-form button:hover {
  background: var(--gos-green);
  color: var(--gos-white);
}

/* ---------- Footer ---------- */
.gos-footer {
  background: #032313;
  padding: 60px 0 0;
  color: #f1f4fd;
}

.footer-logo img {
  height: 100px;
  margin-bottom: 1.25rem;
}

.footer-company-name {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.875;
  margin-bottom: 0.5rem;
  color: #f1f4fd;
}

.footer-address {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.875;
  margin-bottom: 0;
}

.footer-address a {
  color: #f1f4fd;
  text-decoration: underline;
}

.footer-phone,
.footer-email {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.875;
  margin-bottom: 0;
  color: #f1f4fd;
}

.footer-phone a,
.footer-email a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-phone a:hover,
.footer-email a:hover {
  color: #8ABE13;
}

.footer-social {
  display: flex;
  gap: 8px;
  margin-top: 1.25rem;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gos-white);
  font-size: 0.9rem;
  transition: var(--gos-transition);
}

.footer-social a:hover {
  background: var(--gos-green);
}

.footer-links h6 {
  font-family: 'Outfit', sans-serif;
  color: var(--gos-white);
  font-weight: 600;
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  font-family: 'Inter', sans-serif;
  color: #f0f4f5;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.625;
  transition: var(--gos-transition);
  text-decoration: none;
}

.footer-links ul li a:hover {
  color: var(--gos-green);
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding: 20px 0;
  margin-top: 48px;
  text-align: center;
  font-family: 'Outfit', sans-serif;
  font-size: 1.125rem;
  font-weight: 400;
  color: var(--gos-white);
}

/* ---------- Scrollbar Custom ---------- */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--gos-green-lighter);
}

::-webkit-scrollbar-thumb {
  background: var(--gos-green-soft);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gos-green);
}

/* ---------- Horizontal Scroll Container (generic, e.g. instagram) ---------- */
.horizontal-scroll {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding-bottom: 16px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-left: max(24px, calc((100vw - 1320px) / 2));
  padding-right: 24px;
}

.horizontal-scroll::-webkit-scrollbar {
  display: none;
}

.horizontal-scroll>* {
  flex-shrink: 0;
  scroll-snap-align: start;
}

/* ---------- Fake Container Slider ---------- */
.fake-container-slider {
  /* Sol taraf: container hizası, sağ taraf: viewport sonuna kadar */
  margin-left: max(24px, calc((100vw - 1320px) / 2));
  overflow: hidden;
  padding-bottom: 16px;
}

.fake-container-track {
  display: flex;
  gap: 20px;
  transition: transform 0.45s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.fake-container-track>* {
  flex-shrink: 0;
}

/* ---------- Animation Helpers ---------- */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.delay-1 {
  transition-delay: 0.1s;
}

.delay-2 {
  transition-delay: 0.2s;
}

.delay-3 {
  transition-delay: 0.3s;
}

.delay-4 {
  transition-delay: 0.4s;
}


/* ========================================================
   SERVICE PAGE — Hizmetlerimiz
   ======================================================== */

/* ---------- Services Banner (hero üst bant) ---------- */
.services-banner-section {
  margin-top: 70px;
  height: 320px;
  position: relative;
  overflow: hidden;
  background: #F6F6F6;
}

.services-banner-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.services-banner-overlay {
  position: relative;
  z-index: 1;
  padding-top: 0px;
  padding-bottom: 30px;
}

/* ---------- Service Intro (Row 1 kartlar) ---------- */
.services-intro-section {
  background: var(--gos-white);
  padding: 60px 0 80px;
  position: relative;
  overflow: hidden;
}

/* Featured kart wrapper — Icon-Rotate ikonu karta sabitli */
.featured-card-wrapper {
  position: relative;
}

/* Icon-Rotate: 1. kartın sağ üst köşesinde, kart ile birlikte kayar */
.featured-card-icon-rotate {
  position: absolute;
  left: -25px;
  top: -29px;
  width: 70px;
  z-index: 0;
  pointer-events: none;
  opacity: 1;
}

.service-breadcrumb {
  list-style: none;
  padding: 0;
  margin: 20px 0px 0px 0px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Manrope', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #a7a7a7;
}

.service-breadcrumb li:not(:last-child)::after {
  content: '/';
  margin-left: 0.5rem;
  color: #ccc;
}

.service-breadcrumb li a {
  color: #a7a7a7;
  text-decoration: none;
  transition: color 0.2s;
}

.service-breadcrumb li a:hover {
  color: var(--gos-green);
}

/* Bootstrap breadcrumb — banner overlay uyumu */
.services-banner-overlay .gos-breadcrumb .breadcrumb {
  margin: 20px 0 0 0;
  padding: 0;
  background: transparent;
  font-family: 'Manrope', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  --bs-breadcrumb-divider: '/';
}
.services-banner-overlay .gos-breadcrumb .breadcrumb-item a {
  color: #a7a7a7;
  text-decoration: none;
  transition: color 0.2s;
}
.services-banner-overlay .gos-breadcrumb .breadcrumb-item a:hover {
  color: var(--gos-green);
}
.services-banner-overlay .gos-breadcrumb .breadcrumb-item.active {
  color: #a7a7a7;
}
.services-banner-overlay .gos-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  color: #ccc;
}

.service-hero-title {
  font-family: 'Manrope', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--gos-green);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.service-hero-title-dark {
  color: #292929;
}

.service-hero-desc {
  font-family: 'Manrope', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: #818181;
  max-width: 700px;
  line-height: 1.6;
}

/* ---------- Services Section (hizmetlerimiz page) ---------- */
.services-section--hizmetler {
  padding: 50px 0;
  background: var(--gos-white);
  position: relative;
  overflow: hidden;
}

/* Base card styles for hizmetlerimiz page */
.services-intro-section .service-card,
.services-section--hizmetler .service-card {
  background: var(--gos-white);
  border-radius: 24px;
  border: 2px solid #F3F3F3;
  box-shadow: none;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--gos-transition);
  height: auto;
  padding: 0;
  position: relative;
  /* logo stamp absolute positioning için */
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.08);
}

/* Image wrappers */
.service-card-img-wrapper {
  background: #F6F6F6;
  position: relative;
  flex-shrink: 0;
}

.service-card--featured .service-card-img-wrapper {
  height: 300px;
}

.service-card--sm .service-card-img-wrapper {
  height: 200px;
}

.service-card--md .service-card-img-wrapper {
  height: 200px;
}

.service-card--grid .service-card-img-wrapper {
  height: 250px;
}

/* Card image */
.service-card-img {
  width: 100%;
  height: 100%;
  object-fit: none;
  display: block;
}

/* Popular badge — top-right of image */
.service-popular-badge {
  position: absolute;
  top: 24px;
  right: 0;
  background: var(--gos-green);
  color: #fff;
  font-family: 'Manrope', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  padding: 8px 16px 8px 20px;
  border-radius: 50px 0 0 50px;
}

/* Periyodik kart logo stamp (Figma: x=702 y=865, image/body sınırında sağda) */
.periyodik-logo-stamp {
  position: absolute;
  right: 20px;
  top: 220px;
  /* image wrapper 300px, logo ~70px üzerinden başlıyor */
  width: 110px;
  height: auto;
  z-index: 2;
  pointer-events: none;
}

/* Card body */
.service-card-body {
  padding: 10px 15px 0;
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* Title — first line green (default), second line dark via .card-title-dark span */
.service-card-title {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  color: var(--gos-green);
  line-height: 1.15;
}

.card-title-dark {
  color: #292929;
}

.service-card--featured .service-card-title {
  font-size: 2.25rem;
}

.service-card--sm .service-card-title {
  font-size: 1.375rem;
}

.service-card--md .service-card-title {
  font-size: 1.5rem;
}

.service-card--grid .service-card-title {
  font-size: 1.625rem;
}

/* Description — reset .service-card p line-clamp from index.html */
.service-card-desc {
  font-family: 'Outfit', sans-serif;
  font-size: 0.9375rem;
  font-weight: 400;
  color: #818181;
  line-height: 1.6;
  flex: 1;
  margin-bottom: 0;
  /* reset index.html's .service-card p clamp */
  display: block;
  overflow: visible;
  -webkit-line-clamp: unset;
  -webkit-box-orient: unset;
}

/* Also scope via parent to beat specificity of .service-card p */
.services-intro-section .service-card p,
.services-section--hizmetler .service-card p {
  display: block;
  overflow: visible;
  -webkit-line-clamp: unset;
  -webkit-box-orient: unset;
  font-size: inherit;
  color: inherit;
  font-weight: inherit;
  /* line-height: inherit; */
  letter-spacing: normal;
}

.service-card--featured .service-card-desc {
  font-size: 1rem;
}

/* Divider */
.service-card-divider {
  height: 1px;
  background: #F3F3F3;
  margin: 0.8rem 0;
  flex-shrink: 0;
}

/* ---------- Horizontal card (Ön Fren Balata style) ---------- */
.services-intro-section .service-card--horizontal,
.services-section--hizmetler .service-card--horizontal {
  flex-direction: row;
}

.service-card--horizontal .service-card-img-wrapper {
  width: 48%;
  height: auto;
  flex-shrink: 0;
}

.service-card--horizontal .service-card-body {
  padding: 24px;
  justify-content: center;
}

.service-card--horizontal .service-card-title {
  font-size: 1.5rem;
}

/* Horizontal kart — butonlar alt alta (kart yatay olduğunda dar olabilir) */
.service-card--horizontal .service-card-actions {
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* Action buttons row — tüm kartlarda yan yana, eşit genişlik */
.service-card-actions {
  display: flex;
  align-items: stretch;
  gap: 12px;
  flex-shrink: 0;
}

/* Figma: her buton kart genişliğinin ~%48'ini alıyor */
.service-card-actions .btn-service-primary,
.service-card-actions .btn-service-secondary {
  flex: 1;
  justify-content: center;
}

/* Primary buton — gradient fill, açık yeşil border */
.btn-service-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(to bottom, #8AC340, #054023);
  border: 2px solid #C9E3A7;
  color: #fff;
  font-family: 'Manrope', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 11px 16px;
  border-radius: 16px;
  text-decoration: none;
  white-space: nowrap;
  transition: var(--gos-transition);
}

.btn-service-primary:hover {
  background: linear-gradient(to bottom, #7EB13A, #042d19);
  color: #fff;
  border-color: #8AC340;
}

/* Secondary buton — çok açık yeşil fill, yeşil border */
.btn-service-secondary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #F3F9EC;
  border: 1.5px solid #8AC340;
  color: #8AC340;
  font-family: 'Manrope', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 11px 16px;
  border-radius: 16px;
  text-decoration: none;
  white-space: nowrap;
  transition: var(--gos-transition);
}

.btn-service-secondary:hover {
  background: #e8f5d5;
  color: #628A2D;
  border-color: #628A2D;
}

/* Küçük kartlar — daha kompakt butonlar (Figma: h=32px, radius=8px) */
.service-card--sm .btn-service-primary,
.service-card--sm .btn-service-secondary {
  font-size: 0.75rem;
  padding: 7px 10px;
  border-radius: 8px;
  gap: 4px;
}

/* ---------- Green Background Strips (Figma: GOS-Nedir görselleri - 2 ayrı şerit) ---------- */
/* Strip 1: intro section arkasında (Figma GOS-Nedir y=918, h=635) */
/* Strip 2: services section arkasında (Figma GOS-Nedir y=2003, h=635) */

.services-green-strip {
  position: absolute;
  left: 0;
  right: 0;
  z-index: 0;
  pointer-events: none;
}

.services-green-strip img {
  width: 100%;
  height: auto;
  display: block;
}

/* Strip 1: intro section içinde ~28% aşağıdan (367/1298 px) */
.services-green-strip--1 {
  top: 28%;
}

/* Strip 2: services section'ın başından ~8% aşağıdan */
.services-green-strip--2 {
  top: 8%;
}

/* ---------- Not Found CTA Card ---------- */
.service-not-found-card {
  background: linear-gradient(150deg, #042d19 0%, #37664f 45%, #8ac340 100%);
  border-radius: 24px;
  padding: 48px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  min-height: 380px;
}

.service-not-found-card h2 {
  font-family: 'Manrope', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.service-not-found-card p {
  font-family: 'Manrope', sans-serif;
  font-size: 1.125rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2rem;
  line-height: 1.6;
  max-width: 480px;
}

.service-not-found-card .btn-service-primary {
  background: rgba(255, 255, 255, 0.15);
  border: 2px solid rgba(255, 255, 255, 0.4);
}

.service-not-found-card .btn-service-primary:hover {
  background: #fff;
  border-color: #fff;
  color: #054023;
}

.service-not-found-card .service-cta-link {
  color: rgb(12 55 33);
}

.service-not-found-card .service-cta-link:hover {
  color: #fff;
}

/* =====================================================
   HIZMET DETAY SAYFASI (hizmetler-detay.html)
   Figma: GOS_Hizmetlerimiz_Periyodik-Bakim/A (447:4484)
   ===================================================== */

/* --- Hero banner title (detail pages) --- */
.services-banner-title {
  font-family: 'Manrope', sans-serif;
  font-size: 2.8em;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-top: 16px;
  margin-bottom: 0;
}

.banner-title-green {
  color: var(--gos-green);
}

.banner-title-dark {
  color: #292929;
      max-width: 600px;
    width: 100%;
    color: #292929;
    display: block;
}

/* --- Overlay vertical centering --- */
.services-banner-overlay {
  display: flex;
  align-items: center;
}

/* --- Intro box with icon (Template B) --- */
.detail-intro-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.detail-intro-icon {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  background: var(--gos-green);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.6rem;
}

/* --- Full-width content image (Template B) --- */
.detail-fullwidth-img-wrapper {
  margin-top: 24px;
  border-radius: 16px;
  overflow: hidden;
}

.detail-fullwidth-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
}

/* --- Detailed comparison items (Template B — heading + body paragraph) --- */
.comparison-item--detailed {
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  padding: 16px;
}

.comparison-item--detailed .comparison-item-header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.9375rem;
}

.comparison-item--detailed .comparison-item-body {
  font-size: 0.85rem;
  font-weight: 500;
  line-height: 1.5;
  margin: 0;
  padding-left: 26px;
  color: inherit;
  opacity: 0.85;
}

/* --- Ana sayfa wrapper --- */
.detail-content-section {
  padding: 60px 0 80px;
  background: var(--gos-white);
}

/* ---- SIDEBAR ---- */

/* Figma: gradient CTA — fills [#8ABE13→#0C4F21], stroke 5px #A1CF66, radius 12px */
.detail-sidebar-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 14px 24px;
  background: linear-gradient(to bottom, #8ABE13, #0C4F21);
  border: 3px solid #A1CF66;
  border-radius: 12px;
  color: #fff;
  font-family: 'Manrope', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  margin-bottom: 12px;
  transition: opacity 0.2s;
}

.detail-sidebar-cta:hover {
  opacity: 0.9;
  color: #fff;
}

/* Figma: inactive item — bg=#FFFFFF, shadow, radius 12px, text #376650 */
/* Figma: active item  — bg=#F3F9EC, stroke 1.4px #A1CF66, text #8AC340 */
.detail-sidebar-menu {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.detail-sidebar-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
  background: #FFFFFF;
  border: 1.5px solid transparent;
  border-radius: 12px;
  box-shadow: 8px 8px 30px rgba(0, 0, 0, 0.04);
  color: #376650;
  font-family: 'Manrope', sans-serif;
  font-size: 0.9375rem;
  font-weight: 700;
  text-decoration: none;
  transition: var(--gos-transition);
  line-height: 1.3;
  gap: 8px;
}

.detail-sidebar-link span {
  flex: 1;
}

.detail-sidebar-link i {
  flex-shrink: 0;
  font-size: 0.85rem;
}

.detail-sidebar-link:hover {
  background: #F3F9EC;
  border-color: #A1CF66;
  color: var(--gos-green);
}

.detail-sidebar-link.active {
  background: #F3F9EC;
  border-color: #A1CF66;
  color: var(--gos-green);
}

/* Figma: "Bulamadınız mı?" card — gradient green, decorative circles, radius 20px */
.detail-notfound-card {
  position: relative;
  margin-top: 32px;
  background: linear-gradient(135deg, #5aaa1e 0%, #7dc832 50%, #8cc440 100%);
  border-radius: 20px;
  overflow: hidden;
  padding: 36px 28px;
}

/* Dekoratif daireler (Figma: Ellipse 2205 + 2206) */
.notfound-deco-circle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.notfound-deco-circle--lg {
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(138, 195, 64, 0.18) 0%, transparent 70%);
  top: -80px;
  left: -80px;
}

.notfound-deco-circle--sm {
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(138, 195, 64, 0.14) 0%, transparent 70%);
  bottom: 20px;
  right: 20px;
}

.notfound-card-inner {
  position: relative;
  max-width: 505px;
  z-index: 1;
}

.notfound-card-title {
  font-family: 'Manrope', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.3;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.notfound-card-desc {
  font-family: 'Manrope', sans-serif;
  font-size: 0.9375rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.6;
  margin-bottom: 24px;
}

.notfound-card-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.notfound-card-actions--row {
  flex-direction: row;
  flex-wrap: wrap;
}

/* Figma: bg=#F3F9EC, border 2px #8AC340, text #8AC340, radius 12px — w=185px */
.detail-notfound-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 185px;
  padding: 13px 16px;
  background: #F3F9EC;
  border: 2px solid var(--gos-green);
  border-radius: 12px;
  color: var(--gos-green);
  font-family: 'Manrope', sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  transition: var(--gos-transition);
}

.detail-notfound-btn:hover {
  background: var(--gos-green);
  color: #fff;
}

/* Icon-Rotate — kartın sağ-alt köşesinde kısmen taşan daire efekti */
.detail-icon-rotate-wrap {
  position: absolute;
  right: -103px;
  bottom: -89px;
  width: 250px;
  height: 245px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.detail-icon-rotate {
  width: 80px;
  height: auto;
  animation: rotate-slow 12s linear infinite;
}
.iletisim-detail-icon-rotate {
  width: 120px;
  height: auto;
  animation: rotate-slow 12s linear infinite;
      right: 100px;
    position: absolute;
    bottom: 100px;
}

/* ---- MAIN CONTENT ---- */

/* 1. Intro box — Figma: BackgroundShape (x=731,y=560,w=949,h=224) */
.detail-intro-box {
  background: #F3F9EC;
  border-radius: 20px;
  padding: 32px 36px;
  border-left: 4px solid var(--gos-green);
}

.detail-intro-title {
  font-family: 'Manrope', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  color: #292929;
}

.detail-intro-text {
  font-family: 'Manrope', sans-serif;
  font-size: 0.9375rem;
  font-weight: 500;
  color: #4a4a4a;
  line-height: 1.7;
  margin: 0;
}

/* 2. Section headings — Figma: 36px, green+dark split */
.detail-section-heading {
  font-family: 'Manrope', sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  color: #292929;
}

/* 3. Body text */
.detail-body-text {
  font-family: 'Manrope', sans-serif;
  font-size: 0.9375rem;
  font-weight: 500;
  color: #4a4a4a;
  line-height: 1.7;
  margin-bottom: 16px;
}

/* Colour helpers */
.text-gos-green {
  color: var(--gos-green);
}

.text-dark-heading {
  color: #292929;
}

/* 4. Content photos */
.detail-content-photo {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}

/* 5. Inline CTA button — gradient, matches sidebar CTA */
.detail-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  background: linear-gradient(to bottom, #8ABE13, #0C4F21);
  border: 2px solid #A1CF66;
  border-radius: 12px;
  color: #fff;
  font-family: 'Manrope', sans-serif;
  font-size: 0.9375rem;
  font-weight: 700;
  text-decoration: none;
  transition: opacity 0.2s;
  margin-top: 8px;
}

.detail-cta-btn:hover {
  opacity: 0.9;
  color: #fff;
}

/* 6. Step list */
.detail-step-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.detail-step-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: 'Manrope', sans-serif;
  font-size: 0.9375rem;
  font-weight: 500;
  color: #4a4a4a;
  line-height: 1.5;
}

.detail-step-list li i {
  color: var(--gos-green);
  flex-shrink: 0;
  margin-top: 2px;
  font-size: 1rem;
}

/* 7. Comparison section — Figma: x=731-1679, 2 cols split at x=1221 */
.detail-comparison-heading {
  font-family: 'Manrope', sans-serif;
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  color: #292929;
}

.comparison-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.comparison-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 10px;
  font-family: 'Manrope', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.4;
}

/* Benefit ve Risk itemlar — nötr beyaz, renksiz */
.comparison-item--benefit,
.comparison-item--risk {
  background: #FFFFFF;
  color: #1e1e1e;
  border: 1.5px solid #EFEFEF;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

/* Numaralı başlık */
.comparison-num {
  flex-shrink: 0;
  font-weight: 700;
  color: var(--gos-green);
  min-width: 22px;
}

/* Icon: gizle (numaralı yapıda kullanılmıyor) */
.comparison-icon {
  display: none;
}

/* 8. Benefits block */
.detail-benefits-block {
  background: #F9FBF6;
  border-radius: 16px;
  padding: 32px 36px;
  border-left: 4px solid var(--gos-green);
}

/* ============================================================
   GARANTİLİ SERVİSLER SAYFASI — garantili-servisler.html
   Figma: node-id=447:6142  |  1920×3711px
   ============================================================ */

/* ── Hero Banner ─────────────────────────────────────────── */
.gs-hero-section {
  position: relative;
  height: 320px;
  margin-top: 70px;
  overflow: hidden;
}

.gs-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.gs-hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
}

/* Hero title — iki renkli: yeşil + koyu (Figma referansına göre) */
.gs-hero-title {
  font-family: 'Manrope', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.gs-hero-title-green {
  color: var(--gos-green);
}

.gs-hero-title-dark {
  color: #1a2e1a;
}

.gs-hero-desc {
  font-family: 'Manrope', sans-serif;
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.65;
  color: rgba(30, 50, 30, 0.75);
  max-width: 620px;
}

/* ── Harita & Arama Bölümü ───────────────────────────────── */
.gs-map-section {
  padding: 60px 0 0;
  background: #fff;
}

.gs-map-title {
  font-family: 'Manrope', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: #292929;
}

/* Arama çubuğu wrap — dropdown'u clip etmemek için dış sarmalayıcı */
.gs-search-wrap {
  position: relative;
  width: 100%;
}

/* Arama çubuğu — Figma: metin solda, yeşil ikon sağda */
.gs-search-bar {
  display: flex;
  align-items: center;
  width: 100%;
  height: 72px;
  background: #F7F7F7;
  border: 1.5px solid #E8E8E8;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  padding: 0;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.gs-search-wrap:focus-within .gs-search-bar {
  border-color: var(--gos-green);
  box-shadow: 0 4px 16px rgba(138, 195, 64, 0.18);
}

.gs-search-bar:hover {
  box-shadow: 0 4px 16px rgba(138, 195, 64, 0.18);
  border-color: var(--gos-green);
}

.gs-search-text {
  flex: 1;
  padding: 0 24px;
  font-family: 'Manrope', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: #a7a7a7;
  text-align: left;
}

/* Yeşil ikon — sağda, yuvarlak köşeler sağda */
.gs-search-icon-bg {
  width: 72px;
  height: 72px;
  background: var(--gos-green);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.5rem;
  color: #fff;
  border-radius: 0 10px 10px 0;
}

/* Search Input */
.gs-search-input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 0 24px;
  font-family: 'Manrope', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: #333;
  height: 100%;
  outline: none;
}

.gs-search-input::placeholder {
  color: #a7a7a7;
}

/* Search Dropdown */
.gs-search-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,.1);
  z-index: 1000;
  margin-top: 4px;
  max-height: 320px;
  overflow-y: auto;
}

.gs-search-item {
  padding: 12px 20px;
  font-family: 'Manrope', sans-serif;
  font-size: .92rem;
  font-weight: 500;
  color: #333;
  cursor: pointer;
  border-bottom: 1px solid #f0f0f0;
  transition: background .15s;
}

.gs-search-item:last-child {
  border-bottom: none;
}

.gs-search-item:hover {
  background: #f0f7e8;
}

.gs-search-item i {
  margin-right: 8px;
}

.gs-search-empty {
  color: #999;
  cursor: default;
  text-align: center;
}

.gs-search-empty:hover {
  background: transparent;
}

/* Harita InfoWindow — modern servis kartı */
.gs-map-iw {
  min-width: 220px;
  max-width: 280px;
  font-family: 'Manrope', sans-serif;
  padding: 4px 2px 2px;
}

.gs-map-iw-title {
  font-size: 14px;
  font-weight: 700;
  color: #054023;
  line-height: 1.35;
  margin-bottom: 6px;
}

.gs-map-iw-loc {
  font-size: 12px;
  color: #666;
  margin-bottom: 8px;
}

.gs-map-iw-loc i {
  color: #8AC340;
  margin-right: 4px;
}

.gs-map-iw-phone {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  font-weight: 600;
  color: #054023;
  text-decoration: none;
  margin-bottom: 10px;
}

.gs-map-iw-phone:hover {
  color: #8AC340;
}

.gs-map-iw-actions {
  display: flex;
  gap: 6px;
  margin-top: 6px;
}

.gs-map-iw-btn {
  flex: 1;
  display: inline-block;
  padding: 7px 10px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  background: #f4f6f3;
  color: #054023;
  border: 1px solid #e1e7de;
  transition: background .15s, color .15s;
}

.gs-map-iw-btn:hover {
  background: #e8f0e0;
  color: #054023;
}

.gs-map-iw-btn--primary {
  background: #054023;
  color: #fff;
  border-color: #054023;
}

.gs-map-iw-btn--primary:hover {
  background: #8AC340;
  color: #fff;
}

/* Harita — Figma: w=1440 h=470, yuvarlak köşeler */
.gs-map-wrapper {
  margin-top: 32px;
  width: 100%;
  height: 470px;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(5, 64, 35, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
  border: 1px solid #eef2ed;
}

#gsMap {
  border-radius: 20px;
}

.gs-map-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* İstatistik bölümü açıklama */
.gs-map-desc {
  font-family: 'Manrope', sans-serif;
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.7;
  color: #555;
  margin-top: 8px;
  padding-bottom: 32px;
}

/* İstatistik kartları — Figma: %95+ #292929, Mutlu Müşteri #a7a7a7 */
.gs-stat-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fff;
  border: 1.5px solid #EFEFEF;
  border-radius: 16px;
  padding: 20px 24px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  margin-top: 8px;
  margin-bottom: 32px;
}

.gs-stat-icon-wrap {
  width: 52px;
  height: 52px;
  background: var(--gos-green-bg);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--gos-green);
  flex-shrink: 0;
}

.gs-stat-number {
  font-family: 'Manrope', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: #292929;
  line-height: 1;
  letter-spacing: -0.02em;
}

.gs-stat-label {
  font-family: 'Manrope', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  color: #a7a7a7;
  margin-top: 4px;
}

/* ── Filtre Çubuğu ───────────────────────────────────────── */
/* Figma: fill #8ac340, h=59, başlık + filtre ikonu */
.gs-filter-bar {
  background: var(--gos-green);
  padding: 0;
}

.gs-filter-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 59px;
  padding: 8px;
  gap: 16px;
  flex-wrap: wrap;
}

.gs-filter-title {
  font-family: 'Manrope', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.01em;
}

.gs-filter-controls {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.gs-filter-select {
  min-width: 170px;
  max-width: 220px;
  height: 38px;
  border: 1px solid rgba(255,255,255,.4);
  border-radius: 8px;
  background: rgba(255,255,255,.15);
  color: #fff;
  font-family: 'Manrope', sans-serif;
  font-size: .85rem;
  font-weight: 500;
  padding: 0 12px;
  appearance: auto;
  cursor: pointer;
  outline: none;
  transition: background .2s;
}

.gs-filter-select:focus {
  background: rgba(255,255,255,.25);
}

.gs-filter-select option {
  color: #333;
  background: #fff;
}

/* Select2 override inside filter bar */
.gs-filter-controls .select2-container {
  min-width: 170px !important;
  max-width: 220px !important;
}

.gs-filter-controls .select2-container--default .select2-selection--single {
  height: 38px;
  border: 1px solid rgba(255,255,255,.4);
  border-radius: 8px;
  background: rgba(255,255,255,.15);
  display: flex;
  align-items: center;
  padding-left: 12px;
}

.gs-filter-controls .select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #fff;
  font-family: 'Manrope', sans-serif;
  font-size: .85rem;
  font-weight: 500;
  line-height: 38px;
  padding-left: 0;
}

.gs-filter-controls .select2-container--default .select2-selection--single .select2-selection__placeholder {
  color: rgba(255,255,255,.7);
}

.gs-filter-controls .select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 38px;
}

.gs-filter-controls .select2-container--default .select2-selection--single .select2-selection__arrow b {
  border-color: #fff transparent transparent transparent;
}

.gs-filter-controls .select2-container--default .select2-selection--single .select2-selection__clear {
  color: #fff;
  font-size: 1rem;
  margin-right: 4px;
}

.gs-filter-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 8px;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 500;
  padding: 7px 14px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.gs-filter-btn:hover {
  background: rgba(255, 255, 255, 0.28);
}

/* ── Servis Listesi ──────────────────────────────────────── */
.gs-list-section {
  padding: 32px 0 60px;
  background: #FAFAFA;
}

/* Servis kartı — Figma: 704×110px, beyaz bg, yeşil sol bar (60px) */
.gs-servis-card {
  display: flex;
  align-items: stretch;
  background: #fff;
  border-radius: 12px;
  border: 1.5px solid #EFEFEF;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  overflow: hidden;
  height: 110px;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
  position: relative;
}

/* Yeşil arka plan — kartın sol yarısına kadar */
.gs-servis-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 8%;
  height: 100%;
  background: var(--gos-green);
  z-index: 0;
}

.gs-servis-card:hover {
  box-shadow: 0 6px 20px rgba(138, 195, 64, 0.12);
  border-color: var(--gos-green);
}

/* Yeşil sol logo alanı */
.gs-servis-card-logo {
  width: 100px;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 12px;
  position: relative;
  z-index: 1;
}

/* Logo: doğal SVG renkleri (beyaz + koyu yeşil), yeşil arka plan üzerinde doğru görünür */
.gs-servis-logo-img {
  width: 72px;
  height: 72px;
  object-fit: contain;
}

/* Kart içeriği */
.gs-servis-card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 12px 16px 10px;
  min-width: 0;
  position: relative;
  z-index: 1;
}

/* Üst kısım: ad + konum */
.gs-servis-name {
  font-family: 'Manrope', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: #054023;
  margin: 0 0 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.gs-servis-location {
  font-family: 'Manrope', sans-serif;
  font-size: 0.78rem;
  font-weight: 400;
  color: #a7a7a7;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 3px;
}

.gs-servis-location .bi {
  color: var(--gos-green);
  font-size: 0.75rem;
}

/* Alt kısım: yıldız + aksiyon butonları */
.gs-servis-card-actions {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: nowrap;
}

/* Yıldız rating — Figma: #FFC107 sarı */
.gs-servis-stars {
  display: flex;
  gap: 1px;
  color: #FFC107;
  font-size: 0.72rem;
  flex-shrink: 0;
}

/* Aksiyon butonları — Figma: Frame içinde ikon + metin, #434343 */
.gs-action-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: 'Manrope', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  color: #434343;
  background: #F7F7F7;
  border: 1px solid #E8E8E8;
  border-radius: 6px;
  padding: 4px 8px;
  white-space: nowrap;
  text-decoration: none;
  transition: background 0.2s ease;
  flex-shrink: 0;
}

.gs-action-btn:hover {
  background: #EFEFEF;
  color: #292929;
}

/* "Servis Detayı" butonu — yeşil vurgulu */
.gs-action-btn--green {
  color: var(--gos-green);
  border-color: rgba(138, 195, 64, 0.3);
}

.gs-action-btn--green:hover {
  background: #F3F9EC;
  color: var(--gos-green);
}

/* Plaka badge — Figma: frame içinde şehir kodu */
.gs-plate-badge {
  font-family: 'Manrope', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  color: #fff;
  background: var(--gos-dark);
  border-radius: 6px;
  padding: 4px 8px;
  white-space: nowrap;
  flex-shrink: 0;
}

/* ── Pagination ──────────────────────────────────────────── */
/* Figma: 7 kare buton (prev + 1-5 + next), her biri 64×64 */
.gs-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 40px 0 20px;
}

.gs-page-btn {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Manrope', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: #434343;
  background: #fff;
  border: 1.5px solid #E8E8E8;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.gs-page-btn:hover {
  border-color: var(--gos-green);
  color: var(--gos-green);
  background: #F3F9EC;
}

.gs-page-btn--active {
  background: var(--gos-green);
  border-color: var(--gos-green);
  color: #fff;
}

.gs-page-btn--active:hover {
  background: var(--gos-green-hover);
  color: #fff;
}

.gs-page-btn--nav {
  color: #a7a7a7;
}



/* ============================================================
   BİLGİ BANKASI (bb-) — Blog Sayfası Stilleri
   Figma node: 539:4391 — GOS_Bilgi_Bankası (1920×3582)
   ============================================================ */

/* ── Hero Banner ──────────────────────────────────────────── */
.bb-hero-section {
  margin-top: 70px;
  position: relative;
  height: 320px;
  overflow: hidden;
}

.bb-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.bb-hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
}

.bb-breadcrumb {
  --bs-breadcrumb-divider-color: #a7a7a7;
  --bs-breadcrumb-item-active-color: #a7a7a7;
}

.bb-breadcrumb .breadcrumb-item a {
  color: #a7a7a7;
  text-decoration: none;
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 1rem;
}

.bb-breadcrumb .breadcrumb-item.active {
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 1rem;
}

.bb-hero-title {
  font-family: 'Manrope', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 0;
}

.bb-hero-title-green {
  color: var(--gos-green);
}

.bb-hero-title-dark {
  color: #292929;
}

/* ── Intro Section ────────────────────────────────────────── */
.bb-intro-section {
  padding: 60px 0 40px;
  background: #fff;
}

.bb-intro-title {
  font-family: 'Outfit', sans-serif;
  font-size: 2.75rem;
  font-weight: 400;
  line-height: 1.35;
  letter-spacing: -0.03em;
  color: #00512b;
}

.bb-intro-title strong {
  font-weight: 700;
  color: #1e1e1e;
}

.bb-title-accent {
  font-weight: 700;
  color: var(--gos-green);
}

/* ── Öne Çıkan Bölüm ─────────────────────────────────────── */
.bb-featured-section {
  padding: 0 0 60px;
  background: #fff;
}

/* Büyük öne çıkan kart */
.bb-featured-card {
  background: #fff;
  border-radius: 24px;
  border: 1.5px solid #f3f3f3;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.25s ease;
}

.bb-featured-card:hover {
  box-shadow: 0 8px 32px rgba(138, 195, 64, 0.12);
}

.bb-featured-img-wrap {
  height: 280px;
  overflow: hidden;
  flex-shrink: 0;
}

.bb-featured-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.bb-featured-card:hover .bb-featured-img {
  transform: scale(1.03);
}

.bb-featured-body {
  padding: 20px 24px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* Ortak kart meta */
.bb-card-meta {
  font-family: 'Manrope', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: #818181;
  margin-bottom: 10px;
}

.bb-card-divider {
  height: 1.5px;
  background: #f3f3f3;
  margin-bottom: 14px;
}

.bb-card-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.35rem;
  font-weight: 500;
  color: #292929;
  line-height: 1.3;
  margin-bottom: 10px;
}

.bb-card-desc {
  font-family: 'Outfit', sans-serif;
  font-size: 0.9375rem;
  font-weight: 400;
  color: #818181;
  line-height: 1.6;
  flex: 1;
  margin-bottom: 16px;
}

.bb-read-more {
  color: var(--gos-green);
  font-weight: 600;
}

.bb-featured-footer {
  margin-top: auto;
}

.bb-views-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #f3f3f3;
  border-radius: 12px;
  padding: 8px 16px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  color: #7d7d7d;
}

.bb-views-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: #fff;
  border-radius: 8px;
  font-size: 0.9rem;
  color: #555;
}

/* Yatay liste kartı */
.bb-list-card {
  display: flex;
  background: #fff;
  border-radius: 20px;
  border: 1.5px solid #f3f3f3;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
  overflow: hidden;
  flex: 1;
  min-height: 140px;
  transition: box-shadow 0.25s ease;
}

.bb-list-card:hover {
  box-shadow: 0 6px 24px rgba(138, 195, 64, 0.1);
}

.bb-list-img-wrap {
  width: 190px;
  flex-shrink: 0;
  overflow: hidden;
}

.bb-list-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.bb-list-card:hover .bb-list-img {
  transform: scale(1.04);
}

.bb-list-body {
  flex: 1;
  padding: 14px 18px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.bb-list-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: #292929;
  line-height: 1.3;
  margin-bottom: 6px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.bb-list-desc {
  font-family: 'Outfit', sans-serif;
  font-size: 0.8125rem;
  font-weight: 400;
  color: #818181;
  line-height: 1.55;
  margin-bottom: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ── Blog Grid Bölümü ─────────────────────────────────────── */
.bb-grid-section {
  padding: 60px 0 80px;
  background: #f9f9f9;
}

.bb-grid-header {
  margin-bottom: 8px;
}

.bb-grid-title {
  font-family: 'Manrope', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gos-green);
  margin-bottom: 10px;
}

.bb-grid-subtitle {
  font-family: 'Manrope', sans-serif;
  font-size: 0.9375rem;
  font-weight: 500;
  color: #636363;
  line-height: 1.6;
  max-width: 800px;
}

/* Blog grid kartı */
.bb-grid-card {
  background: #fff;
  border-radius: 24px;
  border: 1.5px solid #f3f3f3;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.bb-grid-card:hover {
  box-shadow: 0 10px 36px rgba(138, 195, 64, 0.12);
  transform: translateY(-4px);
}

.bb-grid-img-wrap {
  height: 220px;
  overflow: hidden;
  flex-shrink: 0;
}

.bb-grid-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.bb-grid-card:hover .bb-grid-img {
  transform: scale(1.04);
}

.bb-grid-body {
  padding: 18px 20px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.bb-grid-card-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: #292929;
  line-height: 1.3;
  margin-bottom: 8px;
}

.bb-grid-card-desc {
  font-family: 'Outfit', sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  color: #818181;
  line-height: 1.6;
  flex: 1;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.bb-btn-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #f3f3f3;
  border-radius: 12px;
  padding: 10px 16px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: #292929;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
  width: fit-content;
  margin-top: auto;
}

.bb-btn-more:hover {
  background: var(--gos-green);
  color: #fff;
}

/* ── Sayfalama ────────────────────────────────────────────── */
.bb-pagination {
  display: flex;
  align-items: center;
  gap: 12px;
}

.bb-page-btn {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  border: 1.5px solid #d5d5d5;
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Manrope', sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #292929;
  cursor: pointer;
  transition: all 0.2s ease;
}

.bb-page-btn:hover {
  border-color: var(--gos-green);
  color: var(--gos-green);
}

.bb-page-btn--active {
  background: var(--gos-green);
  border-color: var(--gos-green);
  color: #fff;
}

.bb-page-btn--outline {
  border-color: var(--gos-green);
  color: var(--gos-green);
  background: #fff;
}

.bb-page-btn--outline:hover {
  background: var(--gos-green);
  color: #fff;
}

.bb-page-btn--disabled {
  opacity: 0.4;
  cursor: not-allowed;
  pointer-events: none;
}

.bb-page-btn--dots {
  border: none;
  background: none;
  cursor: default;
  color: var(--gos-text-muted);
}



/* ============================================================
   GARANTİLİ HABERLER (gh-) — Haberler Sayfası Stilleri
   Figma node: 539:6067 — GOS_Garantili-Haberler (1920×2643)
   ============================================================ */

/* ── Hero Banner ──────────────────────────────────────────── */
.gh-hero-section {
  margin-top: 70px;
  position: relative;
  height: 320px;
  overflow: hidden;
}

.gh-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.gh-hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
}

.gh-breadcrumb {
  --bs-breadcrumb-divider-color: #a7a7a7;
  --bs-breadcrumb-item-active-color: #a7a7a7;
}

.gh-breadcrumb .breadcrumb-item a {
  color: #a7a7a7;
  text-decoration: none;
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 1rem;
}

.gh-breadcrumb .breadcrumb-item.active {
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 1rem;
}

.gh-hero-title {
  font-family: 'Manrope', sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.gh-hero-title-green {
  color: var(--gos-green);
}

.gh-hero-title-dark {
  color: #292929;
}

/* ── Intro Section ────────────────────────────────────────── */
.gh-intro-section {
  padding: 60px 0 40px;
  background: #fff;
}

.gh-intro-title {
  font-family: 'Outfit', sans-serif;
  font-size: 2.75rem;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: -0.03em;
  color: #00512b;
}

.gh-title-accent {
  font-weight: 700;
  color: var(--gos-green);
}

/* ── Haberler Grid Bölümü ─────────────────────────────────── */
.gh-news-section {
  padding: 0 0 80px;
  background: #fff;
}

/* Haber kartı */
.gh-news-card {
  background: #fff;
  border-radius: 24px;
  border: 1.5px solid #f3f3f3;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.gh-news-card:hover {
  box-shadow: 0 10px 36px rgba(138, 195, 64, 0.12);
  transform: translateY(-4px);
}

/* Görsel alanı + logo watermark */
.gh-news-img-wrap {
  position: relative;
  height: 240px;
  overflow: hidden;
  flex-shrink: 0;
}

.gh-news-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.gh-news-card:hover .gh-news-img {
  transform: scale(1.04);
}

/* GOS logo watermark — üst sağ */
.gh-news-logo {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 72px;
  height: auto;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 12px;
  padding: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gh-logo-img {
  width: 58px;
  height: auto;
  display: block;
}

/* Kart içerik alanı */
.gh-news-body {
  padding: 18px 22px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.gh-news-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.125rem;
  font-weight: 500;
  color: #292929;
  line-height: 1.35;
  margin-bottom: 14px;
}

.gh-card-line {
  height: 1.5px;
  background: #f3f3f3;
  margin-bottom: 14px;
  flex-shrink: 0;
}

.gh-news-desc {
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  font-weight: 400;
  color: #898989;
  line-height: 1.65;
  flex: 1;
  margin-bottom: 0;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Alt kısım: tarih + "Tüm Haberler" butonu */
.gh-news-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.gh-date-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #f3f3f3;
  border: 1px solid #e9e9e9;
  border-radius: 12px;
  padding: 7px 14px;
  font-family: 'Manrope', sans-serif;
  font-size: 0.8125rem;
  font-weight: 500;
  color: #818181;
}

.gh-all-news-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1.5px solid rgb(201, 227, 167);
  border-radius: 136px;
  padding: 7px 18px;
  font-family: 'Manrope', sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--gos-green);
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}

.gh-all-news-btn:hover {
  background: var(--gos-green);
  color: #fff;
  border-color: var(--gos-green);
}

/* ── Sayfalama ────────────────────────────────────────────── */
.gh-pagination {
  display: flex;
  align-items: center;
  gap: 12px;
}

.gh-page-btn {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  border: 1.5px solid #d5d5d5;
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Manrope', sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #292929;
  cursor: pointer;
  transition: all 0.2s ease;
}

.gh-page-btn:hover {
  border-color: var(--gos-green);
  color: var(--gos-green);
}

.gh-page-btn--active {
  background: var(--gos-green);
  border-color: var(--gos-green);
  color: #fff;
}

.gh-page-btn--outline {
  border-color: var(--gos-green);
  color: var(--gos-green);
  background: #fff;
}

.gh-page-btn--outline:hover {
  background: var(--gos-green);
  color: #fff;
}


/* ============================================================
   GSD — Garantili Servis Detay (prefix: gsd-)
   Figma: 571:4722 | 1920×4600px
   ============================================================ */

/* ---- HERO ---- */
.gsd-hero-section {
  margin-top: 70px;
  height: 320px;
  position: relative;
  overflow: hidden;
  background: #F6F6F6;
}

.gsd-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gsd-hero-overlay {
  position: relative;
  z-index: 1;
  padding-top: 30px;
  padding-bottom: 30px;
}

.gsd-hero-title {
  font-family: 'Manrope', sans-serif;
  font-size: 2.7rem;
  font-weight: 700;
  color: var(--gos-green);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.gsd-hero-title-dark {
  color: #292929;
}

.gsd-breadcrumb {
  list-style: none;
  padding: 0;
  margin: 20px 0 0 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Manrope', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #a7a7a7;
}

.gsd-breadcrumb li:not(:last-child)::after {
  content: '/';
  margin-left: 0.5rem;
  color: #ccc;
}

.gsd-breadcrumb li a {
  color: #a7a7a7;
  text-decoration: none;
  transition: color 0.2s;
}

.gsd-breadcrumb li a:hover {
  color: var(--gos-green);
}

.gsd-hero-location {
  font-family: 'Manrope', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: rgba(167, 167, 167, 0.95);
  margin: 0;
}

.gsd-hero-location i {
  margin-right: 6px;
}

/* ---- ABOUT ---- */
.gsd-about-section {
  padding: 80px 0 60px;
  background: #fbfbfb;
}

.gsd-section-title {
  font-family: 'Manrope', sans-serif;
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--gos-green);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.gsd-about-text {
  font-family: 'Manrope', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: #636363;
  line-height: 1.75;
  margin-bottom: 16px;
}

/* ---- SERVICES ---- */
.gsd-services-section {
  padding: 70px 0 80px;
  background: #f9f9f9;
}

.gsd-services-title {
  font-family: 'Manrope', sans-serif;
  font-size: 2.25rem;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

/* CSS counter — satır satır sıralama */
.gsd-services-grid {
  counter-reset: gsd-svc;
}

.gsd-service-item {
  background: #fff;
  border: 1px solid #e8ede8;
  border-radius: 12px;
  padding: 20px 24px;
  height: 100%;
  counter-increment: gsd-svc;
}

.gsd-service-name {
  font-family: 'Manrope', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #054023;
  margin-bottom: 10px;
}

.gsd-service-name::before {
  content: counter(gsd-svc) ".  ";
  color: #054023;
}

.gsd-service-desc {
  font-family: 'Manrope', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: #818181;
  margin: 0;
  line-height: 1.6;
}

/* Unavailable: görünüm aynı, sadece açıklama rengi */
.gsd-service-item--unavailable .gsd-service-desc {
  color: #aaa;
}

/* ---- BRANDS ---- */
.gsd-brands-section {
  padding: 70px 0 80px;
  background: #fff;
}

.gsd-brands-header {
  margin-bottom: 48px;
}

.gsd-brands-title {
  font-family: 'Manrope', sans-serif;
  font-size: 2.25rem;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.gsd-brands-desc {
  font-family: 'Manrope', sans-serif;
  font-size: 1.05rem;
  font-weight: 500;
  color: #818181;
  margin-top: 12px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.gsd-brands-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}

.gsd-brand-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 150px;
  padding: 24px 16px;
  background: #f9faf9;
  border: 1px solid #e8ede8;
  border-radius: 14px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.gsd-brand-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(5, 64, 35, .08);
  border-color: #054023;
}

.gsd-brand-logo-wrap {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.gsd-brand-logo {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: grayscale(30%);
  transition: filter .25s ease;
}

.gsd-brand-item:hover .gsd-brand-logo {
  filter: grayscale(0%);
}

.gsd-brand-name {
  font-family: 'Manrope', sans-serif;
  font-size: .82rem;
  font-weight: 700;
  color: #333;
  text-align: center;
  letter-spacing: .02em;
  text-transform: uppercase;
}

/* ---- CERTIFICATES ---- */
.gsd-cert-section {
  padding: 80px 0 70px;
  background: #fbfbfb;
}

.gsd-cert-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 40px;
}

.gsd-cert-header-left {
  flex: 1;
}

.gsd-cert-title {
  font-family: 'Manrope', sans-serif;
  font-size: 2.25rem;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.2;
  margin-bottom: 12px;
}

.gsd-cert-desc {
  font-family: 'Manrope', sans-serif;
  font-size: 0.9375rem;
  font-weight: 500;
  color: #636363;
  line-height: 1.7;
  max-width: 900px;
  margin: 0;
}

.gsd-cert-arrows {
  display: flex;
  gap: 12px;
  padding-top: 8px;
  flex-shrink: 0;
}

.gsd-arrow-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: none;
  background: var(--gos-green);
  color: #fff;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.gsd-arrow-btn:hover {
  background: #054023;
}

/* Gallery — 3 görseli aynı anda göster, 5. kısmen görünür */
.gsd-gallery-wrap {
  overflow: hidden;
}

.gsd-gallery-track {
  display: flex;
  gap: 24px;
  transition: transform 0.45s ease;
}

.gsd-gallery-item {
  min-width: calc((100% - 72px) / 4);
  flex-shrink: 0;
}

.gsd-gallery-item img {
  width: 100%;
  height: 370px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}

/* Dots */
.gsd-slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}

.gsd-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: none;
  background: #dbecc4;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s;
}

.gsd-dot.active {
  background: var(--gos-green);
}

/* ---- RATING ---- */
.gsd-rating-section {
  padding: 10px 0 10px;
  background: #fbfbfb;
}

.gsd-rating-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
  position: relative;
}

.gsd-rating-img {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 130px;
  height: auto;
  object-fit: contain;
  pointer-events: none;
}

.gsd-rating-body {
  padding: 28px 28px 32px;
  position: relative;
  z-index: 1;
}

.gsd-rating-line {
  width: 100%;
  height: 3px;
  background: var(--gos-green);
  border-radius: 2px;
  margin-bottom: 16px;
}

.gsd-rating-title {
  font-family: 'Manrope', sans-serif;
  font-size: 2rem;
  font-weight: 600;
  color: #37664f;
  margin-bottom: 4px;
}

.gsd-rating-subtitle {
  font-family: 'Manrope', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #a7a7a7;
  margin-bottom: 16px;
}

.gsd-rating-stars {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 1.1rem;
}

.gsd-rating-stars i {
  color: #d0d0d0;
}

.gsd-star--active {
  color: var(--gos-green) !important;
}

.gsd-rating-score {
  font-family: 'Manrope', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #333;
  margin-left: 8px;
}

/* ---- WORKING HOURS ---- */
.gsd-hours-section {
  padding: 80px 0 50px;
  background: #f9f9f9;
}

.gsd-hours-title {
  font-family: 'Manrope', sans-serif;
  font-size: 2.25rem;
  font-weight: 700;
  color: #1b1b1b;
  margin-bottom: 0;
}

.gsd-hours-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 8px;
}

.gsd-hours-table th {
  font-family: 'Manrope', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  color: #888;
  padding: 4px 20px 10px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: transparent;
  border-bottom: none;
}

.gsd-hours-table td {
  font-family: 'Manrope', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  color: #353535;
  padding: 13px 20px;
  background: #f0f2f1;
  border-bottom: none;
}

.gsd-hours-table td:first-child {
  border-radius: 10px 0 0 10px;
}

.gsd-hours-table td:last-child {
  border-radius: 0 10px 10px 0;
}

.gsd-hours-closed td {
  color: #aaa;
  background: #f7f7f7;
}

/* ---- MAP & CONTACT ---- */
.gsd-map-section {
  padding: 30px 0 30px;
  background: #fbfbfb;
}

.gsd-map-wrap {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}

.gsd-map-img {
  width: 100%;
  height: 332px;
  object-fit: cover;
  display: block;
}

.gsd-map-btns {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  gap: 0;
}

.gsd-map-btn {
  padding: 8px 20px;
  border: none;
  font-family: 'Manrope', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: #a7a7a7;
  background: #fff;
  cursor: pointer;
  transition: color 0.2s;
}

.gsd-map-btn:first-child {
  border-radius: 8px 0 0 8px;
  color: #292929;
}

.gsd-map-btn:last-child {
  border-radius: 0 8px 8px 0;
}

.gsd-map-btn.active {
  color: #292929;
}

.gsd-contact-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 0 24px;
  background: #fff;
  border-radius: 24px;
  border: 1px solid #f6f6f6;
  height: 100px;
  margin-bottom: 12px;
}

.gsd-contact-icon {
  position: relative;
  width: 65px;
  height: 65px;
  min-width: 65px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0C4F21 0%, #8ABE13 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.gsd-contact-icon::before {
  content: '';
  position: absolute;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: rgb(230, 238, 234);
}

.gsd-contact-icon::after {
  content: '';
  position: absolute;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: #fff;
}

.gsd-contact-icon i {
  position: relative;
  z-index: 1;
  color: #2d7a3a;
  font-size: 1.75rem;
}

.gsd-contact-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.gsd-contact-main {
  font-family: 'Manrope', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: #a7a7a7;
}

.gsd-contact-sub {
  font-family: 'Manrope', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  color: #a7a7a7;
}



/* ============================================================
   PAGE DETAIL — art- prefix
   ============================================================ */

/* ---- HERO ---- */
.art-hero-section {
  height: 320px;
  margin-top: 70px;
  position: relative;
  overflow: hidden;
  background: #F6F6F6;
  padding: 0;
}

.art-hero-bg {
  width: 100%;
  height: auto;
  display: block;
}

.art-hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
}

.art-hero-title {
  font-family: 'Manrope', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-top: 16px;
  margin-bottom: 0;
}

/* ---- INTRO ---- */
.art-intro-section {
  padding: 64px 0 10px;
  background: #fff;
}

.art-intro-title {
  font-family: 'Manrope', sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: #00512b;
  line-height: 1.3;
}

.art-intro-text {
  font-family: 'Manrope', sans-serif;
  font-size: 1rem;
  color: #636363;
  line-height: 1.75;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.art-intro-text img {
  max-width: 100%;
  height: auto;
}

/* Quill editor list rendering (frontend) */
li[data-list] .ql-ui {
  display: none;
}
ol:has(> li[data-list="bullet"]),
ul:has(> li[data-list]) {
  list-style: none;
  padding-left: 1.5em;
  margin: 0.5em 0;
}
li[data-list="bullet"] {
  list-style: none;
}
li[data-list="bullet"]::before {
  content: '\2022';
  margin-right: 0.5em;
  font-weight: bold;
  color: var(--gos-grey-700);
}
li[data-list="ordered"] {
  list-style: none;
  counter-increment: ql-list;
}
li[data-list="ordered"]::before {
  content: counter(ql-list) '. ';
  margin-right: 0.3em;
}

/* ---- TOC CARDS ---- */
.art-toc-section {
  padding: 0 0 56px;
  background: #fff;
}

.art-toc-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fff;
  border: 1px solid #efefef;
  border-radius: 16px;
  padding: 12px 16px;
  height: 100px;
  text-decoration: none;
  transition: box-shadow 0.2s, border-color 0.2s;
}

.art-toc-card:hover {
  box-shadow: 0 4px 20px rgba(5, 64, 35, 0.1);
  border-color: #c5ddb6;
}

.art-toc-icon {
  position: relative;
  width: 75px;
  height: 75px;
  min-width: 75px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0C4F21 0%, #8ABE13 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.art-toc-icon::before {
  content: '';
  position: absolute;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: rgb(230, 238, 234);
}

.art-toc-icon::after {
  content: '';
  position: absolute;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: #fff;
}

.art-toc-num {
  position: relative;
  z-index: 1;
  font-family: 'Manrope', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #0C4F21 0%, #8ABE13 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.art-toc-label {
  font-family: 'Manrope', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: #636363;
  line-height: 1.3;
  min-width: 0;
  overflow-wrap: break-word;
  word-break: break-word;
}

/* Stack mode: her kart tam genişlik, metin doğal olarak sarılır */
.art-toc-section--stack .art-toc-card {
  height: auto;
  min-height: 100px;
  padding: 16px 20px;
}

.art-toc-section--stack .art-toc-label {
  flex: 1;
  font-size: 1rem;
}

/* ---- MECHANIC BANNER ---- */
.art-banner-section {
  padding: 0 0 64px;
  background: #fff;
  position: relative;
}

.art-banner-img {
  width: 100%;
  border-radius: 24px;
  display: block;
  height: 300px;
  object-fit: cover;
  object-position: center;
}

.art-icon-rotate {
  position: absolute;
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 5.5rem;
  color: #8AC340;
  opacity: 0.85;
  line-height: 1;
  user-select: none;
  font-weight: 900;
  animation: art-spin-slow 20s linear infinite;
}

@keyframes art-spin-slow {
  from {
    transform: translateY(-50%) rotate(0deg);
  }

  to {
    transform: translateY(-50%) rotate(360deg);
  }
}

/* ---- TEXT EDITOR SECTION ---- */
.art-text-editor-section {
  padding: 20px 0;
  background: #fff;
}

.art-text-editor-body {
  font-size: 1.05rem;
  color: #444;
  line-height: 1.9;
}

.art-text-editor-body h1,
.art-text-editor-body h2,
.art-text-editor-body h3 {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  color: #00512b;
  margin-top: 1.5em;
  margin-bottom: 0.5em;
}

.art-text-editor-body h1 { font-size: 2rem; }
.art-text-editor-body h2 { font-size: 1.6rem; }
.art-text-editor-body h3 { font-size: 1.3rem; }

.art-text-editor-body p {
  margin-bottom: 1em;
}

.art-text-editor-body ul,
.art-text-editor-body ol {
  padding-left: 1.5em;
  margin-bottom: 1em;
}

.art-text-editor-body a {
  color: #8AC340;
  text-decoration: underline;
}

/* ---- VIDEO + CONTENT SECTION ---- */
.art-video-content-section {
  padding: 70px 0;
  background: #fff;
}

.art-video-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, .08);
}

.art-video-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 16px;
}

.art-video-title {
  font-family: 'Manrope', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: #00512b;
  line-height: 1.3;
}

.art-video-text {
  font-size: 1.05rem;
  color: #555;
  line-height: 1.8;
}

/* ---- CONTENT SECTIONS ---- */
.art-content-section {
  padding: 72px 0;
  background: #fbfbfb;
}

.art-content-section--alt {
  background: #fff;
}

.art-section-title {
  font-family: 'Manrope', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: #00512b;
  margin: 0;
}

.art-sub-title {
  font-family: 'Manrope', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #00512b;
  margin: 0;
}

.art-text {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  color: #636363;
  line-height: 1.8;
  margin: 0;
}

/* ---- PILL TAGS ---- */
.art-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.art-tag {
  display: inline-flex;
  align-items: center;
  padding: 0 18px;
  height: 45px;
  background: rgba(5, 64, 35, 0.06);
  border-radius: 12px;
  font-family: 'Manrope', sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  color: #054023;
  white-space: nowrap;
}

.art-tag--wide {
  white-space: normal;
  height: auto;
  padding: 12px 18px;
  width: 100%;
}

/* ---- FAQ ---- */
.art-faq-title {
  font-family: 'Manrope', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #00512b;
  padding-top: 16px;
  border-top: 2px solid #e8ede8;
}

.art-faq-item {
  margin-bottom: 8px;
}

.art-faq-q {
  display: flex;
  align-items: center;
  padding: 0 20px;
  min-height: 45px;
  background: rgba(5, 64, 35, 0.06);
  border-radius: 12px;
  font-family: 'Manrope', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: #054023;
  cursor: pointer;
}

.art-faq-a {
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  color: #636363;
  line-height: 1.7;
  padding: 10px 20px 14px;
  margin: 0;
}

/* ---- CLOSING ---- */
.art-closing-section {
  padding: 72px 0 80px;
  background: #fbfbfb;
}

.art-closing-title {
  font-family: 'Manrope', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: #1e1e1e;
  line-height: 1.3;
}



/* ==================== KURUMSAL İŞ BİRLİKLERİ ==================== */

/* ---- Intro ---- */
.kib-intro-section {
  padding: 48px 0 32px;
  background: #fff;
}

.kib-section-title {
  font-family: 'Manrope', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #1b1b1b;
  margin: 0;
}

/* ---- Card List ---- */
.kib-list-section {
  padding: 0 0 80px;
  background: #fff;
}

.kib-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
  overflow: hidden;
  margin-bottom: 20px;
}

.kib-card-inner {
  display: flex;
  min-height: 321px;
}

/* Logo tarafı — SOL, gri arka plan */
.kib-card-logo {
  width: 45%;
  flex-shrink: 0;
  background: #fdfdfd;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

/* İçerik tarafı — SAĞ, beyaz */
.kib-card-content {
  flex: 1;
  padding: 40px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.kib-partner-name {
  font-family: 'Manrope', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #292929;
  margin: 0 0 14px;
}

.kib-divider {
  height: 1px;
  background: #f3f3f3;
  border: none;
  margin: 0 0 18px;
}

.kib-partner-desc {
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  color: #818181;
  line-height: 1.7;
  margin: 0;
}

.kib-read-more {
  color: #8AC340;
  font-weight: 600;
  text-decoration: none;
}

.kib-read-more:hover {
  text-decoration: underline;
}

.kib-detail-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border: 1.5px solid #8AC340;
  border-radius: 30px;
  padding: 0 8px 0 20px;
  height: 48px;
  text-decoration: none;
  margin-top: 24px;
  width: fit-content;
  background: #fff;
  transition: background 0.2s;
}

.kib-detail-btn:hover {
  background: #f3f9ec;
}

.kib-detail-btn span {
  font-family: 'Manrope', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  color: #8AC340;
  white-space: nowrap;
}

.kib-detail-btn-icon {
  width: 32px;
  height: 32px;
  background: #fff;
  border: 1.5px solid #8AC340;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.kib-detail-btn-icon i {
  color: #8AC340;
  font-size: 0.85rem;
}

.kibd-visit-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #0C4F21 0%, #8ABE13 100%);
  border: none;
  border-radius: 30px;
  padding: 0 10px 0 24px;
  height: 52px;
  text-decoration: none;
  width: fit-content;
  transition: opacity 0.2s, transform 0.2s;
}

.kibd-visit-btn:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

.kibd-visit-btn span {
  font-family: 'Manrope', sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
}

.kibd-visit-btn-icon {
  width: 34px;
  height: 34px;
  background: rgba(255,255,255,0.18);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.kibd-visit-btn-icon i {
  color: #fff;
  font-size: 0.9rem;
}

.kib-partner-logo {
  max-width: 70%;
  max-height: 140px;
  width: auto;
  height: auto;
  object-fit: contain;
}


/* ======================================================
   KURUMSAL İŞBİRLİĞİ DETAY (kibd-)
   ====================================================== */

/* ---- Details Section ---- */
.kibd-details-section {
  padding: 72px 0 15px;
  background: #fff;
}

.kibd-section-heading {
  font-family: 'Manrope', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #1b1b1b;
  margin: 0 0 20px;
}

.kibd-intro-text {
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  color: #818181;
  line-height: 1.7;
  margin: 0 0 6px;
}

.kibd-bullet-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding-right: 32px;
  margin-bottom: 32px;
}

.kibd-bullet-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  margin-top: 2px;
  object-fit: contain;
}

.kibd-bullet-title {
  font-family: 'Manrope', sans-serif;
  font-size: 0.98rem;
  font-weight: 700;
  color: #1e1e1e;
  margin-bottom: 10px;
}

.kibd-bullet-sub {
  list-style: disc;
  padding-left: 18px;
  margin: 0;
}

.kibd-bullet-sub li {
  font-family: 'Outfit', sans-serif;
  font-size: 0.875rem;
  color: #818181;
  line-height: 1.65;
  margin-bottom: 3px;
}

.kibd-bullet-full {
  padding-right: 0;
}

.kibd-bullet-full .kibd-bullet-title {
  margin-bottom: 0;
}

.kibd-partner-img-wrap {
  border-radius: 16px;
  overflow: hidden;
}

.kibd-partner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 16px;
}

/* ---- Contact Section ---- */
.kibd-contact-section {
  padding: 0 0 88px;
  background: #fff;
}
.kibd-contact-inline {
  padding: 0;
  background: transparent;
}

.kibd-contact-intro {
  font-family: 'Outfit', sans-serif;
  color: #818181;
  line-height: 1.7;
  margin-bottom: 24px;
}

.kibd-whatsapp-card {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: #fff;
  border: 1px solid #efefef;
  border-radius: 16px;
  padding: 16px 32px 16px 20px;
  margin-bottom: 40px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.05);
}

.kibd-wa-icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(#fff, #fff) padding-box,
    linear-gradient(180deg, #8ABE13 0%, #0C4F21 100%) border-box;
  border: 3px solid transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.kibd-wa-icon i {
  font-size: 1.8rem;
  background: linear-gradient(180deg, #8ABE13 0%, #0C4F21 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.kibd-wa-text {
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  color: #555;
}

.kibd-contact-sub-heading {
  font-family: 'Manrope', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #1b1b1b;
  margin: 0 0 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.kibd-contact-card {
  background: #fff;
  border: 1px solid #efefef;
  border-radius: 16px;
  padding: 10px 10px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.05);
}

.kibd-contact-icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(#fff, #fff) padding-box,
    linear-gradient(180deg, #8ABE13 0%, #0C4F21 100%) border-box;
  border: 3px solid transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.kibd-contact-icon i {
  font-size: 1.8rem;
  background: linear-gradient(180deg, #8ABE13 0%, #0C4F21 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.kibd-contact-info {
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  color: #555;
  font-weight: 500;
}



/* ============================================================
   OBF — Ön Başvuru Formu / Servis Ol
   Prefix: obf-
   ============================================================ */

/* ---- Hero Banner ---- */
.obf-hero-section {
  margin-top: 70px;
  height: 320px;
  position: relative;
  overflow: hidden;
  background: #F6F6F6;
}

.obf-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.obf-hero-overlay {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  height: 100%;
  padding-top: 30px;
  padding-bottom: 30px;
}

.obf-hero-title {
  font-family: 'Manrope', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-top: 16px;
  margin-bottom: 0;
}

.obf-content-section {
  padding: 72px 0 96px;
  background: #fbfbfb;
}

/* ---- Banner alt yeşil şerit ---- */
.banner-green-stripe {
  width: 100%;
  height: 22px;
  background: linear-gradient(90deg, #8ABE13 0%, #a8d43f 40%, #d4edaa 75%, #f0f9e0 100%);
}

/* ---- Sticky Sidebar ---- */
.obf-sidebar-sticky {
  position: sticky;
  top: 110px;
}

/* ---- CTA Kartı (sidebar) ---- */
.obf-cta-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #054023 0%, #022d16 100%);
  border-radius: 20px;
  padding: 36px 32px 40px;
  margin-top: 24px;
}

.obf-cta-deco {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  pointer-events: none;
}

.obf-cta-deco--lg {
  width: 300px;
  height: 300px;
  right: -100px;
  top: -100px;
}

.obf-cta-deco--sm {
  width: 180px;
  height: 180px;
  right: -40px;
  top: -40px;
}

.obf-cta-rotate-icon {
  width: 60px;
  height: 60px;
  object-fit: contain;
  margin-bottom: 20px;
  opacity: 0.85;
}

.obf-cta-title {
  font-family: 'Manrope', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 14px;
}

.obf-cta-text {
  font-family: 'Manrope', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(251, 251, 251, 0.88);
  line-height: 1.65;
  margin-bottom: 28px;
}

.obf-cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.obf-cta-btn {
  background: #f3f9ec;
  color: #8ac340;
  border-radius: 10px;
  padding: 11px 20px;
  font-family: 'Manrope', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s;
}

.obf-cta-btn:hover {
  background: #e5f3d0;
  color: #7eb13a;
}

/* ---- İçerik Blokları ---- */
.obf-content-block {
  margin-bottom: 72px;
  scroll-margin-top: 100px;
}

.obf-content-block:last-child {
  margin-bottom: 0;
}

.obf-section-heading {
  font-family: 'Manrope', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #1e1e1e;
  margin-bottom: 18px;
  line-height: 1.25;
}

.obf-sub-heading {
  font-family: 'Manrope', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #1e1e1e;
  margin: 32px 0 20px;
}

.obf-body-text {
  font-family: 'Manrope', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: #818181;
  line-height: 1.75;
  margin-bottom: 0;
}

/* ---- Avantaj Listesi ---- */
.obf-advantage-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.obf-advantage-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-family: 'Manrope', sans-serif;
  font-size: 0.9375rem;
  font-weight: 500;
  color: #4a4a4a;
  line-height: 1.6;
}

.obf-check-icon {
  font-size: 1.2rem;
  color: #8ac340;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ---- Üyelik Adım Kartları ---- */
.obf-steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.obf-step-card {
  background: #fff;
  border: 1px solid rgba(246, 246, 246, 1);
  border-radius: 24px;
  padding: 28px 32px;
  display: flex;
  align-items: center;
  gap: 24px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.obf-step-num {
  width: 51px;
  height: 51px;
  flex-shrink: 0;
  background-image: url('../assets/img/Ellipse-liste-numara.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  color: #1e1e1e;
  font-family: 'Manrope', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.obf-step-body {
  flex: 1;
}

.obf-step-title {
  font-family: 'Manrope', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #1e1e1e;
  margin-bottom: 6px;
}

.obf-step-text {
  font-family: 'Manrope', sans-serif;
  font-size: 0.9375rem;
  font-weight: 500;
  color: #636363;
  margin: 0;
  line-height: 1.65;
}

/* ---- Hizmet Paketi Kartları ---- */
.obf-package-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.obf-package-card {
  background: #fdfdfd;
  border: 1px solid #f2f2f2;
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  align-items: stretch;
}

.obf-package-img-wrap {
  flex-shrink: 0;
  width: 220px;
}

.obf-package-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.obf-package-body {
  padding: 28px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.obf-package-title {
  font-family: 'Manrope', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #1e1e1e;
  margin-bottom: 12px;
}

.obf-package-divider {
  border: none;
  border-top: 1px solid #ebebeb;
  margin: 0 0 14px;
}

.obf-package-text {
  font-family: 'Manrope', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: #818181;
  line-height: 1.65;
  margin-bottom: 16px;
  flex: 1;
}

.obf-package-text.is-collapsed {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  line-clamp: 4;
  overflow: hidden;
}

.obf-package-text.is-expanded {
  display: block;
}

/* Figma: 218x60px, fill=rgb(243,249,236), stroke=rgb(138,195,64), radius=16px */
.obf-package-link {
  font-family: 'Manrope', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #8ac340;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  align-self: flex-start;
  background: rgb(243, 249, 236);
  border: 1.5px solid rgb(138, 195, 64);
  border-radius: 16px;
  padding: 10px 16px 10px 22px;
  min-width: 200px;
  transition: background 0.2s;
}

.obf-package-link.is-hidden {
  display: none;
}

.obf-package-link[aria-expanded='true'] .obf-package-link-icon i {
  transform: rotate(180deg);
}

.obf-package-link:hover {
  background: #e5f3d0;
  color: #628a2d;
}

.obf-package-link-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #fff;
  border: 1.5px solid rgb(138, 195, 64);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.obf-package-link-icon i {
  font-size: 1rem;
  color: rgb(138, 195, 64);
  transition: transform 0.2s ease;
}

/* ---- Form ---- */
.obf-form {
  margin-top: 8px;
}

.obf-group-label {
  font-family: 'Manrope', sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #818181;
  margin-bottom: 14px;
}

.obf-field {
  position: relative;
  background: #fff;
  border: 1px solid #d8d8d8;
  border-radius: 12px;
  padding: 22px 16px 14px;
  min-height: 68px;
  display: flex;
  align-items: center;
  transition: border-color 0.2s;
}

.obf-field:focus-within {
  border-color: #8ac340;
}

.obf-field label {
  position: absolute;
  top: -9px;
  left: 12px;
  background: #fff;
  padding: 1px 6px;
  font-family: 'Manrope', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  color: #8ac340;
  line-height: 1.2;
  cursor: pointer;
  z-index: 1;
  outline: 1px solid #8ac340;
  border-radius: 10px;
}

.obf-field input,
.obf-field textarea {
  border: none;
  background: transparent;
  outline: none;
  font-family: 'Manrope', sans-serif;
  font-size: 0.9375rem;
  font-weight: 400;
  color: #1e1e1e;
  padding: 0;
  width: 100%;
}

.obf-field input::placeholder,
.obf-field textarea::placeholder {
  color: #b0b0b0;
}

.obf-field--textarea {
  height: auto;
  min-height: 121px;
  padding: 20px 16px 12px;
  align-items: flex-start;
}

.obf-field--textarea textarea {
  resize: none;
  flex: 1;
  width: 100%;
}

.obf-cert-question {
  font-family: 'Manrope', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #8ac340;
  margin-bottom: 16px;
}

.obf-radio-group {
  display: flex;
  gap: 28px;
}

.obf-radio-item {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-family: 'Manrope', sans-serif;
  font-size: 0.9375rem;
  font-weight: 500;
  color: #6e6e6e;
}

.obf-radio-item input[type="radio"] {
  width: 18px;
  height: 18px;
  accent-color: #8ac340;
  cursor: pointer;
  flex-shrink: 0;
}

.obf-checks {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.obf-check-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
}

.obf-check-item input[type="checkbox"] {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: #8ac340;
  cursor: pointer;
}

.obf-check-item span {
  font-family: 'Manrope', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: #6e6e6e;
  line-height: 1.6;
}

.obf-submit-btn {
  background: linear-gradient(180deg, #8ac340 0%, #628a2d 100%);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 14px 32px;
  font-family: 'Manrope', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: opacity 0.2s;
}

.obf-submit-btn:hover {
  opacity: 0.88;
}

/* ---- Alt CTA Bölümü ---- */
.obf-bottom-cta-section {
  background: #fbfbfb;
  padding: 0 0 80px;
}

.obf-bottom-cta-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #5aaa1e 0%, #7dc832 50%, #8cc440 100%);
  border-radius: 24px;
  padding: 56px 60px;
  min-height: 260px;
}

/* Dekoratif daireler (Figma: Ellipse 2205/2206/2203) */
.obf-bottom-deco-circle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.obf-bottom-deco-circle--xl {
  width: 448px;
  height: 448px;
  background: rgba(255, 255, 255, 0.12);
  right: -120px;
  top: 50%;
  transform: translateY(-50%);
}

.obf-bottom-deco-circle--lg {
  width: 335px;
  height: 335px;
  background: rgba(255, 255, 255, 0.15);
  right: -60px;
  top: 50%;
  transform: translateY(-50%);
}

.obf-bottom-deco-circle--md {
  width: 224px;
  height: 224px;
  background: rgba(255, 255, 255, 0.20);
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}

/* İkon çerçevesi (Figma: Icon-Rotate 200x200px beyaz) */
.obf-bottom-icon-frame {
  position: absolute;
  right: 48px;
  top: 50%;
  transform: translateY(-50%);
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.obf-bottom-icon-frame img {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

/* İçerik */
.obf-bottom-cta-inner {
  position: relative;
  z-index: 2;
  max-width: 580px;
}

.obf-bottom-cta-title {
  font-family: 'Manrope', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
  line-height: 1.2;
}

.obf-bottom-cta-text {
  font-family: 'Manrope', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: rgba(251, 251, 251, 0.88);
  line-height: 1.65;
  margin-bottom: 28px;
}

/* Figma butonlar: fill=rgb(243,249,236), stroke=rgb(138,195,64), radius=12px, 185x53px */
.obf-bottom-cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.obf-bottom-cta-btn {
  display: inline-block;
  background: rgb(243, 249, 236);
  border: 1.5px solid rgb(138, 195, 64);
  border-radius: 12px;
  padding: 14px 28px;
  font-family: 'Manrope', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: rgb(138, 195, 64);
  text-decoration: none;
  min-width: 130px;
  text-align: center;
  transition: background 0.2s;
}

.obf-bottom-cta-btn:hover {
  background: #e5f3d0;
  color: #7eb13a;
}



/* ==========================================================
   İLETİŞİM SAYFASI  (iletisim.html)
   ========================================================== */

/* ---- Hero Banner ---- */
.ilet-hero-section {
  margin-top: 70px;
  height: 320px;
  position: relative;
  overflow: hidden;
  background: #F6F6F6;
}

.ilet-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ilet-hero-overlay {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  height: 100%;
  padding-top: 30px;
  padding-bottom: 30px;
}

.ilet-hero-title {
  font-family: 'Manrope', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-top: 16px;
  margin-bottom: 0;
}

/* ---- Intro Section ---- */
.ilet-intro-section {
  /* padding: 56px 0 40px; */
  background: #fff;
}

.ilet-intro-title {
  font-family: 'Manrope', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #1e1e1e;
  margin-bottom: 16px;
}

.ilet-intro-title span {
  color: var(--gos-green);
}

.ilet-intro-text {
  font-family: 'Manrope', sans-serif;
  font-size: 0.9375rem;
  font-weight: 400;
  color: #555;
  line-height: 1.7;
  max-width: 860px;
  margin: 0;
}

/* ---- Content Section ---- */
.ilet-content-section {
  padding: 0 0 80px;
  background: #fff;
}

.ilet-col-title {
  font-family: 'Manrope', sans-serif;
  font-size: 1.375rem;
  font-weight: 700;
  color: #1e1e1e;
  margin-bottom: 0;
  padding-bottom: 16px;
  border-bottom: 2px solid #f0f0f0;
}

/* ---- Contact Success Card ---- */
.ilet-success-card {
  background: #fff;
  border: 1px solid #ebebeb;
  border-radius: 16px;
  padding: 48px 32px;
  margin-top: 16px;
}

.ilet-success-icon {
  font-size: 64px;
  color: #8ac340;
  line-height: 1;
  margin-bottom: 20px;
}

.ilet-success-title {
  font-family: 'Manrope', sans-serif;
  font-size: 1.375rem;
  font-weight: 800;
  color: #054033;
  margin-bottom: 12px;
}

.ilet-success-text {
  font-family: 'Manrope', sans-serif;
  font-size: 0.9375rem;
  color: #636363;
  line-height: 1.6;
  margin-bottom: 0;
}

/* ---- Contact Info Card ---- */
.ilet-info-card {
  background: #fff;
  border: 1px solid #ebebeb;
  border-radius: 16px;
  overflow: hidden;
}

.ilet-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 24px;
  border-bottom: 1px solid #f3f3f3;
}

.ilet-info-item:last-child {
  border-bottom: none;
}

.ilet-info-label {
  font-family: 'Manrope', sans-serif;
  font-size: 0.8125rem;
  font-weight: 700;
  color: #8ac340;
  min-width: 160px;
  flex-shrink: 0;
  padding-top: 1px;
}

.ilet-info-value {
  font-family: 'Manrope', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: #333;
  line-height: 1.5;
}

.ilet-info-link {
  color: #1a7a3a;
  text-decoration: none;
}

.ilet-info-link:hover {
  color: #8ac340;
  text-decoration: underline;
}

/* ---- Select field ---- */
.obf-field--select select {
  border: none;
  background: transparent;
  outline: none;
  font-family: 'Manrope', sans-serif;
  font-size: 0.9375rem;
  font-weight: 400;
  color: #b0b0b0;
  padding: 0;
  width: 100%;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
}

.obf-field--select select option {
  color: #1e1e1e;
}

.obf-field--select::after {
  content: '\F282';
  font-family: 'bootstrap-icons';
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #aaa;
  pointer-events: none;
  font-size: 0.85rem;
}



/* ==========================================================
   BİLGİ BANKASI DETAY  (bilgi-bankasi-detay.html)
   ========================================================== */

/* ---- Article Meta ---- */
.bbd-article-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.bbd-meta-source {
  font-family: 'Manrope', sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #8ac340;
}

.bbd-meta-sep {
  color: #ccc;
  font-size: 0.8125rem;
}

.bbd-meta-date {
  font-family: 'Manrope', sans-serif;
  font-size: 0.8125rem;
  font-weight: 400;
  color: #aaa;
}

.bbd-views-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: 'Manrope', sans-serif;
  font-size: 0.8125rem;
  font-weight: 500;
  color: #888;
  margin-left: auto;
}

.bbd-views-badge i {
  font-size: 0.9rem;
  color: #8ac340;
}

/* ---- Info Cards Section ---- */
.bbd-info-section {
  padding: 0 0 48px;
  background: #fff;
}

.bbd-info-section--alt {
  padding: 0 0 56px;
}

.bbd-info-card {
  background: #fbfbfb;
  border-radius: 16px;
  padding: 28px 24px 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.bbd-info-icon {
  width: 72px;
  height: 72px;
  margin-bottom: 18px;
  flex-shrink: 0;
}

.bbd-info-icon img {
  width: 100%;
  height: auto;
  display: block;
}

.bbd-info-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.bbd-info-card-header .bbd-info-title {
  margin-bottom: 0;
}

.bbd-info-card-header .bbd-info-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 0;
  flex-shrink: 0;
}

.bbd-info-title {
  font-family: 'Manrope', sans-serif;
  font-size: 0.9375rem;
  font-weight: 700;
  color: #1e1e1e;
  margin-bottom: 10px;
}

.bbd-info-text {
  font-family: 'Manrope', sans-serif;
  font-size: 0.8125rem;
  font-weight: 400;
  color: #818181;
  line-height: 1.65;
  margin: 0;
}

/* ---- Section Divider ---- */
.bbd-divider {
  padding: 0;
}

.bbd-divider-line {
  height: 4px;
  background: #eeeeee;
  border-radius: 2px;
}

/* ---- Warning Lights Grid ---- */
.bbd-lights-section {
  padding: 56px 0;
  background: #fff;
}

.bbd-lights-title {
  font-family: 'Manrope', sans-serif;
  font-size: 2rem;
  font-weight: 600;
  color: rgb(0, 68, 34);
  margin-bottom: 8px;
}

.bbd-lights-subtitle {
  font-family: 'Manrope', sans-serif;
  font-size: 0.875rem;
  color: #888;
  margin-bottom: 28px;
}

.bbd-lights-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid #eeeeee;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.bbd-light-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  min-height: 100px;
  padding: 12px 14px;
  gap: 12px;
  border-right: 1px solid #eeeeee;
  border-bottom: 1px solid #eeeeee;
  background: #fff;
}

.bbd-light-item:nth-child(4n) {
  border-right: none;
}

.bbd-light-item:nth-last-child(-n+4) {
  border-bottom: none;
}

.bbd-light-img {
  width: 80px;
  min-width: 80px;
  height: 80px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.bbd-light-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ---- Numbered Lights Section (Section 4) ---- */
.bbd-num-section {
  padding: 30px 0;
  background: #fff;
}

.bbd-light-num {
  position: relative;
  width: 45px;
  min-width: 45px;
  height: 45px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0C4F21 0%, #8ABE13 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: 'Manrope', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
}

.bbd-light-num::before {
  content: '';
  position: absolute;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: rgb(230, 238, 234);
}

.bbd-light-num::after {
  content: '';
  position: absolute;
  width: 35x;
  height: 35px;
  border-radius: 50%;
  background: #fff;
}

.bbd-light-num span {
  position: relative;
  z-index: 1;
  background: linear-gradient(135deg, #0C4F21 0%, #8ABE13 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.bbd-light-name {
  font-family: 'Manrope', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  color: #444;
  line-height: 1.4;
}

/* ---- Section 5: 2x2 Icon Cards ---- */
.bbd-sec5-section {
  padding: 56px 0;
  background: #fff;
}

.bbd-sec5-card {
  background: #fff;
  border: 1px solid #eeeeee;
  border-radius: 16px;
  padding: 28px 28px 24px;
  height: 100%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
}

.bbd-sec5-card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}

.bbd-sec5-icon {
  width: 70px;
  min-width: 64px;
  height: 64px;
  flex-shrink: 0;
}

.bbd-sec5-icon img {
  width: 100%;
  height: auto;
  display: block;
}

.bbd-sec5-title {
  font-family: 'Manrope', sans-serif;
  font-size: 0.9375rem;
  font-weight: 700;
  color: #1e1e1e;
  margin-bottom: 0;
  line-height: 1.4;
}

.bbd-sec5-text {
  font-family: 'Manrope', sans-serif;
  font-size: 0.8125rem;
  color: #818181;
  line-height: 1.7;
  margin-bottom: 10px;
}

.bbd-sec5-text:last-child {
  margin-bottom: 0;
}

/* ---- Section 6: Article + FAQ ---- */
.bbd-sec6-section {
  padding: 56px 0;
  background: #fff;
}

.bbd-sec6-heading {
  font-family: 'Manrope', sans-serif;
  font-size: 1.75rem;
  font-weight: 600;
  color: #1e1e1e;
  margin-bottom: 20px;
  line-height: 1.2;
}

.bbd-sec6-heading-green {
  color: #3d9b2f;
}

.bbd-sec6-text {
  font-family: 'Manrope', sans-serif;
  font-size: 0.875rem;
  color: #555;
  line-height: 1.75;
  margin-bottom: 12px;
}

.bbd-sec6-subheading {
  font-family: 'Manrope', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: #1e1e1e;
  margin-top: 36px;
  margin-bottom: 20px;
}

.bbd-faq-item {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  padding: 16px 20px 14px;
}

.bbd-faq-header {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 8px;
}

.bbd-faq-icon {
  color: #3d9b2f;
  font-size: 1rem;
  line-height: 1.4;
  flex-shrink: 0;
}

.bbd-faq-q {
  font-family: 'Manrope', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  color: #3d9b2f;
  line-height: 1.4;
  margin-bottom: 0;
}

.bbd-faq-a {
  font-family: 'Manrope', sans-serif;
  font-size: 0.8125rem;
  color: #818181;
  line-height: 1.6;
  margin-bottom: 0;
  padding-left: 22px;
}

/* ---- Section 7: Spec Table + Photo ---- */
.bbd-sec7-section {
  padding: 56px 0 64px;
  background: #fff;
}

.bbd-sec7-heading-wrap {
  display: inline-block;
  margin-bottom: 32px;
}

.bbd-sec7-heading {
  font-family: 'Manrope', sans-serif;
  font-size: 1.625rem;
  font-weight: 800;
  color: #1e1e1e;
  margin-bottom: 8px;
  line-height: 1.2;
}

.bbd-sec7-heading-green {
  color: #3d9b2f;
}

.bbd-sec7-heading-line {
  height: 3px;
  background: #3d9b2f;
  border-radius: 2px;
  width: 100%;
}

.bbd-sec7-car-name {
  font-family: 'Manrope', sans-serif;
  font-size: 1.125rem;
  font-weight: 500;
  color: #aaa;
  margin-bottom: 16px;
}

.bbd-spec-table {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e8e8e8;
}

.bbd-spec-row {
  display: flex;
  align-items: center;
  padding: 11px 20px;
  background: #fff;
  gap: 12px;
}

.bbd-spec-row--alt {
  background: #f6f6f6;
}

.bbd-spec-row--header {
  background: #fff;
}

.bbd-spec-label {
  font-family: 'Manrope', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: #1e1e1e;
  width: 48%;
  flex-shrink: 0;
}

.bbd-spec-row--header .bbd-spec-label,
.bbd-spec-row--header .bbd-spec-value {
  font-weight: 700;
}

.bbd-spec-value {
  font-family: 'Manrope', sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  color: #444;
}

.bbd-sec7-img-wrap {
  border-radius: 18px;
  overflow: hidden;
  width: 100%;
}

.bbd-sec7-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ---- Section 8: Photo + List ---- */
.bbd-sec8-section {
  padding: 56px 0 64px;
  background: #fff;
}

.bbd-sec8-img-wrap {
  border-radius: 18px;
  overflow: hidden;
  width: 100%;
}

.bbd-sec8-video-wrap {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
}

.bbd-sec8-video-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.bbd-sec8-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.bbd-sec8-heading {
  font-family: 'Manrope', sans-serif;
  font-size: 1.75rem;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 24px;
}

.bbd-sec8-heading-green {
  color: #3d9b2f;
}

.bbd-sec8-heading-sep {
  color: #aaa;
  font-weight: 400;
}

.bbd-sec8-heading-dark {
  color: #1e1e1e;
}

.bbd-sec8-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.bbd-sec8-item {
  font-family: 'Manrope', sans-serif;
  font-size: 0.875rem;
  color: #555;
  line-height: 1.7;
}

.bbd-sec8-label {
  font-weight: 700;
  color: #3d9b2f;
}

.bbd-sec8-btn {
  display: inline-block;
  background: #3d9b2f;
  color: #fff;
  font-family: 'Manrope', sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  padding: 13px 32px;
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.2s ease;
}

.bbd-sec8-btn:hover {
  background: #2e7a23;
  color: #fff;
}

/* ---- Section 9: Numbered Cards + Photo ---- */
.bbd-sec9-section {
  padding: 56px 0 64px;
  background: #fff;
}

.bbd-sec9-heading {
  font-family: 'Manrope', sans-serif;
  font-size: 1.75rem;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 28px;
}

.bbd-sec9-heading-green {
  color: #3d9b2f;
}

.bbd-sec9-heading-dark {
  color: #1e1e1e;
}

.bbd-sec9-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.bbd-sec9-item {
  border: 1px solid #e8e8e8;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 12px;
}

.bbd-sec9-item-header {
  background: #f7f7f7;
  padding: 12px 18px;
}

.bbd-sec9-label {
  font-family: 'Manrope', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  color: #3d9b2f;
}

.bbd-sec9-item-body {
  font-family: 'Manrope', sans-serif;
  font-size: 0.8125rem;
  color: #555;
  line-height: 1.7;
  padding: 12px 18px;
  margin: 0;
}

.bbd-sec9-img-wrap {
  border-radius: 18px;
  overflow: hidden;
  width: 100%;
}

.bbd-sec9-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ---- Section 10: 2-col Image+Title Cards ---- */
.bbd-sec10-section {
  padding: 56px 0 64px;
  background: #f5f5f5;
}

.bbd-sec10-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  height: 100%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.bbd-sec10-img-wrap {
  width: 100%;
  height: 350px;
  overflow: hidden;
}

.bbd-sec10-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.bbd-sec10-card:hover .bbd-sec10-img {
  transform: scale(1.04);
}

.bbd-sec10-body {
  padding: 24px 28px 28px;
}

.bbd-sec10-title-green {
  font-family: 'Manrope', sans-serif;
  font-size: 1.375rem;
  font-weight: 700;
  color: #3d9b2f;
  margin-bottom: 2px;
  line-height: 1.2;
}

.bbd-sec10-title-dark {
  font-family: 'Manrope', sans-serif;
  font-size: 1.625rem;
  font-weight: 800;
  color: #1e1e1e;
  margin-bottom: 16px;
  line-height: 1.2;
}

.bbd-sec10-text {
  font-family: 'Manrope', sans-serif;
  font-size: 0.875rem;
  color: #666;
  line-height: 1.75;
  margin-bottom: 10px;
}

.bbd-sec10-text:last-child {
  margin-bottom: 0;
}

.bbd-sec10-btn {
  display: inline-block;
  background: #3d9b2f;
  color: #fff;
  font-family: 'Manrope', sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  padding: 13px 32px;
  border-radius: 10px;
  text-decoration: none;
  margin-top: 12px;
  transition: background 0.2s ease;
}

.bbd-sec10-btn:hover {
  background: #2e7a23;
  color: #fff;
}

/* ---- Section 11: 2-col Horizontal Cards ---- */
.bbd-sec11-section {
  padding: 20px 0 50px;
  background: #f5f5f5;
}

.bbd-sec11-card {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  height: 100%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.bbd-sec11-img-wrap {
  width: 250px;
  min-width: 180px;
  height: 350px;
  flex-shrink: 0;
  overflow: hidden;
}

.bbd-sec11-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.bbd-sec11-card:hover .bbd-sec11-img {
  transform: scale(1.04);
}

.bbd-sec11-body {
  padding: 22px 22px 22px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.bbd-sec11-title-green {
  font-family: 'Manrope', sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: #3d9b2f;
  margin-bottom: 2px;
  line-height: 1.2;
}

.bbd-sec11-title-dark {
  font-family: 'Manrope', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: #1e1e1e;
  margin-bottom: 12px;
  line-height: 1.2;
}

.bbd-sec11-text {
  font-family: 'Manrope', sans-serif;
  font-size: 0.8125rem;
  color: #666;
  line-height: 1.7;
  margin-bottom: 8px;
}

.bbd-sec11-text:last-child {
  margin-bottom: 0;
}

.bbd-sec11-btn {
  display: inline-block;
  background: #3d9b2f;
  color: #fff;
  font-family: 'Manrope', sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  padding: 13px 32px;
  border-radius: 10px;
  text-decoration: none;
  margin-top: 12px;
  transition: background 0.2s ease;
}

.bbd-sec11-btn:hover {
  background: #2e7a23;
  color: #fff;
}

/* ---- Image Content Cards ---- */
.bbd-content-section {
  padding: 48px 0 64px;
  background: #fff;
}

.bbd-content-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #eeeeee;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.bbd-content-img-wrap {
  width: 100%;
  height: 200px;
  overflow: hidden;
  flex-shrink: 0;
}

.bbd-content-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.bbd-content-card:hover .bbd-content-img {
  transform: scale(1.04);
}

.bbd-content-body {
  padding: 20px 24px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.bbd-content-title {
  font-family: 'Manrope', sans-serif;
  font-size: 0.9375rem;
  font-weight: 700;
  color: #1e1e1e;
  margin-bottom: 10px;
  margin-top: 10px;
}

.bbd-content-text {
  font-family: 'Manrope', sans-serif;
  font-size: 0.8125rem;
  color: #818181;
  line-height: 1.65;
  margin-bottom: 14px;
  flex: 1;
}

.bbd-read-more {
  font-family: 'Manrope', sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #8ac340;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.bbd-read-more:hover {
  color: #6fa329;
}

/* ---- Related Articles ---- */
.bbd-related-section {
  padding: 0 0 64px;
  background: #fff;
}

.bbd-related-title {
  font-family: 'Manrope', sans-serif;
  font-size: 1.375rem;
  font-weight: 700;
  color: #1e1e1e;
  margin-bottom: 0;
}


/* ============================================
   Cookie Consent Banner & Modal
   Prefix: cc-
   ============================================ */

/* ── Banner ──────────────────────────────────── */
.cc-banner {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9998;
  max-width: 420px;
  width: calc(100% - 48px);
  background: var(--gos-grey-100, #f9f9f9);
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  padding: 28px 28px 24px;
  transform: translateY(120%);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
  pointer-events: none;
}

.cc-banner.cc-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.cc-banner-title {
  font-family: 'Manrope', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gos-base-dark-100, #02190E);
  margin-bottom: 12px;
}

.cc-banner-text {
  font-family: 'Outfit', sans-serif;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--gos-base-dark-300, #35493F);
  margin-bottom: 20px;
}

.cc-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* ── Buttons ─────────────────────────────────── */
.cc-btn {
  font-family: 'Manrope', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  line-height: 1;
}

.cc-btn-accept {
  background: var(--gos-primary-500, #8AC340);
  color: #fff;
}
.cc-btn-accept:hover {
  background: var(--gos-primary-600, #7EB13A);
}

.cc-btn-reject {
  background: transparent;
  color: var(--gos-primary-600, #7EB13A);
  border: 2px solid var(--gos-primary-500, #8AC340);
}
.cc-btn-reject:hover {
  background: var(--gos-primary-50, #F3F9EC);
}

.cc-btn-settings {
  background: transparent;
  color: var(--gos-base-dark-300, #35493F);
  border: 2px solid var(--gos-grey-600, #D6D6D6);
}
.cc-btn-settings:hover {
  background: var(--gos-grey-200, #F6F6F6);
  border-color: var(--gos-grey-500, #EBEBEB);
}

.cc-btn-save {
  background: var(--gos-primary-500, #8AC340);
  color: #fff;
  padding: 12px 32px;
  font-size: 0.9375rem;
}
.cc-btn-save:hover {
  background: var(--gos-primary-600, #7EB13A);
}

/* ── Overlay ─────────────────────────────────── */
.cc-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.cc-overlay.cc-visible {
  opacity: 1;
  pointer-events: auto;
}

/* ── Modal ───────────────────────────────────── */
.cc-modal {
  background: #fff;
  border-radius: 16px;
  width: 720px;
  max-width: calc(100% - 32px);
  max-height: 80vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  transform: scale(0.95) translateY(10px);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.cc-overlay.cc-visible .cc-modal {
  transform: scale(1) translateY(0);
}

.cc-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--gos-grey-400, #EFEFEF);
}

.cc-modal-title {
  font-family: 'Manrope', sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--gos-base-dark-100, #02190E);
  margin: 0;
}

.cc-modal-close {
  background: none;
  border: none;
  font-size: 1.25rem;
  color: var(--gos-base-dark-300, #35493F);
  cursor: pointer;
  padding: 4px;
  border-radius: 6px;
  transition: background 0.2s;
  line-height: 1;
}
.cc-modal-close:hover {
  background: var(--gos-grey-200, #F6F6F6);
}

.cc-modal-body {
  display: flex;
  flex: 1;
  overflow: hidden;
  min-height: 0;
}

/* ── Tabs (Sol) ──────────────────────────────── */
.cc-tabs {
  width: 210px;
  min-width: 210px;
  border-right: 1px solid var(--gos-grey-400, #EFEFEF);
  display: flex;
  flex-direction: column;
  padding: 8px 0;
  overflow-y: auto;
}

.cc-tab {
  background: none;
  border: none;
  text-align: left;
  font-family: 'Outfit', sans-serif;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--gos-base-dark-300, #35493F);
  padding: 12px 20px;
  cursor: pointer;
  transition: all 0.2s;
  border-left: 3px solid transparent;
  line-height: 1.3;
}

.cc-tab:hover {
  background: var(--gos-grey-100, #F9F9F9);
}

.cc-tab.active {
  font-weight: 700;
  color: var(--gos-base-dark-100, #02190E);
  border-left-color: var(--gos-primary-500, #8AC340);
  background: var(--gos-grey-50, #FDFDFD);
}

/* ── Panels (Sag) ────────────────────────────── */
.cc-panels {
  flex: 1;
  overflow-y: auto;
  padding: 24px;
}

.cc-panel {
  display: none;
}
.cc-panel.active {
  display: block;
}

.cc-panel-title {
  font-family: 'Manrope', sans-serif;
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--gos-base-dark-100, #02190E);
  margin-bottom: 12px;
}

.cc-panel p {
  font-family: 'Outfit', sans-serif;
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--gos-base-dark-300, #35493F);
  margin-bottom: 12px;
}
.cc-panel p:last-child {
  margin-bottom: 0;
}

.cc-panel-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.cc-panel-header-row .cc-panel-title {
  margin-bottom: 0;
}

/* ── Toggle Switch ───────────────────────────── */
.cc-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.cc-toggle input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 44px;
  height: 24px;
  background: var(--gos-grey-500, #EBEBEB);
  border-radius: 12px;
  position: relative;
  cursor: pointer;
  transition: background 0.25s;
  flex-shrink: 0;
}

.cc-toggle input[type="checkbox"]::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.25s;
  box-shadow: 0 1px 3px rgba(0,0,0,0.15);
}

.cc-toggle input[type="checkbox"]:checked {
  background: var(--gos-primary-500, #8AC340);
}

.cc-toggle input[type="checkbox"]:checked::after {
  transform: translateX(20px);
}

.cc-toggle label {
  font-family: 'Outfit', sans-serif;
  font-size: 0.8125rem;
  color: var(--gos-base-dark-300, #35493F);
  white-space: nowrap;
  cursor: pointer;
  margin: 0;
}

.cc-toggle-locked input[type="checkbox"] {
  opacity: 0.7;
  cursor: default;
}
.cc-toggle-locked label {
  cursor: default;
}

/* ── Modal Footer ────────────────────────────── */
.cc-modal-footer {
  padding: 16px 24px;
  border-top: 1px solid var(--gos-grey-400, #EFEFEF);
  display: flex;
  justify-content: flex-end;
}

/* ── Responsive ──────────────────────────────── */
@media (max-width: 640px) {
  .cc-banner {
    bottom: 16px;
    right: 16px;
    max-width: none;
    width: calc(100% - 32px);
    padding: 20px;
  }

  .cc-banner-title {
    font-size: 1.1rem;
  }

  .cc-banner-text {
    font-size: 0.8125rem;
  }

  .cc-btn {
    font-size: 0.8125rem;
    padding: 9px 16px;
  }

  .cc-modal {
    max-height: 90vh;
    border-radius: 12px;
  }

  .cc-modal-body {
    flex-direction: column;
  }

  .cc-tabs {
    width: 100%;
    min-width: 0;
    flex-direction: row;
    border-right: none;
    border-bottom: 1px solid var(--gos-grey-400, #EFEFEF);
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0;
    -webkit-overflow-scrolling: touch;
  }

  .cc-tab {
    white-space: nowrap;
    padding: 12px 16px;
    font-size: 0.75rem;
    border-left: none;
    border-bottom: 3px solid transparent;
  }

  .cc-tab.active {
    border-left-color: transparent;
    border-bottom-color: var(--gos-primary-500, #8AC340);
  }

  .cc-panels {
    padding: 20px 16px;
  }

  .cc-panel-header-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}

/* ================================================
   GOS Chatbot Widget
   Tüm class'lar .gos-chat- prefix ile scope'lanmıştır
   ================================================ */

/* --- FAB (Floating Action Button) --- */
.gos-chat-fab {
  position: fixed;
  bottom: 20px;
  right: 24px;
  width: 150px;
  height: 150px;
  border-radius: 0;
  background: transparent;
  border: none;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  box-shadow: none;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  transition: transform 0.2s, box-shadow 0.2s;
  padding: 0;
  overflow: visible;
}
.gos-chat-fab-logo {
  width: 150px;
  height: 150px;
  border-radius: 0;
  object-fit: contain;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.14));
}
.gos-chat-fab:hover {
  transform: scale(1.1);
  box-shadow: none;
}
.gos-chat-fab:focus {
  outline: none;
  border: none;
}
.gos-chat-fab-pulse {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gos-primary-300);
  top: 25px;
  right: 30px;
  z-index: 3;
  animation: gos-pulse 2s infinite;
}
@keyframes gos-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(129, 215, 127, 0.6); }
  70%  { box-shadow: 0 0 0 8px rgba(129, 215, 127, 0); }
  100% { box-shadow: 0 0 0 0 rgba(129, 215, 127, 0); }
}

/* --- Tooltip --- */
.gos-chat-tooltip {
  position: fixed;
  bottom: 152px;
  right: 32px;
  background: #fff;
  color: var(--gos-base-dark-300);
  padding: 14px 14px 10px;
  border-radius: 32px;
  border: 2px solid #9fd34f;
  box-shadow: 0 10px 24px rgba(5, 64, 51, 0.05);
  text-align: left;
  z-index: 99998;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s, transform 0.3s;
  pointer-events: none;
  font-family: 'Manrope', sans-serif;
  width: min(760px, calc(100vw - 120px));
  min-width: 0;
  max-width: 260px;
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.12em;
}
.gos-chat-tooltip.gos-chat-tooltip--visible {
  opacity: 1;
  transform: translateY(0);
}
.gos-chat-tooltip::after {
  content: '';
  position: absolute;
  bottom: -11px;
  right: 110px;
  width: 24px;
  height: 24px;
  background: #fff;
  transform: rotate(45deg);
  border-right: 2px solid #9fd34f;
  border-bottom: 2px solid #9fd34f;
  box-shadow: 6px 6px 14px rgba(5, 64, 51, 0.02);
}
.gos-chat-tooltip-line {
  display: inline;
  line-height: 1.08;
  white-space: normal;
}

.gos-chat-tooltip-line--light {
  font-size: 1.2rem;
  font-weight: 500;
  color: #1e4d3f;
  letter-spacing: -0.04em;
  margin-bottom: 0;
}

.gos-chat-tooltip-line--strong {
  z-index: 2;
  font-size: 1.2rem;
  font-weight: 700;
  color: #4ea52f;
  letter-spacing: -0.045em;
}

/* --- Widget Container --- */
.gos-chat-widget {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 380px;
  height: 540px;
  border-radius: 20px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15), 0 2px 8px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  z-index: 100000;
  opacity: 0;
  transform: translateY(20px) scale(0.96);
  pointer-events: none;
  transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1), transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  font-family: 'Manrope', 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--gos-base-white-100);
}
.gos-chat-widget.gos-chat-widget--open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

/* --- Header --- */
.gos-chat-header {
  background: linear-gradient(135deg, #054033 0%, #0a6b4f 50%, #054033 100%);
  color: var(--gos-base-white-100);
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}
.gos-chat-header::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(138, 195, 64, 0.08);
  pointer-events: none;
}
.gos-chat-header-logo {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 4px;
  backdrop-filter: blur(4px);
}
.gos-chat-header-logo img {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  object-fit: contain;
}
.gos-chat-header-info {
  flex: 1;
}
.gos-chat-header-title {
  font-size: 15px;
  font-weight: 700;
  margin: 0;
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.gos-chat-header-subtitle {
  font-size: 11px;
  opacity: 0.75;
  margin: 0;
  font-weight: 500;
}
.gos-chat-header-online {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  margin-top: 3px;
  font-weight: 500;
}
.gos-chat-header-online-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #8AC340;
  display: inline-block;
  box-shadow: 0 0 6px rgba(138, 195, 64, 0.6);
  animation: gos-online-pulse 2s infinite;
}
@keyframes gos-online-pulse {
  0%, 100% { box-shadow: 0 0 6px rgba(138, 195, 64, 0.6); }
  50% { box-shadow: 0 0 12px rgba(138, 195, 64, 0.9); }
}
.gos-chat-header-close {
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  opacity: 0.9;
  padding: 0;
  line-height: 1;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, opacity 0.2s;
}
.gos-chat-header-close:hover {
  opacity: 1;
  background: rgba(255, 255, 255, 0.18);
}

/* --- Body / Messages --- */
.gos-chat-body {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  background: #f9faf8;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.gos-chat-body::-webkit-scrollbar { width: 4px; }
.gos-chat-body::-webkit-scrollbar-thumb { background: rgba(0,0,0,0.1); border-radius: 4px; }
.gos-chat-bubble {
  max-width: 82%;
  padding: 12px 16px;
  border-radius: 18px;
  font-size: 14px;
  line-height: 1.6;
  word-wrap: break-word;
  letter-spacing: 0.01em;
  animation: gos-msg-in 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes gos-msg-in {
  from { opacity: 0; transform: translateY(8px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.gos-chat-bubble--bot {
  background: #fff;
  color: #2d3a36;
  align-self: flex-start;
  border-bottom-left-radius: 4px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06), 0 0 0 1px rgba(0,0,0,0.03);
}
.gos-chat-bubble--user {
  background: linear-gradient(135deg, #054033, #0a6b4f);
  color: #fff;
  align-self: flex-end;
  border-bottom-right-radius: 4px;
  box-shadow: 0 2px 8px rgba(5, 64, 51, 0.25);
}
.gos-chat-bubble-time {
  font-size: 10px;
  color: #aaa;
  margin-top: 3px;
  padding: 0 4px;
}
.gos-chat-bubble-time--right {
  text-align: right;
}
.gos-chat-bubble-img {
  max-width: 100%;
  border-radius: 10px;
  margin-top: 8px;
}
/* Chat link stili */
.gos-chat-link {
  color: #0a6b4f;
  text-decoration: underline;
  text-underline-offset: 2px;
  font-weight: 500;
  word-break: break-all;
  transition: color 0.15s;
}
.gos-chat-link:hover { color: #054033; }
.gos-chat-bubble--user .gos-chat-link {
  color: #c6f5e0;
}
.gos-chat-bubble--user .gos-chat-link:hover {
  color: #fff;
}

/* --- Typing Indicator --- */
.gos-chat-typing {
  align-self: flex-start;
  background: var(--gos-base-white-300);
  padding: 10px 18px;
  border-radius: 14px;
  border-bottom-left-radius: 4px;
  display: none;
  gap: 4px;
  align-items: center;
}
.gos-chat-typing.gos-chat-typing--visible {
  display: flex;
}
.gos-chat-typing-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #aaa;
  animation: gos-bounce 1.4s infinite;
}
.gos-chat-typing-dot:nth-child(2) { animation-delay: 0.2s; }
.gos-chat-typing-dot:nth-child(3) { animation-delay: 0.4s; }
@keyframes gos-bounce {
  0%, 80%, 100% { transform: translateY(0); }
  40%           { transform: translateY(-6px); }
}

/* --- Quick Replies --- */
.gos-chat-quick {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 0 16px 10px;
  background: #f9faf8;
  flex-shrink: 0;
}
.gos-chat-quick-btn {
  border: 1.5px solid rgba(5, 64, 51, 0.2);
  background: #fff;
  color: #054033;
  padding: 7px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}
.gos-chat-quick-btn:hover {
  background: #054033;
  color: #fff;
  border-color: #054033;
  transform: translateY(-1px);
  box-shadow: 0 3px 8px rgba(5, 64, 51, 0.2);
}

/* --- Input / Footer --- */
.gos-chat-footer {
  padding: 10px 14px;
  border-top: 1px solid rgba(0,0,0,0.06);
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  flex-shrink: 0;
}
.gos-chat-input {
  flex: 1;
  border: 1.5px solid #e8ebe5;
  border-radius: 24px;
  padding: 10px 16px;
  font-size: 13.5px;
  outline: none;
  font-family: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
  background: #f9faf8;
}
.gos-chat-input:focus {
  border-color: var(--gos-primary-400);
  box-shadow: 0 0 0 3px rgba(138, 195, 64, 0.1);
  background: #fff;
}
.gos-chat-send {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, #054033, #0a6b4f);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
  transition: transform 0.15s, box-shadow 0.15s;
  box-shadow: 0 2px 8px rgba(5, 64, 51, 0.25);
}
.gos-chat-send:hover    { transform: translateY(-1px); box-shadow: 0 4px 12px rgba(5, 64, 51, 0.35); }
.gos-chat-send:active   { transform: scale(0.95); }
.gos-chat-send:disabled { opacity: 0.5; cursor: not-allowed; transform: none; box-shadow: none; }

/* --- End Session Button --- */
.gos-chat-end-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #dc3545;
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
  transition: background 0.15s, transform 0.1s;
}
.gos-chat-end-btn:hover  { background: #c82333; }
.gos-chat-end-btn:active { transform: scale(0.95); }

/* --- End Session Confirm --- */
.gos-chat-confirm {
  background: #fff3cd;
  border: 1px solid #ffc107;
  border-radius: 10px;
  padding: 12px 16px;
  margin: 8px 4px;
  text-align: center;
  font-size: 13px;
  color: #856404;
}
.gos-chat-confirm p { margin: 0 0 10px; }
.gos-chat-confirm-btns { display: flex; gap: 8px; justify-content: center; }
.gos-chat-confirm-yes {
  padding: 6px 16px;
  border-radius: 6px;
  border: none;
  background: #dc3545;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
}
.gos-chat-confirm-yes:hover { background: #c82333; }
.gos-chat-confirm-no {
  padding: 6px 16px;
  border-radius: 6px;
  border: 1px solid #adb5bd;
  background: #fff;
  color: #495057;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
}
.gos-chat-confirm-no:hover { background: #f8f9fa; }

/* --- Session Ended Screen --- */
.gos-chat-ended {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px 24px;
  gap: 12px;
  text-align: center;
  background: linear-gradient(180deg, #f8faf6 0%, #fff 60%);
}
.gos-chat-ended-icon { font-size: 48px; }
.gos-chat-ended-title {
  font-size: 20px;
  font-weight: 800;
  color: #054033;
  letter-spacing: -0.02em;
}
.gos-chat-ended-desc {
  font-size: 13px;
  color: #6c757d;
  line-height: 1.5;
}
.gos-chat-ended-restart {
  margin-top: 8px;
  padding: 12px 28px;
  border-radius: 12px;
  border: none;
  background: linear-gradient(135deg, #054033, #0a6b4f);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s;
  box-shadow: 0 4px 12px rgba(5, 64, 51, 0.25);
}
.gos-chat-ended-restart:hover { transform: translateY(-1px); box-shadow: 0 6px 16px rgba(5, 64, 51, 0.35); }

.gos-chat-powered {
  text-align: center;
  font-size: 10px;
  color: #bbb;
  padding: 4px 0 6px;
  background: var(--gos-base-white-100);
  flex-shrink: 0;
}

/* --- Registration Form --- */
.gos-chat-form {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px 24px;
  gap: 16px;
  background: linear-gradient(180deg, #f8faf6 0%, #fff 60%);
  position: relative;
}
.gos-chat-form::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 4px;
  border-radius: 2px;
  background: rgba(138, 195, 64, 0.3);
  margin-top: 8px;
}
.gos-chat-form-title {
  font-size: 22px;
  font-weight: 800;
  color: var(--gos-base-dark-300);
  text-align: center;
  letter-spacing: -0.02em;
  margin-top: 8px;
}
.gos-chat-form-desc {
  font-size: 13px;
  color: #888;
  text-align: center;
  margin-bottom: 6px;
  line-height: 1.5;
}
.gos-chat-form-group {
  position: relative;
}
.gos-chat-form-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
  color: #aaa;
  z-index: 1;
}
.gos-chat-form-input {
  width: 100%;
  border: 1.5px solid #e8ebe5;
  border-radius: 12px;
  padding: 13px 16px 13px 42px;
  font-size: 14px;
  outline: none;
  font-family: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
  box-sizing: border-box;
  background: #fff;
}
.gos-chat-form-input:focus {
  border-color: var(--gos-primary-400);
  box-shadow: 0 0 0 3px rgba(138, 195, 64, 0.12);
}
.gos-chat-form-input::placeholder {
  color: #bbb;
}
.gos-chat-form-submit {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 12px;
  background: linear-gradient(135deg, #054033 0%, #0a6b4f 100%);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s;
  font-family: inherit;
  letter-spacing: 0.01em;
  box-shadow: 0 4px 12px rgba(5, 64, 51, 0.25);
  margin-top: 4px;
}
.gos-chat-form-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(5, 64, 51, 0.35);
}
.gos-chat-form-submit:active {
  transform: translateY(0);
}
.gos-chat-form-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; box-shadow: none; }
.gos-chat-form-privacy {
  font-size: 11px;
  color: #aaa;
  text-align: center;
  line-height: 1.4;
}
.gos-chat-form-error {
  color: #E74C3C;
  font-size: 12px;
  text-align: center;
  display: none;
  background: rgba(231, 76, 60, 0.06);
  padding: 8px 12px;
  border-radius: 8px;
}

/* ===================================================================
   ERROR PAGES (404, 403, 503)
   =================================================================== */
.error-page {
  font-family: 'Manrope', sans-serif;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
}
.error-page-404,
.error-page-403 { background: #F6F6F6; color: #02190E; }
.error-page-503 { background: #054033; color: #fff; }

.error-container {
  text-align: center;
  padding: 40px 24px;
  max-width: 540px;
}
.error-logo { margin-bottom: 48px; display: inline-block; }
.error-logo img { height: 48px; width: auto; }
.error-page-503 .error-logo img { filter: brightness(0) invert(1); }

.error-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 2rem;
}
.error-page-404 .error-icon { background: rgba(138, 195, 64, 0.12); color: #8AC340; }
.error-page-403 .error-icon { background: rgba(231, 76, 60, 0.10); color: #e74c3c; }
.error-page-503 .error-icon {
  width: 88px; height: 88px;
  background: rgba(138, 195, 64, 0.15);
  color: #8AC340;
  font-size: 2.25rem;
  margin-bottom: 32px;
}

.error-code {
  font-size: 8rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
}
.error-page-404 .error-code { background: linear-gradient(135deg, #8AC340 0%, #054033 100%); -webkit-background-clip: text; background-clip: text; }
.error-page-403 .error-code { background: linear-gradient(135deg, #e74c3c 0%, #8B0000 100%); -webkit-background-clip: text; background-clip: text; }

.error-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.error-page-404 .error-title,
.error-page-403 .error-title { color: #054033; }
.error-page-503 .error-title { color: #fff; font-size: 1.75rem; margin-bottom: 16px; }

.error-description {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 36px;
}
.error-page-404 .error-description,
.error-page-403 .error-description { color: #636363; }
.error-page-503 .error-description { color: rgba(255, 255, 255, 0.7); line-height: 1.7; margin-bottom: 40px; }

.error-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.error-page .btn-primary-gos {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: #054033;
  color: #fff;
  border: none;
  border-radius: 50px;
  font-family: 'Manrope', sans-serif;
  font-size: 0.938rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s;
}
.error-page .btn-primary-gos:hover { background: #376640; color: #fff; }

.error-page .btn-outline-gos {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: transparent;
  color: #054033;
  border: 1.5px solid #054033;
  border-radius: 50px;
  font-family: 'Manrope', sans-serif;
  font-size: 0.938rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
}
.error-page .btn-outline-gos:hover { background: #054033; color: #fff; }

/* 503 progress bar */
.error-progress {
  width: 100%;
  max-width: 280px;
  height: 4px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 4px;
  margin: 0 auto 40px;
  overflow: hidden;
}
.error-progress-fill {
  width: 40%;
  height: 100%;
  background: linear-gradient(90deg, #8AC340, #A1CF66);
  border-radius: 4px;
  animation: errorLoading 2s ease-in-out infinite;
}
@keyframes errorLoading {
  0%   { width: 10%; margin-left: 0; }
  50%  { width: 50%; margin-left: 25%; }
  100% { width: 10%; margin-left: 90%; }
}

.error-retry-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: #8AC340;
  color: #054033;
  border: none;
  border-radius: 50px;
  font-family: 'Manrope', sans-serif;
  font-size: 0.938rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s;
}
.error-retry-btn:hover { background: #A1CF66; color: #054033; }

/* Error pages responsive */
@media (max-width: 480px) {
  .error-code { font-size: 5rem; }
  .error-title { font-size: 1.25rem; }
  .error-page-503 .error-title { font-size: 1.375rem; }
  .error-actions { flex-direction: column; align-items: center; }
}

