/*
 * Artius Agency Style Sheet
 * Author: Kodlama Desteği
 *
 * Bu dosya, projenin tüm stillerini tek bir merkezde toplar.
 *
 */

/* =========================================
    1. GENEL & SIFIRLAMA
   ========================================= */
   @import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;0,500;0,600;0,700;1,600;1,700&display=swap');
   @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');
   @import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css');
   
   /* CSS Değişkenleri */
   :root {
     --main-color: rgba(231, 121, 211, 0);;
     --color-two: rgba(231, 121, 211, 0);
     --color-three: rgb(18, 12, 18);
     --color-four: rgb(15, 15, 15);
     --white-color: rgb(255, 255, 255);
     --black-color: rgb(0, 0, 0);
     --noile-white: #ffffff;
     --noile-white2: #F6F6F6;
     --noile-primary: #1d1d1d;
     --noile-heading-font: "Montserrat", sans-serif;
     --noile-font: "Sora", sans-serif;
     --noile-size-md: 16px;
     --noile-size-xl: 18px;
     --noile-btn-padding: 10.5px 27.5px 8.5px 27.5px;
   }
   
   * {
     margin: 0px;
     padding: 0px;
     border: none;
     outline: none;
     box-sizing: border-box;
   }
   
   html {
     scroll-behavior: smooth;
   }
   
   body {
     font-family: 'Montserrat', sans-serif;
     line-height: 1.6em;
     font-weight: 400;
     font-size: 14px;
     -webkit-font-smoothing: antialiased;
     -moz-font-smoothing: antialiased;
     background-size: cover;
     background-repeat: no-repeat;
     background-position: center;
   }
   
   a {
     text-decoration: none;
     cursor: pointer;
     transition: all 0.3s ease;
     color: #676128;
   }
   
   a:hover,
   a:focus,
   a:visited,
   button {
     text-decoration: none;
     outline: none !important;
   }
   
   h1,
   h2,
   h3,
   h4,
   h5,
   h6 {
     position: relative;
     margin: 0px;
     background: none;
     color: var(--black-color);
     font-family: 'Montserrat', sans-serif;
   }
   
   p {
     position: relative;
     line-height: 1.7em;
     color: #495057;
     font-size: 16px;
   }
   
   ul,
   li {
     list-style: none;
     padding: 0px;
     margin: 0px;
   }
   
   img {
     display: inline-block;
     max-width: 100%;
     height: auto;
   }
   
   .page-wrapper {
     position: relative;
     margin: 0 auto;
     width: 100%;
     min-width: 300px;
     overflow: hidden;
   }
   
   .auto-container {
     position: static;
     max-width: 1530px;
     padding: 0px 15px;
     margin: 0 auto;
   }
   
   /* Scrollbar */
   ::-webkit-scrollbar {
     width: 10px;
   }
   
   ::-webkit-scrollbar-thumb {
     background: #935726;
     border-radius: 10px;
     border: 2px solid transparent;
   }
   
   ::-webkit-scrollbar-thumb:hover {
     background: #935726;
   }
   
   ::-webkit-scrollbar-track {
     background-color: transparent;
   }
   
   /* =========================================
       2. BAŞLIK VE NAVİGASYON
      ========================================= */
   
   /* Ana Menü */
   .ana-menu-lower {
     position: relative;
     z-index: 1001;
     width: 100%;
     padding: 15px 0;
     border-bottom: 1px solid #e0e0e0;
     transition: all 900ms ease;
   }
   
   .ana-menu-container {
     max-width: 1200px;
     margin: 0 auto;
     padding: 0 15px;
   }
   
   .ana-menu-logo-box .logo img {
     max-width: 150px;
     height: auto;
   }
   
   .ana-menu-navigation {
     position: relative;
     margin: 0;
     padding: 0;
     list-style: none;
     display: flex;
     align-items: center;
   }
   
   .ana-menu-navigation>li {
     position: relative;
     margin: 0 15px;
   }
   
   .ana-menu-navigation>li>a {
     display: block;
     padding: 10px 0;
     font-size: 14px;
     font-weight: 700;
     text-transform: uppercase;
     color: #676128;
     text-decoration: none;
     transition: all 0.3s ease;
   }
   
   .ana-menu-navigation>li:hover>a,
   .ana-menu-navigation>li.current>a {
     color: #676128;
   }
   
   .ana-menu-dropdown ul {
     position: absolute;
     top: 100%;
     left: 0;
     z-index: 99;
     list-style: none;
     margin: 0;
     padding: 10px 0;
     min-width: 200px;
     box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
     display: none;
     border-radius: 5px;
     background-color: transparent !important;
   }
   
   .ana-menu-dropdown:hover ul {
     display: block;
   }
   
   .ana-menu-dropdown ul li a {
     display: block;
     padding: 8px 15px;
     font-size: 14px;
     color: #676128;
     text-decoration: none;
     transition: all 0.3s ease;
   }
   
   .ana-menu-dropdown ul li a:hover {
     color: #676128;
   }
   
   /* Mobil Navigasyon */
   .mobile-nav-toggler {
     display: none;
     cursor: pointer;
     color: #676128;
   }
   
   .mobile-nav-toggler svg {
     width: 24px;
     height: 24px;
   }
   
   .mobile-menu {
     position: fixed;
     right: 0;
     top: 0;
     width: 300px;
     height: 100%;
     visibility: hidden;
     z-index: 99999999;
   }
   
   .mobile-menu-visible .mobile-menu {
     visibility: visible;
   }
   
   .mobile-menu .menu-backdrop {
     position: fixed;
     right: 0;
     top: 0;
     width: 0%;
     height: 100%;
     z-index: 1;
     background: rgba(0, 0, 0, 0.9);
     transition: all 900ms ease;
     transform: translateX(101%);
   }
   
   .mobile-menu-visible .mobile-menu .menu-backdrop {
     opacity: 1;
     width: 100%;
     visibility: visible;
     transform: translateX(0%);
     transition: all 900ms ease;
     transition-delay: 300ms;
   }
   
   .mobile-menu .menu-box {
     position: absolute;
     right: -400px;
     top: 0px;
     width: 100%;
     height: 100%;
     max-height: 100%;
     overflow-y: auto;
     background: #ffffff;
     padding: 0px 0px;
     z-index: 5;
     transition: all 900ms ease;
   }
   
   .mobile-menu-visible .mobile-menu .menu-box {
     right: 0px;
     transition-delay: 600ms;
   }
   
   .mobile-menu .close-btn {
     position: absolute;
     right: 15px;
     top: 15px;
     line-height: 30px;
     width: 30px;
     text-align: center;
     font-size: 24px;
     color: #202020;
     cursor: pointer;
     z-index: 10;
     transition: all 0.5s ease;
     transform: translateY(-50px);
   }
   
   .mobile-menu-visible .mobile-menu .close-btn {
     transform: translateY(0px);
     transition-delay: 900ms;
   }
   
   .mobile-menu .navigation li {
     position: relative;
     display: block;
     border-bottom: 1px solid #dddddd;
   }
   
   .mobile-menu .navigation li>a {
     position: relative;
     display: block;
     line-height: 24px;
     padding: 12px 20px;
     font-size: 16px;
     color: var(--black-color);
     text-transform: capitalize;
   }
   
   .mobile-menu .navigation li.dropdown .dropdown-btn {
     position: absolute;
     right: 0px;
     top: 0px;
     width: 44px;
     height: 44px;
     text-align: center;
     color: var(--dark-color);
     font-size: 16px;
     line-height: 44px;
     cursor: pointer;
     z-index: 5;
   }
   
   .mobile-menu .navigation li.dropdown .dropdown-btn:after {
     content: '';
     position: absolute;
     left: 0px;
     top: 10px;
     width: 1px;
     height: 24px;
     border-left: 1px solid #dddddd;
   }
   
   .mobile-menu .navigation li > ul,
   .mobile-menu .navigation li > ul > li > ul {
     display: none;
   }
   
   @media (max-width: 991px) {
     .ana-menu-main {
       display: none;
     }
     .mobile-nav-toggler {
       display: block;
     }
     .ana-menu-navigation {
       flex-direction: column;
       align-items: flex-start;
     }
     .ana-menu-navigation > li {
       width: 100%;
       margin: 0;
       border-bottom: 1px solid #f0f0f0;
     }
     .ana-menu-dropdown ul {
       position: static;
       display: block;
       box-shadow: none;
       padding: 0 0 0 20px;
     }
   }
   
   /* =========================================
       3. GÖVDE BÖLÜMLERİ
      ========================================= */
   
   /* Banner One */
   .banner-one {
     position: relative;
     padding: 300px 0px 80px;
     background-size: cover;
   }
   
   .banner-one:before {
     position: absolute;
     content: '';
     left: 0px;
     top: 0px;
     right: 0px;
     bottom: 0px;
     opacity: 0.90;
     background-image: url(assets/images/background/5.jpg);
   }
   
   .banner-one_content {
     position: relative;
     z-index: 2;
   }
   
   .banner-one_heading {
     font-weight: 700;
     text-align: center;
     margin-bottom: 80px;
     color: #676128;
     text-transform: uppercase;
   }
   
   .banner-one_text {
     position: relative;
     font-size: 30px;
     line-height: 40px;
     padding-top: 20px;
     padding-right: 180px;
     color: #676128;
     border-top: 1px solid #676128;
   }
   
   .banner-one_text-two {
     position: relative;
     font-size: 30px;
     line-height: 40px;
     padding-bottom: 20px;
     padding-right: 180px;
     color: #676128;
     border-bottom: 1px solid #676128;
   }
   
   .banner-one .down-box {
     position: absolute;
     left: 47%;
     bottom: 65px;
     z-index: 10;
     width: 125px;
     height: 125px;
     cursor: pointer;
   }
   
   .robot {
     position: absolute !important;
     bottom: 0;
     width: 100%;
     z-index: 3;
     mix-blend-mode: exclusion;
   }
   
   /* Service One */
   .service-one {
     position: relative;
     padding-top: 120px;
     padding-bottom: 110px;
     background-image: url(assets/images/background/5.jpg);
     z-index: 11;
   }
   
   @media (max-width: 575px) {
     .service-one {
       padding-top: 80px;
       padding-bottom: 80px;
     }
   }
   
   .service-one .container {
     position: relative;
     z-index: 11;
   }
   
   .service-one__item {
     position: relative;
     padding: 49px 30px 39px;
     border: 1px solid #F6F6F6;
     border-radius: 20px;
     transition: all 0.4s ease-in-out;
     background-image: url(assets/images/background/5.jpg);
   }
   
   .service-one__item:hover {
     border: 1px solid #000;
     border-radius: 20px;
     transition: all 0.4s ease-in-out;
   }
   
   .service-one__item:hover .service-one__category {
     background-color: var(--noile-primary);
     color: var(--noile-white);
   }
   
   .service-one__category {
     display: inline-block;
     padding: 8px 22px;
     font-family: var(--noile-heading-font);
     font-size: var(--noile-size-md);
     color: var(--noile-primary);
     text-transform: capitalize;
     line-height: 1;
     background-image: url(assets/images/background/5.jpg);
     border-radius: 50px;
     margin-bottom: 120px;
   }
   
   .service-one__img {
     margin-bottom: 40px;
   }
   
   .service-one__text {
     font-family: var(--noile-font);
     font-size: var(--noile-size-xl);
     font-weight: 400;
     color: var(--noile-primary);
     line-height: 1.875;
     text-transform: capitalize;
     margin-bottom: 40px;
   }
   
   .service-one__text span {
     font-weight: 700;
   }
   
   /* Hizmetler */
   #hizmetler-telefonlu {
     position: relative;
     padding-top: 120px;
     padding-bottom: 110px;
     background-image: url('assets/images/background/5.jpg');
     background-size: cover;
     background-position: center;
     background-repeat: no-repeat;
     z-index: 11;
     color: var(--noile-primary);
   }
   
   .section-title {
     text-align: center;
     margin-bottom: 60px;
   }
   
   .section-title h2 {
     font-family: Montserrat;
     font-size: 33px;
     color: var(--noile-primary);
     font-weight: 700;
     line-height: 1.2;
     margin-bottom: 10px;
   }
   
   .section-title h2 span {
     font-size: inherit;
     color: var(--noile-primary);
   }
   
   .section-title hr {
     width: 60px;
     height: 3px;
     background-color: var(--noile-primary);
     margin: 0 auto;
     border: none;
   }
   
   .feature-box {
     position: relative;
     padding: 49px 30px 39px;
     border: 1px solid var(--noile-white2);
     transition: all 0.4s ease-in-out;
     background-image: url('assets/images/background/5.jpg');
     background-size: cover;
     background-position: center;
     z-index: 1;
     overflow: hidden;
     display: flex;
     flex-direction: column;
     justify-content: flex-start;
   }
   
   .feature-box:hover {
     border-color: transparent;
     transform: translateY(-5px);
     box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
   }
   
   .feature-box i {
     font-size: 40px;
     color: var(--noile-primary);
     margin-bottom: 20px;
     transition: color 0.4s ease;
   }
   
   .feature-box h4 {
     font-family: var(--noile-heading-font);
     font-size: var(--noile-size-xl);
     font-weight: 600;
     color: black;
     line-height: 1.2;
     margin-top: 0;
     margin-bottom: 15px;
     transition: color 0.4s ease;
   }
   
   .feature-box p {
     font-family: var(--noile-font);
     font-size: var(--noile-size-md);
     font-weight: 400;
     color: black;
     line-height: 1.875;
     margin-bottom: 0;
     transition: color 0.4s ease;
   }
   
   .feature-box:hover h4,
   .feature-box:hover p {
     color: black;
   }
   
   .feature-box:hover p {
     color: #000;
   }
   
   #hizmetler-telefonlu .wow.zoomIn img {
     max-width: 100%;
     height: auto;
     display: block;
     margin: 0 auto;
     padding-top: 20px;
   }
   
   /* Sayfa Başlıkları */
   .page-title {
     position: relative;
     text-align: center;
     padding: 150px 0px 90px;
   }
   
   .page-title_heading {
     position: relative;
     font-size: 120px;
     line-height: 1em;
     color: #676128;
     text-transform: uppercase;
   }
   
   .page-title_text {
     position: relative;
     font-size: 18px;
     margin-top: 10px;
     color: #676128;
   }
   
   /* Hakkımızda Giriş */
   #about-giris.container {
     display: flex;
     flex-wrap: wrap;
     min-height: 100vh;
     padding-top: 103px;
     box-sizing: border-box;
   }
   
   .left {
     flex: 1;
     padding: 60px 50px;
     display: flex;
     flex-direction: column;
     justify-content: center;
     border: 1px solid #e0e0e0;
     box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
   }
   
   #about-giris .left h4 {
     color: #888;
     text-transform: uppercase;
     letter-spacing: 1px;
     font-weight: 100;
     font-size: 14px;
   }
   
   #about-giris .left h1 {
     font-family: var(--noile-heading-font);
     font-size: var(--noile-size-xl);
     font-weight: 600;
     color: var(--noile-primary);
     line-height: 1.2;
     margin-top: 0;
     margin-bottom: 15px;
   }
   
   #about-giris .left p {
     font-size: 18px;
     color: #444;
     line-height: 1.6;
   }
   
   .right {
     flex: 1;
     display: flex;
     align-items: center;
     justify-content: center;
     padding: 60px 50px;
     border: 1px solid #e0e0e0;
     box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
   }
   
   .right img {
     max-width: 100%;
     max-height: 500px;
     height: auto;
     object-fit: contain;
   }
   
   /* Hakkımızda Orta */
   #hakkimizda-orta.about-story-section {
     padding: 80px 0;
     font-family: 'Open Sans', sans-serif;
     color: #444;
   }
   
   #hakkimizda-orta .container {
     max-width: 900px;
     margin: 0 auto;
     padding: 0 15px;
   }
   
   #hakkimizda-orta .story-title {
     font-size: 32px;
     font-weight: 600;
     color: #222;
     margin-bottom: 40px;
     font-family: 'Montserrat', sans-serif;
     text-align: center;
   }
   
   #hakkimizda-orta .story-content {
     color: #444;
     font-size: 18px;
     line-height: 1.8;
     font-family: 'Open Sans', sans-serif;
     text-align: center;
   }
   
   #hakkimizda-orta .story-content p {
     margin-bottom: 25px;
   }
   
   /* Web Giriş */
   #web-giris {
     padding: 50px 0;
     font-family: 'Montserrat', sans-serif;
     padding-top: 193px;
   }
   
   #web-giris .custom-card-container {
     max-width: 1200px;
     margin: 0 auto;
     padding: 0 15px;
   }
   
   #web-giris .custom-card {
     border-radius: 20px;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
     padding: 40px;
   }
   
   #web-giris .card-content {
     display: flex;
     align-items: center;
     gap: 40px;
     flex-wrap: wrap;
   }
   
   #web-giris .card-left {
     flex: 1 1 50%;
     max-width: 50%;
   }
   
   #web-giris .card-right {
     flex: 1 1 40%;
     display: flex;
     justify-content: flex-end;
   }
   
   #web-giris .card-image {
     max-width: 100%;
     height: auto;
   }
   
   #web-giris .card-category {
     background-color: #676128;
     color: #fff;
     padding: 5px 10px;
     border-radius: 5px;
     font-weight: 500;
     font-size: 14px;
     text-transform: uppercase;
     display: inline-block;
     margin-bottom: 20px;
   }
   
   #web-giris .card-title {
     font-size: 48px;
     font-weight: 700;
     color: #212529;
     line-height: 1.2;
     margin-bottom: 20px;
   }
   
   #web-giris .card-text {
     font-size: 18px;
     line-height: 1.6;
     color: #495057;
     margin-bottom: 30px;
     border-left: 3px solid #ffc107;
     padding-left: 20px;
   }
   
   #web-giris .card-buttons {
     display: flex;
     gap: 15px;
     flex-wrap: wrap;
   }
   
   #web-giris .card-btn {
     display: inline-flex;
     align-items: center;
     padding: 12px 25px;
     border-radius: 8px;
     text-decoration: none;
     font-weight: 600;
     transition: all 0.3s ease;
   }
   
   #web-giris .card-btn i {
     margin-right: 10px;
   }
   
   #web-giris .btn-primary-custom {
     background-color: #676128;
     color: #ffffff;
   }
   
   #web-giris .btn-primary-custom:hover {
     background-color: #ffc107;
   }
   
   #web-giris .btn-secondary-custom {
     background-color: #676128;
     color: #fff;
   }
   
   #web-giris .btn-secondary-custom:hover {
     background-color: #ffc107;
   }
   
   /* Web İçerik */
   .web-icerik-container {
     max-width: 1200px;
     margin: 40px auto;
     padding: 20px;
     padding-bottom: 150px;
   }
   
   .web-icerik-nav ul {
     list-style: none;
     padding: 0;
     margin: 0;
     display: flex;
     justify-content: space-around;
     border-bottom: 1px solid #ddd;
     margin-bottom: 40px;
   }
   
   .web-icerik-nav li a {
     text-decoration: none;
     color: #333;
     font-size: 18px;
     font-weight: bold;
     padding: 10px 20px;
     display: block;
     border-bottom: 2px solid transparent;
     transition: border-bottom 0.3s ease;
   }
   
   .web-icerik-nav li a.active {
     color: #000;
     border-bottom-color: #ffc107;
   }
   
   .web-icerik-block {
     opacity: 0;
     transition: opacity 0.5s ease;
     margin-bottom: 40px;
     display: none;
     flex-direction: row;
     flex-wrap: nowrap;
     justify-content: space-between;
     align-items: center;
     gap: 40px;
   }
   
   .web-icerik-block.active-section {
     display: flex;
     opacity: 1;
   }
   
   .web-icerik-text {
     flex-basis: 40%;
   }
   
   .web-icerik-text h2 {
     font-size: 36px;
     font-weight: bold;
     margin-top: 0;
     margin-bottom: 20px;
   }
   
   .web-icerik-text p {
     font-size: 18px;
     line-height: 1.6;
     color: #495057;
     margin-bottom: 30px;
     border-left: 3px solid #ffc107;
     padding-left: 20px;
   }
   
   .web-icerik-image {
     flex-basis: 60%;
   }
   
   .web-icerik-image img {
     max-width: 100%;
     height: auto;
     border-radius: 8px;
     box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
   }
   
   /* =========================================
       4. ALT BİLGİ VE YARDIMCI SINIFLAR
      ========================================= */
   
   /* Main Footer */
   .main-footer {
     position: relative;
     background: transparent;
     padding-top: 50px;
   }
   
   .main-footer .footer-top {
     padding-top: 50px;
     padding-bottom: 50px;
   }
   
   .footer-logo img {
     width: 180px;
     height: auto;
     display: block;
     filter: brightness(0); /* Logoyu siyah yapar */
   }
   
   .main-footer,
   .main-footer p,
   .main-footer li,
   .main-footer a,
   .main-footer i,
   .main-footer h5 {
     color: #676128;
   }
   
   .footer-page {
     font-weight: bold;
     color: #676128;
     margin-bottom: 1rem;
   }
   
   .footer-links li a {
     color: #676128;
     text-decoration: none;
     transition: color 0.3s ease;
   }
   
   .footer-links li a:hover {
     color: #928a38;
   }
   
   .footer-widget h5.text-white {
     color: #676128 !important;
   }
   
   .footer-contact li i {
     margin-right: 10px;
     color: #676128;
   }
   
   .social-icons a {
     font-size: 1.25rem;
     color: #676128;
     transition: color 0.3s ease;
   }
   
   .social-icons a:hover {
     color: #928a38;
   }
   
   .footer-bottom {
     position: relative;
     padding: 3px 0;
   }
   
   .footer_copyright {
     position: relative;
     font-size: 20px;
     color: #676128 !important;
   }
   
   .backtop {
     background: transparent;
     width: 60px;
     height: 60px;
     text-align: center;
     line-height: 60px;
     border: 1px solid #676128;
     font-size: 24px;
     color: #676128;
     transition: background 0.5s ease, color 0.5s ease;
   }
   
   .backtop:hover {
     background: #ffc107;
     color: #fff;
   }
   
   .text-right {
     text-align: right !important;
   }
   
   .text-left {
     text-align: left !important;
   }
   
   .text-center {
     text-align: center !important;
   }
   
   .mb-50 {
     margin-bottom: 50px !important;
   }
   
   .mt-50 {
     margin-top: 50px !important;
   }
   
   .mt-0 {
     margin-top: 0 !important;
   }
   
   .pb-70 {
     padding-bottom: 70px !important;
   }
   
   .pt-20 {
     padding-top: 20px !important;
   }
   
   .main-footer p.text-light {
    color: #676128 !important;
}

