/*
Theme Name: GurSu
Theme URI: https://gur-su.com
Author: GurSu Team
Author URI: https://gur-su.com
Description: GurSu Modüler Su Depolama Sistemleri kurumsal teması
Version: 1.0
License: GNU General Public License v2 or later
Text Domain: gursu
*/

/* Genel Stiller */
:root {
    --primary-color: #1e4894;
    --secondary-color: #31c5ff;
    --accent-color: #0fa11c;
    --text-color: #212529;
    --light-gray: #f8f9fa;
    --dark-gray: #343a40;
    --border-color: #e1e1e1;
    --heading-color: #1e4894;
    --footer-bg: #1e4894;
    --footer-text: #ffffff;
    --transition: all 0.3s ease;
}

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

body {
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-color);
    overflow-x: hidden;
    background-color: #fff;
    background-image: url('images/paslanmaz-modul-1.jpg');
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
}

/* Ekstra butonları tamamen gizle - tüm özellikler güçlendirildi */
body>button:not(#mobile-menu-toggle) {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    position: absolute !important;
    left: -9999px !important;
    width: 0 !important;
    height: 0 !important;
    overflow: hidden !important;
    pointer-events: none !important;
    z-index: -999 !important;
    clip: rect(0, 0, 0, 0) !important;
    clip-path: inset(50%) !important;
}

body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.9);
    z-index: -1;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    color: var(--heading-color);
    line-height: 1.3;
    margin-bottom: 1rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--secondary-color);
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Modern Buton Stilleri */
.btn {
    border-radius: 50px;
    padding: 12px 24px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, #1e4894, #3a6fd8);
    color: white;
    border: none;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #3a6fd8, #1e4894);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(30, 72, 148, 0.3);
}

.btn-secondary {
    background: #ffffff;
    color: #1e4894;
    border: 1px solid #dee2e6;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-secondary:hover {
    color: #1e4894;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.katalog-btn {
    position: relative;
    padding-right: 35px;
}

.katalog-btn:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: rgba(30, 72, 148, 0.1);
    transition: all 0.3s ease;
    z-index: -1;
    border-radius: 50px;
}

.katalog-btn:hover:after {
    width: 100%;
}

.katalog-btn i {
    margin-right: 8px;
    transition: all 0.3s ease;
}

.katalog-btn:hover i {
    transform: scale(1.2);
}

/* Header Stilleri */
.main-header {
    background-color: rgba(255, 255, 255, 0.95);
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 100;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.site-logo {
    display: block;
    padding: 5px 0;
    z-index: 100;
}

.site-logo img {
    max-height: 70px;
    width: auto;
    display: block;
}

/* Ana Menü Stilleri */
.main-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-menu>li {
    position: relative;
    margin-right: 20px;
}

.main-menu>li>a {
    display: block;
    padding: 10px 15px;
    font-weight: 500;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    transition: var(--transition);
}

.main-menu>li>a:hover {
    color: var(--secondary-color);
}

/* Mobil Menü Stilleri - Basıla Tutma Sorununu Çözme */
#mobile-menu-toggle {
    display: none;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 9999;
    padding: 0;
    outline: none;
    transition: all 0.3s ease;
    position: absolute;
    right: 50%;
    transform: translateX(50%);
    top: 20px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    -webkit-tap-highlight-color: transparent;
    transform: translateX(50%) translateZ(0);
    touch-action: manipulation;
}

#mobile-menu-toggle i {
    font-size: 24px;
    font-weight: 900;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
}

#mobile-menu-toggle.active {
    background-color: var(--secondary-color);
    transform: translateX(50%) rotate(90deg);
}

/* Üst çubuk dil seçiciyi gizle */
.language-selector {
    display: none !important;
}

.menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1900;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.menu-overlay.active {
    display: block;
    opacity: 1;
}

