/* TT Fors - Inter fontu ile benzer yapıda */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* Pompei Demi Bold Regular - Playfair Display ile benzer yapıda */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


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

:root {
  --navy: #001522;
  --navy2: #001a29;
  --gold: #f5b91f;
  --gold2: #ffc63d;
  --white: #f7f7f7;

    /* Font değişkenleri */
  --font-tt-fors: 'Inter', 'Montserrat', sans-serif;
  --font-pompei: 'Playfair Display', 'Times New Roman', serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-tt-fors);
  background: var(--navy);
  color: var(--white);
  overflow-x: hidden;
}

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

button {
  font: inherit;
}

/* ========== HEADER ========== */
.site-header {
  height: 89px;
  background: #001522;
  border-bottom: 1px solid rgba(246, 185, 31, .9);
  position: relative;
  z-index: 20;
}

.header-inner {
  height: 100%;
  max-width: 1400px;
  margin: auto;
  display: flex;
  align-items: center;
  padding: 0 0;
}

.brand {
  display: block;
  width: 295px;
  flex: 0 0 295px;
}

.brand img {
  display: block;
  width: 225px;
  height: auto;
  object-fit: contain;
}

.main-nav {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 88px;
  flex: 1;
}

.main-nav a {
  height: 100%;
  display: flex;
  align-items: center;
  position: relative;
  font-size: 15px;
  font-weight: 600;
  white-space: nowrap;
  transition: color 0.3s ease;
}

.main-nav a:hover {
  color: var(--gold);
}

.main-nav a:hover::after,
.main-nav a.active::after {
  content: "";
  position: absolute;
  bottom: 10px;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gold);
}

.main-nav a.active {
  color: var(--gold);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 56px;
}

/* Dil Dropdown */
.language-wrapper {
  position: relative;
  display: inline-block;
}

.language {
  height: 48px;
  min-width: 96px;
  border: 1px solid #d69d25;
  border-radius: 13px;
  background: transparent;
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  transition: all 0.3s ease;
}

.language:hover {
  border-color: var(--gold);
}

.language i {
  font-size: 12px;
  color: var(--gold);
  transition: transform 0.3s ease;
}

.language[aria-expanded="true"] i {
  transform: rotate(180deg);
}

.language-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: #001522;
  border: 1px solid #d69d25;
  border-radius: 13px;
  list-style: none;
  padding: 8px 0;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 30;
  min-width: 96px;
}

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

.language-dropdown li a {
  display: block;
  padding: 10px 16px;
  color: #fff;
  font-weight: 500;
  font-size: 14px;
  text-align: center;
  transition: background 0.2s ease, color 0.2s ease;
  text-decoration: none;
  border-radius: 8px;
  margin: 2px 6px;
}

.language-dropdown li a:hover {
  background: rgba(246, 185, 31, 0.15);
  color: var(--gold);
}

.language-dropdown li a.active {
  color: var(--gold);
  background: rgba(246, 185, 31, 0.1);
}

.menu-toggle {
  width: 42px;
  height: 38px;
  border: 0;
  background: transparent;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 7px;
  cursor: pointer;
  padding: 0;
}

.menu-toggle span {
  height: 4px;
  width: 38px;
  background: var(--gold);
  display: block;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}

/* ========== HERO / SLIDER ========== */
.hero {
  height: 77vh;
  position: relative;
  overflow: hidden;
}

/* Slider Container */
.slider-container {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

/* Slides */
.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1), 
              transform 1.2s cubic-bezier(0.4, 0, 0.2, 1),
              visibility 1.2s ease;
  transform: scale(1.05);
}

.slide.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  z-index: 2;
}

.slide.active .slide-content .hero-line {
  animation: slideLineIn 0.8s ease 0.3s forwards;
}

.slide.active .slide-content .hero-kicker {
  animation: slideTextIn 0.8s ease 0.5s forwards;
}

.slide.active .slide-content h1 {
  animation: slideTextIn 0.8s ease 0.7s forwards;
}

.slide.active .slide-content .hero-buttons {
  animation: slideTextIn 0.8s ease 0.9s forwards;
}