.footer-logo p {
  max-width: 350px;
}
   
   /* =========================================
       5. MEDYA SORGULARI (RESPONSIVE)
      ========================================= */
   
   @media (max-width: 991px) {
     .ana-menu-lower {
       padding: 10px 0;
     }
     .ana-menu-lower .logo img {
       max-width: 120px;
     }
     .page-title_heading {
       font-size: 70px;
     }
     .banner-one_heading {
       font-size: 50px;
     }
     .banner-one_text, .banner-one_text-two {
       font-size: 20px;
       padding-right: 0;
     }
     #web-giris .card-left,
     #web-giris .card-right {
       max-width: 100%;
       text-align: center;
       justify-content: center;
     }
     #web-giris .card-right {
       margin-top: 30px;
     }
     #web-giris .card-title {
       font-size: 36px;
     }
     #about-giris .left,
     #about-giris .right {
       padding: 40px 20px;
       border: none;
       box-shadow: none;
     }
   }
   
   @media (max-width: 768px) {
     .page-title_heading {
       font-size: 50px;
     }
     .web-icerik-block {
       flex-direction: column;
       flex-wrap: wrap;
     }
     .web-icerik-text,
     .web-icerik-image {
       flex-basis: 100%;
     }
   }
   
   @media (max-width: 575px) {
     .page-title_heading {
       font-size: 40px;
     }
     .banner-one_heading {
       font-size: 35px;
     }
     .banner-one_text, .banner-one_text-two {
       font-size: 16px;
       padding: 10px 0;
     }
     .service-one, #hizmetler-telefonlu {
       padding-top: 80px;
       padding-bottom: 80px;
     }
     .section-title h2 {
       font-size: 28px;
     }
     #about-giris .left h1 {
       font-size: 24px;
     }
     .web-icerik-text h2 {
       font-size: 28px;
     }
     .web-icerik-text p {
       font-size: 16px;
     }
   }


