html, body {
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Inter', sans-serif;
}

/* Custom Container */
.container {
    max-width: 1400px !important;
    width: 100%;
}

/* Top Header Styles */
.top-header {
    background-color: #1d2a48;
    color: #ffffff;
    font-size: 13px;
    padding: 10px 0;
}

.top-header a {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

/* Social Links */
.social-links ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 15px;
}

.social-links ul li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background-color: #eaa51b;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links ul li a:hover {
    background-color: #eaa51b;
    transform: translateY(-2px);
}

.contact-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
}

.contact-links i {
    width: 30px;
    height: 30px;
    background-color: #eaa51b;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 8px;
    font-size: 12px;
    transition: all 0.3s ease;
}

.contact-links a:hover i {
    background-color: #f7b731;
}

.social-links i {
    vertical-align: middle;
}

/* Nav Header (Main Nav Bar) */
.nav-header {
    height: 90px;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    position: relative;
    z-index: 999;
}

/* Logo Area */
.logo-area {
    width: 182px;
    height: 80px;
    display: flex;
    align-items: center;
}

.logo-area img {
    height: 60px;
    width: auto;
    transition: all 0.3s ease;
}

/* Header Contact */
.contact-icon {
    width: 45px;
    height: 45px;
    background-color: #1d2a48;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 0 rgba(29, 42, 72, 0.3);
    animation: pulse-border 2s infinite;
}

.contact-icon i {
    font-size: 20px;
    color: #ffffff;
}

@keyframes pulse-border {
    0% { box-shadow: 0 0 0 0 rgba(29, 42, 72, 0.5); }
    70% { box-shadow: 0 0 0 10px rgba(29, 42, 72, 0); }
    100% { box-shadow: 0 0 0 0 rgba(29, 42, 72, 0); }
}

.contact-info span {
    display: block;
    color: #666666;
    font-size: 11px;
    line-height: 1.2;
}

.contact-info a {
    color: #2f2f2f;
    font-weight: 700;
    font-size: 18px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #1d2a48;
}

/* Main Navigation */
.main-nav > ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 30px;
    height: 90px; /* Header yüksekliğiyle aynı */
}

.main-nav > ul > li {
    display: flex;
    align-items: center;
    height: 100%;
}

.main-nav > ul > li > a {
    color: #2f2f2f;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    height: 100%;
}

.main-nav > ul > li > a:hover {
    color: #eaa51b;
}

/* Submenu / Dropdown Styles */
.main-nav > ul > li {
    position: relative;
}

.main-nav > ul > li ul {
    position: absolute;
    top: 100%;
    left: -10px;
    transform: translateY(15px);
    width: 340px;
    background: #ffffff;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    list-style: none;
    padding: 20px 0;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    text-align: left;
    border-radius: 5px;
    border-top: 3px solid #eaa51b;
    border-bottom: 3px solid #eaa51b;
    display: block;
}

.main-nav > ul > li:hover > ul {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.main-nav > ul > li ul li {
    width: 100%;
}

.main-nav > ul > li ul li a {
    color: #2f2f2f !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    padding: 12px 25px !important;
    display: block !important;
    border-bottom: 1px solid #f5f5f5;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    text-transform: none !important;
    position: relative;
}

.main-nav > ul > li ul li a::before {
    content: "";
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%) scale(0);
    width: 6px;
    height: 6px;
    background-color: #eaa51b;
    border-radius: 50%;
    transition: all 0.3s ease;
    opacity: 0;
}

.main-nav > ul > li ul li:last-child a {
    border-bottom: none;
}

.main-nav > ul > li ul li a:hover {
    color: #eaa51b !important;
    padding-left: 35px !important;
}

.main-nav > ul > li ul li a:hover::before {
    transform: translateY(-50%) scale(1);
    opacity: 1;
}

/* Main Slider Styles */
.main-slider, .main-slider .item {
    height: 680px;
    width: 100%;
}

.main-slider .item {
    height: 680px;
    width: 100%;
    display: flex !important;
    align-items: center;
    color: #ffffff;
    position: relative;
    z-index: 1;
}

.main-slider .item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.1) 100%);
    z-index: 1;
}

.slider-content {
    max-width: 900px;
    position: relative;
    z-index: 2;
    text-align: center;
    margin: 0 auto;
}

.slider-btns {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.slider-content h2 {
    font-size: 60px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 25px;
}

.slider-content p {
    font-size: 20px;
    opacity: 0.9;
    margin-bottom: 30px;
}

/* Slider Content Animations */
.slider-content h2, 
.slider-content p, 
.slider-btns a {
    opacity: 0;
}

.owl-item.active .slider-content h2 {
    animation: fadeInUp 0.8s both 0.3s;
}

.owl-item.active .slider-content p {
    animation: fadeInUp 0.8s both 0.5s;
}

.owl-item.active .slider-btns a:first-child {
    animation: fadeInUp 0.8s both 0.7s;
}

.owl-item.active .slider-btns a:last-child {
    animation: fadeInUp 0.8s both 0.9s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slider-btns a {
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.slider-btns a:first-child {
    background: #1d2a48;
    color: #ffffff;
    padding: 16px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    display: inline-block;
    font-size: 13px;
    border: none;
}

.slider-btns a:first-child::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #ffffff;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    z-index: -1;
}

.slider-btns a:first-child:hover {
    color: #3c3c3c;
    transform: translateY(-5px);
}

.slider-btns a:first-child:hover::before {
    left: 0;
}

.slider-btns a:last-child {
    background: rgba(255, 255, 255, 0.1);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    color: #ffffff;
    padding: 14px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    border: 2px solid rgba(255, 255, 255, 0.8);
    display: inline-block;
    font-size: 13px;
}

.slider-btns a:last-child::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #1d2a48;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    z-index: -1;
}

.slider-btns a:last-child:hover {
    color: #ffffff;
    border-color: #1d2a48;
    transform: translateY(-5px);
}

.slider-btns a:last-child:hover::before {
    left: 0;
}

/* Main Slider Dots */
.main-slider .owl-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex !important;
    flex-direction: row;
    gap: 12px;
    z-index: 10;
}