/* Slide Background */
.slide-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transform: scale(1);
  transition: transform 8s ease;
}

.slide.active .slide-bg {
  transform: scale(1.08);
}

/* Slide Overlay - Gradient */
.slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(0, 21, 34, 0.85) 0%,
    rgba(0, 21, 34, 0.4) 40%,
    rgba(0, 21, 34, 0.2) 70%,
    rgba(0, 21, 34, 0.1) 100%
  );
  z-index: 1;
}

/* Slide Glow Effect - Luxurious */
.slide-glow {
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    ellipse at 70% 30%,
    rgba(246, 185, 31, 0.08) 0%,
    rgba(246, 185, 31, 0.04) 30%,
    transparent 70%
  );
  z-index: 1;
  opacity: 0;
  transition: opacity 1.5s ease;
}

.slide.active .slide-glow {
  opacity: 1;
}

/* Slide Content */
.slide-content {
  position: absolute;
  left: max(calc((100% - 1400px)/2), 60px);
  top: 50%;
  transform: translateY(-50%);
  width: 670px;
  z-index: 3;
}

.slide-content .hero-line {
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left;
  width: 56px;
  height: 4px;
  background: var(--gold);
  margin-bottom: 40px;
}

.slide-content .hero-kicker {
  opacity: 0;
  transform: translateY(30px);
  font-family: var(--font-tt-fors);
  font-size: 62px;
  line-height: 0.9;
  font-weight: 400;
  letter-spacing: 1.2px;
}

.slide-content h1 {
  opacity: 0;
  transform: translateY(30px);
  font-family: var(--font-tt-fors);
  font-size: 62px;
  line-height: 1.18;
  font-weight: 500;
  margin-top: 3px;
  letter-spacing: .2px;
}

.slide-content h1 .highlight-text {
  font-family: var(--font-pompei);
  font-weight: 700;
  font-style: normal;
  color: var(--gold2);
  display: inline-block;
  letter-spacing: 1px;
}

.slide-content h1 .main-text {
  font-family: var(--font-tt-fors);
  color: #fff;
  display: inline-block;
  letter-spacing: 0.5px;
}

.slide-content .hero-buttons {
  opacity: 0;
  transform: translateY(30px);
  display: flex;
  gap: 26px;
  margin-top: 37px;
}

