:root {
--font1: "Open Sans", sans-serif;
--primary-orange: #014383;
--radius: 3px;
}body {
font-family: var(--font1);
padding: 0;
margin: 0;
}body.menu-open {
overflow: hidden;
}a {
text-decoration: none;
}/* --- Site Header: Genel ve Masaüstü --- */
.site-header {
position: absolute;
top: 60px;
left: 0;
width: 100%;
display: flex;
justify-content: space-between;
align-items: center;
z-index: 1000;
transition: background-color 0.3s ease;
box-sizing: border-box;
}.site-header::before,
.site-header::after {
content: "";
position: absolute;
top: 0;
height: 100%;
background-color: #014383;
box-shadow: 0 2px 8px #00000012;
width: calc(50% - 10px);
}.site-header::before {
left: 0;
mask: radial-gradient(circle 75px at right center, transparent 99%, black 100%);
-webkit-mask: radial-gradient(circle 75px at right center, transparent 99%, black 100%);
}.site-header::after {
right: 0;
mask: radial-gradient(circle 75px at left center, transparent 99%, black 100%);
-webkit-mask: radial-gradient(circle 75px at left center, transparent 99%, black 100%);
}.site-header .logo {
flex-shrink: 0;
text-decoration: none;
position: absolute;
left: 50%;
transform: translateX(-50%);
top: -50px;
display: flex;
align-items: center;
justify-content: center;
z-index: 99;
}.site-header .logo img {
height: 150px;
width: auto;
display: block;
}.site-header .main-nav {
flex-grow: 1;
display: flex;
justify-content: center;
padding-right: 0;
border-right: 1px solid #ffffff1f;
margin-right: 0;
z-index: 1;
}.site-header .main-nav .nav-item:nth-child(2) {
margin-right: 230px;
}.site-header .main-nav ul#main-menu {
display: flex;
list-style: none;
gap: 29px;
margin: 0;
padding: 0;
align-items: center;
}.site-header .main-nav a {
color: #fff;
font-weight: 600;
font-size: 15px;
text-decoration: none;
padding: 15px 0;
position: relative;
transition: color 0.3s ease;
white-space: nowrap;
align-items: center;
display: flex;
}/* --- Alt Menüler: Masaüstü --- */
.site-header .nav-item.nav-submenu {
position: relative;
}.site-header .nav-submenu > a::after {
content: "▼";
font-size: 0.6em;
margin-left: 7px;
display: inline-block;
transition: transform 0.3s ease-in-out;
}.site-header .nav-submenu ul {
list-style: none;
padding: 10px;
margin: 0;
margin-top: 15px;
background-color: #0b1a2c;
border-radius: 8px;
box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
min-width: 220px;
position: absolute;
top: 100%;
left: 0;
opacity: 0;
visibility: hidden;
transform: translateY(10px);
transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
z-index: 10;
}.site-header .nav-submenu ul li {
padding: 0;
margin: 0;
}.site-header .nav-submenu ul a {
padding: 10px 15px;
display: block;
font-size: 14px;
font-weight: 500;
border-radius: 5px;
color: #fff; /* Alt menü okunabilirliği için eklendi */
}.site-header .nav-item.nav-submenu:hover > ul {
opacity: 1;
visibility: visible;
transform: translateY(0);
}.site-header .nav-item.nav-submenu:hover > a::after {
transform: rotate(180deg);
}/* --- Hamburger Menü Butonu --- */
.site-header .menu-toggle {
display: none;
background: none;
border: none;
cursor: pointer;
padding: 10px;
z-index: 1001;
}.site-header .menu-toggle .bar {
display: block;
width: 25px;
height: 3px;
background-color: #fff;
margin: 5px 0;
transition: all 0.4s;
}.site-header .menu-toggle.is-active .bar:nth-child(1) {
transform: translateY(8px) rotate(45deg);
}.site-header .menu-toggle.is-active .bar:nth-child(2) {
opacity: 0;
}.site-header .menu-toggle.is-active .bar:nth-child(3) {
transform: translateY(-8px) rotate(-45deg);
}/* --- Mobil Menü Arka Plan Overlay --- */
.nav-overlay {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.6);
z-index: 998;
opacity: 0;
visibility: hidden;
transition: opacity 0.5s ease, visibility 0.5s ease;
}.nav-overlay.is-active {
opacity: 1;
visibility: visible;
}/* --- Mobil Görünüm (Responsive) --- */
@media (max-width: 1200px) {
.site-header .menu-toggle {
display: block;
}.site-header .main-nav {
border-right: none;
margin-right: 0;
padding-right: 0;
justify-content: flex-end;
}.site-header .main-nav ul#main-menu {
overflow-y: auto;
padding-bottom: 40px;
flex-direction: column;
position: fixed;
top: 0;
left: -100%;
width: 80%;
max-width: 320px;
height: 100vh;
background-color: #1a1a1a;
padding: 210px 40px 40px;
align-items: flex-start;
gap: 15px;
transition: left 0.5s cubic-bezier(0.77, 0, 0.175, 1);
z-index: 999;
}.site-header .main-nav ul#main-menu.is-active {
left: 0;
}.site-header .main-nav ul a {
font-size: 18px;
width: 100%;
color: #fff;
padding: 0;
}.site-header .main-nav ul li {
position: relative;
width: 100%;
}.site-header .main-nav ul li .mobil-logo {
margin-bottom: 25px;
display: block !important;
}/* Mobil Alt Menüler */
.site-header .nav-submenu > li::after {
content: "›";
font-size: 1.8em;
font-weight: bold;
position: absolute;
right: 10px;
top: 50%;
transform: translateY(-50%) rotate(0deg);
transition: transform 0.3s ease-in-out;
}.site-header .nav-submenu ul {
position: static;
width: 100%;
opacity: 1;
visibility: visible;
transform: none;
box-shadow: none;
background-color: rgba(0, 0, 0, 0.2);
padding: 0;
margin-top: 0;
border-radius: 8px;
max-height: 0;
overflow: hidden;
transition: max-height 0.4s ease-in-out, padding 0.4s ease-in-out, margin 0.4s ease-in-out;
}.site-header .nav-submenu.submenu-open > ul {
max-height: 500px;
margin-top: 10px;
padding: 10px 0 10px 20px;
}.site-header .nav-submenu.submenu-open > a::after {
transform: translateY(-50%) rotate(90deg);
}
}/* --- WhatsApp Butonu --- */
a.WhatsApp1 {
display: flex;
font-size: 18px;
background: #2eb843;
font-weight: 600;
width: 51px;
height: 51px;
position: fixed;
bottom: 20px;
left: 20px;
border-radius: 50%;
transition: all 0.1s ease-out 0s;
color: #fff;
align-items: center;
justify-content: center;
animation: whatsapp infinite 2s linear;
z-index: 9999;
}@keyframes whatsapp {
0% { box-shadow: 0 0 0 0 #2eb843; }
50% { box-shadow: 0 0 0 10px #015dc700; }
100% { box-shadow: 0 0 0 0 #015dc700; }
}/* --- Mobil Alt Butonlar --- */
.mobilbuttonlar {
display: none;
}@media (max-width: 1024px) {
a.WhatsApp1 {
bottom: 60px;
}.btn {
border-radius: 0;
display: flex;
justify-content: center;
align-items: center;
padding: 10px 20px;
width: 100%;
}.btn svg {
width: 24px;
height: 24px;
fill: currentColor;
}.mobilbuttonlar {
position: fixed;
width: 100%;
bottom: 0;
z-index: 999;
display: flex;
}.btn1 { background: #014383; border-color: #014383; color: #fff; }
.btn2 { background: #033668; border-color: #033668; color: #fff; }
.btn3 { background: #022b54; border-color: #022b54; color: #fff; }
}/* --- Footer Alanı --- */
footer.footer1 {
background-color: #014383;
padding-top: 0;
background-repeat: no-repeat;
background-size: cover;
position: relative;
}footer.footer1 .footer-orta {
display: block;
padding: 50px 0;
}footer.footer1 .footer-liste {
width: 100%;
height: auto;
text-align: center;
}footer.footer1 .footer-liste span.baslikk {
color: #fff;
font-weight: 600;
margin-bottom: 12px;
display: block;
text-transform: uppercase;
font-size: 0.9rem;
}footer.footer1 .footer-liste small.text {
font-weight: 400;
display: block;
color: #aaa;
font-size: 0.93rem;
}footer.footer1 .footer-liste small.text a.tel {
font-size: 0.93rem;
color: #FBB725;
display: block;
font-weight: 700;
}footer.footer1 .footer-bilgi {
width: 100%;
height: auto;
background: rgba(255, 255, 255, 0.05);
padding: 20px 0;
color: #fff;
}footer.footer1 .footer-bilgi .listee {
width: 100%;
height: auto;
display: flex;
justify-content: center;
}footer.footer1 .footer-bilgi .listee li {
list-style: none;
display: inline-block;
margin-right: 25px;
}footer.footer1 .footer-bilgi .listee li a {
color: #aaa;
font-size: 0.8rem;
line-height: 24px;
}footer.footer1 .footer-bilgi .listee li a:hover {
color: #fbbe36;
}footer.footer1 .sosyal {
width: 100%;
display: flex;
justify-content: center;
}footer.footer1 .sosyal li {
display: inline-block;
margin-left: 5px;
}footer.footer1 .sosyal li a {
width: 35px;
height: 35px;
display: flex;
align-items: center;
justify-content: center;
background: #fff;
color: #2b2a29;
border-radius: 50%;
}footer.footer1 .sosyal li a svg {
width: 20px;
height: 50px;
overflow: inherit;
fill: #014383;
}footer.footer1 .sosyal li a:hover {
background: #d76527;
color: #fff;
}footer.footer1 .footer-bilgi .bilgi-baslik {
margin-right: 16px;
color: #aaa;
}footer.footer1 .footer-firma {
width: 100%;
height: auto;
padding: 15px 0;
}footer.footer1 .footer-firma .footer-text {
font-size: 0.7rem;
opacity: 0.8;
color: #fff;
}footer.footer1 .footer-firma .footer-logo {
height: 15px;
display: flex;
margin-left: 15px;
}footer.footer1 .footer-firma .footer-logo img {
height: 100%;
}@media(max-width:1024px){
footer.footer1{
margin-bottom: 40px;
}
}.cta-button3 {
background: transparent;
color: #fff;
padding: 15px 30px;
border-radius: 50px;
text-decoration: none;
font-weight: 600;
border: solid #fff;
display: inline-block;
}