.main-slider .owl-dot {
    background: none !important;
    border: none !important;
    padding: 0 !important;
}

.main-slider .owl-dot span {
    width: 40px;
    height: 5px;
    background: rgba(255, 255, 255, 0.4) !important;
    display: block;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1) !important;
    margin: 0 !important;
}

.main-slider .owl-dot.active span {
    width: 40px !important;
    height: 5px !important;
    background: #eaa51b !important;
    box-shadow: 0 0 15px rgba(234, 165, 27, 0.5);
}

/* Page Title Area */
.page-title-area {
    background: url('https://images.pexels.com/photos/3762800/pexels-photo-3762800.jpeg?auto=compress&cs=tinysrgb&w=1920') no-repeat center center / cover;
    padding: 100px 0 85px;
    position: relative;
}

.page-title-area::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.15) 100%);
    z-index: 1;
}

.page-title-area .container {
    position: relative;
    z-index: 2;
}

.page-title-area h1 {
    font-size: 48px;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 15px;
}

.page-title-area p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
    margin-bottom: 20px;
}

/* Breadcrumb Styles */
.breadcrumb {
    background: rgba(255, 255, 255, 0.1);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    padding: 10px 25px;
    border-radius: 50px;
    display: inline-flex !important;
    align-items: center !important;
    margin: 0;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
    padding-left: 0 !important;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: "\f105";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: rgba(255, 255, 255, 0.5);
    padding-right: 10px !important;
    padding-left: 10px !important;
    font-size: 11px;
    display: flex;
    align-items: center;
    line-height: 0;
    height: 21px;
}

.breadcrumb-item a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    opacity: 1;
    display: inline-block;
}

.breadcrumb-item a:hover {
    color: #1d2a48;
    transform: translateY(-1px);
}

.breadcrumb-item.active {
    color: #ffffff;
    font-weight: 700;
    font-size: 14px;
    opacity: 1;
}