/* ========================================= */
/* YENİ ANA MENÜ*/
/* ========================================= */

#mainHeader {
    position: relative;
    z-index: 1000; 
}

#logo-trigger-area {
    max-width: 200px;           /* En fazla 350px genişlik */
    width: 200px;                /* Küçük ekranlarda tam genişlik */
    margin: 0 auto;
    text-align: center;         /* İçeriği ortala */
    cursor: pointer;
    display: flex;              /* Ortalamayı garanti altına al */
    align-items: center;
    justify-content: center;
    flex-direction: column;     /* Görsel + yazı alt alta */
}

/* Logoyu ortalama ve boyutlandırma kuralları */
#logo-trigger-area img {
    max-width: 150px;            /* Kapsayıcıya göre ölçeklenir */
    height: auto;
    display: block;
}

#logo-trigger-area h1 {
    margin: 0;
    font-size: 24px;
    letter-spacing: 2px;
    color: #676128;
}

/* ========================================= */
/* 2. ANA MENÜ ÇUBUĞU (AÇILIR KISIM - MERKEZLENMİŞ) */
/* ========================================= */

#fullMenuContainer {
    position: absolute;
    
    /* MENÜYÜ ORTALAMA VE GENİŞLİK KISITLAMASI */
    max-width: 800px;
    width: 90%; 
    left: 50%;
    
    top: 100%; 
    background-color: transparent;
    padding: 10px 0;
    border-radius: 8px; 
    
    /* GİZLEME ve GEÇİŞ (ANIMASYON) */
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, -20px); 
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s; 
}

