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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #fff;
}

/* Prevent horizontal scroll on all devices */
html {
    overflow-x: hidden;
}

body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

.breadcrumb {
    padding: 20px 0;
    background-color: #f9f9f9;
}

.breadcrumb a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s;
}

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

.breadcrumb span {
    color: #999;
    margin: 0 10px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

/* Header Styles */
.header {
    background-color: #fff;
    padding: 20px 0;
    border-bottom: 1px solid #e5e5e5;
    position: relative;
    z-index: 100;
}

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

@media (max-width: 768px) {
    .header-content {
        gap: 15px;
    }
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.language-toggle {
    background: transparent;
    border: 2px solid #C00000;
    color: #C00000;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    display: flex;
    align-items: center;
    gap: 5px;
}

.language-toggle:hover {
    background: #C00000;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(192, 0, 0, 0.2);
}

.header-content .nav-wrapper {
    margin-left: 0;
    display: flex;
    align-items: center;
    gap: 30px;
    margin-right: 0;
}

.header-content .header-actions {
    margin-left: 0;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-wrapper .nav {
    margin-right: 0;
}

.nav-wrapper .btn-outline {
    margin-left: 0;
    margin-right: 0;
}

/* Sağ taraf için birleşik container */
.header-right {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-left: auto;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.logo-icon svg {
    display: block;
}

.logo-img {
    width: auto;
    height: 160px;
    display: block;
    object-fit: contain;
}


.logo-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.logo-text h1 {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    margin-bottom: 2px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.logo-tagline {
    font-size: 11px;
    color: #666;
    font-weight: 400;
    letter-spacing: 0.3px;
}


.nav a {
    text-decoration: none;
    color: #1a1a1a;
    font-size: 18px;
    font-weight: 500;
    transition: all 0.3s;
    padding: 8px 12px;
    border-radius: 6px;
    position: relative;
    white-space: nowrap;
}

.nav a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 12px;
    width: 0;
    height: 2px;
    background-color: #C00000;
    transition: width 0.3s ease;
}

.nav a:hover::before {
    width: calc(100% - 24px);
}

.nav a:hover {
    color: #C00000;
}

.btn {
    padding: 10px 24px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    border: 1px solid #333;
    background-color: #fff;
    color: #333;
    font-family: inherit;
}

.btn-outline {
    border: 2px solid #C00000;
    background-color: #fff;
    color: #C00000;
}

.btn-outline:hover {
    background-color: #C00000;
    color: #fff;
}

.btn-white {
    background-color: #fff;
    color: #333;
    border: 1px solid #333;
}

.btn-white:hover {
    background-color: #f5f5f5;
}

/* Hero Slider Section - Modern Design */
.hero-slider {
    position: relative;
    height: 500px;
    overflow: hidden;
    background: #0a0a0a;
    z-index: 1;
}

.slider-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.slider-track {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease, transform 1s cubic-bezier(0.4, 0, 0.2, 1);
    transform: scale(0.9);
}

.slide-card.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
    z-index: 1;
}

.slide-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(192, 0, 0, 0.95) 0%, 
        rgba(160, 0, 0, 0.9) 50%, 
        rgba(192, 0, 0, 0.95) 100%);
    z-index: 1;
}

.slide-card:nth-child(2)::before {
    background: linear-gradient(135deg, 
        rgba(192, 0, 0, 0.95) 0%, 
        rgba(140, 0, 0, 0.9) 50%, 
        rgba(192, 0, 0, 0.95) 100%);
}

.slide-card:nth-child(3)::before {
    background: linear-gradient(135deg, 
        rgba(192, 0, 0, 0.95) 0%, 
        rgba(120, 0, 0, 0.9) 50%, 
        rgba(192, 0, 0, 0.95) 100%);
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
    z-index: 2;
}

.slide-inner {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    z-index: 3;
    padding: 40px 0;
}

.slide-layout {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 60px;
    position: relative;
}

.slide-number {
    display: none;
}

.slide-text-content {
    position: relative;
    z-index: 2;
    flex: 0 0 auto;
    max-width: 480px;
    animation: fadeInUp 1s ease-out;
}

.slide-visual {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 350px;
    position: relative;
    z-index: 2;
}

.visual-element {
    width: 100%;
    max-width: 450px;
    height: 350px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide-logo {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
    animation: floatLogo 3s ease-in-out infinite;
    opacity: 0.95;
    background: transparent;
}

@keyframes floatLogo {
    0%, 100% {
        transform: translateY(0) scale(1);
        opacity: 0.95;
    }
    50% {
        transform: translateY(-12px) scale(1.02);
        opacity: 1;
    }
}

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

.slide-category {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 30px;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.slide-title {
    font-size: 42px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.25;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.5px;
}

.slide-description {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 30px;
    line-height: 1.7;
    max-width: 480px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.slide-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-primary {
    padding: 14px 32px;
    background: #fff;
    color: #C00000;
    border: none;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
    letter-spacing: 0.5px;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.3);
    background: #f5f5f5;
}

.btn-secondary {
    padding: 14px 32px;
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    letter-spacing: 0.5px;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

/* Progress Bar */
.slider-progress {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 10;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, 0.8) 100%);
    width: 33.333%;
    transition: width 0.6s ease, transform 0.6s ease;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

/* Slider Controls */
.slider-controls {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.slider-indicators {
    display: flex;
    gap: 12px;
    align-items: center;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(15px);
    padding: 12px 24px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.indicator {
    position: relative;
    width: 60px;
    height: 3px;
    background: rgba(255, 255, 255, 0.25);
    border: none;
    border-radius: 2px;
    cursor: pointer;
    padding: 0;
    overflow: visible;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.indicator span:first-child {
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, 0.8) 100%);
    border-radius: 2px;
    transition: width 0.6s ease;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.indicator.active span:first-child {
    width: 100%;
}

.indicator.active {
    background: rgba(255, 255, 255, 0.4);
    transform: scaleY(1.3);
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.35);
    transform: scaleY(1.5);
}

/* Services Section */
.services {
    padding: 80px 0;
    background-color: #fff;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    text-align: center;
    margin-bottom: 50px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.service-card {
    background: linear-gradient(135deg, #fff 0%, #f9f9f9 100%);
    border: 2px solid #e5e5e5;
    border-radius: 16px;
    padding: 45px 35px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #C00000 0%, #ff3333 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: left;
}

.service-card:hover {
    box-shadow: 0 12px 30px rgba(192, 0, 0, 0.15);
    border-color: #C00000;
    transform: translateY(-8px);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, rgba(192, 0, 0, 0.1) 0%, rgba(192, 0, 0, 0.05) 100%);
    border-radius: 20px;
    transition: all 0.4s ease;
    position: relative;
}

.service-icon::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 20px;
    padding: 3px;
    background: linear-gradient(135deg, #C00000, #ff3333);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, rgba(192, 0, 0, 0.15) 0%, rgba(192, 0, 0, 0.08) 100%);
}

.service-card:hover .service-icon::after {
    opacity: 1;
}

.service-icon svg {
    transition: all 0.4s ease;
    filter: drop-shadow(0 2px 4px rgba(192, 0, 0, 0.2));
}

.service-card:hover .service-icon svg {
    transform: scale(1.1);
    filter: drop-shadow(0 4px 8px rgba(192, 0, 0, 0.3));
}

.service-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.service-card:hover h3 {
    color: #C00000;
}

.service-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
    padding: 60px 0 30px;
    border-top: 3px solid #C00000;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1.5fr;
    gap: 40px;
    align-items: start;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo-text {
    margin-bottom: 10px;
}

.footer-brand {
    font-size: 42px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 8px 0;
    letter-spacing: 3px;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
}

.footer-brand::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #C00000 0%, rgba(192, 0, 0, 0.5) 100%);
    border-radius: 2px;
}

.footer-tagline {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 400;
    letter-spacing: 1px;
    margin: 0;
    text-transform: uppercase;
    font-style: italic;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.6;
    max-width: 350px;
    margin-top: 20px;
}

.footer-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-section h3 {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    position: relative;
    padding-bottom: 10px;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: #C00000;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-nav a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    font-weight: 400;
    transition: all 0.3s;
    padding: 6px 0;
    position: relative;
    padding-left: 20px;
}

.footer-nav a::before {
    content: '→';
    position: absolute;
    left: 0;
    opacity: 0;
    transition: all 0.3s;
    color: #C00000;
}

.footer-nav a:hover {
    color: #C00000;
    padding-left: 25px;
}

.footer-nav a:hover::before {
    opacity: 1;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    line-height: 1.6;
}

.footer-contact-item div {
    display: flex;
    flex-direction: column;
    gap: 0;
    line-height: 1.2;
}

.footer-contact-item div a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
    display: block;
    margin: 0;
    padding: 0;
    line-height: 1.2;
}

.footer-contact-item div a:hover {
    color: #fff;
}

.footer-contact-item .icon {
    color: #C00000;
    font-size: 18px;
    margin-top: 2px;
    flex-shrink: 0;
}

.footer-contact-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-contact-item a:hover {
    color: #C00000;
}

.footer-bottom {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #555;
    text-align: center;
}

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

.social-media {
    display: flex;
    gap: 15px;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}

.social-media a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-media a svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

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

/* Responsive Design */
/* WhatsApp Floating Button */
.whatsapp-button {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 12px;
    background: #25D366;
    color: white;
    padding: 12px 20px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 16px;
    max-width: 280px;
    overflow: hidden;
}

.whatsapp-button.whatsapp-collapsed {
    max-width: 60px;
    padding: 12px;
    gap: 0;
}

.whatsapp-button.whatsapp-collapsed .whatsapp-text {
    opacity: 0;
    width: 0;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.whatsapp-button:hover {
    background: #20BA5A;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
    transform: translateY(-2px);
    max-width: 280px;
}

.whatsapp-button:hover .whatsapp-text {
    opacity: 1;
    width: auto;
    margin-left: 12px;
    padding: 0;
}

.whatsapp-icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-icon svg {
    width: 100%;
    height: 100%;
}

.whatsapp-text {
    white-space: nowrap;
    transition: all 0.3s ease;
    opacity: 1;
}

@media (max-width: 768px) {
    .whatsapp-button {
        right: 15px;
        bottom: 15px;
        padding: 10px 16px;
        font-size: 14px;
        max-width: 240px;
    }

    .whatsapp-button.whatsapp-collapsed {
        max-width: 50px;
        padding: 10px;
    }

    .whatsapp-icon {
        width: 24px;
        height: 24px;
    }
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 10002;
    position: relative;
    pointer-events: auto;
}

.mobile-menu-toggle span {
    width: 28px;
    height: 3px;
    background-color: #C00000;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

@media (max-width: 768px) {
    html, body {
        overflow-x: hidden;
        width: 100%;
        max-width: 100vw;
        position: relative;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .header-content {
        flex-wrap: nowrap;
    }

    .header-right {
        gap: 15px;
    }

    .header-actions {
        gap: 10px;
    }

    .nav-wrapper {
        gap: 15px;
    }

    .language-toggle {
        font-size: 12px;
        padding: 6px 12px;
    }

    .logo-img {
        height: 100px;
    }

    .header {
        position: relative;
        z-index: 100;
        padding: 15px 0;
        width: 100%;
        max-width: 100vw;
    }

    .container {
        padding: 0 15px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    section, header, footer, main {
        width: 100%;
        max-width: 100vw;
        overflow-x: hidden;
        box-sizing: border-box;
    }

    img, video, iframe, embed, object {
        max-width: 100%;
        height: auto;
    }

    table {
        width: 100%;
        max-width: 100%;
        overflow-x: auto;
        display: block;
    }

    .hero-slider,
    .services,
    .footer {
        width: 100%;
        max-width: 100vw;
        overflow-x: hidden;
    }

    /* Prevent any element from causing horizontal scroll */
    * {
        max-width: 100%;
    }

    /* Exceptions for specific elements that need their own width */
    .nav-wrapper,
    .whatsapp-button,
    .slide-card,
    .service-card {
        max-width: none;
    }

    .nav-wrapper {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: #fff;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 30px 30px;
        transition: right 0.3s ease;
        z-index: 10001;
        overflow-y: auto;
        pointer-events: auto;
    }

    .nav-wrapper.active {
        right: 0;
        pointer-events: auto;
    }

    .nav {
        display: flex;
        flex-direction: column;
        width: 100%;
        gap: 0;
        order: 1;
        position: relative;
        z-index: 10001;
        pointer-events: auto;
    }

    .nav a {
        width: 100%;
        padding: 15px 0;
        font-size: 18px;
        border-bottom: 1px solid #e5e5e5;
        text-align: left;
        position: relative;
        z-index: 10002;
        pointer-events: auto;
        cursor: pointer;
    }

    .nav a::before {
        display: none;
    }

    .nav-wrapper .btn-outline {
        width: 100%;
        margin-top: 20px;
        order: 2;
        text-align: center;
        padding: 12px 24px;
        position: relative;
        z-index: 10001;
        pointer-events: auto;
        cursor: pointer;
    }


    .hero-slider {
        height: 400px;
    }

    .slide-inner {
        padding: 40px 0;
    }

    .slide-layout {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .slide-text-content {
        max-width: 100%;
        padding: 0 20px;
    }

    .slide-visual {
        display: none;
    }

    .slide-title {
        font-size: 28px;
        margin-bottom: 15px;
    }

    .slide-description {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .slide-actions {
        flex-direction: column;
        gap: 10px;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
        padding: 12px 24px;
        font-size: 14px;
    }

    .slider-controls {
        bottom: 15px;
        padding: 0;
        background: transparent;
        backdrop-filter: none;
        border: none;
    }

    .slider-indicators {
        gap: 8px;
        background: transparent;
        backdrop-filter: none;
        padding: 0;
        border: none;
    }

    .indicator {
        width: 35px;
        height: 2px;
        background: rgba(255, 255, 255, 0.3);
    }

    .indicator.active {
        background: rgba(255, 255, 255, 0.6);
        transform: scaleY(1.2);
    }

    .indicator:hover {
        background: rgba(255, 255, 255, 0.5);
        transform: scaleY(1.2);
    }


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

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .footer-logo {
        align-items: center;
        text-align: center;
    }

    .footer-logo-text {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-brand {
        font-size: 36px;
        letter-spacing: 2px;
    }

    .footer-brand::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-description {
        max-width: 100%;
    }

    .footer-section h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-nav {
        align-items: center;
    }

    .footer-nav a {
        padding-left: 0;
    }

    .footer-nav a::before {
        display: none;
    }

    .footer-nav a:hover {
        padding-left: 0;
    }

    .footer-contact-item {
        justify-content: center;
        text-align: center;
    }
}

