:root {
  --navy: #0f0d0a;
  --navy-mid: #1a1510;
  --gold: #c8a96e;
  --gold-light: #dfc48a;
  --white: #ffffff;
  --off-white: #f5f0e8;
  --text-body: #334155;
  --text-light: #94a3b8;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text-body);
  overflow-x: hidden;
}

/* ── NAVBAR ── */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
  background: var(--navy);
  border-bottom: 3px solid var(--gold);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-box {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: var(--gold);
  color: var(--navy);
  font-weight: 800;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  flex-shrink: 0;
}

.logo-text-wrap {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo-title {
  color: var(--white);
  font-weight: 300;
  font-size: 1.5rem;
  font-family: 'Cormorant Garamond', serif;
  letter-spacing: 0.5px;
}

.logo-sub {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.68rem;
  letter-spacing: 1px;
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  position: relative;
  padding-bottom: 4px;
  transition: color 0.3s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
}

.nav-links a.active::after,
.nav-links a:hover::after {
  width: 100%;
}

/* Lang dropdown */
.lang-item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.75);
  cursor: pointer;
  font-size: 0.9rem;
  list-style: none;
}

.lang-dropdown {
  position: absolute;
  top: calc(100% + 14px);
  right: 0;
  background: var(--navy-mid);
  border: 1px solid rgba(201, 160, 80, 0.3);
  border-radius: 6px;
  padding: 6px 0;
  display: none;
  min-width: 60px;
  z-index: 10;
}

.lang-dropdown span {
  display: block;
  padding: 8px 16px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.85rem;
  cursor: pointer;
  transition: background 0.2s;
}

.lang-dropdown span:hover {
  background: rgba(201, 160, 80, 0.15);
  color: var(--gold);
}

/* dropdown controlled by JS click */
.hamburger {
  display: none;
  background: transparent;
  border: none;
  color: var(--white);
  font-size: 1.3rem;
  cursor: pointer;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 70px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('globe.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 35, 71, 0.82) 0%, rgba(0, 35, 71, 0.65) 50%, rgba(0, 48, 102, 0.72) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 20px;
}

.hero-frame {
  border: 1px solid rgba(201, 160, 80, 0.5);
  border-radius: 4px;
  padding: 60px 80px;
  position: relative;
  display: inline-block;
}

.hero-frame::before,
.hero-frame::after {
  content: '';
  position: absolute;
  width: 26px;
  height: 26px;
  border-color: var(--gold);
  border-style: solid;
}

.hero-frame::before {
  top: -3px;
  left: -3px;
  border-width: 3px 0 0 3px;
  border-radius: 2px 0 0 0;
}

.hero-frame::after {
  bottom: -3px;
  right: -3px;
  border-width: 0 3px 3px 0;
  border-radius: 0 0 2px 0;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 40px;
  font-weight: 400;
  letter-spacing: 0.3px;
}

.hero-btn {
  font-size: 1.05rem !important;
  padding: 16px 44px !important;
  border-radius: 6px !important;
}

/* ── BUTTONS ── */
.btn-gold {
  background: var(--gold);
  color: var(--navy);
  padding: 13px 30px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.93rem;
  text-decoration: none;
  border: 2px solid var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
}

.btn-gold:hover {
  background: transparent;
  color: var(--gold);
}

.btn-outline-navy {
  background: transparent;
  color: var(--navy);
  padding: 13px 30px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.93rem;
  text-decoration: none;
  border: 2px solid var(--navy);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s;
}

.btn-outline-navy:hover {
  background: var(--navy);
  color: var(--white);
}

/* ── STATS BAR ── */
.stats-bar {
  background: var(--navy);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 30px 32px;
  flex-wrap: wrap;
  gap: 0;
}

.stat-item {
  text-align: center;
  padding: 0 44px;
}

.stat-item strong {
  display: block;
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--gold);
  font-family: 'Cormorant Garamond', serif;
  line-height: 1;
}

.stat-item span {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  display: block;
  margin-top: 5px;
}

.stat-divider {
  width: 1px;
  height: 50px;
  background: rgba(255, 255, 255, 0.15);
}

/* ── SECTIONS ── */
.section-light {
  background: var(--off-white);
  padding: 90px 32px;
}

.section-dark {
  background: var(--navy);
  padding: 90px 32px;
}

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

.section-head {
  margin-bottom: 54px;
}