/* Main Footer Styles */
.main-footer {
    background: linear-gradient(135deg, #04070d 0%, #111a2e 100%);
    padding: 100px 0 0 0;
    color: #ffffff;
}

.footer-title {
    display: block;
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 25px;
}

.footer-item p {
    color: #cccccc;
    line-height: 1.8;
    font-size: 15px;
}

.footer-links, .footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links li a {
    color: #cccccc;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    font-size: 15px;
    display: flex;
    align-items: center;
}

.footer-links li a::before {
    content: "\f105";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: rgba(108, 173, 250, 0.5);
    font-size: 9px;
    margin-right: 10px;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.footer-links li a:hover {
    color: #1d2a48;
    padding-left: 8px;
}

.footer-links li a:hover::before {
    color: #1d2a48;
    margin-right: 12px;
}

.footer-contact-modern {
    display: flex;
    flex-direction: column;
}

.contact-card {
    background: transparent;
    border: none;
    padding: 0;
    display: flex;
    align-items: center;
    margin-bottom: 22px;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.contact-card:hover {
    transform: translateX(8px);
}

.contact-card-icon {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.05);
    color: #1d2a48;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 16px;
    margin-right: 18px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-card:hover .contact-card-icon {
    background: #1d2a48;
    color: #ffffff;
}

.contact-card-text {
    flex: 1;
}

.contact-card-text span, .contact-card-text a {
    color: #cccccc;
    font-size: 14px;
    line-height: 1.5;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-card:hover .contact-card-text a, 
.contact-card:hover .contact-card-text span {
    color: #ffffff;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    border-radius: 50%;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background-color: #eaa51b;
    transform: translateY(-3px);
}

.footer-bottom {
    background-color: rgba(0, 0, 0, 0.4);
}

.footer-bottom p, .footer-bottom-links a {
    font-size: 13px;
}

/* Features Area Styles */
.features-area {
    padding: 100px 0;
    background-color: #ffffff;
}

.feature-box {
    padding: 45px 40px;
    background: #ffffff;
    border: 1px solid #f3f3f3;
    border-radius: 24px;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    height: 100%;
}

.feature-box:hover {
    border-color: #1d2a48;
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.feature-icon {
    width: 56px;
    height: 56px;
    background: rgba(108, 173, 250, 0.1);
    color: #1d2a48;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    border-radius: 16px;
    margin-bottom: 25px;
    transition: all 0.4s ease;
}

.feature-box:hover .feature-icon {
    background: #1d2a48;
    color: #ffffff;
    transform: rotateY(180deg);
}

.feature-title {
    display: block;
    font-size: 22px;
    font-weight: 800;
    color: #3c3c3c;
    margin-bottom: 15px;
}

.feature-box p {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

.breadcrumb-item i {
    font-size: 16px;
    color: #1d2a48;
    transition: transform 0.3s ease;
}

.breadcrumb-item a:hover i {
    transform: rotate(-10deg) scale(1.2);
}
/* Mobile Menu Button Styling */
.mobile-menu-btn {
    width: 45px;
    height: 45px;
    background-color: rgba(29, 42, 72, 0.08);
    color: #1d2a48;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 3px;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-menu-btn:hover {
    background-color: #eaa51b;
}

/* Responsive Media Queries */
@media (max-width: 991px) {
    .menu-area, .header-contact, .social-links {
        display: none !important;
    }
    
    .mobile-toggle-area {
        display: block !important;
    }
    
    .nav-header {
        height: 80px;
    }
    
    .logo-area img {
        height: 60px;
        width: auto;
    }
    
    .slider-content h2 {
        font-size: 36px;
    }
    
    .slider-content p {
        font-size: 16px;
    }
}

/* Features Section Styles */
.features-section {
    padding: 70px 0 50px 0;
    background-color: #ffffff;
}

.feature-box {
    background: #ffffff;
    padding: 35px 25px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    height: 100%;
    position: relative;
    border: none;
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
}

.feature-box:hover {
    transform: translateY(-10px);
    background: #ffffff;
    box-shadow: 0 25px 60px rgba(29, 42, 72, 0.12);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(29, 42, 72, 0.04);
    color: #1d2a48;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 20px;
    font-size: 24px;
    transition: all 0.4s ease;
}

.feature-box:hover .feature-icon {
    background-color: #eaa51b;
    color: #ffffff;
}

.feature-box h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1d2a48;
    letter-spacing: -0.2px;
}

.feature-box p {
    font-size: 14px;
    color: #2f2f2f;
    line-height: 1.6;
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .features-section {
        padding: 60px 0;
    }
    
    .feature-box {
        padding: 40px 25px;
        margin-bottom: 20px;
    }
}
/* About Section & Headings */
.about-section {
    padding: 50px 0 80px 0;
    background-color: #ffffff;
}

.heading-box h2 {
    font-size: 48px;
    font-weight: 900;
    color: #1d2a48;
    line-height: 1.1;
    letter-spacing: -1.5px;
}

.heading-box h2 span {
    color: inherit;
    display: inline-block;
}

.description-box p {
    font-size: 16px;
    color: #2f2f2f;
    line-height: 1.8;
}

.section-heading.text-center .heading-box h2 {
    font-size: 38px;
    letter-spacing: -1px;
}

.section-marker {
    width: 60px;
    height: 4px;
    background: #eaa51b;
    margin: 25px auto;
    border-radius: 50px;
    position: relative;
}

.section-marker::after {
    content: "";
    position: absolute;
    right: -15px;
    top: 0;
    width: 12px;
    height: 4px;
    background: rgba(234, 165, 27, 0.4);
    border-radius: 50px;
}

@media (max-width: 991px) {
    .heading-box h2 {
        font-size: 30px;
        text-align: center;
    }
    
    .section-heading.text-center .heading-box h2 {
        font-size: 28px;
    }
}

/* About Section Image Area */
.about-image-area {
    position: relative;
}

/* About Section Image Styling */
.about-image {
    position: relative;
    z-index: 1;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 25px 55px rgba(0,0,0,0.15);
}

.about-image img {
    width: 100%;
    height: 580px;
    object-fit: cover;
    transform: scale(1.1);
    transition: transform 0.1s ease-out;
}

.experience-badge {
    position: absolute;
    left: -60px;
    bottom: 50px;
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, #1d2a48 0%, #0a1121 100%);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 15px 45px rgba(29, 42, 72, 0.4);
    z-index: 5;
    border: 8px solid #ffffff;
    animation: float 3s ease-in-out infinite;
}

.experience-badge span:first-child {
    display: block;
    font-size: 38px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -1px;
}

.experience-badge span:last-child {
    display: block;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
    margin-top: 5px;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@media (max-width: 991px) {
    .about-image img {
        height: 400px;
        margin-top: 40px;
    }
    
    .experience-badge {
        width: 120px;
        height: 120px;
        left: -20px;
        bottom: 30px;
        border-width: 5px;
    }
    
    .experience-badge .badge-content span:first-child {
        font-size: 28px;
    }
    
    .experience-badge .badge-content span:last-child {
        font-size: 11px;
    }
}

/* Global Button Styles */
.cta-content a {
    background: #1d2a48;
    color: #ffffff;
    padding: 18px 45px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    display: inline-block;
    font-size: 14px;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: none;
    cursor: pointer;
}

.cta-content a:hover {
    color: #ffffff;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(29, 42, 72, 0.3);
}

.cta-content a::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #eaa51b;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    z-index: -1;
}

.cta-content a:hover::before {
    left: 0;
}

/* About Section Buttons */
.about-btns {
    display: flex;
    align-items: center;
    gap: 15px;
}

.about-btns a {
    text-decoration: none;
    font-weight: 700;
    display: inline-block;
    font-size: 14px;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
    border-radius: 50px;
    cursor: pointer;
}

.about-btns a:first-child {
    background: #1d2a48;
    color: #ffffff;
    padding: 18px 45px;
    border: none;
}

.about-btns a:first-child:hover {
    color: #ffffff;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(29, 42, 72, 0.3);
}

.about-btns a:first-child::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #eaa51b;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    z-index: -1;
}

.about-btns a:first-child:hover::before {
    left: 0;
}

.about-btns a:last-child {
    background: transparent;
    color: #1d2a48;
    padding: 16px 45px;
    border: 2px solid #1d2a48;
}

.about-btns a:last-child:hover {
    color: #ffffff;
    border-color: #1d2a48;
    transform: translateY(-5px);
}

.about-btns a:last-child::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #1d2a48;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    z-index: -1;
}

.about-btns a:last-child:hover::before {
    left: 0;
}

@media (max-width: 991px) {
    .about-btns {
        justify-content: center;
        flex-direction: column;
        gap: 10px;
    }
    
    .about-btns a {
        width: 100%;
        max-width: 280px;
    }
}

.footer-logo {
    height: auto;
    width: auto;
    margin-bottom: 25px;
}

.footer-logo img {
    max-width: 200px;
    height: auto;
}

/* Sticky Header Styles */
.nav-header {
    transition: all 0.3s ease;
    background: #ffffff;
}

.nav-header.is-sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: #ffffff;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    animation: stickySlideDown 0.5s ease forwards;
    border-bottom: none;
}

.nav-header.is-sticky .logo-area img {
    height: 50px;
}

@keyframes stickySlideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Blog Section Styles */
.blog-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.blog-card {
    background: transparent;
    border-radius: 0;
    overflow: visible;
    box-shadow: none;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-image {
    position: relative;
    height: 280px;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-content {
    background: #ffffff;
    width: 88%;
    margin: -60px auto 0;
    position: relative;
    z-index: 2;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(29, 42, 72, 0.12);
    transition: all 0.4s ease;
}

.blog-card:hover .blog-content {
    box-shadow: 0 25px 50px rgba(234, 165, 27, 0.15);
}

.blog-content h3 {
    font-size: 19px;
    font-weight: 800;
    margin-bottom: 12px;
    line-height: 1.4;
}

.blog-content h3 a {
    color: #1d2a48;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-content h3 a:hover {
    color: #eaa51b;
}

.blog-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-content a {
    font-weight: 700;
    font-size: 13px;
    color: #eaa51b;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.blog-content a i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.blog-content a:hover {
    color: #1d2a48;
}

.blog-content a:hover i {
    transform: translateX(5px);
}

@media (max-width: 991px) {
    .blog-section {
        padding: 60px 0;
    }
}

/* CTA Section Styles */
.cta-section {
    padding: 100px 0;
    background: url('https://images.pexels.com/photos/159306/construction-site-build-construction-worker-159306.jpeg?auto=compress&cs=tinysrgb&w=1920') no-repeat center center / cover;
    background-attachment: fixed;
    position: relative;
    color: #ffffff;
}

.cta-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(29, 42, 72, 0.9) 0%, rgba(10, 17, 33, 0.7) 100%);
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: 42px;
    font-weight: 900;
    margin-bottom: 25px;
    line-height: 1.2;
}

.cta-content p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 30px;
    line-height: 1.6;
}

.cta-content a {
    font-size: 17px;
    letter-spacing: 0.5px;
    font-weight: 600;
}

@media (max-width: 991px) {
    .cta-section {
        padding: 70px 0;
        background-attachment: scroll;
    }
    
    .cta-content h2 {
        font-size: 32px;
    }
}
/* Services Carousel Styles */
.services-carousel-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.service-card-item {
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(29, 42, 72, 0.05);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    height: 100%;
    margin: 15px 0;
    text-align: left;
    padding: 0 !important;
    border: none !important;
}

.service-card-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(29, 42, 72, 0.12);
}

