* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Navigation */
/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(30, 41, 59, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}


.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #f59e0b;
    text-decoration: none;
}



@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes slideInUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}


.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 3rem;
    color: #f59e0b;
    margin-bottom: 3rem;
}


.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease-out;
    display: flex;
    flex-direction: column;
    min-height: 280px;
    height: 100%;
    margin-bottom: 1rem;
    /* Alt shadow için extra margin */
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}


.feature-card h3 {
    font-size: 1.3rem;
    color: #1e293b;
    margin-bottom: 1rem;
    flex-shrink: 0;
    /* Başlık boyutunu sabit tut */
}

.feature-card p {
    color: #64748b;
    line-height: 1.6;
    flex: 1;
    /* Kalan alanı doldur */
    display: flex;
    align-items: flex-start;
    /* Metni üstten hizala */
}

/* Owl Carousel için özel ayarlar */
.owl-carousel .owl-item {
    display: flex;
    align-items: stretch;
    padding: 0 0.5rem;
    /* Yanlardan shadow için boşluk */
}

.owl-carousel .feature-card {
    width: 100%;
    margin-bottom: 1rem;
    /* Alt shadow için margin */
}

.owl-carousel .owl-stage {
    display: flex;
    align-items: stretch;
    padding-bottom: 2rem;
    /* Alt shadow için extra padding */
}

.owl-carousel .owl-stage-outer {
    padding: 2rem 1rem 3rem 1rem;
    /* Tüm yönlerden shadow için alan */
    margin: 0 -1rem;
    /* Container'ın dışına taşma için negatif margin */
}

/* Hero Carousel Styles - Spesifik seçiciler ile diğer carousel'lardan ayrılır */
.hero-carousel-container {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 500px;
    overflow: hidden;
    border-radius: 0;
    background: #1e293b; /* Yükleme sırasında arka plan */
}

.hero-carousel.owl-carousel {
    height: 100% !important;
    width: 100%;
}

.hero-carousel.owl-carousel .owl-stage-outer {
    height: 100% !important;
    overflow: hidden;
    padding: 0 !important; /* Hero için padding sıfırla */
    margin: 0 !important;
}

.hero-carousel.owl-carousel .owl-stage {
    height: 100% !important;
    display: flex !important;
    align-items: stretch !important;
    padding: 0 !important; /* Hero için padding sıfırla */
}

.hero-carousel.owl-carousel .owl-item {
    height: 100% !important;
    display: flex !important;
    align-items: stretch !important;
    padding: 0 !important; /* Hero için padding sıfırla */
    margin: 0 !important;
}

.hero-slide {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 500px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1e293b;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 0;
    transition: transform 0.5s ease;
    display: block;
}

.hero-image:hover {
    transform: scale(1.02);
}

/* Hero carousel özel dots stili - sadece hero carousel için */
.hero-carousel.owl-carousel .owl-dots {
    position: absolute !important;
    bottom: 30px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    z-index: 10 !important;
    text-align: center;
    margin: 0 !important; /* Diğer carousel'ların margin'ini ezmemek için */
}

.hero-carousel.owl-carousel .owl-dot {
    display: inline-block;
    margin: 0 8px;
}

.hero-carousel.owl-carousel .owl-dot span {
    background: rgba(255, 255, 255, 0.5) !important;
    border: 2px solid rgba(255, 255, 255, 0.8) !important;
    width: 16px;
    height: 16px;
    display: block;
    border-radius: 50%;
    transition: all 0.3s ease;
    cursor: pointer;
}

.hero-carousel.owl-carousel .owl-dot:hover span {
    background: rgba(255, 255, 255, 0.8) !important;
    transform: scale(1.1);
}

.hero-carousel.owl-carousel .owl-dot.active span {
    background: #f59e0b !important;
    border-color: #f59e0b !important;
    transform: scale(1.2);
    box-shadow: 0 0 10px rgba(245, 158, 11, 0.6);
}

