
/* =============================================
   1. GLOBAL RESET & BASE STYLES
   ============================================= */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");


html, body {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  background-color: #fff;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a {
  text-decoration: none !important;
  transition: all 0.3s ease;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  color: #212741;
  font-weight: 700;
}

p {
  font-size: 15px;
  line-height: 26px;
  color: #212741;
  margin: 0;
}

img {
  max-width: 100%;
  height: auto;
}

ul, li {
  list-style: none;
  margin: 0;
  padding: 0;
}

::selection {
  background: #ff511a;
  color: #fff;
}

/* =============================================
   2. HEADER & NAVIGATION - CONDITIONAL STYLES
   ============================================= */

/* ===== HEADER BASE ===== */
.header-area {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  transition: all 0.4s ease;
  padding: 20px 0;
}

/* ===== HOMEPAGE: Ã…Å¾effaf Header ===== */
.home-page .header-area {
  background: transparent;
  box-shadow: none;
}

.home-page .header-area .main-nav .logo img {
  filter: brightness(0) invert(1); /* Logo beyaz */
}

.home-page .header-area .main-nav .nav li a {
  color: #fff;
}

.home-page .header-area .main-nav .nav li.has-sub:after {
  color: #fff;
}

.home-page .header-area .lang-btn {
  color: #fff;
}

/* ===== INNER PAGES: Beyaz Header ===== */
.inner-page .header-area {
  background: #fff;
  box-shadow: 0px 2px 15px rgba(0,0,0,0.1);
}

.inner-page .header-area .main-nav .logo img {
  filter: none; /* Logo renkli */
}

.inner-page .header-area .main-nav .nav li a {
  color: #212741;
}

.inner-page .header-area .main-nav .nav li.has-sub:after {
  color: #212741;
}

.inner-page .header-area .lang-btn {
  color: #212741;
}

/* ===== SCROLLED STATE (TÃƒÂ¼m Sayfalar) ===== */
.header-area.scrolled {
  background: #fff !important;
  box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.1) !important;
  padding: 15px 0;
}

.header-area.scrolled .main-nav .logo img {
  filter: none !important; /* Logo renkli */
  height: 45px;
}

.header-area.scrolled .main-nav .nav li a {
  color: #212741 !important;
}

.header-area.scrolled .main-nav .nav li.has-sub:after {
  color: #212741 !important;
}

.header-area.scrolled .lang-btn {
  color: #212741 !important;
}

/* ===== Navigation Structure ===== */
.header-area .main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 60px;
}

.header-area .main-nav .logo {
  display: flex;
  align-items: center;
}

.header-area .main-nav .logo img {
  height: 50px;
  width: auto;
  object-fit: contain;
  transition: all 0.3s ease;
}