#logo-trigger-area:hover + #fullMenuContainer,
#fullMenuContainer:hover {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
}


/* Ana menü linklerini menü çubuğuna eşit yayar */
.ana-menu-navigation {
    display: flex;
    justify-content: space-around; 
    width: 100%;
}

/* Ana menü linkleri (ANASAYFA, HİZMETLERİMİZ vb.) */
.ana-menu-navigation li {
    display: block; 
    position: relative; 
    padding: 0;
    color: #676128;
}
.ana-menu-navigation li a {
    color: transparent; 
    text-transform: uppercase;
    font-size: 14px;
    padding: 8px 10px;
    display: block;
    font-weight: bold;
    color: #676128;
}


/* ========================================= */
/* 1. ÜST ALAN VE TETİKLEYİCİ */
/* ========================================= */

#yeniMenuHeader { /* ESKİ: #mainHeader */
    position: relative;
    z-index: 1000; 
}

#yeni-menu-trigger-area { /* ESKİ: #logo-trigger-area */
    max-width: 200px; 
    width: 200px; 
    margin: 0 auto;
    text-align: center; 
    cursor: pointer;
    display: flex; 
    align-items: center;
    justify-content: center;
    flex-direction: column; 
}

/* Logoyu ortalama ve boyutlandırma kuralları */
#yeni-menu-trigger-area img { 
    max-width: 150px; 
    height: auto;
    display: block;
}

