/* Mobil Responsive CSS */
:root {
    --primary-color: #0053a6;
    --primary-light: #0066cc;
    --primary-dark: #003d7a;
    --secondary-color: #333;
    --light-color: #fff;
    --dark-color: #000;
    --gray-color: #f5f5f5;
    --text-color: #333;
    --border-radius: 4px;
    --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    height: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: #fff !important;
    min-height: 100%;
    display: flex;
    flex-direction: column;
}

.container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 15px;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
}

/* Ana İçerik */
.main-content {
    padding-top: 110px; /* Mobil header yüksekliği (topbar + main header) */
    min-height: 100vh;
}

.slider-section {
    margin-top: -110px; /* Header'ın altından başlaması için */
    padding-top: 110px; /* İçeriğin header'ın altında kalması için */
}

.content-wrapper {
    max-width: 100%;
    margin: 0 auto;
    padding: 20px 15px;
}

/* Mobil Header Stilleri */
.mobile-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: #002290;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: var(--transition);
}

.mobile-topbar {
    background-color: #001a6b;
    padding: 8px 0;
    font-size: 11px;
    overflow: hidden;
}

.mobile-topbar-content {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 15px;
    flex-wrap: wrap;
    gap: 10px;
}

.mobile-contact-info {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.mobile-phone,
.mobile-email {
    color: #fff;
    text-decoration: none;
    font-size: 10px;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: var(--transition);
}

.mobile-phone:hover,
.mobile-email:hover {
    color: #ffe000;
}

.mobile-quick-links {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.mobile-link {
    color: #fff;
    text-decoration: none;
    font-size: 9px;
    display: flex;
    align-items: center;
    gap: 3px;
    padding: 2px 6px;
    border-radius: 3px;
    transition: var(--transition);
}

.mobile-link:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffe000;
}

.mobile-main-header {
    background-color: #002290;
    padding: 10px 0;
}

.mobile-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 15px;
}

.mobile-logo a {
    display: flex;
    align-items: center;
}

.mobile-logo img {
    height: 45px;
    width: auto;
    object-fit: contain;
}

.mobile-header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.mobile-action-btn {
    width: 35px;
    height: 35px;
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.mobile-action-btn:hover {
    background-color: rgba(255, 255, 255, 0.2);
    color: #ffe000;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.location-btn:hover {
    background-color: rgba(255, 224, 0, 0.2);
}

.phone-btn:hover {
    background-color: rgba(34, 197, 94, 0.2);
}

.mobile-menu-toggle {
    background: transparent;
    border: none;
    color: #fff;
    cursor: pointer;
    padding: 6px;
    border-radius: 4px;
    transition: var(--transition);
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -8px;
}

.mobile-menu-toggle:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.menu-icon {
    position: relative;
    width: 18px;
    height: 2px;
    background-color: #fff;
    display: block;
    transition: var(--transition);
}

.menu-icon::before,
.menu-icon::after {
    content: '';
    position: absolute;
    width: 18px;
    height: 2px;
    background-color: #fff;
    transition: var(--transition);
    left: 0;
}

.menu-icon::before {
    top: -5px;
}

.menu-icon::after {
    bottom: -5px;
}

/* Mobil Yan Menü */
.mobile-side-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background-color: #fff;
    z-index: 2000;
    transition: var(--transition);
    overflow-y: auto;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
}

.mobile-side-menu.active {
    right: 0;
}

.mobile-side-menu-inner {
    padding: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.mobile-side-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.mobile-side-menu-logo img {
    height: 60px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 3px 8px rgba(0, 0, 0, 0.5));
}