/* ========== BUTONLAR ========== */
.btn {
  height: 61px;
  border-radius: 32px;
  padding: 0 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-size: 15px;
  font-weight: 700;
  min-width: 296px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.btn-arrow {
  flex-shrink: 0;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  color: currentColor;
}

.btn:hover .btn-arrow {
  transform: translateX(8px);
}

.btn-gold {
  background: var(--gold2);
  color: #101010;
}

.btn-gold:hover {
  background: #e6aa1a;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(246, 185, 31, 0.3);
}

.btn-outline {
  border: 2px solid var(--gold);
  background: rgba(0, 20, 32, .6);
  color: #fff;
}

.btn-outline:hover {
  background: rgba(246, 185, 31, 0.15);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(246, 185, 31, 0.15);
}

/* Animasyonlar */
@keyframes slideLineIn {
  0% {
    opacity: 0;
    transform: scaleX(0);
  }
  100% {
    opacity: 1;
    transform: scaleX(1);
  }
}

@keyframes slideTextIn {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ========== SLIDER NAV BUTTONS - GIZLI ========== */
.slider-nav {
  display: none !important;
}

/* ========== SLIDER DOTS - GIZLI ========== */
.slider-dots {
  display: none !important;
}

/* ========== DESKTOP CONTACT STRIP ========== */
.contact-strip {
  height: 100px;
  background: #001522;
  border-top: 1px solid #bd8b20;
  border-bottom: 1px solid #bd8b20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: none;
  padding: 0 max(calc((100% - 1470px)/2), 45px);
  flex-shrink: 0;
}

.contact-items-wrapper {
  display: flex;
  align-items: center;
  gap: 0;
  flex: 1;
}

.contact-item {
  height: 58px;
  display: flex;
  align-items: center;
  gap: 25px;
  padding: 0 50px;
  transition: all 0.3s ease;
  flex: 1;
  cursor: pointer;
}

.contact-item:first-child {
  padding-left: 0;
}

.contact-item:last-child {
  padding-right: 0;
}

.contact-item:hover {
  opacity: 0.8;
}

.separator {
  width: 2px;
  height: 50px;
  flex-shrink: 0;
  margin: 0 20px;
  position: relative;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(246, 185, 31, 0.15) 15%,
    rgba(246, 185, 31, 0.6) 40%,
    rgba(246, 185, 31, 0.9) 50%,
    rgba(246, 185, 31, 0.6) 60%,
    rgba(246, 185, 31, 0.15) 85%,
    transparent 100%
  );
}

.contact-icon {
  width: 58px;
  height: 58px;
  border: 2px solid #dba327;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--gold2);
  font-size: 28px;
  flex: 0 0 58px;
  transition: all 0.3s ease;
}

.contact-item:hover .contact-icon {
  border-color: var(--gold2);
  background: rgba(246, 185, 31, 0.05);
}

.contact-item strong,
.contact-item small {
  display: block;
  line-height: 1.2;
}

.contact-item strong {
  font-size: 16px;
  margin-bottom: 4px;
  font-weight: 600;
}

.contact-item small {
  font-size: 15px;
  font-weight: 500;
  opacity: 0.9;
}

.whatsapp .contact-icon {
  font-size: 30px;
}

.socials {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 38px;
  padding-left: 50px;
  flex-shrink: 0;
}

.socials a {
  font-size: 29px;
  color: #fff;
  transition: all 0.3s ease;
  line-height: 1;
}

.socials a:hover {
  color: var(--gold2);
  transform: translateY(-3px);
}

/* ========== MOBILE CONTACT STRIP (Sadece mobilde görünür) ========== */
.contact-strip-mobile {
  display: none;
  background: #001522;
  padding: 14px 20px;
  border-top: 1px solid #bd8b20;
  flex-shrink: 0;
}

.contact-items-wrapper-mobile {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  width: 100%;
}

.contact-item-mobile {
  height: 54px;
  border: 2px solid #dba327;
  border-radius: 27px;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: rgba(0, 21, 34, 0.5);
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
  color: #fff;
}

/* WhatsApp - Tamamen Gold */
.contact-item-mobile.whatsapp-mobile {
  border-color: var(--gold2);
  background: var(--gold2);
  color: #101010;
}

.contact-item-mobile.whatsapp-mobile .contact-icon-mobile {
  color: #101010;
}

.contact-item-mobile.whatsapp-mobile strong {
  color: #101010;
}

.contact-item-mobile.whatsapp-mobile:hover {
  background: #e6aa1a;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 198, 61, 0.3);
}

.contact-item-mobile:not(.whatsapp-mobile):hover {
  border-color: var(--gold2);
  background: rgba(255, 198, 61, 0.05);
}

.contact-icon-mobile {
  border: 0;
  width: auto;
  height: auto;
  font-size: 22px;
  color: var(--gold2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-item-mobile:not(.whatsapp-mobile) .contact-icon-mobile {
  color: var(--gold2);
}

.contact-item-mobile strong {
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}

/* ========== FOOTER ========== */
.site-footer {
  height: 103px;
  background: #001522;
  border-top: 1px solid rgba(246, 185, 31, 0.2);
  flex-shrink: 0;
}

.footer-inner {
  height: 100%;
  max-width: 1400px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  padding: 0 0;
}

.footer-brand img {
  width: 220px;
  display: block;
}

.slogan {
  font-family: 'Satisfy', 'Brush Script MT', 'Segoe Script', cursive;
  color: var(--gold2);
  font-size: 43px;
  text-align: center;
  opacity: 0.9;
}
.slogan img {
  padding-top:18px;
  width: 60%;

}

/* Desktop Footer Links */
.footer-links {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 20px;
  font-size: 14px;
}

.footer-links a {
  transition: color 0.3s ease;
}

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

.footer-links i {
  height: 19px;
  width: 1px;
  background: #a7a7a7;
  display: block;
  flex-shrink: 0;
}

/* Mobile Footer Social Icons - Gizli (Desktop'ta görünmez) */
.footer-social-mobile {
  display: none;
}

/* Mobile Footer Links - Gizli (Desktop'ta görünmez) */
.footer-links-mobile {
  display: none;
}

/* ========== RESPONSIVE ========== */

/* 1200px - Tablet ve küçük masaüstü */
@media (max-width: 1200px) {
  .header-inner,
  .footer-inner {
    padding: 0 35px;
  }
  
  .main-nav {
    gap: 45px;
  }
  
  .header-actions {
    gap: 25px;
  }
  
  .contact-strip {
    padding: 0 30px;
  }
  
  .contact-item {
    padding: 0 25px;
    gap: 15px;
  }
  
  .separator {
    margin: 0 10px;
  }
  
  .slide-content {
    left: 60px;
  }
}

/* 992px - Tablet */
@media (max-width: 992px) {
  .main-nav {
    gap: 30px;
  }
  
  .main-nav a {
    font-size: 13px;
  }
  
  .contact-item {
    padding: 0 15px;
    gap: 12px;
  }
  
  .contact-item strong {
    font-size: 14px;
  }
  
  .contact-item small {
    font-size: 13px;
  }
  
  .separator {
    margin: 0 8px;
    height: 40px;
  }
  
  .socials {
    gap: 25px;
    padding-left: 30px;
  }
  
  .socials a {
    font-size: 24px;
  }
}

/* ============================================================ */
/* 800px - MOBIL */
/* ============================================================ */
@media (max-width: 800px) {
  /* ----- BODY ----- */
  body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    height: 100vh;
    max-height: 100vh;
    overflow: hidden;
  }

  /* ----- HEADER ----- */
  .site-header {
    height: 85px !important;
    flex-shrink: 0;
    position: relative;
    z-index: 20;
    border-bottom: 2px solid rgba(246, 185, 31, .9);
  }
  
  .header-inner {
    padding: 0 20px;
  }
  
  .brand {
    width: 190px !important;
    flex-basis: 190px !important;
  }
  
  .brand img {
    width: 180px !important;
    filter: brightness(1.1);
  }
  
  .main-nav {
    display: none;
  }
  
  .main-nav.mobile-open {
    display: flex !important;
    position: absolute;
    top: 85px;
    left: 0;
    right: 0;
    height: auto;
    padding: 18px 25px 22px;
    background: #001522;
    border-bottom: 2px solid var(--gold);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    z-index: 25;
  }
  
  .main-nav.mobile-open a {
    height: 50px;
    justify-content: center;
    font-size: 15px;
    font-weight: 600;
  }
  
  .main-nav.mobile-open a.active::after,
  .main-nav.mobile-open a:hover::after {
    bottom: 0;
  }
  
  .header-actions {
    margin-left: auto;
    gap: 16px;
  }
  
  .language {
    height: 40px !important;
    min-width: 70px !important;
    font-size: 14px !important;
    border-radius: 10px !important;
    padding: 0 14px;
    border-width: 1.5px;
  }
  
  .language i {
    font-size: 12px !important;
  }
  
  .language-dropdown {
    min-width: 70px !important;
  }
  
  .language-dropdown li a {
    padding: 8px 12px !important;
    font-size: 13px !important;
  }
  
  .menu-toggle {
    width: 36px !important;
    height: 32px !important;
    gap: 5px !important;
  }
  
  .menu-toggle span {
    width: 32px !important;
    height: 3.5px !important;
  }
  
  .menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px) !important;
  }
  
  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px) !important;
  }

  /* ----- HERO / SLIDER (Mobil - Tam Ekran) ----- */
  main {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 0;
  }
  
  .hero {
    flex: 1;
    min-height: 0;
    height: auto !important;
    width: 100%;
    position: relative;
    overflow: hidden;
  }
  
  .slider-container {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
  }
  
  .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  
  .slide-content {
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    padding: 0 30px;
    text-align: center;
  }
  
  .slide-content .hero-line {
    margin: 0 auto 22px;
    transform-origin: center;
    width: 50px;
    height: 3px;
  }
  
  .slide-content .hero-kicker {
    font-size: 28px;
    white-space: normal;
    letter-spacing: 0.5px;
  }
  
  .slide-content h1 {
    font-size: 34px;
    line-height: 1.3;
    margin-top: 2px;
  }
  
  .slide-content h1 .highlight-text {
    font-size: 34px;
  }
  
  .slide-content h1 .main-text {
    font-size: 34px;
  }
  
  .slide-content .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-top: 26px;
  }
  
  .btn {
    width: 100%;
    max-width: 320px;
    min-width: 0;
    height: 52px !important;
    font-size: 14px !important;
    padding: 0 24px !important;
    border-radius: 26px !important;
    gap: 10px !important;
  }
  
  .btn-arrow {
    width: 18px !important;
    height: 18px !important;
  }

  /* ----- DESKTOP CONTACT STRIP - Gizle ----- */
  .contact-strip {
    display: none !important;
  }

  /* ----- MOBILE CONTACT STRIP - Göster ----- */
  .contact-strip-mobile {
    display: block !important;
    flex-shrink: 0;
    padding: 14px 20px;
  }
  
  .contact-items-wrapper-mobile {
    gap: 12px;
  }
  
  .contact-item-mobile {
    height: 54px;
    border-radius: 27px;
    padding: 0 16px;
    gap: 10px;
    border-width: 2px;
  }
  
  .contact-icon-mobile {
    font-size: 22px;
  }
  
  .contact-item-mobile strong {
    font-size: 14px;
  }

  /* ========== FOOTER (Mobil) ========== */
  .site-footer {
    height: auto !important;
    min-height: 80px;
    padding: 14px 20px 12px;
    border-top: 2px solid rgba(246, 185, 31, 0.2);
    flex-shrink: 0;
    background: #001522;
    display: flex !important;
    flex-direction: column !important;
    gap: 10px;
  }
  
  .footer-inner {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 0 !important;
    gap: 12px;
    flex-wrap: nowrap;
    height: auto !important;
    width: 100%;
  }
  
  .footer-brand {
    flex-shrink: 0;
  }
  
  .footer-brand img {
    width: 110px !important;
  }
  
  .slogan {
    font-size: 22px !important;
    margin: 0 !important;
    text-align: center;
    flex: 1;
    white-space: nowrap;
  }