#yeni-menu-trigger-area h1 {
    margin: 0;
    font-size: 24px;
    letter-spacing: 2px;
    color: #676128;
}

/* ========================================= */
/* 2. ANA MENÜ ÇUBUĞU (AÇILIR KISIM - MERKEZLENMİŞ) */
/* ========================================= */

#yeniMenuContainer { /* ESKİ: #fullMenuContainer */
    position: absolute;
    
    /* MENÜYÜ ORTALAMA VE GENİŞLİK KISITLAMASI */
    max-width: 800px;
    width: 90%; 
    left: 50%;
    
    top: 100%; 
    background-color: transparent; /* Arka plan şeffaf */
    padding: 10px 0;
    border-radius: 8px; 
    
    /* GİZLEME ve GEÇİŞ (ANIMASYON) */
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, -20px); 
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s; 
}

/* HOVER İLE AÇILMA VE AÇIK TUTMA KURALLARI */
#yeni-menu-trigger-area:hover ~ #yeniMenuContainer, /* ESKİ: #logo-trigger-area:hover ~ #fullMenuContainer */
#yeniMenuContainer:hover { /* ESKİ: #fullMenuContainer:hover */
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
}


/* Ana menü linklerini menü çubuğuna eşit yayar */
.yeni-menu-navigation { /* ESKİ: .ana-menu-navigation */
    display: flex;
    justify-content: space-around; 
    width: 100%;
}