.s-label {
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.s-label::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 2px;
  background: var(--gold);
}

.s-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 14px;
}

.s-title.white {
  color: var(--white);
}

.s-sub {
  color: var(--text-body);
  font-size: 1rem;
  line-height: 1.8;
  max-width: 560px;
}

.s-sub.light {
  color: rgba(255, 255, 255, 0.65);
}

/* ── SERVICES GRID (home preview) ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.srv-card {
  background: var(--white);
  border-radius: 10px;
  padding: 36px 30px;
  border: 1px solid rgba(0, 35, 71, 0.08);
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
}

.srv-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--gold);
  transition: width 0.4s;
}

.srv-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0, 35, 71, 0.1);
}

.srv-card:hover::before {
  width: 100%;
}

.srv-icon {
  width: 54px;
  height: 54px;
  border-radius: 10px;
  background: rgba(201, 160, 80, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--gold);
  margin-bottom: 18px;
  transition: all 0.3s;
}

.srv-card:hover .srv-icon {
  background: var(--navy);
  color: var(--gold);
}

.srv-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.22rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.srv-card p {
  color: var(--text-body);
  line-height: 1.7;
  font-size: 0.92rem;
}

/* ── WHY US ── */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(201, 160, 80, 0.2);
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 14px;
  transition: background 0.3s;
}

.why-card:last-child {
  margin-bottom: 0;
}

.why-card:hover {
  background: rgba(201, 160, 80, 0.08);
}

.why-icon {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: rgba(201, 160, 80, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--gold);
  flex-shrink: 0;
}

.why-card h4 {
  color: var(--white);
  font-weight: 700;
  margin-bottom: 4px;
  font-size: 0.95rem;
}

.why-card p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.87rem;
  line-height: 1.6;
}

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: var(--navy);
  padding: 140px 32px 70px;
  text-align: center;
}

.page-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 1rem;
  max-width: 520px;
  margin: 0 auto;
}

/* ── SERVICES FULL (hizmetler page) ── */
.services-full {
  padding: 90px 32px;
  background: var(--off-white);
}

.services-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}

.srv-full {
  background: var(--white);
  border-radius: 12px;
  padding: 42px 36px;
  border: 1px solid rgba(0, 35, 71, 0.08);
  transition: all 0.4s;
}

.srv-full:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0, 35, 71, 0.1);
}

.srv-full-icon {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  background: rgba(201, 160, 80, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 22px;
  transition: all 0.3s;
}

.srv-full:hover .srv-full-icon {
  background: var(--navy);
  color: var(--gold);
}

.srv-full h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}

.srv-tag {
  font-size: 0.72rem;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 14px;
  display: block;
}

.srv-full p {
  color: var(--text-body);
  line-height: 1.75;
  font-size: 0.93rem;
  margin-bottom: 18px;
}

.srv-full ul {
  list-style: none;
}

.srv-full ul li {
  color: var(--text-body);
  font-size: 0.87rem;
  padding: 5px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.srv-full ul li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
}

/* ── CONTACT PAGE ── */
.contact-section {
  padding: 90px 32px;
  background: var(--off-white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}

.contact-detail {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 20px;
}

.c-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(201, 160, 80, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1rem;
  flex-shrink: 0;
}

.contact-detail h5 {
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 2px;
  font-size: 0.9rem;
}

.contact-detail p {
  color: var(--text-body);
  font-size: 0.88rem;
  margin: 0;
}

.form-card {
  background: var(--white);
  border-radius: 14px;
  padding: 46px 40px;
  box-shadow: 0 16px 50px rgba(0, 35, 71, 0.08);
  border-top: 4px solid var(--gold);
}

.form-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.55rem;
  color: var(--navy);
  margin-bottom: 28px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
  letter-spacing: 0.3px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #e2e8f0;
  border-radius: 6px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.92rem;
  color: var(--navy);
  background: var(--white);
  outline: none;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 160, 80, 0.1);
}

.form-group textarea {
  min-height: 110px;
  resize: vertical;
}

.file-upload {
  border: 2px dashed #e2e8f0;
  border-radius: 6px;
  padding: 18px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s;
}

.file-upload:hover {
  border-color: var(--gold);
  background: rgba(201, 160, 80, 0.04);
}

.file-upload i {
  font-size: 1.4rem;
  color: var(--text-light);
  margin-bottom: 6px;
  display: block;
}