.mobile-side-menu-close {
    background: none;
    border: none;
    color: #333;
    font-size: 24px;
    cursor: pointer;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.mobile-side-menu-close:hover {
    background-color: #f5f5f5;
    color: #002290;
}

.mobile-side-menu-nav {
    flex: 1;
}

.mobile-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu-list li {
    margin-bottom: 5px;
}

.mobile-menu-list a {
    display: block;
    padding: 12px 15px;
    color: #333;
    text-decoration: none;
    border-radius: 8px;
    transition: var(--transition);
    font-weight: 500;
}

.mobile-menu-list a:hover {
    background-color: #f5f5f5;
    color: #002290;
}

.mobile-menu-dropdown {
    position: relative;
}

.mobile-dropdown-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-dropdown-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    padding-left: 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.mobile-menu-dropdown.active .mobile-dropdown-menu {
    max-height: 1200px;
}

.mobile-dropdown-menu a {
    padding: 8px 15px;
    font-size: 14px;
    color: #666;
}

.mobile-submenu-title {
    padding: 12px 15px 8px 15px;
    font-size: 12px;
    font-weight: 600;
    color: #002290;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 1px solid #eee;
    margin-bottom: 5px;
    background-color: #f8f9fa;
}

.mobile-submenu-title:first-child {
    margin-top: 10px;
}

.mobile-side-menu-footer {
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid #eee;
    text-align: center;
}

.mobile-social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 15px;
}

.mobile-social-link {
    width: 40px;
    height: 40px;
    background-color: #002290;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    transition: var(--transition);
}

.mobile-social-link:hover {
    background-color: #001a6b;
    transform: translateY(-2px);
}

.mobile-contact-footer p {
    color: #666;
    font-size: 12px;
    margin-bottom: 10px;
}

.mobile-contact-footer a {
    display: block;
    color: #002290;
    text-decoration: none;
    font-size: 13px;
    margin-bottom: 5px;
    font-weight: 600;
}

.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1500;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

.header-parts-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    width: 100%;
    position: relative;
    flex-wrap: nowrap;
}

.header-part {
    display: flex;
    align-items: center;
    height: 100%;
}

.left-part {
    width: 70%;
    background-color: #002290;
    backdrop-filter: blur(5px);
    border-radius: 0;
    padding: 0 15px;
    justify-content: flex-start;
}

.middle-part {
    display: none;
}

.right-part {
    width: 30%;
    background-color: #002290;
    backdrop-filter: blur(5px);
    border-radius: 0;
    padding: 0 15px;
    justify-content: flex-end;
}

/* Logo Mobil */
.logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    padding: 0;
    margin: 0;
}

.logo-link {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    color: var(--light-color);
    width: 100%;
}

.logo img {
    height: 50px;
    max-width: 100%;
    object-fit: contain;
    margin: 0;
}

/* Header Butonları Mobil */
.header-buttons {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin: 0;
    padding: 0;
}

.contact-button {
    display: none;
}

.mobile-menu-toggle {
    background: transparent;
    border: none;
    width: 35px;
    height: 35px;
    margin: 0;
    padding: 0;
    cursor: pointer;
    position: relative;
    display: inline-block;
    color: var(--light-color);
    font-size: 20px;
}

.menu-icon {
    position: relative;
    width: 20px;
    height: 2px;
    background-color: var(--light-color);
    display: inline-block;
    transition: var(--transition);
}

.menu-icon::before,
.menu-icon::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 2px;
    background-color: var(--light-color);
    transition: var(--transition);
}

.menu-icon::before {
    top: -6px;
}

.menu-icon::after {
    bottom: -6px;
}

/* Yan Menü Mobil */
.side-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background-color: var(--light-color);
    z-index: 2000;
    transition: var(--transition);
    overflow-y: auto;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
}

.side-menu.active {
    right: 0;
}