/* Ana menü linkleri (ANASAYFA, HİZMETLERİMİZ vb.) */
.yeni-menu-navigation li {
    display: block; 
    position: relative; 
    padding: 0;
    color: #676128;
}
.yeni-menu-navigation li a {
    text-transform: uppercase;
    font-size: 14px;
    padding: 8px 10px;
    display: block;
    font-weight: bold;
    color: #676128; /* Renk doğrudan linke uygulandı */
}


/* ========================================= */
/* 3. İÇ İÇE ALT MENÜLERİN STİLİ (HOVER İLE AÇILMA) */
/* ========================================= */

/* Birinci Seviye Alt Menü (HİZMETLERİMİZ altındaki kutu) */
.yeni-menu-dropdown-list { /* ESKİ: .dropdown-menu */
    position: absolute;
    top: 100%; 
    left: 50%;
    transform: translateX(-50%); 
    min-width: 180px;
    padding: 5px 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border-radius: 4px;
    
    
    /* Başlangıçta gizle */
    display: none; 
}

/* HOVER İLE AÇILMA: HİZMETLERİMİZ üzerine gelince alt menüyü göster */
.yeni-menu-dropdown:hover .yeni-menu-dropdown-list { /* ESKİ: .ana-menu-dropdown:hover .dropdown-menu */
    display: block;
    opacity: 1;
}