.file-upload p {
  font-size: 0.82rem;
  color: var(--text-light);
}

.file-upload p span {
  color: var(--gold);
  font-weight: 600;
}

.form-submit {
  width: 100%;
  background: var(--navy);
  color: var(--white);
  border: none;
  padding: 16px;
  border-radius: 6px;
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  margin-top: 8px;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.form-submit:hover {
  background: var(--navy-mid);
  transform: translateY(-2px);
}

/* ── MAP ── */
.map-section {
  background: var(--white);
  padding: 70px 32px 0;
}

.map-header {
  text-align: center;
  margin-bottom: 40px;
}

.map-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.map-header p {
  color: var(--text-light);
  font-size: 0.98rem;
}

.map-wrap {
  position: relative;
  border: 2px solid rgba(0, 35, 71, 0.15);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 35, 71, 0.1);
}

.map-wrap iframe {
  width: 100%;
  height: 430px;
  border: none;
  display: block;
}

.map-info-box {
  position: absolute;
  top: 28px;
  left: 28px;
  background: var(--white);
  border-radius: 10px;
  padding: 22px 26px;
  box-shadow: 0 10px 36px rgba(0, 35, 71, 0.15);
  border-left: 4px solid var(--gold);
  max-width: 290px;
}

.map-info-box h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 12px;
}

.minfo {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.84rem;
  color: var(--text-body);
  margin-bottom: 8px;
}

.minfo i {
  color: var(--gold);
  margin-top: 2px;
  flex-shrink: 0;
}

.map-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  padding: 9px 18px;
  background: var(--navy);
  color: var(--white);
  border-radius: 5px;
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s;
}

.map-btn:hover {
  background: var(--gold);
  color: var(--navy);
}