.header-area .main-nav .nav {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-area .main-nav .nav li a {
  display: block;
  font-size: 16px;
  padding: 10px 15px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.header-area .main-nav .nav li a:hover,
.header-area .main-nav .nav li a.active {
  color: #ff511a !important;
}

/* ===== Submenu ===== */
.header-area .main-nav .nav li.has-sub {
  position: relative;
}

.header-area .main-nav .nav li.has-sub:after {
  font-family: "Font Awesome 6 Free";
  content: "\f107";
  font-weight: 900;
  font-size: 12px;
  position: absolute;
  /* right: 5px; */
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s ease;
}

.header-area .main-nav .nav li.has-sub ul.sub-menu {
  position: absolute;
  width: 180px;
  background-color: #fff;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  top: 100%;
  left: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  margin-top: 10px;
  padding: 10px 0;
}

.header-area .main-nav .nav li.has-sub:hover ul.sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.header-area .main-nav .nav li.has-sub ul.sub-menu li a {
  color: #212741 !important;
  padding: 10px 20px;
  font-size: 14px;
}

.header-area .main-nav .nav li.has-sub ul.sub-menu li a:hover {
  background: rgba(255, 81, 26, 0.1);
  color: #ff511a !important;
  padding-left: 25px;
}

/* ===== Language Selector ===== */
.lang-selector {
  display: flex;
  gap: 0.25rem;
  background: rgba(255, 255, 255, 0.15);
  padding: 0.25rem;
  border-radius: 8px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.header-area.scrolled .lang-selector,
.inner-page .header-area .lang-selector {
  background: rgba(33, 39, 65, 0.05);
}

.lang-btn {
  padding: 0.4rem 0.75rem;
  border: none;
  background: transparent;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  cursor: pointer;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.lang-btn:hover {
  background: rgba(255, 81, 26, 0.2);
}

.lang-btn.active {
  background: #ff511a;
  color: #fff !important;
}

/* =============================================
   3. BUTTONS
   ============================================= */
.green-button a,
.orange-button a {
  font-size: 14px;
  color: #fff;
  padding: 15px 30px !important;
  min-width: 150px;
  white-space: nowrap;
  text-align: center;
  display: inline-block;
  border-radius: 5px;
  font-weight: 500;
  text-transform: capitalize;
  letter-spacing: 0.5px;
  transition: all .3s ease;
}

.green-button a {
  background-color: #43ba7f;
}

.orange-button a {
  background-color: #ff511a;
}

.green-button a:hover,
.orange-button a:hover {
  opacity: 0.85;
  transform: translateY(-2px);
}

button.orange-button {
  font-size: 14px;
  color: #fff;
  background-color: #ff511a;
  padding: 12px 30px;
  display: inline-block;
  border-radius: 5px;
  font-weight: 500;
  text-transform: capitalize;
  letter-spacing: 0.5px;
  border: none;
  cursor: pointer;
  transition: all .3s ease;
}

button.orange-button:hover {
  background-color: #212741;
  transform: translateY(-2px);
}

/* =============================================
   4. SWIPER SLIDER (Homepage Only)
   ============================================= */
.swiper-container {
  width: 100%;
  height: 100vh;
  margin-top: 0;
}

.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

.slide-inner {
  width: 100%;
  height: 100vh;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  position: relative;
}

.slide-inner:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(33, 39, 65, 0.7);
}

.slide-inner .container {
  position: relative;
  z-index: 2;
}

.slide-inner .header-text h2 {
  font-size: 48px;
  color: #fff;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.slide-inner .header-text h2 em {
  color: #ff511a;
  font-style: normal;
}

.slide-inner .header-text .div-dec {
  width: 80px;
  height: 3px;
  background: #ff511a;
  margin: 30px 0;
}

.slide-inner .header-text p {
  font-size: 16px;
  color: #fff;
  line-height: 28px;
  margin-bottom: 40px;
}

.slide-inner .header-text .buttons {
  display: flex;
  gap: 15px;
}

.swiper-button-next,
.swiper-button-prev {
  color: #fff !important;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 30px !important;
}

/* =============================================
   5. PAGE HEADING (Inner Pages)
   ============================================= */
.page-heading {
  background: linear-gradient(135deg, #212741 0%, #3a447a 100%);
  padding: 30px 0px 0px 0;
  text-align: right;
  margin-top: 80px;
}

.page-heading .header-text h2 {
  color: #fff;
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 10px; 
}

.page-heading .header-text .div-dec {
  /* width: 80px; */
  height: 3px;
  background: #ff511a;
  margin: 0 auto;
}

/* =============================================
   6. SECTIONS
   ============================================= */
section {
  padding: 80px 0;
}

.section-heading {
  text-align: center;
  margin-bottom: 60px;
}

.section-heading h6 {
  font-size: 16px;
  text-transform: uppercase;
  color: #ff511a;
  font-weight: 700;
  margin-bottom: 10px;
}

.section-heading h4 {
  font-size: 36px;
  color: #212741;
  font-weight: 700;
  line-height: 1.4;
}

.section-heading h4 em {
  color: #ff511a;
  font-style: normal;
}

.section-heading p {
  margin-top: 20px;
  font-size: 15px;
  color: #212741;
}

/* =============================================
   7. SERVICES SECTION
   ============================================= */
.services {
  background: #f7f7f7;
}

.service-item {
  background: #fff;
  padding: 40px 30px;
  border-radius: 10px;
  text-align: center;
  margin-bottom: 30px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.service-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-item i {
  font-size: 48px;
  color: #ff511a;
  margin-bottom: 25px;
  display: block;
}

.service-item h4 {
  font-size: 20px;
  color: #212741;
  margin-bottom: 15px;
}

.service-item p {
  font-size: 14px;
  color: #666;
  line-height: 24px;
}

/* =============================================
   8. SIMPLE CTA
   ============================================= */
.simple-cta {
  background: linear-gradient(135deg, #212741 0%, #3a447a 100%);
  padding: 60px 0;
}

.simple-cta h4 {
  color: #fff;
  font-size: 32px;
  line-height: 1.4;
}

.simple-cta h4 em {
  color: #43ba7f;
  font-style: normal;
}

.simple-cta h4 strong {
  color: #ff511a;
}

.simple-cta .buttons {
  display: flex;
  gap: 15px;
  align-items: center;
  justify-content: flex-end;
}

/* =============================================
   9. CALCULATOR / FORM SECTION
   ============================================= */
.calculator {
  background: #f7f7f7;
}

.calculator .left-image img {
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

#calculate fieldset {
  margin-bottom: 20px;
}

#calculate label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #212741;
}

#calculate input {
  width: 100%;
  height: 50px;
  background-color: #fff;
  color: #212741;
  border-radius: 5px;
  border: 1px solid #e0e0e0;
  padding: 0 15px;
  font-size: 14px;
  outline: none;
  transition: all 0.3s ease;
}

#calculate input:focus {
  border-color: #ff511a;
  box-shadow: 0 0 10px rgba(255, 81, 26, 0.1);
}

#calculate button {
  width: 100%;
}

/* =============================================
   10. ACCORDION (About Page)
   ============================================= */
.top-section {
  padding: 80px 0;
  background: #fff;
}

.top-section .left-image {
  margin-bottom: 30px;
}

.top-section .left-image img {
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  width: 100%;
}

.accordion {
  background: #fff;
  border-radius: 10px;
  margin-bottom: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: all 0.3s ease;
}

.accordion:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.accordion-head {
  padding: 25px 30px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #f7f7f7;
  transition: all 0.3s ease;
}

.accordion.active .accordion-head {
  background: #ff511a;
}

.accordion-head span:first-child {
  font-size: 18px;
  font-weight: 600;
  color: #212741;
  transition: all 0.3s ease;
}

.accordion.active .accordion-head span:first-child {
  color: #fff;
}

.accordion-head .icon {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.accordion.active .accordion-head .icon {
  transform: rotate(90deg);
}

.accordion-head .icon i {
  color: #ff511a;
  font-size: 14px;
}

.accordion-body {
  display: none;
  padding: 30px;
  background: #fff;
}

.accordion.active .accordion-body {
  display: block;
}

.accordion-body .content p {
  font-size: 15px;
  line-height: 28px;
  color: #666;
}

/* =============================================
   11. WHAT WE DO SECTION
   ============================================= */
.what-we-do {
  background: #f7f7f7;
  padding: 80px 0;
}

.what-we-do .left-content {
  padding-right: 30px;
}

.what-we-do .left-content h4 {
  font-size: 32px;
  color: #212741;
  font-weight: 700;
  margin-bottom: 25px;
  line-height: 1.4;
}

.what-we-do .left-content p {
  font-size: 15px;
  line-height: 28px;
  color: #666;
  margin-bottom: 30px;
}

.what-we-do .right-items .item {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
}

.what-we-do .right-items .item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.what-we-do .right-items .item em {
  font-size: 48px;
  font-weight: 700;
  color: #ff511a;
  font-style: normal;
  display: block;
  margin-bottom: 20px;
  opacity: 0.3;
}

.what-we-do .right-items .item h4 {
  font-size: 18px;
  color: #212741;
  font-weight: 600;
  margin-bottom: 15px;
  line-height: 1.4;
}

.what-we-do .right-items .item ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.what-we-do .right-items .item ul li {
  font-size: 14px;
  color: #666;
  line-height: 24px;
  margin-bottom: 8px;
  padding-left: 20px;
  position: relative;
}

.what-we-do .right-items .item ul li:before {
  content: "*";
  position: absolute;
  left: 0;
  color: #ff511a;
  font-weight: bold;
}

/* =============================================
   12. PARTNERS SECTION
   ============================================= */
.partners-line {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
  padding: 30px 0;
}

.partner-logo {
  height: 60px;
  width: auto;
  object-fit: contain;
  transition: all 0.3s ease;
  filter: grayscale(100%);
  opacity: 0.7;
}

.partner-logo:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.1);
}

/* =============================================
   13. FOOTER
   ============================================= */
footer {
  background: #212741;
  padding: 40px 0;
  text-align: center;
}

.footer-content {
  color: #fff;
}

.footer-content p {
  color: #fff;
  margin: 10px 0;
  font-size: 14px;
}

.footer-content a {
  color: #ff511a;
  transition: all 0.3s ease;
}

.footer-content a:hover {
  color: #43ba7f;
}

/* =============================================
   14. RESPONSIVE DESIGN
   ============================================= */
@media (max-width: 991px) {
  .header-area .main-nav .nav {
    display: none;
  }
  
  .slide-inner .header-text h2 {
    font-size: 36px;
  }
  
  .page-heading .header-text h2 {
    font-size: 36px;
  }
  
  .simple-cta h4 {
    font-size: 24px;
    text-align: center;
    margin-bottom: 30px;
  }
  
  .simple-cta .buttons {
    justify-content: center;
  }
  
  .calculator .left-image {
    margin-bottom: 40px;
  }
  
  .what-we-do .left-content {
    padding-right: 0;
    margin-bottom: 40px;
  }
  
  .accordion-head {
    padding: 20px;
  }
  
  .accordion-body {
    padding: 20px;
  }
}

@media (max-width: 767px) {
 .slide-inner{
    padding: 0 30px;
  }
  .slide-inner .header-text h2 {
    font-size: 28px;
  }
  
  .page-heading .header-text h2 {
    font-size: 32px;
  }
  
  .slide-inner .header-text p {
    font-size: 14px;
    
  }
  
  .slide-inner .header-text .buttons {
    flex-direction: row;
    gap: 10px;
  }
  
  .section-heading h4 {
    font-size: 28px;
  }
  
  .service-item {
    padding: 30px 20px;
  }
  
  .partners-line {
    gap: 20px;
  }
  
  .partner-logo {
    height: 40px;
  }
  
  .what-we-do .left-content h4 {
    font-size: 24px;
  }
  
  .what-we-do .right-items .item em {
    font-size: 36px;
  }
  
  .what-we-do .right-items .item h4 {
    font-size: 16px;
  }
}
.contact-us-form input,
.contact-us-form textarea,
.contact-us-form select {
    width: 100%;
    height: 46px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    padding: 0 15px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #333;
    outline: none;
    transition: all 0.3s ease;
    background-color: #fff;
	margin: 10px;
}
.contact-us-form textarea {
    height: 140px;
    padding-top: 12px;
    resize: none;
}
.contact-us-form select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg fill='%23999' height='20' viewBox='0 0 24 24' width='20' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>");
    background-repeat: no-repeat;
    background-position: right 15px center;
    cursor: pointer;
}
.contact-us-form input:focus,
.contact-us-form textarea:focus,
.contact-us-form select:focus {
    border-color: #ff7a00;
}
.contact-us-form input::placeholder,
.contact-us-form textarea::placeholder {
    color: #999;
}