.service-image {
    aspect-ratio: 9 / 6;
    height: auto;
    overflow: hidden;
}

.service-image.no-image {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-image.no-image::after {
    content: '\f807';
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: rgba(0, 0, 0, 0.03);
    font-size: 125px;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-card-item:hover .service-image img {
    transform: scale(1.1);
}

.service-content {
    padding: 25px;
}

.service-card-item h3 {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 12px;
    color: #1d2a48;
}

.service-card-item p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-content a {
    font-weight: 700;
    font-size: 14px;
    color: #eaa51b;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.service-content a i {
    font-size: 11px;
    transition: transform 0.3s ease;
}

.service-content a:hover {
    color: #1d2a48;
}

.service-content a:hover i {
    transform: translateX(5px);
}

.services-carousel-section .owl-stage-outer {
    padding: 30px 10px;
    margin: -30px -10px;
}

/* Owl Dots Custom for Services */
.services-carousel-section .owl-dots {
    margin-top: 40px !important;
    display: flex;
    justify-content: center;
    gap: 3px;
}

.services-owl .owl-stage {
    transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1) !important;
}

.services-carousel-section .owl-dot span {
    width: 10px;
    height: 10px;
    background: #e0e0e0 !important;
    border-radius: 50%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    display: block;
    margin: 2px !important;
}

.services-carousel-section .owl-dot.active span {
    background: #eaa51b !important;
    width: 30px;
    border-radius: 50px;
}

/* Mobile Menu Styles */
.mobile-menu-drawer {
    position: fixed;
    top: 0;
    left: 0;
    width: 85%;
    max-width: 320px; /* Biraz daha daraltıldı modern görünüm için */
    height: 100%;
    background: #ffffff;
    z-index: 10001;
    transform: translateX(-100%);
    transition: transform 0.5s cubic-bezier(0.65, 0.05, 0.36, 1);
    box-shadow: 20px 0 50px rgba(0,0,0,0.15);
    display: flex;
    flex-direction: column;
    border-right: 1px solid #f0f0f0;
}

.mobile-menu-drawer.is-open {
    transform: translateX(0);
}

body.no-scroll {
    overflow: hidden;
    position: fixed;
    width: 100%;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(29, 42, 72, 0.6);
    backdrop-filter: blur(5px);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.mobile-menu-overlay.is-visible {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-header {
    padding: 20px 25px;
    border-bottom: 1px solid #f8f8f8;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fafafa;
}

.mobile-menu-close {
    background: #1d2a48;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    font-size: 16px;
    color: #ffffff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.mobile-menu-close:hover {
    background: #eaa51b;
    transform: rotate(90deg);
}

.mobile-menu-content {
    padding: 30px 25px;
    overflow-y: auto;
    flex: 1;
}

.mobile-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav > ul > li {
    margin-bottom: 8px;
    border-bottom: 1px solid #f9f9f9;
}

.mobile-nav > ul > li:last-child {
    border-bottom: none;
}

.mobile-nav > ul > li > a {
    color: #1d2a48;
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 10px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.mobile-nav > ul > li.active > a {
    color: #eaa51b;
    background: #fcfcfc;
}

.mobile-nav > ul > li:has(ul) > a::after {
    content: "\f067"; /* Plus icon */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 11px;
    transition: all 0.3s ease;
    opacity: 0.5;
}

.mobile-nav > ul > li.active > a::after {
    content: "\f068"; /* Minus icon */
    transform: rotate(180deg);
    opacity: 1;
}

.mobile-nav > ul > li ul {
    list-style: none;
    padding: 0 0 10px 0;
    display: none;
    background: #fdfdfd;
}

.mobile-nav > ul > li ul li {
    margin-bottom: 0;
}

.mobile-nav > ul > li ul li a {
    display: block;
    padding: 10px 15px 10px 30px;
    color: #555;
    text-decoration: none;
    font-size: 13.5px;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

.mobile-nav > ul > li ul li a::before {
    content: "";
    position: absolute;
    left: 15px;
    top: 50%;
    width: 6px;
    height: 1px;
    background: #ddd;
    transition: all 0.3s ease;
}

.mobile-nav > ul > li ul li a:hover {
    color: #eaa51b;
    background: #fafafa;
}

.mobile-nav > ul > li ul li a:hover::before {
    background: #eaa51b;
    width: 10px;
}

.mobile-contact-info {
    border-top: 1px solid #f0f0f0;
    padding-top: 30px;
}

.mobile-contact-info a {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #1d2a48;
    text-decoration: none;
    margin-bottom: 20px;
    font-weight: 600;
}

.mobile-contact-info a i {
    width: 35px;
    height: 35px;
    background: rgba(234, 165, 27, 0.1);
    color: #eaa51b;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 14px;
}

/* Custom Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

body.no-scroll {
    overflow: hidden;
}

/* ============================================================ */
/* CUSTOM PROJECT STYLES (RE-APPLIED AFTER RECOVERY)           */
/* ============================================================ */

/* SEO Hidden Tags */
.logo-area h1, .logo-area p {
    position: absolute;
    width: 2px;
    height: 2px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* Slider Customizations */
.main-slider .slider-item {
    background-color: #222; /* Fallback */
}

.main-slider a {
    font-size: 15px !important;
    padding: 15px 35px !important;
}

/* Page Title Area & Breadcrumb */
.page-title-area {
    padding: 80px 0 70px !important;
}

.breadcrumb-item.active {
    color: #ffffff !important;
    font-weight: 500 !important;
}

.breadcrumb-item a:hover {
    transform: none !important;
}

/* Modern Footer Styles */
footer {
    background: linear-gradient(135deg, #04070d 0%, #111a2e 100%) !important;
    padding: 80px 0 50px !important;
}

footer span {
    display: block;
    font-size: 24px !important;
    font-weight: 800 !important;
    margin-bottom: 30px !important;
    color: #ffffff !important;
}

footer p, 
footer .footer-content {
    color: #cccccc !important;
    line-height: 1.6 !important;
    font-size: 15px !important;
    font-weight: 300 !important;
}

/* Sharp Modern Map Pin - Enlarged */
.custom-marker-wrapper {
    width: 80px;
    height: 80px;
    position: relative;
}

.sharp-pin {
    width: 60px;
    height: 60px;
    border-radius: 50% 50% 50% 0;
    background: #e74c3c;
    position: absolute;
    transform: rotate(-45deg);
    left: 50%;
    top: 50%;
    margin: -50px 0 0 -30px;
    box-shadow: -3px 3px 6px rgba(0,0,0,0.3);
    border: 3px solid #ffffff;
}

.sharp-pin::after {
    content: '';
    width: 20px;
    height: 20px;
    margin: 17px 0 0 17px;
    background: #ffffff;
    position: absolute;
    border-radius: 50%;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.2);
}

/* Footer Legal Bar Styles */
.rwt-legal-bar {
    background-color: #04070f;
    width: 100%;
    padding: 25px 0 20px;
    font-family: inherit;
    font-size: 13px;
    color: #ffffff;
    line-height: 1.4;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    text-align: center;
}

.rwt-legal-bar p,
.rwt-legal-bar span,
.rwt-legal-bar a {
    margin: 0;
    padding: 0;
    font-weight: 600 !important;
    font-size: 13px;
    color: #ffffff;
    text-decoration: none;
}

.rwt-credit-group {
    display: flex;
    align-items: center;
    gap: 0;
}

.rwt-credit-group a {
    display: flex;
    align-items: center;
    line-height: 1;
}

.rwt-credit-group a:first-child {
    padding-right: 15px;
    margin-right: 15px;
    position: relative;
}

.rwt-credit-group a:first-child::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 14px;
    background-color: rgba(255, 255, 255, 0.3);
}

.rwt-credit-group a img {
    height: 21px;
    width: auto;
    display: block;
}

/* Global Color Swap (#1d2a48 -> #1d2a48) */
:root {
    --primary-color: #1d2a48;
}

/* Grayscale Map Styles */
#contactMap .leaflet-tile {
    filter: grayscale(100%) invert(5%) contrast(90%);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

#contactMap:hover .leaflet-tile {
    filter: grayscale(0%) invert(0%) contrast(100%);
}

/* Ensure Marker stays colored */
#contactMap .leaflet-marker-pane,
#contactMap .leaflet-shadow-pane {
    filter: none !important;
    z-index: 600;
}

/* Footer Structure Fixes (Re-Applying Adaptations) */
footer ul, 
footer .flist ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

footer ul li, 
footer .flist ul li {
    margin-bottom: 12px;
}

footer ul li a, 
footer .flist ul li a {
    color: #cccccc;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    font-size: 14px; /* 1px küçültüldü */
    font-weight: 300; /* Daha ince font */
    display: flex;
    align-items: center;
}

footer ul li a::before, 
footer .flist ul li a::before {
    content: "\f105";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: rgba(255, 255, 255, 0.4); /* Daha belirgin beyaz tonu */
    font-size: 9px;
    margin-right: 10px;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

footer ul li a:hover, 
footer .flist ul li a:hover {
    color: #ffffff;
    padding-left: 8px;
}

footer ul li a:hover::before, 
footer .flist ul li a:hover::before {
    color: #1d2a48;
    margin-right: 12px;
}

/* Footer Contact Area Fixes */
footer .filetisim ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

footer .filetisim ul li {
    display: flex;
    align-items: center;
    margin-bottom: 22px;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    color: #cccccc;
    font-size: 15px;
}

footer .filetisim ul li:hover {
    transform: translateX(8px);
}

footer .filetisim ul li i {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.1); /* Biraz daha belirginleştirildi */
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 16px;
    margin-right: 18px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

footer .filetisim ul li:hover i {
    background: #1d2a48;
    color: #ffffff;
}

footer .filetisim ul li a {
    color: inherit;
    text-decoration: none;
}

/* Dynamic Contact Form Styles */
.dynamic-form-container .form-wrapper {
    position: relative;
    margin-bottom: 20px;
}

.dynamic-form-container .form-wrapper i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #1d2a48;
    font-size: 16px;
    z-index: 2;
    transition: all 0.3s ease;
}

.dynamic-form-container .form-wrapper.field-textarea i {
    top: 20px;
    transform: none;
}

.dynamic-form-container .form-wrapper input,
.dynamic-form-container .form-wrapper textarea {
    width: 100%;
    padding: 15px 15px 15px 45px; /* İkon için soldan boşluk */
    border: 1px solid #e1e1e1;
    border-radius: 8px;
    font-size: 15px;
    color: #333;
    background: #fdfdfd;
    transition: all 0.3s ease;
    outline: none;
}

.dynamic-form-container .form-wrapper textarea {
    min-height: 100px;
    resize: vertical;
}

.dynamic-form-container .form-wrapper input:focus,
.dynamic-form-container .form-wrapper textarea:focus {
    border-color: #1d2a48;
    background: #ffffff;
    box-shadow: 0 5px 15px rgba(29, 42, 72, 0.05);
}

.dynamic-form-container .form-wrapper input:focus + i,
.dynamic-form-container .form-wrapper textarea:focus + i {
    color: #eaa51b; /* Focus durumunda ikon rengi değişimi */
}

/* Captcha & Submit Button Styles */
.captcha-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.captcha-wrapper label {
    font-weight: 700;
    color: #1d2a48;
    white-space: nowrap;
}

.captcha-wrapper input.sonuc {
    width: 80px;
    padding: 10px;
    border: 1px solid #e1e1e1;
    border-radius: 8px;
    text-align: center;
}

.dynamic-form-container .buton {
    width: 100%;
    padding: 15px;
    background-color: #1d2a48;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dynamic-form-container .buton:hover {
    background-color: #eaa51b;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(234, 165, 27, 0.3);
}

/* Form Icon Separator */
.dynamic-form-container .form-wrapper::after {
    content: '';
    position: absolute;
    left: 40px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 24px; /* Tüm alanlar için sabit kısa boy */
    background-color: #e1e1e1;
    z-index: 2;
    transition: all 0.3s ease;
}

.dynamic-form-container .form-wrapper.field-textarea::after {
    top: 20px; /* Textarea ikonuyla aynı hizada başlasın */
    transform: none;
}

.dynamic-form-container .form-wrapper:focus-within::after {
    background-color: #1d2a48;
    opacity: 0.5;
}

/* Modern Contact Card Styles */
.subeler-modern {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sube-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 25px 30px;
    box-shadow: 0 20px 40px rgba(29, 42, 72, 0.08);
    border: none;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.sube-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(29, 42, 72, 0.12);
}

.sube-title {
    font-size: 32px;
    font-weight: 800;
    color: #1d2a48;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}

.sube-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background: #eaa51b;
    border-radius: 3px;
}

.contact-items-wrapper {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-item-modern {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 5px 0;
    transition: all 0.3s ease;
}

.contact-icon-box {
    width: 36px;
    height: 36px;
    background: #f8f9fa;
    color: #1d2a48;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 15px;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.contact-item-modern:hover .contact-icon-box {
    background: #1d2a48;
    color: #ffffff;
    transform: rotate(10deg);
}

.contact-text-box {
    display: flex;
    flex-direction: column;
}

.contact-value {
    font-size: 16px;
    color: #444;
    font-weight: 500;
    line-height: 1.5;
}

.contact-item-modern:hover .contact-value {
    color: #1d2a48;
}

/* Contact Form Header Styles */
.form-title {
    font-size: 32px;
    font-weight: 800;
    color: #1d2a48;
    margin-bottom: 10px;
}

.form-description {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
    font-weight: 400;
}

/* Equal Height Columns for Contact Page */
.iletisim .row {
    display: flex;
    flex-wrap: wrap;
}

.iletisim .col-md-5, 
.iletisim .col-md-7 {
    display: flex;
    flex-direction: column;
}

.subeler-modern {
    width: 100%;
    height: 100%;
}

.dynamic-form-container {
    width: 100%;
}

.sube-card {
    flex: 1;
    height: 100%;
}

.sube-description {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    margin-bottom: 20px;
    font-weight: 400;
}

/* Contact Section Spacing */
section.iletisim {
    padding: 100px 0 !important;
    background-color: #fcfcfc;
}

/* Static Page Section Spacing */
section.sayfa {
    padding: 100px 0 !important;
    display: block !important;
    background-color: #ffffff;
}
.iletisim {
	position: relative;
	display: block;
	padding: 100px 0px;
}

.form {
	position: relative;
	display: block;
	padding: 0px;
	margin: 0px;
	width: 100%;
}

.form i {
	position: absolute;
	z-index: 2;
	left: 2px;
	top: 20px;
	width: 40px;
	height: 20px;
	line-height: 20px;
	text-align: center;
	border-left: 1px solid #DBDBDB;
	color: #1d2a48;
	transform: scale(-1, 1);
}

.iletisim .row,
.iletisim .col-md-4 {
	padding: 0px !important;
	margin: 0px !important;
}



.iletisim input,
.iletisim textarea {
	width: 100%;
	line-height: 30px;
	padding: 15px 20px 15px 50px;
	display: block;
	margin-bottom: 25px;
	border: 1px solid #f1f2f3;
	border-radius: 5px;
	font-weight: 500;
	position: relative;
	font-size: 0.9rem;
}

.iletisim .islem {
	width: 120px !important;
	line-height: 60px !important;
	border: 0px !important;
	margin: 0px !important;
	display: inline-block !important;
	margin-right: 25px !important;
	text-align: center !important;
	background: #f1f2f3 !important;
	border-radius: 5px !important;
	font-weight: 900 !important;
	letter-spacing: -2px !important;
}

.iletisim .sonuc {
	width: calc(100% - 150px) !important;
	display: inline-block !important;
	margin: 0px !important;
	box-shadow: 0px 0px 0px 0px !important;
	padding: 15px 20px !important;
}

.iletisim .buton {
	background: #1d2a48;
	padding: 0px;
	margin: 0px;
	line-height: 62px;
	border: 0px;
	color: #FFF;
	font-weight: 900;
	letter-spacing: 1px;
}

.iletisim .buton:hover {
	background: #eaa51b;
	cursor: pointer;
}



.sube {
	width: 100%;
	height: 100%;
	display: block;
}

.iletisim .sube h2,
.iletisim h3 {
	font-size: 28px;
	font-weight: 900;
	color: #02182a;
	line-height: 1;
	display: block;
	margin-bottom: 30px;
}

.iletisim .sube p {
	position: relative;
	padding: 2px 0px 3px 40px;
	display: block;
	line-height: 20px;
	font-weight: 900;
	font-size: 18px;
	margin-bottom: 15px;
	color: #02182a;
	display: block;
}

.iletisim .sube span {
	display: block;
	font-weight: 400;
	line-height: 1.5;
	font-size: 16px;
	display: block;
	margin-bottom: 25px;
}

.iletisim .sube p i {
	position: absolute;
	left: 0px;
	top: 0px;
	width: 25px;
	height: 25px;
	line-height: 25px;
	text-align: center;
	color: #1d2a48;
	font-size: 22px;
	display: block;
}

.iletisim .sube p.rfa-home {
	padding: 0px 0px 0px 40px !important;
	line-height: 20px;
	font-size: 16px;
}

.iletisim .iletisimformu h3 {
	font-size: 36px;
	line-height: 1;
	margin-bottom: 10px;
	font-weight: 900;
	color: #343434;
}

.iletisim .iletisimformu p {
	font-size: 16px;
	line-height: 1.4;
	margin-bottom: 20px;
	display: block;
}

/* Premium Toast Notification Stilleri */
@keyframes toastSlideIn {
	from {
		opacity: 0;
		transform: translateX(400px) scale(0.9);
	}

	to {
		opacity: 1;
		transform: translateX(0) scale(1);
	}
}

@keyframes toastSlideOut {
	from {
		opacity: 1;
		transform: translateX(0) scale(1);
	}

	to {
		opacity: 0;
		transform: translateX(400px) scale(0.9);
	}
}

@keyframes progressBar {
	from {
		width: 100%;
	}

	to {
		width: 0%;
	}
}

.premium-toast {
	position: fixed;
	top: 24px;
	right: 24px;
	color: white;
	padding: 18px 24px;
	border-radius: 12px;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2), 0 2px 8px rgba(0, 0, 0, 0.1);
	display: flex;
	align-items: center;
	gap: 14px;
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	font-size: 15px;
	font-weight: 500;
	z-index: 99999;
	min-width: 320px;
	max-width: 420px;
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.2);
	animation: toastSlideIn 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
	transition: transform 0.2s ease;
	overflow: hidden;
}

.premium-toast:hover {
	transform: translateY(-2px);
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25), 0 4px 12px rgba(0, 0, 0, 0.15);
}

.premium-toast.hiding {
	animation: toastSlideOut 0.3s ease-in forwards;
}

.toast-icon {
	font-size: 24px;
	font-weight: bold;
	background: rgba(255, 255, 255, 0.25);
	width: 40px;
	height: 40px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.toast-content {
	flex: 1;
	line-height: 1.4;
}

.toast-progress {
	position: absolute;
	bottom: 0;
	left: 0;
	height: 3px;
	background: rgba(255, 255, 255, 0.4);
	animation: progressBar 4s linear;
}
/* Modern Sidebar Contact Widget */
.wiletisim-modern {
    background: #ffffff;
    border-radius: 8px;
    padding: 40px 35px;
    box-shadow: 0 20px 60px rgba(29, 42, 72, 0.12);
    border: none;
    margin-bottom: 35px;
    position: relative;
}

.wiletisim-header {
    margin-bottom: 25px;
}

.wiletisim-title {
    display: block;
    font-size: 24px;
    font-weight: 900;
    color: #1d2a48;
    margin-bottom: 12px;
}

.wiletisim-divider {
    width: 60px;
    height: 4px;
    background: #eaa51b;
    border-radius: 3px;
}

.wiletisim-text {
    font-size: 15px;
    color: #666666;
    line-height: 1.7;
    margin-bottom: 30px;
}

.wiletisim-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.wiletisim-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f5f5f5;
}

.wiletisim-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.wiletisim-icon {
    width: 45px;
    height: 45px;
    background: rgba(29, 42, 72, 0.05);
    color: #1d2a48;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 18px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.wiletisim-item:hover .wiletisim-icon {
    background: #1d2a48;
    color: #ffffff;
    transform: translateY(-3px) rotate(-5deg);
}

.wiletisim-info {
    display: flex;
    flex-direction: column;
}

.wiletisim-info small {
    font-size: 11px;
    color: #999999;
    font-weight: 700;
    letter-spacing: 0.8px;
    margin-bottom: 2px;
}

.wiletisim-info a, .wiletisim-info span {
    font-size: 16px;
    color: #2f2f2f;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    line-height: 1.4;
}

.wiletisim-info a:hover {
    color: #eaa51b;
    padding-left: 5px;
}

/* Modern Services Widget */
.hizmet-widget-modern {
    background: #1d2a48;
    border-radius: 8px;
    padding: 35px;
    box-shadow: 0 15px 45px rgba(29, 42, 72, 0.15);
    margin-bottom: 30px;
    border: none;
}

.hizmet-widget-header {
    margin-bottom: 25px;
}

.hizmet-widget-title {
    display: block;
    font-size: 22px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 12px;
}

.hizmet-widget-divider {
    width: 50px;
    height: 3px;
    background: #eaa51b;
    border-radius: 3px;
}

.hizmet-widget-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hizmet-widget-list li {
    margin-bottom: 8px;
}

.hizmet-widget-list li:last-child {
    margin-bottom: 0;
}

.hizmet-widget-list li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    padding: 14px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.hizmet-widget-list li a i {
    font-size: 12px;
    color: #eaa51b;
    transition: transform 0.3s ease;
}

.hizmet-widget-list li a:hover {
    background: #eaa51b;
    color: #1d2a48;
}

.hizmet-widget-list li a:hover i {
    color: #1d2a48;
    transform: translateX(4px);
}

/* Owl Carousel Shadow Fix */
.services-owl {
    padding: 40px 0 !important;
    margin: -40px 0 !important;
}

.services-owl .owl-stage-outer {
    overflow: visible !important;
}

.services-owl .owl-item {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.services-owl .owl-item.active {
    opacity: 1;
}

/* Sayfa Detay Resim Alanı */
.detayresim {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.08);
    margin-bottom: 35px;
    background: #f8f9fa;
}

.detayresim img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.8s cubic-bezier(0.2, 0, 0.2, 1);
}