/* Mobil menü responsive stilleri - Geliştirilmiş */
@media (max-width: 991px) {
    .main-navigation {
        position: static;
    }

    #mobile-menu-toggle {
        display: flex !important;
        right: 50%;
        transform: translateX(50%);
    }

    #mobile-menu-toggle i {
        color: white !important;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3) !important;
    }

    #mobile-menu-toggle.active {
        background-color: var(--secondary-color) !important;
        transform: rotate(90deg);
    }

    .main-navigation .main-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        padding: 80px 20px 20px;
        transform: translateX(-100%);
        transition: transform 0.3s ease-in-out;
        z-index: 998;
    }

    .main-navigation .main-menu.active {
        transform: translateX(0);
    }

    .main-navigation .main-menu>li {
        margin: 0;
        text-align: center;
    }

    .main-navigation .main-menu>li>a {
        padding: 15px;
        font-size: 18px;
        display: block;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }

    .menu-open {
        overflow: hidden;
    }

    #mobile-menu-close {
        position: absolute;
        top: 15px;
        right: 15px;
        background: transparent;
        border: none;
        font-size: 24px;
        color: var(--primary-color);
        cursor: pointer;
        z-index: 9950;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        transition: transform 0.3s ease, background-color 0.3s ease;
    }

    #mobile-menu-close:hover {
        background-color: rgba(0, 0, 0, 0.05);
        transform: rotate(90deg);
    }

    /* Alt menü stilleri */
    .submenu-toggle {
        display: inline-block;
        margin-left: 5px;
        font-size: 14px;
        transition: transform 0.3s ease;
        width: 24px;
        height: 24px;
        text-align: center;
        line-height: 24px;
        border-radius: 50%;
        background-color: rgba(0, 0, 0, 0.05);
    }

    .submenu-toggle i {
        transition: transform 0.3s ease;
    }

    .sub-menu.active+a .submenu-toggle i {
        transform: rotate(180deg);
    }
}

/* Hero Slider */
.hero-slider {
    position: relative;
    overflow: hidden;
}

.slide {
    position: relative;
    height: 600px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.slide-content {
    position: relative;
    z-index: 10;
    color: #fff;
    max-width: 650px;
    animation: fadeInUp 1s ease;
}

.slide-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #fff;
}