.side-menu-inner {
    padding: 40px 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.side-menu-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    color: var(--text-color);
    font-size: 24px;
    cursor: pointer;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.side-menu-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.side-menu-logo img {
    height: 60px;
}

.side-menu-header h3 {
    color: var(--primary-color);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
}

.side-menu-header p {
    color: #666;
    font-size: 13px;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1500;
    display: none;
    backdrop-filter: blur(3px);
    transition: var(--transition);
}

.overlay.active {
    display: block;
}

/* Butonlar Mobil */
.btn-primary {
    display: inline-block;
    background-color: transparent;
    color: var(--light-color);
    padding: 10px 20px;
    border: 2px solid var(--light-color);
    border-radius: 25px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 12px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.4s ease;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: #002290;
    z-index: -1;
    transition: width 0.4s ease;
}

.btn-primary:hover {
    color: #ffe000;
    border-color: #002290;
}

.btn-primary:hover::before {
    width: 100%;
}

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: var(--secondary-color);
    padding: 10px 20px;
    border: 1px solid var(--secondary-color);
    border-radius: 25px;
    font-weight: 600;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.4s ease;
    font-size: 12px;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: #002290;
    z-index: -1;
    transition: width 0.4s ease;
}

.btn-secondary:hover {
    color: #ffe000;
    border-color: #002290;
}

.btn-secondary:hover::before {
    width: 100%;
}

.arrow {
    display: inline-block;
    margin-left: 8px;
}

/* Section Title Mobil */
.section-title {
    margin-bottom: 1px;
    text-align: center;
}

.section-title span {
    display: block;
    font-size: 12px;
    color: #002290;
    margin-bottom: 8px;
    font-weight: 600;
}

.section-title h2 {
    font-size: 24px;
    color: var(--secondary-color);
}

.center {
    text-align: center;
}

/* Slider Mobil */
.slider-section {
    position: relative;
    height: 100vh;
    color: var(--light-color);
    overflow: hidden;
}

.slider-container {
    position: relative;
    height: 100%;
    z-index: 1;
}

.slider-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease;
    z-index: 1;
}

.slider-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0);
    z-index: -1;
}

.slider-item.active {
    opacity: 1;
    z-index: 2;
}

.slider-content {
    max-width: 90%;
    padding: 0 15px;
}

.slider-content h2 {
    font-size: 14px;
    margin-bottom: 15px;
}

.slider-content h1 {
    font-size: 28px;
    margin-bottom: 15px;
    line-height: 1.2;
}

.slider-content p {
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.4;
}

.social-sidebar {
    display: none;
}

.slider-nav {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #ccc;
    margin: 0 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
}

.slider-dot.active {
    background-color: var(--primary-color);
}

/* Markalar Şeridi Mobil */
.brands-strip {
    background-color: #f8f8f8;
    padding: 15px 0;
    overflow: hidden;
    position: relative;
}

.brands-container {
    width: 100%;
    position: relative;
}

.brands-slider {
    overflow: hidden;
    position: relative;
}

.brands-track {
    display: flex;
    animation: scroll-brands 30s linear infinite;
    width: fit-content;
}

