/* Batmaz Elektrik - Custom Styles */

:root {
    --primary-color: #2563eb;
    --secondary-color: #1e40af;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --danger-color: #ef4444;
    --dark-color: #1f2937;
    --light-color: #f8fafc;
    --gradient-primary: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    --gradient-secondary: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%);
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    overflow-x: hidden;
}

/* Modern Navigation */
.navbar {
    background: rgba(31, 41, 55, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0.75rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030;
    min-height: 90px;
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.navbar.scrolled {
    background: rgba(31, 41, 55, 0.98);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    padding: 0.5rem 0;
}

.navbar-brand {
    font-weight: 800;
    font-size: 1.5rem;
    color: white !important;
    text-decoration: none;
    position: relative;
    transition: all 0.3s ease;
}

.navbar-brand::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #3b82f6, #1d4ed8);
    transition: width 0.3s ease;
}

.navbar-brand:hover::after {
    width: 100%;
}

.navbar-nav {
    align-items: center;
}

.navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 500;
    margin: 0 0.75rem;
    padding: 0.5rem 1rem !important;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.navbar-nav .nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.navbar-nav .nav-link:hover::before {
    left: 100%;
}

.navbar-nav .nav-link:hover {
    color: white !important;
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.navbar-nav .nav-link.active {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white !important;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.3);
}

.navbar-nav .btn {
    border-radius: 25px;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border: none;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.navbar-nav .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.navbar-nav .btn:hover::before {
    left: 100%;
}

.navbar-nav .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

.navbar-toggler {
    border: none;
    padding: 0.5rem;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.navbar-toggler:focus {
    box-shadow: none;
    background: rgba(255, 255, 255, 0.2);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Mobile Navigation */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background: rgba(31, 41, 55, 0.98);
        backdrop-filter: blur(20px);
        border-radius: 15px;
        margin-top: 1rem;
        padding: 1rem;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .navbar-nav .nav-link {
        margin: 0.25rem 0;
        padding: 0.75rem 1rem !important;
        border-radius: 10px;
        text-align: center;
    }
    
    .navbar-nav .btn {
        margin-top: 0.5rem;
        width: 100%;
        text-align: center;
    }
}

.navbar-brand:hover .navbar-logo {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.4));
}

/* Hero Section */
.hero-section {
    background: var(--gradient-primary);
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="rgba(255,255,255,0.1)" points="0,1000 1000,0 1000,1000"/></svg>');
    background-size: cover;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-buttons .btn {
    border-radius: 50px;
    padding: 1rem 2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-image img {
    box-shadow: var(--shadow-xl);
    border-radius: 20px;
}

/* Section Styles */
.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.section-subtitle {
    font-size: 1.1rem;
    color: #6b7280;
    margin-bottom: 3rem;
}

/* Services Section */
.services-section {
    background: var(--light-color);
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.service-description {
    color: #6b7280;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.service-link:hover {
    color: var(--secondary-color);
    transform: translateX(5px);
}

/* About Section */
.about-section {
    background: transparent !important;
}

.about-description {
    font-size: 1.1rem;
    color: #6b7280;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 500;
}

.feature-item i {
    font-size: 1.2rem;
}

.about-image {
    background: transparent !important;
}

.about-image img {
    background: transparent !important;
    box-shadow: none !important;
    border-radius: 20px;
}

/* CTA Section */
.cta-section {
    background: var(--gradient-secondary);
    color: white;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-section .btn {
    border-radius: 50px;
    padding: 1rem 2.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Contact Section */
.contact-section {
    background: var(--light-color);
}

.contact-info {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-item i {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.contact-item p {
    color: #6b7280;
    margin: 0;
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
}

.contact-form .form-control {
    border: 2px solid #e5e7eb;
    border-radius: 15px;
    padding: 1rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
    outline: none;
}

.contact-form .btn {
    border-radius: 15px;
    padding: 1rem 2rem;
    font-weight: 600;
}

/* Footer */
.footer {
    background: var(--dark-color);
    color: white;
}

.footer-title {
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
}

.footer-description {
    color: #9ca3af;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: translateY(-3px);
    color: white;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: white;
    transform: translateX(5px);
}

.footer-contact p {
    color: #9ca3af;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
}

.footer-contact i {
    width: 20px;
    margin-right: 0.5rem;
}

.footer-divider {
    border-color: #374151;
    margin: 2rem 0;
}

.footer-copyright {
    color: #9ca3af;
    margin: 0;
}

.footer-admin-link {
    color: #9ca3af;
    text-decoration: none;
    font-size: 0.9rem;
}

.footer-admin-link:hover {
    color: white;
}

/* Buttons */
.btn-primary {
    background: var(--gradient-primary);
    border: none;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline-light {
    border: 2px solid white;
    color: white;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .navbar-nav .btn {
        margin-top: 1rem;
    }
    
    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .whatsapp-button {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        bottom: 1rem;
        right: 1rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .contact-info,
    .contact-form {
        padding: 1.5rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
.loading {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.loading.loaded {
    opacity: 1;
    transform: translateY(0);
}

/* Brands Section - Modern Grid */
.brands-section {
    background: var(--light-color);
    padding: 60px 0;
    text-align: center;
}

.brands-section h3 {
    font-size: 3rem;
    font-weight: 900;
    color: var(--dark-color);
    margin-bottom: 3rem;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: linear-gradient(135deg, #6b7280, #374151);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.brands-section h3::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #6b7280, #374151);
    border-radius: 2px;
}

.brand-fullscreen {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.brand-fullscreen-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.brand-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.brand-box {
    background: white;
    border-radius: 16px;
    padding: 16px 20px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 120px;
    min-height: 80px;
    max-width: 160px;
    max-height: 100px;
}

.brand-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.brand-logo {
    height: 80px;
    max-width: 350px;
    width: auto;
    object-fit: contain;
    transition: all 0.3s ease;
}

.brand-box:hover .brand-logo {
    transform: scale(1.1);
}

.brand-name {
    font-weight: 600;
    color: var(--dark-color);
    text-align: center;
}

/* Blue Section Divider */
.section-divider-blue {
    width: 100%;
    background: linear-gradient(90deg, #2563eb 0%, #1e40af 100%);
    padding: 32px 0 28px 0;
    margin: 0;
    border: none;
    position: relative;
    z-index: 1;
}
.section-divider-blue .divider-text {
    color: #fff;
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}
.section-divider-blue i {
    font-size: 1.2em;
    color: #fff;
}
@media (max-width: 576px) {
    .section-divider-blue { padding: 18px 0 14px 0; }
    .section-divider-blue .divider-text { font-size: 1rem; }
}

/* Hero Slider Styles */
.hero-slider {
    position: relative;
    overflow: hidden;
}

.hero-slide {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 1;
}

.hero-slide .container {
    position: relative;
    z-index: 2;
}

.hero-slide .hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-slide .hero-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-slide .hero-description {
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    line-height: 1.6;
}

.hero-slide .hero-buttons {
    margin-top: 2rem;
}

.hero-slide .btn {
    padding: 12px 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.hero-slide .btn-primary {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    border: none;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

.hero-slide .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4);
}

.hero-slide .btn-outline-light {
    border: 2px solid #fff;
    color: #fff;
    background: transparent;
}

.hero-slide .btn-outline-light:hover {
    background: #fff;
    color: #333;
    transform: translateY(-2px);
}

/* Carousel Controls */
.carousel-indicators {
    bottom: 30px;
    z-index: 3;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.8);
    margin: 0 5px;
    transition: all 0.3s ease;
}

.carousel-indicators button.active {
    background-color: #fff;
    transform: scale(1.2);
}

.carousel-control-prev,
.carousel-control-next {
    width: 60px;
    height: 60px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    margin: 0 20px;
    z-index: 3;
    transition: all 0.3s ease;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: rgba(0, 0, 0, 0.6);
    transform: translateY(-50%) scale(1.1);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 30px;
    height: 30px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-slide .hero-title {
        font-size: 2.2rem;
        line-height: 1.2;
    }
    
    .hero-slide .hero-subtitle {
        font-size: 1.1rem;
        line-height: 1.3;
    }
    
    .hero-slide .hero-description {
        font-size: 0.95rem;
        line-height: 1.5;
        margin-bottom: 1.5rem;
    }
    
    .hero-slide .hero-buttons {
        margin-top: 1.5rem;
    }
    
    .hero-slide .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
        margin-bottom: 10px;
        display: block;
        width: 100%;
        max-width: 250px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        width: 45px;
        height: 45px;
        margin: 0 10px;
    }
    
    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        width: 20px;
        height: 20px;
    }
    
    .carousel-indicators {
        bottom: 20px;
    }
    
    .carousel-indicators button {
        width: 10px;
        height: 10px;
        margin: 0 3px;
    }
    
    /* Navigation mobile improvements */
    .navbar-brand {
        font-size: 1.1rem;
    }
    
    .navbar-nav .btn {
        margin-top: 10px;
        width: 100%;
    }
    
    /* Services section mobile */
    .service-card {
        margin-bottom: 20px;
    }
    
    .service-title {
        font-size: 1.3rem;
    }
    
    /* Contact section mobile */
    .contact-info {
        margin-bottom: 30px;
    }
    
    .contact-item {
        margin-bottom: 20px;
    }
    
    /* Footer mobile */
    .footer {
        text-align: center;
    }
    
    .footer .col-lg-4,
    .footer .col-lg-2,
    .footer .col-lg-3 {
        margin-bottom: 30px;
    }
    
    .social-links {
        justify-content: center;
        margin-top: 20px;
    }
    
    .social-link {
        margin: 0 10px;
    }
}

@media (max-width: 576px) {
    .hero-slide .hero-title {
        font-size: 1.8rem;
        margin-bottom: 0.8rem;
    }
    
    .hero-slide .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 0.8rem;
    }
    
    .hero-slide .hero-description {
        font-size: 0.9rem;
        margin-bottom: 1.2rem;
    }
    
    .hero-slide .btn {
        padding: 12px 18px;
        font-size: 0.85rem;
        margin-bottom: 8px;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        width: 40px;
        height: 40px;
        margin: 0 5px;
    }
    
    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        width: 18px;
        height: 18px;
    }
    
    .carousel-indicators {
        bottom: 15px;
    }
    
    .carousel-indicators button {
        width: 8px;
        height: 8px;
        margin: 0 2px;
    }
    
    /* Section titles mobile */
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    /* About section mobile */
    .about-features {
        margin-top: 20px;
    }
    
    .feature-item {
        margin-bottom: 15px;
        font-size: 0.9rem;
    }
    
    /* CTA section mobile */
    .cta-title {
        font-size: 1.6rem;
    }
    
    .cta-subtitle {
        font-size: 1rem;
    }
    
    /* Brands section mobile */
    .brand-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .brand-box {
        padding: 15px;
    }
    
    /* WhatsApp button mobile */
    .whatsapp-button {
        width: 50px;
        height: 50px;
        right: 15px;
        bottom: 15px;
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-slide .hero-title {
        font-size: 1.6rem;
    }
    
    .hero-slide .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .hero-slide .hero-description {
        font-size: 0.85rem;
    }
    
    .hero-slide .btn {
        padding: 10px 15px;
        font-size: 0.8rem;
    }
    
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .brand-grid {
        grid-template-columns: 1fr;
    }
}

/* Touch-friendly improvements */
@media (hover: none) and (pointer: coarse) {
    .carousel-control-prev,
    .carousel-control-next {
        width: 50px;
        height: 50px;
    }
    
    .btn {
        min-height: 44px;
    }
    
    .social-link {
        min-width: 44px;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

/* Landscape mobile optimization */
@media (max-width: 768px) and (orientation: landscape) {
    .hero-slide {
        min-height: 80vh;
    }
    
    .hero-slide .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-slide .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-slide .hero-description {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .hero-slide .hero-buttons {
        margin-top: 1rem;
    }
}

@media (max-width: 991px) {
    .brand-grid { gap: 16px; }
    .brand-box { min-width: 90px; min-height: 60px; max-width: 120px; max-height: 70px; padding: 8px 10px; }
    .brand-fullscreen {
        max-width: 100%;
        margin: 0 15px;
    }
    .navbar-logo {
        height: 60px;
        max-width: 220px;
    }
    .footer-contact {
        text-align: center;
        align-items: center;
        justify-content: center;
        display: flex;
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    .brands-section { padding-top: 24px; padding-bottom: 24px; }
    .brand-box { min-width: 70px; min-height: 40px; max-width: 90px; max-height: 50px; padding: 4px 6px; }
    .brand-logo { max-height: 32px; }
    .brand-fullscreen {
        border-radius: 10px;
        margin: 0 10px;
    }
    .brands-section h3 {
        font-size: 2.2rem;
        letter-spacing: 1px;
        margin-bottom: 2rem;
    }
    .brands-section h3::after {
        width: 60px;
        height: 3px;
        bottom: -10px;
    }
    .navbar-logo {
        height: 45px;
        max-width: 140px;
    }
}

/* Google Maps Styles */
.map-container {
    margin-top: 3rem;
}

.map-container h4 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 2rem;
}

.google-maps-wrapper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    background: white;
}

.google-maps-wrapper iframe {
    width: 100%;
    height: 400px;
    border: none;
    display: block;
}

@media (max-width: 768px) {
    .google-maps-wrapper iframe {
        height: 300px;
    }
    .map-container h4 {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .google-maps-wrapper iframe {
        height: 250px;
    }
    .map-container h4 {
        font-size: 1.3rem;
    }
}

/* Logo Styles */
.navbar-logo {
    height: 80px;
    max-width: 350px;
    width: auto;
    object-fit: contain;
}

.footer-logo-img {
    height: 60px;
    width: auto;
    max-width: 250px;
    filter: brightness(0) invert(1);
}

@media (max-width: 768px) {
    .navbar-logo {
        height: 35px;
        max-width: 150px;
    }
    .footer-logo-img {
        height: 50px;
        max-width: 200px;
    }
}

/* Mobilde sabit WhatsApp ve Telefon butonları */
.mobile-fixed-buttons {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.mobile-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #fff;
    box-shadow: 0 4px 16px rgba(0,0,0,0.18);
    transition: background 0.2s, box-shadow 0.2s;
}
.mobile-btn.whatsapp {
    background: #25d366;
}
.mobile-btn.phone {
    background: #2563eb;
}
.mobile-btn:active {
    box-shadow: 0 2px 8px rgba(0,0,0,0.22);
}
@media (min-width: 992px) {
    .mobile-fixed-buttons { display: none !important; }
}