.slide-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hizmetler Bölümü */
.services-section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--heading-color);
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 20px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.service-image {
    height: 250px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.service-content {
    padding: 25px;
}

.service-content h3 {
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.service-content p {
    margin-bottom: 20px;
    color: #666;
}

/* İlgi Çekici Bölüm */
.cta-section {
    padding: 100px 0;
    background-color: var(--primary-color);
    color: #fff;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 20px;
}

.cta-content p {
    max-width: 700px;
    margin: 0 auto 30px;
    font-size: 1.1rem;
}

/* Ürünler Bölümü */
.products-section {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    justify-items: center;
}

.product-card {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.product-image {
    height: 300px;
    overflow: hidden;
    position: relative;
    width: 100%;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: var(--transition);
    padding: 15px;
}

.product-content {
    flex: 1;
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-content h3 {
    text-align: center;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.product-content p {
    margin-bottom: 20px;
    color: #666;
    flex: 1;
}

.product-content .btn {
    align-self: center;
}

/* Blog Bölümü */
.blog-section {
    padding: 80px 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.blog-card {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.blog-image {
    height: 200px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.blog-content {
    padding: 25px;
}

.blog-date {
    color: #666;
    margin-bottom: 10px;
    display: block;
    font-size: 14px;
}

.blog-content h3 {
    margin-bottom: 10px;
    font-size: 1.25rem;
}

.blog-content p {
    margin-bottom: 20px;
    color: #666;
}

/* Footer Stilleri */
.footer {
    background-color: var(--footer-bg);
    color: var(--footer-text);
    padding: 70px 0 0;
}

.footer-widgets {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-widget h3 {
    color: #fff;
    margin-bottom: 25px;
    font-size: 1.5rem;
    position: relative;
    padding-bottom: 15px;
}

.footer-widget h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--secondary-color);
}

.footer-widget ul {
    list-style: none;
}

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

.footer-widget ul li a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.footer-widget ul li a:hover {
    color: #fff;
    padding-left: 5px;
}

.footer-contact-info p {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.footer-contact-info i {
    margin-right: 10px;
    color: var(--secondary-color);
    font-size: 18px;
    margin-top: 4px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 4px;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--secondary-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

/* İletişim Sayfası */
.page-header {
    display: none;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    list-style: none;
}

.breadcrumb li {
    margin: 0 10px;
    position: relative;
    font-size: 16px;
}

.breadcrumb li:not(:last-child)::after {
    content: '/';
    position: absolute;
    right: -15px;
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
}

.breadcrumb a:hover {
    color: #fff;
}

.contact-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.contact-section .section-title {
    text-align: center;
    margin-bottom: 50px;
}

.contact-section .section-title h2 {
    position: relative;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    padding-bottom: 15px;
}

.contact-section .section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
}

.contact-section .section-title p {
    max-width: 700px;
    margin: 0 auto;
    color: #666;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.contact-form-box,
.contact-info-box {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 30px;
    transition: all 0.4s ease;
}

.contact-form-box:hover,
.contact-info-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.form-header,
.info-header {
    text-align: center;
    margin-bottom: 30px;
}

.form-icon,
.info-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background-color: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 5px 15px rgba(30, 72, 148, 0.3);
}

.form-header h3,
.info-header h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.form-header p,
.info-header p {
    color: #666;
}

/* Floating Label Form */
.floating-label {
    position: relative;
    margin-bottom: 25px;
}

.floating-label input,
.floating-label select,
.floating-label textarea {
    width: 100%;
    padding: 15px;
    border: none;
    border-bottom: 2px solid #e1e1e1;
    background-color: transparent;
    font-size: 16px;
    outline: none;
    transition: all 0.3s ease;
}

.floating-label label {
    position: absolute;
    top: 15px;
    left: 15px;
    color: #666;
    font-size: 16px;
    pointer-events: none;
    transition: all 0.3s ease;
}

.floating-label input:focus,
.floating-label select:focus,
.floating-label textarea:focus,
.floating-label input:not(:placeholder-shown),
.floating-label select:not([value=""]),
.floating-label textarea:not(:placeholder-shown) {
    border-bottom-color: var(--primary-color);
}

.floating-label input:focus+label,
.floating-label select:focus+label,
.floating-label textarea:focus+label,
.floating-label input:not(:placeholder-shown)+label,
.floating-label select:not([value=""])+label,
.floating-label textarea:not(:placeholder-shown)+label {
    top: -10px;
    left: 0;
    font-size: 14px;
    color: var(--primary-color);
    font-weight: 500;
}

.floating-label input,
.floating-label select,
.floating-label textarea {
    padding: 15px;
    border-radius: 5px;
    border: 1px solid #e1e1e1;
}

.floating-label input:placeholder-shown,
.floating-label textarea:placeholder-shown {
    border-color: #e1e1e1;
}

.floating-label input::placeholder,
.floating-label textarea::placeholder {
    color: transparent;
}

/* Form Check */
.form-check {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.form-check input[type="checkbox"] {
    margin-right: 10px;
    margin-top: 4px;
}

.form-check label {
    font-size: 14px;
    color: #666;
}

/* Submit Button */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    width: 100%;
}

.btn-primary:hover {
    background-color: #1a3f7f;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(30, 72, 148, 0.3);
}

.btn-primary i {
    transition: transform 0.3s ease;
}

.btn-primary:hover i {
    transform: translateX(5px);
}

/* Contact Info Items */
.contact-info-items {
    margin-bottom: 30px;
}

.contact-info-item {
    display: flex;
    margin-bottom: 25px;
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(30, 72, 148, 0.1);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-info-item:hover .contact-info-icon {
    background-color: var(--primary-color);
    color: #fff;
    transform: rotateY(180deg);
}

.contact-info-content h4 {
    margin-bottom: 5px;
    font-size: 18px;
    color: #333;
}

.contact-info-content p,
.contact-info-content a {
    color: #666;
    line-height: 1.6;
    transition: all 0.3s ease;
}

.contact-info-content a:hover {
    color: var(--primary-color);
}

/* Social Media */
.contact-info-box .social-links {
    margin-top: 30px;
}

.contact-info-box .social-links h4 {
    font-size: 18px;
    color: #333;
    margin-bottom: 15px;
}

.social-icons {
    display: flex;
    gap: 10px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #f5f5f5;
    color: #333;
    border-radius: 50%;
    font-size: 16px;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    color: #fff;
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.social-icons a[title="Facebook"]:hover {
    background-color: #3b5998;
}

.social-icons a[title="Twitter"]:hover {
    background-color: #1da1f2;
}

.social-icons a[title="Instagram"]:hover {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-icons a[title="LinkedIn"]:hover {
    background-color: #0077b5;
}

.social-icons a[title="YouTube"]:hover {
    background-color: #ff0000;
}

.social-icons a[title="Telefon"]:hover,
.social-links a[title="Telefon"]:hover {
    background-color: #25d366;
}

.social-links a[title="Telefon"] {
    background-color: rgba(37, 211, 102, 0.2);
}

.social-links a[title="Telefon"]:hover {
    background-color: #25d366;
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

/* Google Map */
.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

.map-container:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.map-title {
    background-color: var(--primary-color);
    color: #fff;
    padding: 15px 20px;
    text-align: center;
}

.map-title h3 {
    margin: 0;
    font-size: 1.5rem;
    color: #fff;
}

.map-container iframe {
    width: 100%;
    height: 450px;
    border: none;
    display: block;
    transition: opacity 0.3s ease;
    filter: grayscale(20%);
}

.map-container:hover iframe {
    filter: grayscale(0%);
}

/* Animations */
.animated {
    animation-duration: 1s;
    animation-fill-mode: both;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

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

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

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

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fadeInLeft {
    animation-name: fadeInLeft;
}

.fadeInRight {
    animation-name: fadeInRight;
}

.fadeInUp {
    animation-name: fadeInUp;
}

/* Responsive İletişim Stilleri */
@media (max-width: 992px) {
    .contact-section .section-title h2 {
        font-size: 2.2rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-form-box,
    .contact-info-box {
        margin-bottom: 30px;
    }

    .submenu-toggle {
        position: absolute;
        right: 0;
        padding: 12px;
        top: 0;
        z-index: 20;
    }

    .main-menu>li>a {
        padding-right: 30px;
        /* Toggle için alan bırak */
    }

    /* Alt menülerin açılması için stiller */
    .sub-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding: 0 0 0 20px;
        display: none;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        background-color: #f8f9fa;
        border-radius: 5px;
        margin-top: 5px;
    }

    .main-menu li:hover>.sub-menu {
        display: none;
    }

    .main-menu li .sub-menu.active {
        display: block;
        padding: 10px;
        max-height: 300px;
    }

    .sub-menu li a {
        padding: 8px 10px;
        display: block;
        font-size: 15px;
        border-radius: 3px;
    }

    .sub-menu li a:hover {
        background-color: rgba(30, 72, 148, 0.1);
    }

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

    /* Menü kapatma düğmesi */
    .mobile-menu-close {
        position: absolute;
        top: 15px;
        right: 15px;
        font-size: 24px;
        color: var(--primary-color);
        background: transparent;
        border: none;
        cursor: pointer;
    }
}

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

    .contact-section .section-title h2 {
        font-size: 2rem;
    }

    .form-header h3,
    .info-header h3 {
        font-size: 1.5rem;
    }

    .map-container iframe {
        height: 350px;
    }
}

@media (max-width: 576px) {
    .contact-section .section-title h2 {
        font-size: 1.8rem;
    }

    .form-icon,
    .info-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }

    .floating-label input,
    .floating-label select,
    .floating-label textarea {
        font-size: 15px;
    }

    .map-container iframe {
        height: 300px;
    }
}

/* Responsive Stiller */
@media (max-width: 1200px) {
    .slide-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 991px) {
    #mobile-menu-toggle {
        display: block;
        position: relative;
        z-index: 1500;
    }

    .main-navigation .main-menu {
        position: fixed;
        top: 0;
        right: -300px;
        width: 280px;
        height: 100vh;
        background-color: #fff;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        flex-direction: column;
        padding: 60px 20px 20px;
        transition: all 0.3s ease;
        z-index: 2000;
        overflow-y: auto;
        display: block;
    }

    .main-navigation .main-menu.active {
        right: 0;
        box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    }

    .menu-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 1900;
    }

    .menu-overlay.active {
        display: block;
    }

    .menu-open {
        overflow: hidden;
    }
}

@media (max-width: 768px) {
    .top-bar-container {
        flex-direction: column;
        gap: 10px;
    }

    .slide {
        height: 400px;
    }

    .slide-content {
        max-width: 100%;
        text-align: center;
    }

    .slide-title {
        font-size: 1.8rem;
    }

    .footer-widgets {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .contact-info {
        flex-wrap: wrap;
    }

    .contact-info a {
        margin-bottom: 10px;
    }

    .slide {
        height: 350px;
    }

    .slide-title {
        font-size: 1.5rem;
    }
}

/* Ürünlerimiz Sayfası Stilleri */
.product-section-title {
    position: relative;
    margin-bottom: 30px;
    color: #00559d;
    padding-bottom: 15px;
}

.product-section-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #00559d;
}

.product-gallery {
    margin: 30px 0;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    padding: 15px;
    border-radius: 5px;
}

.product-image {
    transition: transform 0.3s ease;
    overflow: hidden;
    border-radius: 5px;
}

.product-image img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.product-image:hover img {
    transform: scale(1.05);
}

.product-image figcaption {
    text-align: center;
    padding: 10px 0;
    font-weight: 500;
    color: #555;
}

.product-features {
    background-color: #f5f9fd;
    padding: 20px 30px;
    border-left: 4px solid #00559d;
    margin: 20px 0;
}

.product-features li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
}

.product-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #00559d;
    font-weight: bold;
}

.product-features-columns {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 5px;
    margin-top: 20px;
}

/* Ürün sayfası buton stilleri */
.wp-block-button__link {
    background-color: #00559d;
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.wp-block-button__link:hover {
    background-color: #003d70;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 85, 157, 0.2);
}

/* Sayfa başlık stilini güçlendir */
.page-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #003d70;
}

@media (max-width: 768px) {
    .product-gallery {
        margin: 20px 0;
    }

    .product-features {
        padding: 15px 20px;
    }

    .page-title {
        font-size: 2rem;
    }
}

/* Mobil Menü Kapatma İkonu */
.mobile-menu-toggle .fa-times {
    color: var(--primary-color);
}

.mobile-menu-toggle:hover {
    color: var(--primary-color);
}

.main-menu.active {
    left: 0;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

/* Sayfa İçeriği Stilleri */
.page-wrapper {
    padding: 60px 0;
    position: relative;
    z-index: 2;
}

.page-header {
    margin-bottom: 30px;
    position: relative;
}

.page-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.page-title:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
}

.page-content {
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 8px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    padding: 30px;
    position: relative;
    z-index: 2;
    backdrop-filter: blur(10px);
}

.page-content-inner {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-color);
}

.page-content-inner h2,
.page-content-inner h3,
.page-content-inner h4 {
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.page-content-inner p {
    margin-bottom: 20px;
}

.page-content-inner ul,
.page-content-inner ol {
    margin-bottom: 20px;
    padding-left: 20px;
}

.page-content-inner li {
    margin-bottom: 10px;
}

.page-content-inner img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
    margin: 15px 0;
}

/* Responsive Sayfa Stilleri */
@media (max-width: 768px) {
    .page-wrapper {
        padding: 40px 0;
    }

    .page-title {
        font-size: 2rem;
    }

    .page-content {
        padding: 20px;
    }
}

.site-content {
    position: relative;
    min-height: 100vh;
    z-index: 1;
}

/* Mobil Cihazlar İçin Özel Stiller */
@media (max-width: 768px) {
    body {
        background-attachment: scroll;
        /* Mobil cihazlarda fixed ayarı sorun çıkarabilir */
        background-size: cover;
        background-position: center center;
    }

    .page-content {
        background-color: rgba(255, 255, 255, 0.97);
        margin: 0;
        border-radius: 0;
        padding: 20px 15px;
        box-shadow: none;
    }

    .page-wrapper {
        padding: 0;
    }

    .site-content {
        background-color: rgba(255, 255, 255, 0.95);
    }

    /* Mobil görünümde başlıkların arka planını düzelt */
    .page-header {
        background-color: var(--primary-color);
        margin: 0 0 20px;
        padding: 30px 15px;
        border-radius: 0;
        text-align: center;
    }

    .page-title {
        color: #fff;
        margin-bottom: 0;
        font-size: 2rem;
    }

    .page-title:after {
        display: none;
    }

    /* Mobil ana sayfa tasarımı */
    .hero-slider {
        margin-top: -15px;
    }

    .slide {
        height: 300px;
    }

    .slide-title {
        font-size: 1.8rem;
    }

    /* Hizmetler bölümü başlıkları */
    .section-title h2 {
        font-size: 1.8rem;
    }

    /* Mobil menü düzenlemesi */
    .mobile-menu-toggle {
        font-size: 28px;
        padding: 10px;
    }
}

/* iPhone ve küçük mobil cihazlar için ek düzenlemeler */
@media (max-width: 480px) {
    body {
        background-image: url('images/paslanmaz-modul-1.jpg');
        /* Arka planı ekleyelim */
        background-size: cover;
        background-position: center;
        background-attachment: scroll;
        background-color: #f8f9fa;
    }

    .page-content {
        box-shadow: none;
    }

    /* Küçük cihazlarda başlık boyutunu küçült */
    .page-title {
        font-size: 1.8rem;
    }

    /* Ana sayfa başlık alanı */
    .slide {
        height: 250px;
    }

    .slide-title {
        font-size: 1.5rem;
    }
}

/* Anasayfa, İletişim ve Ürünler sayfalarındaki mavi çerçeveleri kaldır */
.wp-block-group h1,
.wp-block-group h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    font-weight: 700;
}

/* Önceki büyük mavi alanları kaldır */
.contact-page-wrapper section.page-header,
body.page-template-default .wp-block-columns:first-child,
body.page .wp-block-group:first-child h1,
body.page div:first-child>h1 {
    display: none;
}

/* Sayfaların içerik stillerini eşitle */
.page-content {
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 8px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    padding: 30px;
    position: relative;
    z-index: 2;
    backdrop-filter: blur(10px);
    margin-top: 20px;
}

/* İçerik düzenlemeleri */
.page-content-inner {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-color);
}

/* Responsive özellikler */
@media (max-width: 768px) {

    /* Mobil görünümde başlıkların arka planını kaldır */
    .page-header {
        background-color: transparent;
        margin: 0 0 20px;
        padding: 0;
        border-radius: 0;
        text-align: center;
        display: none;
    }

    .page-title {
        color: var(--primary-color);
        margin-bottom: 0;
        font-size: 2rem;
    }
}

/* Video Bölümü Stilleri */
.hero-video {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    margin-bottom: 50px;
}

.video-container {
    position: relative;
    height: 100%;
    width: 100%;
}

#home-intro-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.video-overlay .slide-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.video-overlay .slide-title {
    color: #fff;
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

.video-overlay .slide-description {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 30px;
    line-height: 1.6;
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

/* Mobil Cihazlar için Video Düzenlemeleri */
@media (max-width: 768px) {
    .hero-video {
        height: 80vh;
    }

    .video-overlay .slide-title {
        font-size: 2rem;
    }

    .video-overlay .slide-description {
        font-size: 1rem;
        max-width: 95%;
    }
}

/* Video oynatma kontrolü */
#video-controls {
    position: absolute;
    bottom: 20px;
    right: 20px;
    z-index: 3;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}

#video-controls:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

/* Hizmetler Sayfası Stilleri */
.services-group {
    margin-bottom: 40px;
}

.services-row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
}

.service-item {
    padding: 15px;
    width: 50%;
    box-sizing: border-box;
}

.service-box {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.service-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

.service-box:hover .service-image img {
    transform: scale(1.05);
}

.service-content {
    padding: 20px;
}

.service-content h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.6rem;
}

.service-content p {
    color: var(--text-color);
    margin-bottom: 15px;
    line-height: 1.6;
}

.service-content ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.service-content ul li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 8px;
    color: var(--text-color);
}

.service-content ul li:before {
    content: "\f00c";
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--accent-color);
    font-size: 14px;
}

.consulting-section {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    margin-top: 40px;
}

.consulting-services-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 20px 0;
    padding: 0;
    list-style-type: none;
}