/* İkinci ve Üçüncü Seviye Linkler */
.yeni-menu-dropdown-list li {
    display: block;
    padding: 0;
    text-align: left;
    color: #676128;
}
.yeni-menu-dropdown-list li a {
    color: #676128;
    text-transform: none;
    font-size: 14px;
    padding: 6px 10px;
}
.yeni-menu-dropdown-list li a:hover {
    color: #8c8f42; /* Vurgu rengi */
}

/* İKİNCİ SEVİYE ALT MENÜ (Sağa Açılan sub-menu) */
.yeni-menu-alt-dropdown { /* ESKİ: .menu-alt-dropdown */
    position: relative; 
}
.yeni-menu-sub-list { /* ESKİ: .sub-menu */
    position: absolute;
    top: 0; 
    left: 100%; 
    margin-left: 1px; 
    min-width: 180px;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    padding: 5px 0;

    /* Başlangıçta gizle */
    display: none;
}

/* HOVER İLE AÇILMA: İkinci seviye üzerine gelindiğinde üçüncü seviye menüyü göster */
.yeni-menu-alt-dropdown:hover .yeni-menu-sub-list { /* ESKİ: .menu-alt-dropdown:hover .sub-menu */
    display: block;
    opacity: 1;
}

/* ========================================= */
/* 4. MEDYA SORGULARI (MOBİL UYUMLULUK) */
/* ========================================= */