.detayresim:hover img {
    transform: scale(1.05);
}

/* Sayfa Detay Başlıkları */
.sayfadetay h2, 
.sayfadetay h3, 
.sayfadetay h4, 
.sayfadetay h5 {
    font-size: 22px;
    font-weight: 700;
    color: #1d2a48;
    margin-top: 30px;
    margin-bottom: 20px;
    line-height: 1.4;
}

/* Sayfa Detay Metin Stili */
.sayfadetay p {
    font-size: 15px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 25px;
    font-weight: 300;
}

/* İçindekiler Listesi (Table of Contents) - Compact */
#baslik-listesi {
    padding: 20px 25px !important;
    margin: 30px 0 !important;
    background: #f4f7fa;
    border: 1px solid rgba(29, 42, 72, 0.08);
    position: relative;
    border-radius: 12px;
}

#baslik-listesi span {
    display: block;
    font-size: 18px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 15px;
    color: #1d2a48;
    position: relative;
    padding-bottom: 8px;
}

#baslik-listesi span::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 3px;
    background: #eaa51b;
    border-radius: 50px;
}

#baslik-listesi li {
    list-style: none !important;
    margin-bottom: 2px !important;
}

#baslik-listesi li a {
    display: inline-flex;
    align-items: center;
    color: #4a5568;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    padding: 3px 0;
}

#baslik-listesi li a::before {
    content: "\f105";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 11px;
    margin-right: 10px;
    color: #eaa51b;
    transition: transform 0.3s ease;
}

#baslik-listesi li a:hover {
    color: #1d2a48;
    padding-left: 5px;
}

#baslik-listesi li a:hover::before {
    transform: translateX(3px);
}

/* Sayfa Detay Liste Tasarımı */
.sayfadetay ul {
    list-style: none;
    padding: 0;
    margin: 25px 0;
}

.sayfadetay ul li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 15px;
    font-size: 15px;
    line-height: 1.7;
    color: #4a5568;
    font-weight: 300;
}

.sayfadetay ul li::before {
    content: "\f058";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 3px;
    color: #eaa51b;
    font-size: 18px;
    transition: transform 0.3s ease;
}

.sayfadetay ul li:hover::before {
    transform: scale(1.2);
}

.sayfadetay ul li strong {
    color: #1d2a48;
    font-weight: 700;
    margin-right: 5px;
}