.brand-item {
    flex: 0 0 auto;
    padding: 0 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-item img {
    height: 30px;
    width: auto;
    object-fit: contain;
    filter: grayscale(0%);
    opacity: 1;
    transition: all 0.3s ease;
}

.brand-item:hover img {
    transform: scale(1.1);
}

@keyframes scroll-brands {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* About Section Mobil */
.about-section {
    padding: 30px 0 0 0;
    background-color: transparent !important;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    background-color: transparent !important;
}

.counter-box {
    background-color: #002290;
    color: var(--light-color);
    padding: 15px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 250px;
    width: 100%;
    max-width: 350px;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.counter-image {
    margin-bottom: 10px;
    width: 100%;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.counter-image img {
    max-width: 100%;
    max-height: 100%;
}

.counter-text h2 {
    font-size: 28px;
    margin-bottom: 5px;
    font-weight: 700;
}

.counter-text p {
    font-size: 13px;
    font-weight: 500;
    line-height: 1.3;
}

.about-image-container {
    width: 100%;
    max-width: 350px;
    background-color: transparent !important;
    padding: 0 !important;
    margin: 0 !important;
}

.about-slider {
    position: relative;
    margin-bottom: 0;
    overflow: hidden;
    width: 100%;
    background-color: transparent !important;
}

.about-slide {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease;
    background-color: transparent !important;
    padding: 0 !important;
    margin: 0 !important;
}

.about-slide.active {
    display: block;
    opacity: 1;
    background-color: transparent !important;
    padding: 0 !important;
    margin: 0 !important;
}

.about-image {
    margin-bottom: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    background-color: transparent;
    border-radius: 10px;
}

.about-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
    display: block;
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-slider-nav {
    margin-top: 10px;
    display: flex;
    justify-content: center;
    background-color: transparent !important;
}

.about-slider-nav .slider-dot {
    width: 18px;
    height: 18px;
    background-color: transparent;
    margin-right: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-slider-nav .slider-dot i {
    font-size: 14px;
    color: #ccc;
    transition: all 0.3s ease;
}

.about-slider-nav .slider-dot.active i {
    color: #ffe000;
}

.about-slider-nav .slider-dot:hover i {
    color: #ffe000;
}

.about-image-container h3 {
    font-size: 15px;
    margin: 8px 0 0 0 !important;
    padding: 0 !important;
    color: #333;
    text-align: center;
    background-color: transparent !important;
    line-height: 1.2;
}

.about-right {
    width: 100%;
    max-width: 500px;
    padding: 0;
    text-align: center;
}

.about-right .section-title {
    text-align: center;
}

.about-right p {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 15px;
}

.service-icons {
    display: flex;
    flex-wrap: wrap;
    margin: 15px 0;
    gap: 6px;
    justify-content: center;
    padding: 0 10px;
}

.service-item {
    width: calc(50% - 3px);
    margin-bottom: 6px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 8px 6px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.service-item:hover {
    background-color: rgba(0, 34, 144, 0.05);
    transform: translateY(-2px);
}

.icon-circle {
    width: 45px;
    height: 45px;
    background-color: #002290; /* Changed from #f5f5f5 to #002290 (blue) */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 6px;
    transition: all 0.3s ease;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 34, 144, 0.2); /* Added default shadow */
}

.icon-circle svg {
    width: 18px;
    height: 18px;
    stroke: #fff; /* Changed from #666 to #fff (white) */
    transition: all 0.3s ease;
}

.service-item:hover .icon-circle {
    background-color: #002290;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 34, 144, 0.3); /* Enhanced shadow on hover */
}

.service-item:hover .icon-circle svg {
    stroke: #fff;
}

.service-item span {
    font-weight: 500;
    color: #333;
    font-size: 12px;
    text-align: center;
    line-height: 1.2;
}

/* Akustik ve Ses Yalıtımında Lider Bölümü - Mobil */
.leader-section {
    padding: 40px 0 15px 0;
    background-color: #f8f9fa;
}

.leader-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
}

.leader-left {
    width: 100%;
    max-width: 400px;
    order: 1;
}

.leader-left img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.leader-left img:hover {
    transform: scale(1.02);
}

.leader-right {
    width: 100%;
    order: 2;
    text-align: center;
}

.leader-right h2 {
    font-size: 24px;
    font-weight: 700;
    color: #002290;
    margin-bottom: 20px;
    line-height: 1.2;
}

.leader-right p {
    font-size: 14px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 15px;
    text-align: justify;
}

.leader-right p:last-child {
    margin-bottom: 0;
}

/* Responsive styles for leader section - Mobile */
@media (min-width: 768px) {
    .leader-section {
        padding: 60px 0;
    }
    
    .leader-content {
        flex-direction: row;
        gap: 40px;
        align-items: flex-start;
    }
    
    .leader-left {
        flex: 0 0 45%;
        max-width: 45%;
        order: 1;
    }
    
    .leader-right {
        flex: 1;
        order: 2;
        text-align: left;
    }
    
    .leader-right h2 {
        font-size: 28px;
        margin-bottom: 25px;
    }
    
    .leader-right p {
        font-size: 15px;
        text-align: left;
        margin-bottom: 18px;
    }
}

@media (min-width: 1024px) {
    .leader-section {
        padding: 80px 0;
    }
    
    .leader-content {
        gap: 60px;
    }
    
    .leader-left {
        flex: 0 0 45%;
        max-width: 45%;
    }
    
    .leader-right {
        padding-left: 20px;
    }
    
    .leader-right h2 {
        font-size: 32px;
        margin-bottom: 30px;
    }
    
    .leader-right p {
        font-size: 16px;
        line-height: 1.8;
        margin-bottom: 20px;
    }
}

/* Acoustic Leader Section Mobil */
.acoustic-leader-section {
    padding: 30px 0;
    background-color: #ffffff;
}

.acoustic-leader-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.acoustic-leader-text {
    width: 100%;
    text-align: center;
    order: 1;
}

.acoustic-leader-text .section-title {
    text-align: center;
    margin-bottom: 20px;
}

.acoustic-leader-text .section-title span {
    display: block;
    font-size: 12px;
    color: #002290;
    margin-bottom: 8px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.acoustic-leader-text .section-title h2 {
    font-size: 24px;
    color: var(--secondary-color);
    margin-bottom: 8px;
    font-weight: 700;
}

.acoustic-leader-text .section-title h3 {
    font-size: 16px;
    color: #666;
    margin-bottom: 0;
    font-weight: 600;
}

.acoustic-leader-text p {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 15px;
    text-align: justify;
}

.acoustic-leader-text p:last-child {
    margin-bottom: 0;
}

.acoustic-leader-image {
    width: 100%;
    max-width: 400px;
    order: 2;
    margin: 0 auto;
}

.acoustic-leader-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.acoustic-leader-image img:hover {
    transform: scale(1.02);
}

/* Responsive - Tablet ve üzeri için */
@media (min-width: 768px) {
    .acoustic-leader-content {
        flex-direction: row;
        gap: 40px;
        align-items: flex-start;
    }
    
    .acoustic-leader-text {
        flex: 1;
        text-align: left;
        order: 1;
    }
    
    .acoustic-leader-text .section-title {
        text-align: left;
    }
    
    .acoustic-leader-text p {
        text-align: left;
    }
    
    .acoustic-leader-image {
        flex: 0 0 300px;
        order: 2;
        margin: 0;
    }
}

@media (min-width: 1024px) {
    .acoustic-leader-section {
        padding: 50px 0;
    }
    
    .acoustic-leader-content {
        gap: 60px;
    }
    
    .acoustic-leader-text .section-title h2 {
        font-size: 28px;
    }
    
    .acoustic-leader-text .section-title h3 {
        font-size: 18px;
    }
    
    .acoustic-leader-text p {
        font-size: 15px;
    }
    
    .acoustic-leader-image {
        flex: 0 0 350px;
    }
}

/* Acoustic Solutions Section Mobil */
.acoustic-solutions-section {
    padding: 60px 0 5px 0;
    background-color: var(--gray-color);
}

.section-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 15px;
    text-align: center;
}

.section-header .btn-secondary {
    margin-top: 15px;
}

.solutions-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    margin: 0 auto;
    padding: 0;
}

.solutions-container .col-lg-3 {
    width: 100%;
    margin-bottom: 20px;
}

.service-card {
    overflow: hidden;
    position: relative;
    border-radius: 15px;
    width: 100%;
    height: 350px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    opacity: 1;
    transition: opacity 0.3s ease;
}

.service-card:hover {
    opacity: 1;
}

.service-card img {
    border-radius: 15px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease-in-out;
    position: relative;
}

.service-card.v2::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0);
    border-radius: 15px;
    z-index: 1;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.service-card.v2:hover::after {
    opacity: 0;
}

.service-card.v2 .card-content {
    z-index: 2;
}

.service-card.v2::before {
    right: 0%;
    top: -100%;
}

.service-card::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: -100%;
    left: 0;
    background-color: #eaeaec;
    transition: all 0.5s ease-in-out;
    z-index: 0;
    border-radius: 15px;
}

.service-card .card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 20px;
    z-index: 1;
}