/* ── FOOTER ── */
.footer {
  background: var(--navy);
  padding: 70px 32px 0;
  margin-top: 70px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-logo span {
  color: var(--white);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 700;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.87rem;
  line-height: 1.8;
}

.social-row {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.social-btn {
  width: 36px;
  height: 36px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: all 0.3s;
  font-size: 0.88rem;
}

.social-btn:hover {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}

.footer h5 {
  color: var(--gold);
  font-size: 0.72rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.footer ul {
  list-style: none;
}

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

.footer ul li a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  font-size: 0.87rem;
  transition: color 0.3s;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer ul li a i {
  color: var(--gold);
  font-size: 0.78rem;
}

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

.footer-bottom {
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  font-size: 0.79rem;
  color: rgba(255, 255, 255, 0.3);
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {

  .services-grid,
  .services-list {
    grid-template-columns: 1fr;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .hero-frame {
    padding: 46px 40px;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    gap: 0;
    position: fixed;
    top: 73px;
    left: auto;
    right: 0;
    width: 250px;
    height: calc(100vh - 73px);
    background: var(--navy);
    padding: 10px 0;
    border-top: 2px solid var(--gold);
    border-left: 1px solid rgba(201, 160, 80, 0.3);
    z-index: 9998;
    box-shadow: -6px 0 24px rgba(0, 0, 0, 0.5);
    overflow-y: auto;
    transform-origin: top right;
  }

  .nav-links.open {
    display: flex !important;
    animation: slideDown 0.3s ease forwards;
  }

  @keyframes slideDown {
    from {
      opacity: 0;
      transform: translateY(-20px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .nav-links li {
    padding: 0;
    width: 100%;
  }

  .nav-links li a {
    display: block;
    padding: 16px 28px;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85) !important;
  }

  .nav-links li a:hover,
  .nav-links li a.active {
    background: rgba(200, 169, 110, 0.15);
    color: var(--gold) !important;
    padding-left: 36px;
  }

  .nav-links li a::after {
    display: none;
  }

  .lang-item {
    padding: 16px 28px;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  }

  .lang-dropdown {
    position: static !important;
    display: none;
    background: rgba(255, 255, 255, 0.05);
    border: none;
    border-radius: 0;
    padding: 0;
    margin-top: 8px;
  }

  .lang-dropdown span {
    padding: 10px 20px;
  }

  .hamburger {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 9999;
    cursor: pointer;
  }

  .hero-frame {
    padding: 36px 24px;
  }

  .stats-bar {
    gap: 16px;
  }

  .stat-divider {
    display: none;
  }

  .stat-item {
    padding: 8px 16px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .map-info-box {
    position: static;
    max-width: 100%;
    border-radius: 0;
    border-left: none;
    border-top: 4px solid var(--gold);
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 6px;
  }

  .section-light,
  .section-dark,
  .services-full,
  .contact-section,
  .map-section {
    padding: 60px 20px;
  }

  .page-hero {
    padding: 100px 20px 50px;
  }

  .form-card {
    padding: 30px 22px;
  }

  /* ── TASDIK MOBILE FIX ── */
  .tasdik-block {
    grid-template-columns: 1fr !important;
    direction: ltr !important;
  }

  .tasdik-block.reverse {
    direction: ltr !important;
  }

  .tasdik-img {
    min-height: 220px !important;
    max-height: 260px !important;
  }

  .tasdik-img img {
    width: 100% !important;
    height: 260px !important;
    object-fit: cover !important;
  }

  .tasdik-text {
    padding: 28px 22px !important;
  }

  .tasdik-text p,
  .tasdik-text span,
  .tasdik-step span {
    line-height: 1.7 !important;
    word-break: normal !important;
    overflow-wrap: break-word !important;
    hyphens: none !important;
  }

  .tasdik-text h2 {
    font-size: 1.6rem !important;
  }

  /* Fix services list on mobile */
  .services-list {
    grid-template-columns: 1fr !important;
  }

  /* Fix srv-featured on mobile */
  .srv-featured {
    grid-template-columns: 1fr !important;
    grid-column: span 1 !important;
  }

}

/* ── GLOBAL TEXT FIX ── */
p,
span,
li,
h1,
h2,
h3,
h4,
h5 {
  word-break: normal !important;
  overflow-wrap: break-word !important;
  hyphens: none !important;
}

/* ── RTL FIX for Arabic ── */
[dir="rtl"] .tasdik-text,
[dir="rtl"] .about-content,
[dir="rtl"] .srv-full,
[dir="rtl"] .srv-card,
[dir="rtl"] .contact-info,
[dir="rtl"] .form-card {
  text-align: right !important;
}

[dir="rtl"] .tasdik-label,
[dir="rtl"] .s-label {
  justify-content: flex-end !important;
  flex-direction: row-reverse !important;
}

[dir="rtl"] .about-service-item {
  border-right: none !important;
  border-left: 4px solid var(--gold) !important;
  flex-direction: row-reverse !important;
}

[dir="rtl"] .srv-full ul li,
[dir="rtl"] .about-service-item {
  flex-direction: row-reverse !important;
}

/* ── PLAIN FONT FOR Elite Tercüme ── */
.logo-title {
  font-family: 'DM Sans', sans-serif !important;
  font-style: normal !important;
}

.hero-title {
  font-family: 'DM Sans', sans-serif !important;
  font-style: normal !important;
}

/* ── REMOVE HERO FRAME ── */
.hero-frame {
  border: none !important;
}

.hero-frame::before,
.hero-frame::after {
  display: none !important;
}

/* ── HIDE HERO SUBTITLE ── */
.hero-sub {
  display: none !important;
}

/* ── UZAKTAN WHITE BACKGROUND ── */
.about-remote {
  background: var(--white) !important;
  border: 1px solid rgba(0, 0, 0, 0.1) !important;
}

.about-remote h3 {
  color: var(--navy) !important;
}

.about-remote p {
  color: var(--text-body) !important;
}

.about-remote-icon {
  color: var(--gold) !important;
}

/* ── SERVICE CARD HOVER BORDER ── */
.about-service-item:hover {
  border: 2px solid var(--navy) !important;
  border-right: 4px solid var(--gold) !important;
  transform: translateX(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

/* ── ABOUT SERVICE ITEM HOVER ── */
.about-service-item {
  transition: all 0.3s ease;
  cursor: default;
}

.about-service-item:hover {
  border: 2px solid var(--navy) !important;
  border-right: 4px solid var(--gold) !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12) !important;
  transform: translateX(-4px) !important;
}

.about-service-item:hover .why-icon,
.about-service-item:hover .c-icon {
  background: var(--navy) !important;
  color: var(--gold) !important;
}

.about-service-item .why-icon,
.about-service-item .c-icon {
  transition: all 0.3s ease;
}

.about-service-item {
  transition: all 0.3s;
}

.about-service-item:hover {
  border: 2px solid #0f0d0a !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15) !important;
}

.about-service-item:hover i {
  color: #0f0d0a !important;
}