/* Mobil uyum - sadece hero carousel için */
@media (max-width: 768px) {
    .hero-carousel-container,
    .hero-slide {
        height: 70vh;
        min-height: 400px;
    }
    
    .hero-carousel.owl-carousel .owl-dots {
        bottom: 20px !important;
    }
    
    .hero-carousel.owl-carousel .owl-dot span {
        width: 14px;
        height: 14px;
        margin: 0 6px;
    }
    
    .hero-carousel.owl-carousel .owl-dot.active span {
        transform: scale(1.15);
    }
}

@media (max-width: 576px) {
    .hero-carousel-container,
    .hero-slide {
        height: 60vh;
        min-height: 350px;
    }
    
    .hero-carousel.owl-carousel .owl-dot span {
        width: 12px;
        height: 12px;
        margin: 0 4px;
    }
}



/* ...existing code... */

/* About Section - Dark Theme */
.about {
    padding: 80px 0;
    color: white;
    position: relative;
    overflow: hidden;
}


.about .section-title {
    text-align: center;
    margin-bottom: 3rem;
    color: #f59e0b;
    position: relative;
    z-index: 2;
}

.about-flex {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 60px !important;
    max-width: 1200px !important;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.about-image {
    flex: 1 1 450px !important;
    min-width: 400px !important;
    text-align: center;
}

.about-image img {
    max-width: 100%;
    width: 100%;
    height: auto;
    min-height: 350px;
    object-fit: cover;
    border-radius: 20px !important;
    box-shadow: 0 20px 60px rgba(245, 158, 11, 0.2) !important;
    transition: all 0.3s ease;
    border: 2px solid rgba(245, 158, 11, 0.3);
}

.about-image img:hover {
    transform: scale(1.02);
    box-shadow: 0 25px 80px rgba(245, 158, 11, 0.3) !important;
    border-color: rgba(245, 158, 11, 0.5);
}

.about-content {
    flex: 1 1 400px !important;
    font-size: 1.1rem !important;
    line-height: 1.8 !important;
    min-width: 350px !important;
}

.about-content p {
    color: #cbd5e1;
    margin-bottom: 1.5rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.about-content ul {
    margin-top: 20px !important;
    margin-bottom: 20px !important;
    padding-left: 0 !important;
    list-style: none;
}

.about-content ul li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    color: #e2e8f0;
    font-weight: 500;
}

.about-content ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: #f59e0b;
    font-weight: bold;
    font-size: 1.2rem;
    text-shadow: 0 0 10px rgba(245, 158, 11, 0.5);
}

/* Responsive adjustments for about section */
@media (max-width: 768px) {
    .about-flex {
        gap: 40px !important;
        flex-direction: column;
    }

    .about-image {
        flex: 1 1 100% !important;
        min-width: 100% !important;
    }

    .about-image img {
        min-height: 250px;
        border-radius: 15px !important;
    }

    .about-content {
        flex: 1 1 100% !important;
        min-width: 100% !important;
        font-size: 1rem !important;
        line-height: 1.6 !important;
    }
}

@media (max-width: 480px) {
    .about-image img {
        min-height: 200px;
        border-radius: 12px !important;
    }

    .about-content {
        font-size: 0.95rem !important;
    }
}


/* ...existing code... */


/* Services Section */
/* Services Section */
.services {
    padding: 6rem 2rem;
    color: #1e293b;
    /* background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%); */
    position: relative;
    overflow: hidden;
}


.services .container {
    position: relative;
    z-index: 2;
}

.services .section-title {
    text-align: center;
    margin-bottom: 3rem;
    color: #f59e0b;
    font-size: 2.5rem;
}

.services-carousel .item {
    width: 100%;           /* item genişliği carousel genişliğine uyacak */
    height: 400px;         /* sabit yükseklik, dilediğin ölçü olabilir */
    overflow: hidden;      /* taşan kısımları gizle */
    display: flex;
    justify-content: center;
    align-items: center;
}

.services-carousel .item img {
    width: 100%;           /* genişlik section/item genişliğine uyacak */
    height: 100%;          /* yüksekliği item yüksekliğine uyacak */
    object-fit: cover;     /* resmi kırparak doldurur, orantıyı korur */
    object-position: center center; /* ortalanmış */
}