.service-card .card-content .h4 {
    border-left: 2px solid #ffffff;
    padding-left: 8px;
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    display: block;
    text-shadow: 3px 3px 8px rgba(0, 0, 0, 1), 1px 1px 4px rgba(0, 0, 0, 0.9);
}

.service-card .card-content p {
    text-shadow: 3px 3px 8px rgba(0, 0, 0, 1), 1px 1px 4px rgba(0, 0, 0, 0.9);
}

.service-card .hover-layer {
    opacity: 1;
    height: auto;
    min-height: 120px;
    padding-top: 15px;
    transition: all 0.5s ease-in-out;
}

.service-card p,
.service-card .h4 {
    transition: all 0.5s ease-in-out;
}

.service-card:hover.v2::before {
    top: 0%;
}

.service-card:hover::before {
    bottom: 0;
}

.service-card:hover img {
    opacity: 1;
}

.service-card:hover .card-content .h4 {
    color: #ffffff !important;
    border-left-color: #ffffff;
}

.service-card:hover .card-content p {
    color: #ffffff !important;
}

.service-card .card-content .hover-layer {
    padding-top: 15px;
    opacity: 1;
    min-height: 120px;
}

.cus-btn-wrap {
    border-radius: 3px;
    border-right: 1px solid #002290;
    border-left: 1px solid #002290;
    padding: 0 3px;
    background-color: transparent;
    transition: box-shadow 0.5s ease;
    display: inline-block;
    position: absolute;
    bottom: 15px;
    left: 15px;
}

