
    :root {
      --navy: #123f55;
      --navy-dark: #0d2f41;
      --navy-light: #1d5674;
      --gold: #c9a24b;
      --gold-light: #e3c583;
      --bg: #f6f8fa;
      --white: #ffffff;
      --text: #23313b;
      --muted: #6b7a86;
      --radius: 18px;
      --shadow: 0 10px 30px rgba(13, 47, 65, 0.1);
      --shadow-lg: 0 24px 60px rgba(13, 47, 65, 0.16);
      --container: 1200px;

      /* Bootstrap tema override — marka renklerine hizala */
      --bs-primary: var(--navy);
      --bs-primary-rgb: 18, 63, 85;
      --bs-body-font-family: "Plus Jakarta Sans", system-ui, sans-serif;
    }

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



    body {
      font-family: "Plus Jakarta Sans", system-ui, sans-serif;
      color: var(--text);
      background: var(--bg);
      line-height: 1.6;
      overflow-x: hidden;
      width: 100%;
      position: relative;
    }

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

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

    ul {
      list-style: none;
    }

    .container {
      max-width: var(--container);
    }

    /* ===== TOP BAR ===== */
    .topbar {
      background: var(--navy-dark);
      color: #cfe0ea;
      font-size: 0.82rem;
      padding: 8px 0;
    }

    .topbar .container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 16px;
    }

    .topbar a {
      color: #fff;
      font-weight: 600;
      transition: color 0.2s;
    }

    .topbar a:hover {
      color: var(--gold-light);
    }

    .topbar .socials {
      display: flex;
      gap: 14px;
      align-items: center;
    }

    .topbar .info span {
      margin-right: 18px;
      white-space: nowrap;
    }

    /* ===== HEADER (STICKY) ===== */
    header {
      position: sticky;
      top: 0;
      z-index: 1000;
      background: rgba(255, 255, 255, 0.9);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(18, 63, 85, 0.08);
      transition:
        box-shadow 0.3s,
        padding 0.3s;
    }

    header.scrolled {
      box-shadow: var(--shadow);
    }

    .nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 104px;
      transition: height 0.3s;
    }

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

    .logo img {
      height: 80px;
      width: auto;
      max-width: 300px;
      object-fit: contain;
    }

    .logo .logo-mark {
      width: 48px;
      height: 48px;
      border-radius: 12px;
      background: linear-gradient(135deg, var(--navy), var(--navy-light));
      display: grid;
      place-items: center;
      flex-shrink: 0;
      transition:
        width 0.3s,
        height 0.3s;
    }

    header.scrolled .logo .logo-mark {
      width: 40px;
      height: 40px;
    }

    .logo .logo-mark svg {
      width: 26px;
      height: 26px;
    }

    .logo b {
      color: var(--navy);
      font-size: 1.25rem;
      letter-spacing: -0.02em;
    }

    .logo b em {
      color: var(--gold);
      font-style: normal;
    }

    .menu {
      display: flex;
      gap: 6px;
      align-items: center;
    }

    .menu a {
      position: relative;
      font-weight: 600;
      font-size: 0.95rem;
      color: var(--navy);
      padding: 10px 16px;
      border-radius: 10px;
      transition:
        color 0.2s,
        background 0.2s;
    }

    .menu a::after {
      content: "";
      position: absolute;
      left: 16px;
      right: 16px;
      bottom: 6px;
      height: 2px;
      background: var(--gold);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.25s;
    }

    .menu a:hover {
      background: rgba(18, 63, 85, 0.05);
    }

    .menu a:hover::after,
    .menu a.active::after {
      transform: scaleX(1);
    }

    .menu a.cta {
      background: var(--navy);
      color: #fff;
      padding: 12px 22px;
      border-radius: 12px;
      box-shadow: 0 6px 18px rgba(18, 63, 85, 0.28);
    }

    .menu a.cta::after {
      display: none;
    }

    .menu a.cta:hover {
      background: var(--navy-light);
    }

    /* ===== DİL MENÜSÜ ===== */
    .language-switcher {
      position: relative;
      margin-left: 4px;
    }

    .language-switcher>button {
      display: flex;
      align-items: center;
      gap: 7px;
      border: 1px solid rgba(18, 63, 85, 0.12);
      background: #fff;
      color: var(--navy);
      padding: 10px 13px;
      border-radius: 10px;
      font: inherit;
      font-size: 0.9rem;
      font-weight: 700;
      cursor: pointer;
      transition: 0.2s;
    }

    .language-switcher>button:hover,
    .language-switcher.open>button {
      background: rgba(18, 63, 85, 0.05);
    }

    .language-switcher .lang-arrow {
      font-size: 0.7rem;
      transition: transform 0.2s;
    }

    .language-switcher.open .lang-arrow {
      transform: rotate(180deg);
    }

    .language-list {
      position: absolute;
      top: calc(100% + 8px);
      right: 0;
      min-width: 155px;
      padding: 7px;
      background: #fff;
      border: 1px solid rgba(18, 63, 85, 0.08);
      border-radius: 12px;
      box-shadow: var(--shadow-lg);
      opacity: 0;
      visibility: hidden;
      transform: translateY(-6px);
      transition: 0.2s;
      z-index: 1100;
    }

    .language-switcher.open .language-list {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }

    .language-list button {
      width: 100%;
      display: flex;
      align-items: center;
      gap: 9px;
      border: 0;
      background: transparent;
      color: var(--navy);
      padding: 10px 11px;
      border-radius: 8px;
      font: inherit;
      font-size: 0.9rem;
      font-weight: 600;
      cursor: pointer;
      text-align: left;
    }

    .language-list button:hover {
      background: rgba(18, 63, 85, 0.06);
    }

    #google_translate_element {
      position: absolute;
      width: 1px;
      height: 1px;
      overflow: hidden;
      opacity: 0;
      pointer-events: none;
    }

    .goog-te-banner-frame.skiptranslate,
    body>.skiptranslate {
      display: none !important;
    }

    body {
      top: 0 !important;
    }

    body.rtl {
      direction: rtl;
    }

    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      background: none;
      border: 0;
      cursor: pointer;
      padding: 8px;
    }

    .hamburger span {
      width: 26px;
      height: 3px;
      background: var(--navy);
      border-radius: 3px;
      transition: 0.3s;
    }

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

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

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

    /* ===== HERO (VIDEO SLIDER) ===== */
    .hero {
      position: relative;
      color: #fff;
      height: 100vh;
      min-height: 560px;
      max-height: 820px;
      display: flex;
      align-items: center;
      overflow: hidden;
      background: var(--navy-dark);
    }

    .hero-swiper {
      position: absolute;
      inset: 0;
      z-index: 0;
    }

    .hero-swiper .swiper-wrapper,
    .hero-swiper .swiper-slide {
      height: 100%;
    }

    .hero-slide {
      position: relative;
      width: 100%;
      height: 100%;
    }

    .hero-slide video,
    .hero-slide .slide-img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .hero-slide::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg,
          rgba(13, 47, 65, 0.93) 0%,
          rgba(18, 63, 85, 0.82) 50%,
          rgba(29, 86, 116, 0.62) 100%);
    }

    .hero-swiper .swiper-pagination {
      bottom: 22px !important;
      z-index: 3;
    }

    .hero-swiper .swiper-pagination-bullet {
      background: #fff;
      opacity: 0.5;
      width: 8px;
      height: 8px;
    }

    .hero-swiper .swiper-pagination-bullet-active {
      opacity: 1;
      background: var(--gold);
    }

    .hero .container {
      position: relative;
      z-index: 2;
      width: 100%;
    }

    .badge-pill {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(255, 255, 255, 0.1);
      border: 1px solid rgba(255, 255, 255, 0.2);
      padding: 8px 18px;
      border-radius: 100px;
      font-size: 0.85rem;
      font-weight: 600;
      margin-bottom: 24px;
    }

    .badge-pill i {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--gold-light);
      display: inline-block;
    }

    .hero h1 {
      font-size: clamp(2.1rem, 4.5vw, 3.4rem);
      line-height: 1.15;
      font-weight: 800;
      letter-spacing: -0.03em;
      margin-bottom: 20px;
    }

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

    .hero p {
      font-size: 1.08rem;
      color: #cfe0ea;
      max-width: 520px;
      margin-bottom: 34px;
    }

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

    .btn {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 15px 30px;
      border-radius: 14px;
      font-weight: 700;
      font-size: 1rem;
      transition: 0.25s;
      cursor: pointer;
      border: 0;
    }

    .btn-primary {
      background: var(--gold);
      color: var(--navy-dark);
      box-shadow: 0 10px 26px rgba(201, 162, 75, 0.4);
    }

    .btn-primary:hover {
      transform: translateY(-3px);
      box-shadow: 0 16px 34px rgba(201, 162, 75, 0.5);
      background: var(--gold);
      color: var(--navy-dark);
    }

    .btn-ghost {
      border: 1.5px solid rgba(255, 255, 255, 0.4);
      color: #fff;
    }

    .btn-ghost:hover {
      background: rgba(255, 255, 255, 0.1);
      transform: translateY(-3px);
      color: #fff;
    }

    .hero-stats {
      display: flex;
      gap: 40px;
      margin-top: 48px;
      flex-wrap: wrap;
    }

    .hero-stats .stat b {
      display: block;
      font-size: 1.9rem;
      font-weight: 800;
      color: var(--gold-light);
    }

    .hero-stats .stat span {
      font-size: 0.88rem;
      color: #cfe0ea;
    }

    .hero-visual .card {
      background: rgba(255, 255, 255, 0.1);
      border: 1px solid rgba(255, 255, 255, 0.22);
      border-radius: 24px;
      padding: 26px;
      backdrop-filter: blur(10px);
      display: grid;
      gap: 16px;
    }

    .hero-visual .item {
      display: flex;
      align-items: center;
      gap: 16px;
      background: rgba(255, 255, 255, 0.1);
      border-radius: 16px;
      padding: 16px 18px;
    }

    .hero-visual .item .icon {
      width: 46px;
      height: 46px;
      border-radius: 12px;
      background: var(--gold);
      display: grid;
      place-items: center;
      flex-shrink: 0;
    }

    .hero-visual .item .icon svg {
      width: 24px;
      height: 24px;
    }

    .hero-visual .item b {
      display: block;
      font-size: 0.98rem;
    }

    .hero-visual .item span {
      font-size: 0.82rem;
      color: #cfe0ea;
    }

    /* ===== SECTION BASE ===== */
    section {
      padding: 30px 0;
    }

    .sec-head {
      text-align: center;
      max-width: 640px;
      margin: 0 auto 60px;
    }

    .sec-head .tag {
      display: inline-block;
      color: var(--gold);
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      font-size: 0.8rem;
      margin-bottom: 14px;
    }

    .sec-head h2 {
      font-size: clamp(1.7rem, 3.2vw, 2.5rem);
      font-weight: 800;
      color: var(--navy);
      letter-spacing: -0.02em;
      margin-bottom: 14px;
    }

    .sec-head p {
      color: var(--muted);
    }

    /* ===== MEDIA PLACEHOLDER (card-img alanı) ===== */
    .media-ph {
      position: relative;
      overflow: hidden;
      background: #eaeff2;
      aspect-ratio: 4/3;
    }

    .media-ph img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1);
    }

    /* ===== ÜRÜNLERİMİZ — Bootstrap card ===== */
    .cat-card {
      overflow: hidden;
      border-radius: var(--radius);
      border: 1px solid rgba(18, 63, 85, 0.08);
      box-shadow: var(--shadow);
      transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    }

    .cat-card:hover {
      transform: translateY(-8px);
      box-shadow: var(--shadow-lg);
      border-color: rgba(201, 162, 75, 0.45);
    }

    .cat-card:hover .media-ph img {
      transform: scale(1.06);
    }

    .cat-card .card-body {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 16px;
    }

    .cat-card .card-title {
      font-size: 1.25rem;
      font-weight: 700;
      color: var(--navy);
      margin: 0;
      letter-spacing: -0.01em;
    }

    .btn-detail {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      width: 100%;
      padding: 12px 20px;
      border-radius: 12px;
      font-weight: 700;
      font-size: 0.92rem;
      background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
      color: #ffffff;
      border: none;
      box-shadow: 0 4px 14px rgba(18, 63, 85, 0.18);
      transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
      text-decoration: none;
      cursor: pointer;
    }

    .btn-detail svg {
      transition: transform 0.25s ease;
    }

    .btn-detail:hover {
      background: linear-gradient(135deg, var(--gold) 0%, #dab256 100%);
      color: var(--navy-dark);
      box-shadow: 0 8px 22px rgba(201, 162, 75, 0.36);
      transform: translateY(-2px);
    }

    .btn-detail:hover svg {
      transform: translateX(4px);
    }

    /* ===== ABOUT / KURUMSAL ===== */
    .about {
      background: var(--white);
    }

    .about .visual {
      position: relative;
    }

    .about .visual .main {
      border-radius: 24px;
      overflow: hidden;
      box-shadow: var(--shadow-lg);
      background: linear-gradient(135deg,
          var(--navy-dark),
          var(--navy-light));
      aspect-ratio: 4/5;
      position: relative;
    }

    .about .visual .main img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.5s ease;
    }

    .about .visual:hover .main img {
      transform: scale(1.04);
    }

    .about .visual {
      /* .badge-card taşarak yatay scroll yaratmasın diye içerik yalnızca bu kapsayıcı üzerinde taşabilir */
      overflow: visible;
    }

    .about .visual .badge-card {
      position: absolute;
      bottom: -24px;
      left: 0;
      background: var(--navy);
      color: #fff;
      border-radius: 20px;
      padding: 26px 30px;
      box-shadow: var(--shadow-lg);
    }

    .about .visual .badge-card b {
      display: block;
      font-size: 2rem;
      color: var(--gold-light);
    }

    .about .visual .badge-card span {
      font-size: 0.85rem;
      color: #cfe0ea;
    }

    .about h2 {
      font-size: clamp(1.7rem, 3vw, 2.4rem);
      color: var(--navy);
      font-weight: 800;
      letter-spacing: -0.02em;
      margin-bottom: 18px;
    }

    .about p {
      color: var(--muted);
      margin-bottom: 16px;
    }

    .feat {
      display: flex;
      gap: 14px;
      align-items: flex-start;
    }

    .feat .ic {
      width: 44px;
      height: 44px;
      border-radius: 12px;
      background: rgba(201, 162, 75, 0.14);
      color: var(--gold);
      display: grid;
      place-items: center;
      flex-shrink: 0;
    }

    .feat .ic svg {
      width: 22px;
      height: 22px;
    }

    .feat b {
      display: block;
      font-size: 0.98rem;
      color: var(--navy);
    }

    .feat span {
      font-size: 0.85rem;
      color: var(--muted);
    }

    /* ===== SEKTÖRLER — Bootstrap card ===== */
    .sectors {
      background: linear-gradient(135deg, var(--navy-dark), var(--navy));

    }

    .sectors h2 {
      color: white;
    }

    .sectors p {
      color: white;
    }

    .sector-card {
      overflow: hidden;
      border-radius: var(--radius);
      border: 1px solid rgba(18, 63, 85, 0.08);
      box-shadow: var(--shadow);
      transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    }

    .sector-card .media-ph {
      aspect-ratio: 16/10;
    }

    .sector-card:hover {
      transform: translateY(-6px);
      border-color: rgba(201, 162, 75, 0.45);
      box-shadow: var(--shadow-lg);
    }

    .sector-card:hover .media-ph img {
      transform: scale(1.06);
    }

    .sector-card .card-title {
      color: var(--navy);
      font-size: 1.1rem;
      font-weight: 700;
      margin-bottom: 6px;
    }

    .sector-card .card-text {
      font-size: 0.88rem;
      color: var(--muted);
      line-height: 1.5;
    }

    /* ===== REFERANSLAR (Swiper) ===== */
    .refs {
      background: var(--white);
    }

    .ref-swiper {
      padding: 10px 6px 54px;
    }

    .ref-card {
      background: var(--bg);
      border: 1px solid rgba(18, 63, 85, 0.08);
      border-radius: 18px;
      padding: 24px 20px;
      height: 110px;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 14px rgba(13, 47, 65, 0.03);
      transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease, background 0.35s ease;
    }

    .ref-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 10px 26px rgba(13, 47, 65, 0.08);
      border-color: rgba(201, 162, 75, 0.45);
      background: #fff;
    }

    .ref-card img {
      max-width: 155px;
      max-height: 52px;
      width: auto;
      height: auto;
      object-fit: contain;
      filter: grayscale(100%);
      opacity: 0.7;
      transition: filter 0.35s ease, opacity 0.35s ease, transform 0.35s ease;
    }

    .ref-card:hover img {
      filter: grayscale(0%);
      opacity: 1;
      transform: scale(1.06);
    }

    .ref-swiper .swiper-pagination-bullet-active {
      background: var(--gold);
    }

    .ref-swiper .swiper-button-next,
    .ref-swiper .swiper-button-prev {
      color: var(--navy);
      background: #fff;
      width: 42px;
      height: 42px;
      border-radius: 50%;
      box-shadow: var(--shadow);
    }

    .ref-swiper .swiper-button-next::after,
    .ref-swiper .swiper-button-prev::after {
      font-size: 15px;
      font-weight: 800;
    }

    /* ===== BLOG — Bootstrap card ===== */
    .blog {
      background: linear-gradient(135deg, var(--navy-dark), var(--navy));
    }

    .blog h2,
    .blog p {
      color: white;
    }

    .blog-card {
      overflow: hidden;
      border-radius: var(--radius);
      border: 1px solid transparent;
      box-shadow: var(--shadow);
      transition: 0.3s;
      display: flex;
      flex-direction: column;
    }

    .blog-card:hover {
      transform: translateY(-8px);
      box-shadow: var(--shadow-lg);
      border-color: rgba(201, 162, 75, 0.35);
    }

    .blog-card .media-ph {
      aspect-ratio: 16/10;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .blog-card .media-ph.grad-navy {
      background: linear-gradient(135deg, var(--navy), var(--navy-light));
    }

    .blog-card .media-ph.grad-gold {
      background: linear-gradient(135deg, var(--gold), var(--gold-light));
    }

    .blog-card .media-ph svg {
      position: relative;
      z-index: 1;
      width: 34%;
      height: 34%;
    }

    .blog-card .meta {
      display: flex;
      gap: 14px;
      align-items: center;
      font-size: 0.8rem;
      color: var(--muted);
      margin-bottom: 10px;
    }

    .blog-card .meta .tag {
      color: var(--gold);
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.08em;
    }

    .blog-card .card-title {
      font-size: 1.12rem;
      color: var(--navy);
      margin-bottom: 8px;
      line-height: 1.4;
    }

    .blog-card .card-text {
      color: var(--muted);
      font-size: 0.92rem;
      margin-bottom: 18px;
      flex: 1;
    }

    .blog-card .more {
      font-weight: 700;
      font-size: 0.88rem;
      color: var(--navy);
      align-self: flex-start;
    }

    .blog-card .more:hover {
      color: var(--gold);
    }

    /* ===== CONTACT ===== */
    .contact {
      background: linear-gradient(135deg, var(--navy-dark), var(--navy));
      color: #fff;
    }

    .contact .sec-head h2,
    .contact .sec-head p {
      color: #fff;
    }

    .contact .sec-head p {
      color: #cfe0ea;
    }

    .c-item {
      display: flex;
      gap: 18px;
      background: rgba(255, 255, 255, 0.07);
      border: 1px solid rgba(255, 255, 255, 0.14);
      border-radius: 16px;
      padding: 22px;
    }

    .c-item .icon {
      width: 50px;
      height: 50px;
      border-radius: 14px;
      background: var(--gold);
      display: grid;
      place-items: center;
      flex-shrink: 0;
    }

    .c-item .icon svg {
      width: 24px;
      height: 24px;
    }

    .c-item b {
      display: block;
      margin-bottom: 2px;
    }

    .c-item span,
    .c-item a {
      color: #cfe0ea;
      font-size: 0.94rem;
    }

    .c-item a:hover {
      color: var(--gold-light);
    }

    .quote-form-card {
      background: var(--white);
      border-radius: 24px;
      padding: 40px;
      box-shadow: var(--shadow-lg);
    }

    .quote-form-card h3 {
      color: var(--navy);
      font-size: 1.3rem;
      margin-bottom: 18px;
    }

    .quote-form-card .form-control,
    .quote-form-card .form-select {
      padding: 14px 16px;
      border: 1.5px solid #dde5ea;
      border-radius: 12px;
      font-size: 0.95rem;
      color: var(--text);
      background: #fafcfd;
    }

    .quote-form-card .form-control:focus,
    .quote-form-card .form-select:focus {
      box-shadow: none;
      border-color: var(--gold);
      background: #fff;
    }

    .quote-form-card textarea.form-control {
      resize: vertical;
      min-height: 120px;
    }

    .quote-form-card .btn-primary {
      width: 100%;
      justify-content: center;
    }

    .form-success {
      display: none;
      background: rgba(201, 162, 75, 0.14);
      border: 1px solid var(--gold);
      color: var(--navy);
      border-radius: 12px;
      padding: 12px 16px;
      font-size: 0.9rem;
    }

    /* ===== FOOTER ===== */
    footer {
      background: var(--navy-dark);
      color: #9db4c2;
      padding: 70px 0 0;
    }

    footer h4 {
      color: #fff;
      font-size: 1rem;
      margin-bottom: 18px;
    }

    footer p {
      font-size: 0.9rem;
    }

    footer ul {
      display: grid;
      gap: 10px;
      font-size: 0.9rem;
    }

    footer ul a:hover {
      color: var(--gold-light);
    }

    .f-logo {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 16px;
    }

    .f-logo .logo-mark {
      width: 44px;
      height: 44px;
      border-radius: 10px;
      background: linear-gradient(135deg, var(--gold), var(--gold-light));
      display: grid;
      place-items: center;
    }

    .f-logo .logo-mark svg {
      width: 24px;
      height: 24px;
    }

    .f-logo b {
      color: #fff;
      font-size: 1.2rem;
    }

    .f-logo b em {
      color: var(--gold-light);
      font-style: normal;
    }

    .f-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      padding: 22px 0;
      font-size: 0.85rem;
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 10px;
    }

    /* ===== WHATSAPP FLOAT ===== */
    .wa-float {
      position: fixed;
      bottom: 26px;
      right: 26px;
      width: 58px;
      height: 58px;
      border-radius: 50%;
      background: #25d366;
      display: grid;
      place-items: center;
      color: #fff;
      box-shadow: 0 10px 26px rgba(37, 211, 102, 0.45);
      z-index: 1100;
      transition: transform 0.25s;
    }

    .wa-float svg {
      width: 28px;
      height: 28px;
    }

    .wa-float:hover {
      transform: scale(1.1);
    }

    /* ===== REVEAL ===== */
    .reveal {
      opacity: 0;
      transform: translateY(30px);
      transition:
        opacity 0.7s ease,
        transform 0.7s ease;
    }

    .reveal.visible {
      opacity: 1;
      transform: none;
    }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 768px) {
      section {
        padding: 30px 0;
      }

      .topbar .info span:nth-child(2) {
        display: none;
      }

      .hamburger {
        display: flex;
      }

      .logo img {
        height: 64px;
        max-width: 220px;
      }

      .menu {
        position: fixed;
        inset: 104px 0 auto 0;
        background: var(--white);
        flex-direction: column;
        align-items: stretch;
        padding: 20px 24px 30px;
        gap: 4px;
        box-shadow: var(--shadow-lg);
        transform: translateY(-140%);
        transition: transform 0.35s;
        z-index: 999;
        max-height: calc(100vh - 104px);
        overflow-y: auto;
      }

      .menu.open {
        transform: translateY(0);
      }

      .menu a {
        padding: 14px 16px;
        font-size: 1.05rem;
      }

      .menu a.cta {
        margin-top: 10px;
        text-align: center;
        justify-content: center;
        display: flex;
      }

      .language-switcher {
        margin: 4px 0 0;
      }

      .language-switcher>button {
        width: 100%;
        justify-content: space-between;
        padding: 14px 16px;
        font-size: 1.05rem;
      }

      .language-list {
        position: static;
        width: 100%;
        margin-top: 4px;
        box-shadow: none;
      }

      header .container.nav {
        position: relative;
        z-index: 1001;
      }

      .hero {
        height: auto;
        min-height: 640px;
        padding: 90px 0 100px;
      }

      .hero-stats {
        gap: 26px;
      }

      .quote-form-card {
        padding: 26px;
      }

      .about .visual .badge-card {
        left: 0;
        bottom: -18px;
        padding: 18px 22px;
      }

      .ref-swiper .swiper-button-next,
      .ref-swiper .swiper-button-prev {
        display: none;
      }
    }


    
    /* ===== SAYFA HERO (Hakkımızda başlık alanı) ===== */
    .page-hero {
      position: relative;
      background: linear-gradient(135deg, var(--navy-dark), var(--navy) 55%, var(--navy-light));
      color: #fff;
      padding: 72px 0 64px;
      overflow: hidden;
    }

    .page-hero::after {
      content: "";
      position: absolute;
      inset: 0;
      background-image: repeating-linear-gradient(45deg,
          rgba(255, 255, 255, 0.04) 0 2px,
          transparent 2px 18px);
      pointer-events: none;
    }

    .page-hero .container {
      position: relative;
      z-index: 1;
    }

    .page-hero .crumbs {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 0.88rem;
      color: #cfe0ea;
      margin-bottom: 18px;
    }

    .page-hero .crumbs a:hover {
      color: var(--gold-light);
    }

    .page-hero .crumbs span {
      opacity: 0.5;
    }

    .page-hero h1 {
      font-size: clamp(2rem, 4vw, 2.9rem);
      font-weight: 800;
      letter-spacing: -0.02em;
      margin-bottom: 14px;
    }

    .page-hero p {
      color: #cfe0ea;
      max-width: 560px;
      font-size: 1.05rem;
    }