/* Responsive design for services */
@media (max-width: 768px) {
    .services {
        padding: 4rem 1rem;
    }

    .services .section-title {
        font-size: 2rem;
    }



 
}


/* Coverage Section */
.coverage {
    padding: 80px 0;
    /* background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%); */
}



.coverage-content {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.coverage-text {
    flex: 1;
}

.coverage-text h2 {
    font-size: 2.5rem;
    color: #1e293b;
    margin-bottom: 1.5rem;
    font-weight: bold;
}

.coverage-text p {
    color: #64748b;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.districts {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.district {
    background: white;
    padding: 0.7rem 1.2rem;
    border-radius: 25px;
    border: 2px solid #e2e8f0;
    color: #475569;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    font-size: 0.9rem;
}

.district:hover,
.district.active {
    background: linear-gradient(45deg, #f59e0b, #d97706);
    color: white;
    border-color: #f59e0b;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.3);
}

.coverage-visual {
    flex: 1;
    max-width: 500px;
}

.map-container {
    position: relative;
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(245, 158, 11, 0.2);
}

.map-container::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"><path d="M0,300L50,280C100,260,200,220,300,200C400,180,500,180,600,180L700,180L700,0L600,0C500,0,400,0,300,0C200,0,100,0,50,0L0,0Z" fill="white" opacity="0.1"/></svg>') no-repeat center center;
    background-size: cover;
    animation: float 6s ease-in-out infinite;
}

.central-pin {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2rem;
    z-index: 10;
    animation: bounce 2s infinite;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.coverage-points {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.desc {
    font-size: medium;
    color: white;
}

.point {
    position: absolute;
    width: 12px;
    height: 12px;
    background: white;
    border: 3px solid #fbbf24;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0.7;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.point:hover,
.point.active {
    width: 16px;
    height: 16px;
    background: #fbbf24;
    border-color: white;
    opacity: 1;
    transform: scale(1.2);
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.5);
    animation: pulse 1.5s infinite;
}



/* District Info Display */
.district-info {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 1rem;
    transform: translateY(10px);
    opacity: 0;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.district-info.show {
    transform: translateY(0);
    opacity: 1;
}

.district-name {
    font-size: 1.2rem;
    font-weight: bold;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.district-address {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.4;
}

/* Animations */
@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translate(-50%, -50%) translateY(0);
    }

    40% {
        transform: translate(-50%, -50%) translateY(-10px);
    }

    60% {
        transform: translate(-50%, -50%) translateY(-5px);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px) translateX(0px);
    }

    33% {
        transform: translateY(-10px) translateX(5px);
    }

    66% {
        transform: translateY(5px) translateX(-5px);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .coverage-content {
        flex-direction: column;
        gap: 40px;
    }

    .coverage-text h2 {
        font-size: 2rem;
    }

    .map-container {
        height: 300px;
    }

    .district {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }

    .district-info {
        bottom: 10px;
        left: 10px;
        right: 10px;
        padding: 0.8rem;
    }

    .district-name {
        font-size: 1rem;
    }

    .district-address {
        font-size: 0.8rem;
    }
}

/* Genel stil */
.coverage {
    padding: 40px 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

h2 {
    margin-bottom: 15px;
}

/* Masaüstü ve mobil görünürlük ayarları */
.desktop-only {
    display: flex;
}

.mobile-only {
    display: none;
}

/* Akordiyon stilleri */
.accordion-list {
    
    border: 1px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
    border-radius: 15px;
    margin: 20px 0;
}

.accordion-item+.accordion-item {
    border-top: 1px solid #ddd;
}

.accordion-header {
    background: rgba(255, 255, 255, 0.1);
    
    color: white;
    cursor: pointer;
    padding: 15px 20px;
    width: 100%;
    text-align: left;
    border: none;
    outline: none;
    font-size: 1.1rem;
    transition: background 0.3s ease;
}

.accordion-header:hover,
.accordion-header.active {
    background: #334155;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    padding: 0 20px;
    color: white;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.accordion-content.open {
    padding: 15px 20px;
    max-height: 200px;
    /* yeterince yüksek */
}

/* Responsive: Mobilde sadece akordiyon, masaüstünde sadece harita+liste */
@media (max-width: 767px) {
    .desktop-only {
        display: none !important;
    }

    .mobile-only {
        display: block !important;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {

    .coverage-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .districts {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-title {
        font-size: 2rem;
    }

    
}





@keyframes slideIn {
    from {
        transform: scaleX(0);
    }

    to {
        transform: scaleX(1);
    }
}


.emergency-footer {
    background: #dc2626;
    padding: 1rem;
    text-align: center;
    position: sticky;
    bottom: 0;
    z-index: 999;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.2);
}

.emergency-footer a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.emergency-footer a:hover {
    transform: scale(1.05);
}

@keyframes blink {

    0%,
    50% {
        opacity: 1;
    }

    51%,
    100% {
        opacity: 0.7;
    }
}

.emergency-footer {
    animation: blink 2s infinite;
}

/* ...existing code... */

/* Contact Section */
.contact {
    padding: 6rem 2rem;
    color: white;
    position: relative;
    overflow: hidden;
}

.part-title {
    text-align: center;
    font-size: 2.5rem;
    color: #f59e0b !important;
    margin-bottom: 3rem;
}

.contact .container {
    position: relative;
    z-index: 2;
}

.contact .section-title {
    color: #f59e0b;
    text-align: center;
    font-size: 3rem;
    margin-bottom: 1rem;
}

.contact>p {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-item::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.6s ease;
}

.contact-item:hover::before {
    left: 100%;
}

.contact-item:hover {
    background: rgba(245, 158, 11, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(245, 158, 11, 0.3);
}

.contact-item h3 {
    color: #f59e0b;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.contact-item p {
    color: #cbd5e1;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.phone-number {
    display: block;
    font-size: 1.8rem;
    font-weight: bold;
    color: #f59e0b;
    text-decoration: none;
    margin: 1rem 0;
    transition: all 0.3s ease;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.phone-number:hover {
    color: #fbbf24;
    transform: scale(1.05);
    text-shadow: 0 4px 8px rgba(251, 191, 36, 0.4);
}

/* Contact Item Lists */
.contact-item div {
    text-align: left;
}

.contact-item div p {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
    color: #e2e8f0;
}

.contact-item div p::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #f59e0b;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Responsive Design for Contact */
@media (max-width: 768px) {
    .contact {
        padding: 4rem 1rem;
    }

    .contact .section-title {
        font-size: 2rem;
    }

    .contact-info {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .contact-item {
        padding: 1.5rem;
    }

    .phone-number {
        font-size: 1.5rem;
    }

    .contact-item h3 {
        font-size: 1.1rem;
    }
}

@media (max-width: 500px) {
    .contact-item {
        padding: 1rem;
    }

    .phone-number {
        font-size: 1.3rem;
    }
}


/* Emergency card specific styles */
.emergency-card {
    background: rgba(220, 38, 38, 0.2);
    border-color: rgba(220, 38, 38, 0.3);
}

.emergency-card:hover {
    background: rgba(220, 38, 38, 0.3);
    box-shadow: 0 15px 35px rgba(220, 38, 38, 0.4);
}

/* ...existing code... */

/* ...existing code... */

/* FAQ Section Styles */

.faq {
    padding: 4rem 2rem;
    /* background: #1e293b; */
    color: white;
}

.faq-container {
    max-width: 800px;
    margin: 3rem auto 0;
}

.faq-item {
    background: rgba(255, 255, 255, 0.1);
    margin-bottom: 1rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.faq-question {
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: "#f8fafc";
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.faq-question:hover h3 {
    color: white;
}

.faq-question:hover .faq-toggle {
    color: white;
    background: rgba(255, 255, 255, 0.2);
}

.faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
    color: white;
    transition: color 0.3s ease;
    flex: 1;
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: bold;
    color: #f59e0b;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(245, 158, 11, 0.1);
    transition: all 0.3s ease;
}

.faq-answer {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    background: rgba(255, 255, 255, 0.1);
}

.faq-answer.active {
    padding: 1.5rem 2rem;
    max-height: 200px;
}

.faq-answer p {
    margin: 0;
    color: white;
    line-height: 1.6;
    font-size: 0.95rem;
}

.faq-item.active .faq-question {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.faq-item.active .faq-question h3 {
    color: white;
}

.faq-item.active .faq-toggle {
    color: white;
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(45deg);
}



/* FAQ Responsive Design */
@media (max-width: 768px) {
    .faq-container {
        margin: 2rem 1rem 0;
    }

    .faq-question {
        padding: 1rem 1.5rem;
    }

    .faq-question h3 {
        font-size: 1rem;
    }

    .faq-answer.active {
        padding: 1rem 1.5rem;
    }

    .faq-toggle {
        width: 25px;
        height: 25px;
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .faq-question {
        padding: 0.8rem 1rem;
    }

    .faq-question h3 {
        font-size: 0.9rem;
    }

    .faq-answer.active {
        padding: 1rem;
    }

    .faq-answer p {
        font-size: 0.9rem;
    }
}

/* ...existing code... */

/* Dots container */
.owl-dots {
    text-align: center;
    margin-top: 15px;
    position: relative;
    z-index: 10;
}

/* Dots (masaüstü için büyük ve belirgin) */
.owl-dot span {
    display: block;
    width: 16px;
    /* daha büyük */
    height: 16px;
    margin: 0 6px;
    border-radius: 50%;
    background: #ddd !important;
    border: 2px solid #ccc !important;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    /* hafif gölge */
}

/* Hover efekti */
.owl-dot:hover span {
    background: #bbb !important;
    transform: scale(1.1);
}

/* Aktif dot (vurgulu ve büyük) */
.owl-dot.active span {
    background: #f59e0b !important;
    border-color: #f59e0b !important;
    transform: scale(1.3);
    box-shadow: 0 0 8px rgba(245, 158, 11, 0.5);
}

/* ✅ Mobil uyum (küçük ekranlarda küçült) */
@media (max-width: 600px) {
    .owl-dot span {
        width: 12px;
        height: 12px;
        margin: 0 4px;
    }

    .owl-dot.active span {
        transform: scale(1.2);
    }
}



/* ========== CONTACT FORM STİLLERİ ========== */
.contact-form-container {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: white;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.8rem;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #f59e0b;
    outline: none;
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.1);
}

.form-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.submit-btn,
.call-btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-weight: bold;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    text-align: center;
    min-width: 200px;
    display: inline-block;
}

.submit-btn {
    background: linear-gradient(45deg, #f59e0b, #d97706);
    color: white;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(245, 158, 11, 0.3);
}

.call-btn {
    background: linear-gradient(45deg, #dc2626, #b91c1c);
    color: white;
}

.call-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(220, 38, 38, 0.3);
}

/* ========== EMERGENCY STEPS ========== */
.emergency-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.step-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.step-card:hover {
    background: rgba(245, 158, 11, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(245, 158, 11, 0.3);
}

.step-number {
    background: #f59e0b;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1rem;
}

.step-content h3 {
    color: #f59e0b;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.step-content p {
    color: #cbd5e1;
    line-height: 1.6;
}


/* ========== RESPONSİVE CONTACT FORM ========== */
@media (max-width: 768px) {
    .contact-form-container {
        padding: 2rem;
        margin: 0 1rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .form-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .submit-btn,
    .call-btn {
        min-width: auto;
    }

    .emergency-steps {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

  
}

@media (max-width: 480px) {
    .contact-form-container {
        padding: 1.5rem;
    }

    .step-card {
        padding: 1.5rem;
    }

    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}

.feature-card {
    transition: transform 0.3s ease;
    border: none;
    border-radius: 15px;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.icon-box {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}