.consulting-services-list li {
    position: relative;
    padding: 10px 15px 10px 30px;
    margin: 8px;
    background-color: white;
    border-radius: 30px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    font-weight: 500;
}

.consulting-services-list li:before {
    content: "\f058";
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 10px;
    top: 11px;
    color: var(--accent-color);
}

.text-center {
    text-align: center;
}

@media (max-width: 768px) {
    .service-item {
        width: 100%;
    }

    .service-image {
        height: 180px;
    }

    .consulting-services-list li {
        width: 100%;
        margin: 5px 0;
    }
}

/* PDF Görüntüleyici Stilleri */
.pdf-viewer-container {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 1rem;
    background: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
}

.pdf-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 1rem;
    background: #f5f5f5;
    border-radius: 5px;
}

.pdf-controls .button {
    padding: 0.5rem 1rem;
    background: #007bff;
    color: #fff;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    transition: background 0.3s;
}

.pdf-controls .button:hover {
    background: #0056b3;
}

.pdf-zoom-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.pdf-zoom-controls .button {
    width: 40px;
    height: 40px;
    background: #6c757d;
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s;
}

.pdf-zoom-controls .button:hover {
    background: #545b62;
}

.pdf-viewer {
    margin: 2rem 0;
    text-align: center;
}

.pdf-page {
    display: inline-block;
    margin: 0 auto;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.pdf-description {
    margin-top: 2rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 5px;
}

.pdf-error {
    padding: 2rem;
    text-align: center;
    color: #dc3545;
    background: #f8d7da;
    border-radius: 5px;
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .pdf-controls {
        flex-direction: column;
        gap: 0.5rem;
    }

    .pdf-controls .button {
        width: 100%;
    }

    .pdf-page {
        max-width: 100%;
        height: auto;
    }
}

.btn-accent {
    background: linear-gradient(135deg, #ff6b6b, #f03e3e);
    color: white;
    border: none;
}

.btn-accent:hover {
    background: linear-gradient(135deg, #f03e3e, #ff6b6b);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(240, 62, 62, 0.3);
}

/* Çalışma Adımları Stilleri */
.work-steps-section {
    margin: 80px 0;
    padding: 40px 0;
    background-color: #f8f9fa;
    border-radius: 10px;
}

.work-steps-container {
    padding: 40px 20px;
}

.work-steps-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.work-step {
    flex: 1;
    min-width: 200px;
    text-align: center;
    padding: 20px;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    font-weight: bold;
    color: white;
}

/* Adım numaralarına farklı renkler ver */
.work-step:nth-child(1) .step-number {
    background-color: #e74c3c;
    /* Kırmızı */
}

.work-step:nth-child(3) .step-number {
    background-color: #1e4894;
    /* Mavi */
}

.work-step:nth-child(5) .step-number {
    background-color: #223b73;
    /* Koyu Mavi */
}

.work-step:nth-child(7) .step-number {
    background-color: #0d2357;
    /* En Koyu Mavi */
}

.work-step h3 {
    margin-bottom: 15px;
    font-size: 20px;
    color: #333;
}

.work-step p {
    color: #666;
    font-size: 15px;
    line-height: 1.5;
}

.step-divider {
    width: 80px;
    height: 2px;
    background: #ddd;
    position: relative;
    flex-shrink: 1;
}

.step-divider::before {
    content: "";
    position: absolute;
    top: -3px;
    right: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ddd;
}

/* Mobil için stillleme */
@media (max-width: 992px) {
    .work-steps-row {
        flex-direction: column;
    }

    .work-step {
        width: 100%;
        margin-bottom: 30px;
    }

    .step-divider {
        width: 2px;
        height: 40px;
        margin: 0 auto;
    }

    .step-divider::before {
        top: auto;
        right: auto;
        bottom: 0;
        left: -3px;
    }
}

/* İstatistik Bölümü Stilleri */
.stats-section {
    padding: 80px 0;
    background-color: #f8f9fa;
    text-align: center;
}

.stats-header {
    max-width: 800px;
    margin: 0 auto 50px;
}

.stats-subtitle {
    color: #ff6b6b;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 15px;
}

.stats-title {
    color: #0d2357;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.stats-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.stats-item {
    flex: 0 0 300px;
    background-color: #fff;
    border-radius: 10px;
    padding: 40px 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.stats-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.stats-number {
    font-size: 60px;
    font-weight: 800;
    color: #0d2357;
    margin-bottom: 10px;
}

.stats-label {
    font-size: 18px;
    color: #555;
    font-weight: 500;
}

/* Mobil için stilleme */
@media (max-width: 768px) {
    .stats-title {
        font-size: 32px;
    }

    .stats-container {
        flex-direction: column;
        align-items: center;
    }

    .stats-item {
        width: 100%;
        max-width: 300px;
    }
}

/* Referanslar Bölümü */
.references-section {
    padding: 80px 0;
    background-color: #f8f9fa;
    position: relative;
}

.references-slider {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.reference-item {
    flex: 0 0 calc(25% - 30px);
    margin: 15px;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.reference-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.reference-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.reference-info {
    padding: 20px;
    text-align: center;
}

.reference-info h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.reference-info p {
    color: #666;
    font-size: 14px;
    margin: 0;
}

@media (max-width: 992px) {
    .reference-item {
        flex: 0 0 calc(50% - 30px);
    }
}

@media (max-width: 576px) {
    .reference-item {
        flex: 0 0 100%;
        margin: 15px 0;
    }
}

/* Üst Çubuk Stil Düzenlemeleri */
.top-bar {
    background-color: var(--primary-color);
    color: #fff;
    padding: 10px 0;
    font-size: 14px;
}

.top-bar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info {
    display: flex;
    align-items: center;
}

.contact-info a {
    color: #fff;
    margin-right: 20px;
    display: flex;
    align-items: center;
}

/* Telefon ve e-posta arasına 2px mesafe ekle */
.contact-info a:first-child {
    margin-right: 22px;
}

.contact-info i {
    margin-right: 5px;
}