@media (max-width: 768px) {
    
    /* ANA MENÜ ÇUBUĞUNU TAM EKRAN YAP */
    #yeniMenuContainer { /* ESKİ: #fullMenuContainer */
        max-width: 100%;
        width: 100%;
        left: 0;
        transform: translate(0, -20px); 
        border-radius: 0; 
    }
    
    /* HOVER KURALLARININ MOBİL UYGULAMASI */
    #yeni-menu-trigger-area:hover ~ #yeniMenuContainer,
    #yeniMenuContainer:hover {
        transform: translate(0, 0) !important; 
    }
    
    /* LİNKLERİ DİKEY SIRALA */
    .yeni-menu-navigation { /* ESKİ: .ana-menu-navigation */
        flex-direction: column; 
        align-items: center;
        padding-top: 10px;
        padding-bottom: 10px;
    }
    .yeni-menu-navigation li {
        width: 100%;
    }
    .yeni-menu-navigation li a {
        text-align: center;
        width: auto;
    }
    
    /* TÜM ALT MENÜLERİ DİKEY VE TAM GENİŞLİK YAP */
    
    /* 1. Seviye Alt Menü */
    .yeni-menu-dropdown-list { /* ESKİ: .dropdown-menu */
        position: static; 
        width: 100%;
        transform: none; 
        box-shadow: none;
        background-color: transparent; 
        border-radius: 0;
        padding: 0;
    }
    
    /* 2. Seviye Alt Menü */
    .yeni-menu-sub-list { /* ESKİ: .sub-menu */
        position: static; 
        left: 0;
        margin-left: 0;
        width: 100%;
        box-shadow: none;
        background-color: rgba(255, 255, 255, 0.1); /* Mobil için hafif arka plan korundu */
        padding-left: 20px; 
        border-radius: 0;
    }
    
    /* Linklere mobil uyumlu padding */
    .yeni-menu-dropdown-list li a {
        padding-left: 40px; 
        color: #676128; 
    }
    .yeni-menu-sub-list li a {
        padding-left: 60px; 
        color: #676128;
    }
}

/* GENEL DÜZEN */
.contact-container {
    display: flex;
    max-width: 1000px; /* Genişlik ayarı */
    margin: 50px auto;
    background-color: transparent;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* SOL TARAF: FORM STİLLERİ */
.form-section {
    flex: 1;
    padding: 40px;
}

.form-section form {
    display: flex;
    flex-direction: column;
}

.form-section label {
    font-weight: 500;
    margin-top: 15px;
    margin-bottom: 5px;
    color: #333;
}

.form-section input[type="text"],
.form-section input[type="email"],
.form-section input[type="tel"],
.form-section textarea {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: transparent; /* Gri arka plan */
    font-size: 16px;
}

.form-section .required {
    color: red;
}

.form-section textarea {
    resize: vertical;
}

.submit-button {
    background-color: #676128; /* Mavi renk (resimdeki gibi) */
    color: white;
    padding: 14px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 18px;
    margin-top: 25px;
    transition: background-color 0.3s;
}

.submit-button:hover {
    background-color: #4e491e;
}

.response-time {
    text-align: center;
    margin-top: 15px;
    font-size: 14px;
    color: #666;
}

/* SAĞ TARAF: BİLGİ KUTUSU STİLLERİ */
.info-section {
    flex: 1;
    background-color: transparent; /* Canlı Mavi */
    color: white;
    padding: 40px;
    border-radius: 0 8px 8px 0;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center; /* İçeriği ortalamak için */
    overflow: hidden; /* Dairesel arka plan için */
}

.info-section h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

.info-section p {
    font-size: 18px;
    margin-bottom: 30px;
}

.contact-details p {
    font-size: 18px;
    margin-bottom: 15px;
}

.contact-details i {
    margin-right: 10px;
    font-size: 20px;
}
/* Görseldeki gibi dairesel gradient eklemek için ek CSS */
.info-section::before {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
}