section.map .info-item {
  text-align: center;
  padding: 40px 30px;
  border-radius: 5px;
  background-color: #fff;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
  margin-top: -60px;
  margin-left: 15px;
  margin-right: 15px;
  position: relative;
  z-index: 2;
  transition: all .5s;
}

section.map .info-item:hover {
  margin-top: -70px;
}

section.map .info-item i {
  font-size: 36px;
  color: #ff511a;
  margin-bottom: 25px;
}

section.map .info-item h4 {
  font-size: 18px;
  color: #212741;
  font-weight: 600;
  margin-bottom: 12px;
}

section.map .info-item a {
  font-size: 15px;
  font-weight: 600;
  color: #ff511a;
  transition: all 0.3s;
}

section.map .info-item a:hover {
  color: #ff511a;
}

    .career-team { padding: 80px 0; background:#f8fafc; }
    .team-card {
      background:#fff; border-radius:18px; overflow:hidden;
      box-shadow:0 10px 30px rgba(0,0,0,.05);
      transition:.35s; height: 100%;
    }
    .team-card:hover { transform:translateY(-10px); }
    .team-image { position:relative; overflow:hidden; }
    .team-image img { width:100%; height:320px; object-fit:cover; transition:.45s; }
    .team-social {
      position:absolute; inset:0; background:rgba(33,39,65,.75);
      display:flex; align-items:center; justify-content:center;
      gap:15px; opacity:0; transition:.35s;
    }
    .team-card:hover .team-social { opacity:1; }
    .team-social a {
      width:40px; height:40px; border-radius:50%;
      background:#ff7a00; color:#fff; display:flex; align-items:center; justify-content:center;
      text-decoration: none;
    }
    .team-info { text-align:center; padding:20px; }
    .team-info h5 { font-weight:700; margin-bottom:5px; color: #212741; }
    .team-info span { font-size:14px; color:#ff7a00; font-weight: 500; }
    .career-expectations { padding: 100px 0; background: #ffffff; }
    .expect-card {
      background: #f8fafc; border-radius: 20px; padding: 40px 30px;
      text-align: center; height: 100%; transition: all 0.4s ease;
      border: 1px solid #eee;
    }
    .expect-card i { font-size: 48px; color: #ff7a00; margin-bottom: 20px; display: inline-block; }
    .expect-card h5 { font-size: 20px; font-weight: 700; margin-bottom: 15px; color: #212741; }
    .expect-card p { font-size: 15px; line-height: 1.6; color: #666; margin-bottom: 0; }
    .expect-card:hover { 
        background: #fff; transform: translateY(-10px); 
        box-shadow: 0 20px 40px rgba(0,0,0,0.1); border-color: transparent;
    }
    .career-cta { 
        padding: 100px 0; 
        background: linear-gradient(135deg, #212741 0%, #3a447a 100%); 
        color: #fff; position: relative;
    }
    .cta-content { max-width: 800px; margin: 0 auto; }
    .career-cta h3 { font-size: 36px; font-weight: 700; margin-bottom: 20px; }
    .career-cta p { font-size: 18px; color: rgba(255,255,255,0.8); margin-bottom: 40px; }
    .cta-btn {
      display: inline-block; padding: 16px 45px; background: #ff7a00;
      color: #fff; border-radius: 50px; font-size: 16px; font-weight: 600;
      transition: all 0.3s ease; text-decoration: none; box-shadow: 0 10px 20px rgba(255,122,0,0.3);
    }
    .cta-btn:hover { background: #fff; color: #ff7a00; transform: scale(1.05); }
    .partners { padding: 50px 0; border-top: 1px solid #eee; }
    .partners img { filter: grayscale(100%); opacity: 0.6; transition: 0.3s; max-width: 120px; }
    .partners img:hover { filter: grayscale(0); opacity: 1; }
    .site-footer { background:#212741; padding:25px 0; border-top: 1px solid rgba(255,255,255,0.1); }
    .site-footer p { margin:0; color:#aaa; font-size:14px; }
.service-box {
    position: relative;
    background: #ffffff;
    padding: 45px 30px;
    border-radius: 14px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: all 0.35s ease;
    height: 100%;
}
.service-box .icon i {
    font-size: 44px;
    color: #ff7a00;
    margin-bottom: 20px;
}
.service-box h4 {
    font-weight: 600;
    margin-bottom: 10px;
}
.service-box p {
    font-size: 15px;
    color: #555;
}
.service-hover {
    position: absolute;
    inset: 0;
    background: #212741;
    color: #fff;
    padding: 35px 25px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.35s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.service-hover p {
    color: #fff;
    font-size: 14px;
    margin-bottom: 20px;
}
.service-box:hover .service-hover {
    opacity: 1;
    transform: translateY(0);
}
@media (max-width: 991px) {
    .service-hover {
        position: relative;
        opacity: 1;
        transform: none;
        background: transparent;
        color: inherit;
        padding: 20px 0 0;
    }
    .service-hover p {
        color: #555;
    }
}
section.calculator {
  margin-top: 150px;
  background-image: url(../images/calculator-bg.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  width: 100%;
  padding: 80px 0px;
}

section.calculator .left-image {
  margin: -110px 45px -80px 0px;
}

section.calculator .section-heading {
  text-align: left;
}

section.calculator .section-heading h4 {
  color: #fff;
}

#calculate label {
  color: #fff;
  font-size: 14px;
  margin-bottom: 5px;
}

#calculate input,
#calculate select {
  background-color: rgba(121,134,151, 0.7);
  border: none;
  border-radius: 5px;
  width: 100%;
  height: 42px;
  color: #fff;
  font-size: 14px;
  margin-bottom: 30px;
  outline: none;
}

#calculate select {
  cursor: pointer;
}

#calculate button.orange-button {
  font-size: 14px;
  color: #fff;
  background-color: #ff511a;
  padding: 12px 30px;
  display: inline-block;
  border-radius: 5px;
  font-weight: 500;
  text-transform: capitalize;
  letter-spacing: 0.5px;
  border: none;
  transition: all .3s;
}

#calculate button.orange-button:hover {
  opacity: 0.9;
}
section.testimonials {
  margin-top: 90px;
}

section.testimonials .section-heading {
  padding-top: 30px;
}

.testimonials .item {
  border-radius: 15px;
  padding: 50px 320px 50px 50px;
  background-color: #fff;
  position: relative;
  overflow: hidden;
  margin: 15px;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
  padding-top: 35px;
}

.testimonials .item i {
  width: 70px;
  height: 70px;
  background-color: #43ba7f;
  display: inline-block;
  text-align: center;
  line-height: 70px;
  color: #fff;
  font-size: 44px;
  border-radius: 5px;
  margin-bottom: 30px;
}

.testimonials .item p {
  font-size: 16px;
  font-style: italic;
}

.testimonials .item h4 {
  margin-top: 30px;
  font-size: 22px;
  font-weight: 600;
  position: relative;
}

.testimonials .item span {
  margin-top: 5px;
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: #43ba7f;
}

.testimonials .item img {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  max-width: 300px;
  border-radius: 5px;
}

.testimonials .owl-dots {
  text-align: center;
  margin-top: 30px;
}

.testimonials .owl-dots .owl-dot {
  width: 10px;
  height: 10px;
  background-color: #ffa88c;
  border-radius: 50%;
  margin: 0px 4px;
}

.testimonials .owl-dots .active {
  background-color: #ff511a;
}

/* =============================================
   RTL (RIGHT-TO-LEFT) SUPPORT FOR ARABIC
   ArapÃ§a dil desteÄŸi
   ============================================= */

/* GLOBAL RTL */
[dir="rtl"] body {
  text-align: right;
  direction: rtl;
}

/* HEADER & NAVIGATION RTL */
[dir="rtl"] .header-area .main-nav {
  flex-direction: row-reverse;
}

[dir="rtl"] .header-area .main-nav .logo {
  margin-left: auto;
  margin-right: 0;
}

[dir="rtl"] .header-area .main-nav .nav {
  flex-direction: row-reverse;
  margin-left: 0;
  margin-right: auto;
}

[dir="rtl"] .header-area .main-nav .nav li {
  margin-left: 0;
  margin-right: 15px;
}

[dir="rtl"] .header-area .main-nav .nav li:first-child {
  margin-right: 0;
}

[dir="rtl"] .header-area .main-nav .nav li.has-sub ul.sub-menu {
  left: auto;
  right: 0;
}

[dir="rtl"] .header-area .main-nav .nav li.has-sub:after {
  margin-left: 0;
  margin-right: 5px;
}

[dir="rtl"] .lang-selector {
  margin-left: 0;
  margin-right: 20px;
}

[dir="rtl"] .lang-btn {
  margin-left: 0;
  margin-right: 8px;
}

[dir="rtl"] .lang-btn:last-child {
  margin-right: 0;
}

/* SLIDER RTL */
[dir="rtl"] .swiper-container .header-text {
  text-align: right;
}

[dir="rtl"] .swiper-container .header-text h2 {
  text-align: right;
}

[dir="rtl"] .swiper-container .header-text .div-dec {
  margin-left: auto;
  margin-right: 0;
}

[dir="rtl"] .swiper-container .header-text .buttons {
  justify-content: flex-end;
}

[dir="rtl"] .swiper-button-next {
  left: 20px;
  right: auto;
}

[dir="rtl"] .swiper-button-prev {
  right: 20px;
  left: auto;
}

/* SERVICES & CARDS RTL */
[dir="rtl"] .services .service-item,
[dir="rtl"] .info-item,
[dir="rtl"] .about-item,
[dir="rtl"] .product-item {
  text-align: right;
}

[dir="rtl"] .services .service-item i {
  margin-left: auto;
  margin-right: 0;
}

[dir="rtl"] .services .service-item h4,
[dir="rtl"] .services .service-item p,
[dir="rtl"] .info-item h4,
[dir="rtl"] .info-item p {
  text-align: right;
}

/* FORMS RTL */
[dir="rtl"] form input,
[dir="rtl"] form textarea,
[dir="rtl"] form select {
  text-align: right;
  direction: rtl;
  padding-right: 15px;
  padding-left: 15px;
}

[dir="rtl"] form label {
  text-align: right;
}

[dir="rtl"] .contact-info {
  text-align: right;
}

[dir="rtl"] .contact-info i {
  margin-left: 10px;
  margin-right: 0;
}

/* BUTTONS RTL */
[dir="rtl"] .buttons {
  justify-content: flex-start;
  flex-direction: row-reverse;
}

[dir="rtl"] .green-button,
[dir="rtl"] .orange-button {
  margin-left: 0;
  margin-right: 15px;
}

[dir="rtl"] .green-button:last-child,
[dir="rtl"] .orange-button:last-child {
  margin-right: 0;
}

/* TABS RTL */
[dir="rtl"] .tabs-content ul.tabs-nav {
  flex-direction: row-reverse;
}

[dir="rtl"] .tabs-content ul.tabs-nav li {
  margin-left: 0;
  margin-right: 10px;
}

[dir="rtl"] .tabs-content ul.tabs-nav li:last-child {
  margin-right: 0;
}

[dir="rtl"] .tab-content {
  text-align: right;
}

/* LISTS RTL */
[dir="rtl"] ul li {
  text-align: right;
}

[dir="rtl"] .feature-list li {
  padding-left: 0;
  padding-right: 30px;
}

/* FOOTER RTL */
[dir="rtl"] footer,
[dir="rtl"] footer .footer-widget,
[dir="rtl"] .footer-copyright {
  text-align: right;
}

[dir="rtl"] footer .social-icons {
  justify-content: flex-end;
}

/* TEXT ALIGNMENT RTL */
[dir="rtl"] h1, 
[dir="rtl"] h2, 
[dir="rtl"] h3, 
[dir="rtl"] h4, 
[dir="rtl"] h5, 
[dir="rtl"] h6,
[dir="rtl"] p {
  text-align: right;
}

[dir="rtl"] .section-heading,
[dir="rtl"] .section-heading h2 {
  text-align: right;
}

[dir="rtl"] .div-dec {
  margin-left: auto;
  margin-right: 0;
}

/* RESPONSIVE RTL */
@media (max-width: 992px) {
  [dir="rtl"] .header-area .main-nav {
    padding-left: 15px;
    padding-right: 15px;
  }

  [dir="rtl"] .header-area .main-nav .menu-trigger {
    left: 15px;
    right: auto;
  }

  [dir="rtl"] .header-area .main-nav .nav {
    text-align: right;
    right: auto;
    left: 0;
  }

  [dir="rtl"] .header-area .main-nav .nav li {
    margin: 0;
    text-align: right;
  }

  [dir="rtl"] .lang-selector {
    justify-content: flex-end;
    margin-right: 0;
    margin-left: 20px;
  }
}

@media (max-width: 768px) {
  [dir="rtl"] .swiper-container .header-text {
    text-align: center;
  }

  [dir="rtl"] .swiper-container .header-text h2 {
    text-align: center;
  }

  [dir="rtl"] .swiper-container .header-text .div-dec {
    margin: 30px auto;
  }

  [dir="rtl"] .swiper-container .header-text .buttons {
    justify-content: center;
  }
}

/* SPECIAL ELEMENTS */
[dir="rtl"] .icon-box {
  text-align: right;
}

[dir="rtl"] .icon-box i {
  margin-left: 15px;
  margin-right: 0;
  float: right;
}

[dir="rtl"] .testimonial,
[dir="rtl"] .pricing-table,
[dir="rtl"] .team-member {
  text-align: right;
}

/* CAROUSEL RTL */
[dir="rtl"] .owl-carousel,
[dir="rtl"] .slick-slider {
  direction: ltr;
}

[dir="rtl"] .owl-carousel .item,
[dir="rtl"] .slick-slide {
  direction: rtl;
}

/* BADGES RTL */
[dir="rtl"] .badge,
[dir="rtl"] .label {
  margin-left: 0;
  margin-right: 5px;
}

/* BREADCRUMB RTL */
[dir="rtl"] .breadcrumb {
  flex-direction: row-reverse;
}

[dir="rtl"] .breadcrumb-item + .breadcrumb-item::before {
  padding-left: 0;
  padding-right: 0.5rem;
  content: "\\";
}
/* =============================================
   SWIPER RTL SPECIFIC STYLES
   Swiper bileÅŸeni iÃ§in Ã¶zel RTL stilleri
   ============================================= */

/* Swiper Container RTL */
[dir="rtl"] .swiper-container {
  direction: rtl;
}

/* Swiper Wrapper RTL */
[dir="rtl"] .swiper-wrapper {
  direction: rtl;
}

/* Swiper Slides RTL */
[dir="rtl"] .swiper-slide {
  text-align: right;
}

/* Navigation Buttons RTL - Pozisyonlar deÄŸiÅŸiyor */
[dir="rtl"] .swiper-button-next {
  left: 20px;
  right: auto;
}

[dir="rtl"] .swiper-button-prev {
  right: 20px;
  left: auto;
}

/* Navigation Icons RTL - Oklar ters yÃ¶ne */
[dir="rtl"] .swiper-button-next:after {
  content: '';
}

[dir="rtl"] .swiper-button-prev:after {
  content: '';
}

/* Slide Content RTL */
[dir="rtl"] .swiper-slide .header-text {
  text-align: right;
}

[dir="rtl"] .swiper-slide .header-text h2 {
  text-align: right;
}

[dir="rtl"] .swiper-slide .header-text p {
  text-align: right;
}

[dir="rtl"] .swiper-slide .header-text .buttons {
  justify-content: flex-start;
  flex-direction: row-reverse;
}

[dir="rtl"] .swiper-slide .header-text .div-dec {
  margin-left: auto;
  margin-right: 0;
}

/* Pagination RTL */
[dir="rtl"] .swiper-pagination {
  direction: ltr; /* Pagination noktalarÄ± LTR kalÄ±r */
}

/* Responsive Swiper RTL */
@media (max-width: 768px) {
  [dir="rtl"] .swiper-button-next {
    left: 10px;
  }

  [dir="rtl"] .swiper-button-prev {
    right: 10px;
  }
  
  [dir="rtl"] .swiper-slide .header-text {
    text-align: center;
  }
  
  [dir="rtl"] .swiper-slide .header-text h2 {
    text-align: center;
  }
  
  [dir="rtl"] .swiper-slide .header-text .div-dec {
    margin: 30px auto;
  }
  
  [dir="rtl"] .swiper-slide .header-text .buttons {
    justify-content: center;
  }
}

/* =============================================
   ÜRÜNLER SAYFASI (Products Page) STİLLERİ
   ============================================= */

/* Product Details - Tabs */
.service-details .naccs .menu {
    display: flex;
    gap: 10px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.service-details .gradient-border {
    padding: 12px 25px;
    background: #f0f0f0;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.service-details .gradient-border:hover,
.service-details .gradient-border.active {
    background: linear-gradient(135deg, #ff511a 0%, #ff9933 100%);
    color: #fff;
}

.service-details .nacc {
    padding: 0;
    list-style: none;
}

.service-details .nacc li {
    display: none;
}

.service-details .nacc li.active {
    display: block;
}

.service-details .left-image {
    width: 100%;
    max-width: 480px;
    height: 320px;
    overflow: hidden;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
}

.service-details .left-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
}

.service-details .right-content {
    padding-left: 35px;
}

.service-details .right-content h4 {
    color: #1a1a1a;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.service-details .right-content p {
    color: #2d2d2d;
    line-height: 1.8;
    margin-bottom: 25px;
}

.service-details .right-content span {
    display: block;
    color: #333333;
    font-weight: 600;
    margin-bottom: 12px;
    padding-left: 10px;
    border-left: 3px solid #ff511a;
}

.service-details .nacc li > div {
    display: flex;
    align-items: center;
    gap: 40px;
}

/* Product Action Button */
.product-action-button {
    text-align: center;
    margin-top: 60px;
    margin-bottom: 40px;
    padding: 30px 0;
}

.main-product-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 45px;
    background: linear-gradient(135deg, #ff511a 0%, #ff9933 100%);
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(255, 122, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.main-product-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.6s;
}

.main-product-btn:hover::before {
    left: 100%;
}

.main-product-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(255, 122, 0, 0.4);
    color: #ffffff;
}

.main-product-btn svg {
    transition: transform 0.3s ease;
}

.main-product-btn:hover svg {
    transform: translateX(5px);
}

/* =============================================
   FİKİRLER SAYFASI (Ideas Page) STİLLERİ
   ============================================= */

/* Idea Cards */
.idea-cards {
    padding: 80px 0;
}

.idea-card {
    background: #fff;
    padding: 35px 25px;
    border-radius: 14px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.45s ease, background 0.45s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.idea-card::before {
    content: "";
    position: absolute;
    top: -60%;
    left: -60%;
    width: 220%;
    height: 220%;
    background: radial-gradient(circle, rgba(255,122,0,0.12), transparent 60%);
    opacity: 0;
    transition: opacity 0.45s ease;
}

.idea-card:hover::before {
    opacity: 1;
}

.idea-card i {
    font-size: 40px;
    color: #ff7a00;
    margin-bottom: 18px;
    transition: transform 0.45s ease;
}

.idea-card h4 {
    font-size: 20px;
    font-weight: 600;
    color: #212741;
    margin-bottom: 15px;
}

.idea-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
}

.idea-card:hover {
    transform: translateY(-14px) scale(1.04);
    box-shadow: 0 22px 55px rgba(0,0,0,0.18);
}

.idea-card:hover i {
    transform: scale(1.15) rotate(-4deg);
}

/* Idea List */
.idea-list {
    padding: 60px 0;
    background: #fff;
}

.idea-list ul {
    list-style: none;
    padding: 0;
}

.idea-list li {
    padding: 25px;
    border-left: 4px solid #ff7a00;
    margin-bottom: 20px;
    background: #f9f9f9;
    border-radius: 8px;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease, background 0.4s ease;
}

.idea-list li:hover {
    transform: translateX(10px) scale(1.015);
    background: #ffffff;
    box-shadow: 0 12px 35px rgba(0,0,0,0.12);
}

.idea-list h5 {
    font-weight: 600;
    margin-bottom: 8px;
    color: #212741;
    transition: color 0.3s ease;
}

.idea-list li:hover h5 {
    color: #ff7a00;
}

.idea-list p {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
}

/* =============================================
   UYGULAMALAR SAYFASI (Apps Page) STİLLERİ
   ============================================= */

.apps-horizontal {
    padding: 60px 0;
}

.app-item {
    margin-bottom: 40px;
    padding: 30px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    cursor: pointer;
    transition: all 0.3s ease;
}

.app-item:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    transform: translateY(-5px);
}

.app-header {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 40px;
}

.app-image {
    flex: 0 0 350px;
    width: 350px;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f6fb;
    border-radius: 12px;
    overflow: hidden;
}

.app-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 20px;
}

.app-summary {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.app-summary h4 {
    margin-bottom: 15px;
    font-size: 26px;
    font-weight: 600;
    color: #2a2a72;
}

.app-summary p {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
}

.app-detail {
    display: block;
    margin-top: 25px;
    padding-top: 25px;
    border-top: 2px solid #f0f0f0;
}

.app-item.active .app-detail {
    display: block;
}

.app-detail p {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
}

/* =============================================
   DAHA FAZLA SAYFASI (Coming Soon) STİLLERİ
   ============================================= */

.coming-soon-area {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, #ffffff 0%, #f2f2f2 100%);
    position: relative;
    overflow: hidden;
}

.coming-soon-area::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,122,0,0.15), transparent 60%);
    opacity: 0.6;
}

.coming-wrapper {
    position: relative;
    z-index: 2;
    padding: 20px;
}

.coming-title {
    font-size: clamp(3rem, 8vw, 8rem);
    font-weight: 800;
    letter-spacing: 3px;
    color: #212741;
    margin-bottom: 10px;
}

.coming-title::after {
    content: "";
    display: block;
    width: 120px;
    height: 4px;
    background: #FF7A00;
    margin: 15px auto 0;
}

.coming-subtitle {
    font-size: 1.1rem;
    color: #555;
    max-width: 600px;
    margin: 15px auto 0;
}

/* =============================================
   KAPSAMLI MOBİL UYUMLULUK (Responsive Design)
   ============================================= */

/* Tablet ve Küçük Ekranlar */
@media (max-width: 991px) {
    /* Products Page */
    .service-details .nacc li > div {
        flex-direction: column;
        gap: 25px;
    }
    
    .service-details .left-image {
        max-width: 100%;
        height: 240px;
    }
    
    .service-details .right-content {
        padding-left: 0;
    }
    
    .service-details .right-content h4 {
        font-size: 20px;
    }
    
    .product-action-button {
        margin-top: 40px;
        margin-bottom: 30px;
    }
    
    .main-product-btn {
        padding: 15px 35px;
        font-size: 16px;
    }

    /* Idea Cards */
    .idea-cards {
        padding: 60px 0;
    }

    .idea-card {
        padding: 30px 20px;
    }

    .idea-card i {
        font-size: 36px;
    }

    .idea-card h4 {
        font-size: 18px;
    }

    /* Apps Page */
    .app-header {
        flex-direction: column;
    }
    
    .app-image {
        flex: 1 1 auto;
        width: 100%;
        max-width: 100%;
        height: 200px;
    }

    .app-summary h4 {
        font-size: 22px;
    }

    /* Coming Soon */
    .coming-title {
        letter-spacing: 1px;
    }
}

/* Mobil Cihazlar */
@media (max-width: 768px) {
    /* General */
    section {
        padding: 60px 0;
    }

    .section-heading {
        margin-bottom: 40px;
    }

    .section-heading h4 {
        font-size: 24px;
    }

    .section-heading h6 {
        font-size: 14px;
    }

    /* Header */
    .header-area .main-nav .logo img {
        height: 40px;
    }

    .lang-selector {
        background: rgba(33, 39, 65, 0.1);
    }

    .lang-btn {
        padding: 0.3rem 0.6rem;
        font-size: 0.75rem;
    }

    /* Page Heading */
    .page-heading {
        /* padding: 20px 0; */
		
    }
	
	.page-heading .header-text {
        margin-top: 10px;
    }

    .page-heading .header-text h2 {
         font-size: 28px; 

    }

    /* Slider */
    .slide-inner .header-text h2 {
        font-size: 24px;
    }

    .slide-inner .header-text p {
        font-size: 14px;
        line-height: 1.6;
    }

    .slide-inner .header-text .buttons {
        flex-direction: row;
        gap: 10px;
    }

    .green-button a,
    .orange-button a {
        padding: 12px 25px !important;
        font-size: 13px;
        min-width: auto;
    }

    /* Services */
    .service-item {
        padding: 25px 20px;
        margin-bottom: 20px;
    }

    .service-item i {
        font-size: 36px;
        margin-bottom: 20px;
    }

    .service-item h4 {
        font-size: 18px;
    }

    .service-box {
        padding: 35px 20px;
        margin-bottom: 20px;
    }

    .service-box .icon i {
        font-size: 36px;
    }

    /* Simple CTA */
    .simple-cta {
        padding: 40px 0;
    }

    .simple-cta h4 {
        font-size: 20px;
        text-align: center;
        margin-bottom: 25px;
    }

    .simple-cta .buttons {
        flex-direction: row;
        align-items: center;
        gap: 10px;
    }

    /* Calculator / Form */
    .calculator {
        margin-top: 80px;
    }

    .calculator .left-image {
        margin: 0 0 30px 0;
    }

    #calculate fieldset {
        margin-bottom: 15px;
    }

    /* Products Page */
    .service-details .naccs .menu {
        gap: 8px;
    }

    .service-details .gradient-border {
        padding: 10px 18px;
        font-size: 14px;
    }

    .service-details .left-image {
        height: 200px;
    }

    .service-details .right-content h4 {
        font-size: 18px;
    }

    .service-details .right-content p {
        font-size: 14px;
        line-height: 1.7;
    }

    .service-details .right-content span {
        font-size: 14px;
        padding-left: 8px;
    }

    .main-product-btn {
        padding: 14px 30px;
        font-size: 15px;
        width: 100%;
        justify-content: center;
    }

    /* Ideas Page */
    .idea-cards {
        padding: 50px 0;
    }

    .idea-card {
        padding: 25px 18px;
        margin-bottom: 15px;
    }

    .idea-card i {
        font-size: 32px;
        margin-bottom: 15px;
    }

    .idea-card h4 {
        font-size: 17px;
    }

    .idea-card p {
        font-size: 14px;
    }

    .idea-list {
        padding: 40px 0;
    }

    .idea-list li {
        padding: 20px 15px;
        margin-bottom: 15px;
    }

    .idea-list li:hover {
        transform: translateX(5px);
    }

    .idea-list h5 {
        font-size: 16px;
    }

    .idea-list p {
        font-size: 14px;
    }

    /* Apps Page */
    .apps-horizontal {
        padding: 40px 0;
    }

    .app-item {
        padding: 20px;
        margin-bottom: 25px;
    }

    .app-image {
        height: 180px;
    }

    .app-summary h4 {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .app-summary p {
        font-size: 14px;
    }

    .app-detail {
        margin-top: 20px;
        padding-top: 20px;
    }

    .app-detail p {
        font-size: 14px;
    }

    /* Coming Soon Page */
    .coming-soon-area {
        min-height: 60vh;
    }

    .coming-title {
        font-size: 2.5rem;
    }

    .coming-title::after {
        width: 80px;
        height: 3px;
    }

    .coming-subtitle {
        font-size: 1rem;
        padding: 0 20px;
    }

    /* Accordion */
    .accordion-head {
        padding: 18px 15px;
    }

    .accordion-head span:first-child {
        font-size: 16px;
    }

    .accordion-body {
        padding: 20px 15px;
    }

    /* What We Do */
    .what-we-do {
        padding: 60px 0;
    }

    .what-we-do .left-content h4 {
        font-size: 22px;
    }

    .what-we-do .left-content p {
        font-size: 14px;
        line-height: 1.7;
    }

    .what-we-do .right-items .item {
        padding: 25px 20px;
    }

    .what-we-do .right-items .item em {
        font-size: 32px;
    }

    .what-we-do .right-items .item h4 {
        font-size: 16px;
    }

    /* Career Page */
    .career-expectations {
        padding: 60px 0;
    }

    .expect-card {
        padding: 30px 20px;
        margin-bottom: 15px;
    }

    .expect-card i {
        font-size: 36px;
    }

    .expect-card h5 {
        font-size: 18px;
    }

    .expect-card p {
        font-size: 14px;
    }

    /* Contact/Map */
    section.map .info-item {
        padding: 30px 20px;
        margin-top: 10px;
        margin-left: 10px;
        margin-right: 10px;
    }

    section.map .info-item:hover {
        margin-top: -45px;
    }

    section.map .info-item i {
        font-size: 30px;
    }

    section.map .info-item h4 {
        font-size: 16px;
    }

    section.map .info-item a {
        font-size: 14px;
    }

    /* Partners */
    .partners-line {
        gap: 15px;
        padding: 20px 0;
    }

    .partner-logo {
        height: 35px;
    }

    /* Footer */
    footer {
        padding: 30px 0;
    }

    .copyright-text,
    .credits-text {
        font-size: 12px !important;
    }
}

/* Çok Küçük Ekranlar */
@media (max-width: 480px) {
    .page-heading .header-text h2 {
        font-size: 24px;
    }

    .slide-inner .header-text h2 {
        font-size: 20px;
    }

    .section-heading h4 {
        font-size: 22px;
    }

    .simple-cta h4 {
        font-size: 18px;
    }

    .service-details .gradient-border {
        padding: 8px 14px;
        font-size: 13px;
    }

    .idea-card {
        padding: 20px 15px;
    }

    .idea-card h4 {
        font-size: 16px;
    }

    .app-summary h4 {
        font-size: 18px;
    }

    .coming-title {
        font-size: 2rem;
    }

    .what-we-do .left-content h4 {
        font-size: 20px;
    }

    .expect-card h5 {
        font-size: 16px;
    }

    .accordion-head span:first-child {
        font-size: 15px;
    }
}

/* =============================================
   RTL MOBİL RESPONSIVE
   ============================================= */
@media (max-width: 768px) {
    [dir="rtl"] .idea-list li:hover {
        transform: translateX(-5px);
    }

    [dir="rtl"] .service-details .right-content span {
        padding-left: 0;
        padding-right: 8px;
        border-left: none;
        border-right: 3px solid #ff511a;
    }

    [dir="rtl"] .app-summary {
        text-align: right;
    }

    [dir="rtl"] .page-heading .header-text,
    [dir="rtl"] .section-heading {
        text-align: center;
    }
}
/* =============================================
   MOBILE HAMBURGER MENU
   ============================================= */

/* Checkbox'ı gizle */
.menu-checkbox {
  display: none;
}

/* Hamburger butonu - desktop'ta gizli */
.menu-trigger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  cursor: pointer;
  z-index: 1000;
  order: 2;
}

.menu-trigger span {
  display: block;
  width: 25px;
  height: 3px;
  background: #212741;
  border-radius: 3px;
  transition: all 0.3s ease;
  margin: 3px 0;
}

/* Homepage'de beyaz hamburger */
.home-page .menu-trigger span {
  background: #fff;
}

/* Scroll'da koyu hamburger */
.header-area.scrolled .menu-trigger span {
  background: #212741 !important;
}

/* Mobil görünüm */
@media (max-width: 991px) {
  /* Hamburger'ı göster */
  .menu-trigger {
    display: flex;
  }
  
  /* Nav yapısını ayarla */
  .header-area .main-nav {
    flex-wrap: wrap;
  }
  
  /* Menüyü tam genişlikte, gizli başlat */
  .header-area .main-nav .nav {
    display: none;
    flex-direction: column;
    width: 100%;
    order: 3;
    background: #fff;
    border-radius: 10px;
    margin-top: 15px;
    padding: 15px 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  }
  
  /* Checkbox işaretliyse menüyü göster */
  .menu-checkbox:checked ~ .nav {
    display: flex !important;
  }
  
  /* Menü linkleri */
  .header-area .main-nav .nav li {
    width: 100%;
    text-align: center;
  }
  
  .header-area .main-nav .nav li a {
    color: #212741 !important;
    padding: 12px 20px;
    display: block;
    border-bottom: 1px solid rgba(0,0,0,0.05);
  }
  
  .header-area .main-nav .nav li:last-child a {
    border-bottom: none;
  }
  
  .header-area .main-nav .nav li a:hover {
    background: rgba(255, 81, 26, 0.1);
  }
  
  /* Alt menü (submenu) */
  .header-area .main-nav .nav li.has-sub:after {
    display: none;
  }
  
  .header-area .main-nav .nav li.has-sub ul.sub-menu {
    position: static;
    width: 100%;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    margin-top: 0;
    padding: 0;
    background: rgba(0,0,0,0.03);
  }
  
  .header-area .main-nav .nav li.has-sub ul.sub-menu li a {
    padding: 10px 30px;
    font-size: 14px;
  }
  
  /* Hamburger animasyonu - açıkken X'e dön */
  .menu-checkbox:checked ~ .menu-trigger span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
  }
  
  .menu-checkbox:checked ~ .menu-trigger span:nth-child(2) {
    opacity: 0;
  }
  
  .menu-checkbox:checked ~ .menu-trigger span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
  }
  
  /* Menü açıkken hamburger rengi */
  .menu-checkbox:checked ~ .menu-trigger span {
    background: #ff511a !important;
  }
  
  /* Dil seçici ayarı */
  .lang-selector {
    order: 1;
    margin-right: 15px;
  }
}

/* RTL Mobil Menü */
@media (max-width: 991px) {
  [dir="rtl"] .lang-selector {
    margin-right: 0;
    margin-left: 15px;
  }
  
  [dir="rtl"] .header-area .main-nav .nav li.has-sub ul.sub-menu li a {
    padding: 10px 30px;
  }
}