.cus-btn-wrap .cus-btn {
    border-radius: 2px;
    padding: 8px 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #002290;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.cus-btn-wrap .cus-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    transition: all 0.5s ease-in-out;
    z-index: 0;
}

.cus-btn-wrap .cus-btn svg {
    width: 16px;
    height: 16px;
    position: relative;
    z-index: 2;
    transition: all 0.5s ease-in-out;
}

.cus-btn-wrap .cus-btn svg path {
    transition: all 0.5s ease-in-out;
    fill: #ffffff;
}

.cus-btn-wrap .cus-btn .text {
    font-family: "Poppins", sans-serif;
    font-style: normal;
    font-weight: 500;
    line-height: 120%;
    color: #ffffff;
    font-size: 12px;
    transition: all 0.5s ease-in-out;
    position: relative;
    text-transform: capitalize;
    z-index: 2;
}

.cus-btn-wrap:hover {
    box-shadow: 0 4px 10px rgba(0, 34, 144, 0.45);
}

.cus-btn-wrap:hover .cus-btn::before {
    left: 0;
}

.cus-btn-wrap:hover .cus-btn .text {
    color: #002290;
}

.cus-btn-wrap:hover .cus-btn svg {
    transform: scale(1.02) rotate(45deg);
}

.cus-btn-wrap:hover .cus-btn svg path {
    fill: #002290;
}

.white {
    color: #fafafa !important;
}

.mb-16 {
    margin-bottom: 16px;
}

.mb-32 {
    margin-bottom: 24px;
}

.hover-content {
    transition: all 0.5s ease-in-out;
}

.hover-content:hover {
    color: #002290 !important;
}

/* Products Section Mobil */
.products-section {
    padding: 5px 0 10px 0;
    background-color: var(--gray-color);
}

.products-section .section-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px;
    text-align: center;
}

.products-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    margin: 0 auto;
    padding: 0;
}

.products-container .col-lg-3 {
    width: 100%;
    margin-bottom: 20px;
}

/* Project Process Section Mobil */
.project-process-section {
    padding: 0 0 20px 0;
    background-color: #ffffff;
}

.project-process-section .section-title {
    text-align: center;
    margin-bottom: 15px;
}

.project-process-section .section-title span {
    color: #666;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.project-process-section .section-title h2 {
    font-size: 22px;
    font-weight: 700;
    color: #333;
    margin-top: 4px;
}

.process-steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    margin: 15px 0;
    position: relative;
    gap: 4px;
}

.process-step {
    width: calc(50% - 2px);
    max-width: 300px;
    text-align: center;
    padding: 8px 6px;
    position: relative;
    z-index: 2;
    margin-bottom: 8px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

.step-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 8px;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
}