.slogan img {
  padding-top:5px;
  width: 80%;
}
  
  /* Desktop Footer Links - Gizle */
  .footer-links-desktop {
    display: none !important;
  }
  
  /* Mobile Footer Social Icons - Göster */
  .footer-social-mobile {
    display: flex !important;
    gap: 18px;
    flex-shrink: 0;
  }
  
  .footer-social-mobile a {
    font-size: 24px;
    color: #fff;
    transition: all 0.3s ease;
    line-height: 1;
  }
  
  .footer-social-mobile a:hover {
    color: var(--gold2);
    transform: translateY(-2px);
  }
  
  /* Mobile Footer Links - Göster (en altta) */
  .footer-links-mobile {
    display: flex !important;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    padding-top: 8px;
    padding-bottom: 45px;
    border-top: 1px solid rgba(246, 185, 31, 0.15);
    width: 100%;
  }
  
  .footer-links-mobile a {
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.3s ease;
    font-size: 12px;
  }
  
  .footer-links-mobile a:hover {
    color: var(--gold2);
  }
  
  .footer-links-mobile .separator-dot {
    color: rgba(246, 185, 31, 0.4);
    font-size: 6px;
  }
}

/* 480px - Küçük mobil */
@media (max-width: 480px) {
  .site-header {
    height: 75px !important;
  }
  
  .header-inner {
    padding: 0 16px !important;
  }
  
  .brand {
    width: 160px !important;
    flex-basis: 160px !important;
  }
  
  .brand img {
    width: 150px !important;
    filter: brightness(1.15);
  }
  
  .main-nav.mobile-open {
    top: 75px !important;
    padding: 14px 20px 18px !important;
  }
  
  .main-nav.mobile-open a {
    height: 44px !important;
    font-size: 14px !important;
  }
  
  .header-actions {
    gap: 12px;
  }
  
  .language {
    height: 36px !important;
    min-width: 60px !important;
    font-size: 13px !important;
    border-radius: 8px !important;
  }
  
  .menu-toggle {
    width: 32px !important;
    height: 28px !important;
    gap: 4px !important;
  }
  
  .menu-toggle span {
    width: 28px !important;
    height: 3px !important;
  }
  
  .menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px) !important;
  }
  
  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px) !important;
  }

  .slide-content {
    padding: 0 20px;
  }
  
  .slide-content .hero-line {
    width: 40px;
    height: 2.5px;
    margin: 0 auto 16px;
  }
  
  .slide-content .hero-kicker {
    font-size: 22px;
  }
  
  .slide-content h1 {
    font-size: 28px;
  }
  
  .slide-content h1 .highlight-text {
    font-size: 28px;
  }
  
  .slide-content h1 .main-text {
    font-size: 28px;
  }
  
  .slide-content .hero-buttons {
    margin-top: 18px;
    gap: 10px;
  }
  
  .btn {
    height: 46px !important;
    font-size: 13px !important;
    padding: 0 18px !important;
    border-radius: 23px !important;
    max-width: 260px !important;
    gap: 8px !important;
  }
  
  .btn-arrow {
    width: 16px !important;
    height: 16px !important;
  }

  .contact-strip-mobile {
    padding: 12px 16px !important;
  }

  .contact-items-wrapper-mobile {
    gap: 10px !important;
  }

  .contact-item-mobile {
    height: 46px !important;
    padding: 0 12px !important;
    gap: 8px !important;
    border-radius: 23px !important;
  }

  .contact-icon-mobile {
    font-size: 18px !important;
  }
  
  .contact-item-mobile strong {
    font-size: 13px !important;
  }

  .site-footer {
    padding: 12px 16px 70px !important;
    min-height: 70px !important;
  }
  
  .footer-brand img {
    width: 90px !important;
  }
  
  .slogan {
    font-size: 18px !important;
  }
  
  .footer-social-mobile {
    gap: 14px !important;
  }
  
  .footer-social-mobile a {
    font-size: 20px !important;
  }
  
  .footer-links-mobile {
    font-size: 11px !important;
    gap: 8px !important;
  }
  
  .footer-links-mobile a {
    font-size: 11px !important;
  }
}

/* 360px - Çok küçük mobil */
@media (max-width: 360px) {
  .site-header {
    height: 65px !important;
  }
  
  .brand {
    width: 130px !important;
    flex-basis: 130px !important;
  }
  
  .brand img {
    width: 150px !important;
  }
  
  .main-nav.mobile-open {
    top: 65px !important;
  }
  
  .language {
    height: 32px !important;
    min-width: 52px !important;
    font-size: 12px !important;
  }
  
  .menu-toggle {
    width: 28px !important;
    height: 24px !important;
    gap: 3px !important;
  }
  
  .menu-toggle span {
    width: 24px !important;
    height: 2.5px !important;
  }

  .slide-content .hero-kicker {
    font-size: 18px;
  }
  
  .slide-content h1 {
    font-size: 22px;
  }
  
  .slide-content h1 .highlight-text {
    font-size: 22px;
  }
  
  .slide-content h1 .main-text {
    font-size: 22px;
  }
  
  .btn {
    height: 40px !important;
    font-size: 12px !important;
    max-width: 200px !important;
    padding: 0 14px !important;
    gap: 6px !important;
  }
  
  .btn-arrow {
    width: 14px !important;
    height: 14px !important;
  }

  .contact-item-mobile {
    height: 40px !important;
    padding: 0 10px !important;
    gap: 6px !important;
    border-radius: 20px !important;
  }
  
  .contact-icon-mobile {
    font-size: 16px !important;
  }
  
  .contact-item-mobile strong {
    font-size: 11px !important;
  }
  
  .site-footer {
    padding: 10px 14px 8px !important;
  }
  
  .footer-brand img {
    width: 70px !important;
  }
  
  .slogan {
    font-size: 15px !important;
  }
  
  .footer-social-mobile a {
    font-size: 17px !important;
  }
  
  .footer-links-mobile {
    font-size: 10px !important;
    gap: 6px !important;
  }
  
  .footer-links-mobile a {
    font-size: 10px !important;
  }
}