.process-step:hover .step-icon {
    transform: translateY(-3px);
}

.step-icon svg {
    width: 45px;
    height: 45px;
    transition: all 0.3s ease;
    stroke: #666;
    stroke-width: 2;
}

.process-step:hover .step-icon svg {
    transform: scale(1.1);
    stroke: #002290;
}

.step-content {
    width: 100%;
    text-align: center;
}

.step-number {
    font-weight: 700;
    font-size: 13px;
    margin-bottom: 4px;
    color: #333;
    line-height: 1.1;
}

.step-content p {
    color: #666;
    font-size: 11px;
    line-height: 1.3;
    margin: 0 auto;
}

.process-step p {
    color: #666;
    font-size: 11px;
    line-height: 1.3;
    margin: 0 auto;
}

.step-arrow {
    display: none;
}

.contact-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 15px;
    padding: 12px;
    gap: 12px;
    text-align: center;
}

.contact-cta {
    width: 100%;
    text-align: center;
    padding: 0;
    margin: 0;
}

.contact-cta .cus-btn-wrap {
    position: static;
    margin: 0;
    transform: scale(1.0);
}

.contact-cta .btn-primary {
    display: none;
}

.contact-text {
    width: 100%;
    text-align: center;
    padding: 0;
}

.contact-text h3 {
    font-size: 15px;
    font-weight: 600;
    color: #333;
    margin-bottom: 6px;
    text-align: center;
    width: 100%;
    display: block;
    padding: 0;
    margin-left: 0;
}

.contact-details {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    margin: 0;
}

.contact-details .phone {
    font-size: 14px;
    font-weight: 700;
    color: #002290;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-details .phone:hover {
    color: #002290;
    transform: translateY(-2px);
}

.contact-details p {
    font-size: 12px;
    color: #999;
    margin: 0;
}

.contact-details .email {
    font-size: 12px;
    font-weight: 700;
    color: #002290;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-details .email:hover {
    color: #002290;
    transform: translateY(-2px);
}

/* References Section Mobil */
.references-section {
    padding: 60px 0;
    background-color: var(--gray-color);
}

.references-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.references-left {
    width: 100%;
    padding: 0;
    margin-bottom: 30px;
}

.references-logos {
    width: 100%;
    display: block;
}

.logo-row {
    display: flex;
    width: 100%;
    gap: 10px;
    margin-bottom: 10px;
    justify-content: space-between;
}

.logo-item {
    flex: 1;
    background-color: var(--light-color);
    padding: 15px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 90px;
    border-radius: 8px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    width: calc(50% - 5px);
    max-width: calc(50% - 5px);
}

.logo-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.logo-item img {
    max-width: 120px;
    max-height: 60px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: none;
    opacity: 1;
    transition: all 0.3s ease;
}

.logo-item:hover img {
    filter: none;
    opacity: 1;
    transform: scale(1.05);
}

/* Responsive Breakpoints */
@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    
    .slider-content h1 {
        font-size: 24px;
    }
    
    .slider-content p {
        font-size: 13px;
    }
    
    .section-title h2 {
        font-size: 20px;
    }
    
    .service-card {
        height: 300px;
    }
    
    .service-item {
        width: calc(50% - 4px) !important;
        margin-bottom: 8px !important;
    }
    
    .logo-item {
        flex: 0 0 100%;
        margin-bottom: 10px;
    }
    
    .about-image img {
        height: 200px;
    }
    
    .counter-box {
        min-height: 250px;
    }
    
    .counter-text h2 {
        font-size: 28px;
    }
}

@media (max-width: 360px) {
    .slider-content h1 {
        font-size: 22px;
    }
    
    .section-title h2 {
        font-size: 18px;
    }
    
    .service-card {
        height: 280px;
    }
    
    .process-step {
        padding: 12px 8px;
    }
    
    .step-icon {
        width: 70px;
        height: 70px;
    }
    
    .step-icon svg {
        width: 50px;
        height: 50px;
    }
}
