:root {
    --primary-color: #ff6b00;
    --secondary-color: #0066cc;
    --dark-color: #333;
    --light-color: #f8f9fa;
    --gradient: linear-gradient(135deg, var(--primary-color), #ff9248);
    --blue-gradient: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
}

body {
    font-family: 'Poppins', 'Segoe UI', sans-serif;
    padding-top: 90px;
}

/* Header Styles */
.navbar {
    background: linear-gradient(to right, #f8f9fa, #e8f0fe);
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    padding: 0.5rem 0;
    transition: all 0.3s ease;
}

.logo {
    height: 80px;
    width: auto;
    transition: all 0.3s ease;
}

.navbar-brand {
    display: flex;
    justify-content: center;
    align-items: center;
}

.navbar-nav {
    margin-left: auto !important;
    margin-right: 2rem !important;
}

.nav-link {
    color: var(--dark-color);
    font-weight: 500;
    padding: 0.8rem 1.5rem;
    margin: 0 0.25rem;
    transition: all 0.3s ease;
    border-radius: 8px;
}

.nav-link:hover {
    color: var(--primary-color);
    background: rgba(255,255,255,0.9);
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

/* Hero Section */
.hero-slider {
    position: relative;
    overflow: hidden;
    padding: 0;
    background: transparent;
}

.hero-slider::before {
    display: none;
}

.hero-slide {
    display: none;
    animation: fadeEffect 1.5s;
    position: relative;
    min-height: 600px;
    overflow: hidden;
}

.hero-slide.active {
    display: block;
}

.hero-slide.active .hero-image img {
    animation: zoomEffect 20s forwards;
}

@keyframes fadeEffect {
    from {opacity: 0; transform: scale(1.03);}
    to {opacity: 1; transform: scale(1);}
}

@keyframes zoomEffect {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.1);
    }
}

.hero-content {
    padding: 6rem 0;
    color: white;
    position: relative;
    z-index: 5;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 20px;
    padding: 3rem;
    margin: 5rem 0;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform: translateZ(0);
    transition: all 0.5s ease;
    overflow: hidden;
}

.hero-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.1) 0%, rgba(0, 102, 204, 0.1) 100%);
    z-index: -1;
    opacity: 0.5;
}

.hero-slide.active .hero-content {
    animation: slideInLeft 1s forwards;
}

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

.hero-content h1 {
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    background: linear-gradient(90deg, #fff, #e0e0e0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.hero-image-container {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    clip-path: none;
    z-index: 1;
}

.hero-image {
    width: 100%;
    height: 100%;
    min-height: 600px;
    position: relative;
}

.hero-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.2) 100%);
    z-index: 2;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.hero-content .btn {
    background: var(--gradient);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    font-weight: 600;
    box-shadow: 0 10px 25px rgba(255,107,0,0.4);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.hero-content .btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
    z-index: -1;
}

.hero-content .btn:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 15px 30px rgba(255,107,0,0.5);
}

.hero-content .btn:hover:before {
    width: 100%;
}

.slider-dots {
    text-align: center;
    position: absolute;
    bottom: 30px;
    width: 100%;
    z-index: 10;
}

.dot {
    height: 12px;
    width: 12px;
    margin: 0 8px;
    background-color: rgba(255,255,255,0.4);
    border-radius: 50%;
    display: inline-block;
    transition: all 0.4s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.dot.active {
    background-color: var(--primary-color);
    transform: scale(1.3);
    border-color: rgba(255,255,255,0.8);
}

@media (max-width: 768px) {
    .hero-slide {
        min-height: 70vh;
        position: relative;
    }
    
    .hero-content {
        padding: 1.2rem 1.5rem;
        margin: 0;
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        width: 100%;
        border-radius: 15px 15px 0 0;
        background: rgba(0, 0, 0, 0.5);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        transform: translateY(0);
        box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.3);
        border-bottom: none;
        text-align: left;
        max-height: 45vh;
        overflow-y: auto;
    }
    
    .hero-content h1 {
        font-size: 1.5rem;
        margin-bottom: 0.6rem;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    }
    
    .hero-content p {
        font-size: 0.9rem;
        margin-bottom: 0.8rem;
        opacity: 0.9;
    }
    
    .hero-image-container {
        position: absolute;
        width: 100%;
        height: 100%;
        clip-path: none;
    }
    
    .hero-image {
        min-height: 70vh;
    }
    
    .hero-image::before {
        background: linear-gradient(to bottom, 
            rgba(0,0,0,0.2) 0%, 
            rgba(0,0,0,0.3) 50%, 
            rgba(0,0,0,0.5) 100%);
    }
    
    .hero-content .btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
        width: auto;
        display: inline-flex;
        margin-top: 0.5rem;
        box-shadow: 0 5px 15px rgba(255,107,0,0.3);
    }
    
    .slider-dots {
        bottom: auto;
        top: 15px;
        z-index: 15;
    }
    
    .dot {
        height: 6px;
        width: 6px;
        margin: 0 3px;
        background-color: rgba(255,255,255,0.6);
    }
    
    .slider-navigation {
        padding: 0;
        top: 50%;
    }
    
    .slider-nav {
        width: 32px;
        height: 32px;
        position: absolute;
        opacity: 0.6;
    }
    
    .slider-nav.prev-slide {
        left: 10px;
    }
    
    .slider-nav.next-slide {
        right: 10px;
    }
    
    .slider-nav i {
        font-size: 0.8rem;
    }
    
    /* Mobil menü düzenlemeleri */
    .navbar-collapse {
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border-radius: 15px;
        padding: 1rem;
        margin-top: 0.5rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    }
    
    .navbar-toggler {
        border: none;
        padding: 0.5rem;
        border-radius: 10px;
        background: rgba(255, 255, 255, 0.8);
        backdrop-filter: blur(5px);
        -webkit-backdrop-filter: blur(5px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
    
    .navbar-toggler:focus {
        box-shadow: none;
        outline: none;
    }
    
    .navbar-toggler-icon {
        width: 1.5em;
        height: 1.5em;
    }
    
    .nav-link {
        text-align: center;
        margin: 0.3rem 0;
        padding: 0.7rem;
        border-radius: 10px;
        transition: all 0.3s ease;
    }
    
    .nav-link:hover, .nav-link:focus {
        background: rgba(255, 107, 0, 0.1);
        color: var(--primary-color);
    }
    
    .logo {
        height: 60px;
        width: auto;
    }
    
    /* Sabit butonlar düzenlemesi */
    .fixed-bottom-buttons {
        right: 0;
        left: 0;
        bottom: 20px;
        padding: 0 1rem;
        justify-content: space-between;
        z-index: 1030;
    }
    
    .btn-call, .btn-whatsapp {
        padding: 0.7rem 1rem;
        font-size: 0.85rem;
        border-radius: 50px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
        flex: 1;
        max-width: 48%;
        justify-content: center;
    }
}

/* Gallery Section */
.gallery-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.gallery-title {
    text-align: center;
    margin-bottom: 3rem;
}

.gallery-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.gallery-title p {
    color: #666;
    font-size: 1.1rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    padding: 0 1rem;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 1.5rem;
    color: white;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

/* Footer */
.footer {
    background: var(--blue-gradient);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.footer-section h3 i {
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.footer-section h3:hover i {
    transform: scale(1.1);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.footer-links a i {
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.footer-links a:hover {
    color: white;
    transform: translateX(5px);
}

.footer-links a:hover i {
    transform: scale(1.1);
}

.footer-contact i {
    margin-right: 10px;
    color: var(--primary-color);
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

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

.social-icon:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    margin: 0;
}

.footer-bottom .created-by {
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
}

.footer-bottom .created-by a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom .created-by a:hover {
    color: #fff;
}

/* Features Box */
.features-box {
    padding: 4rem 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.features-box .row {
    margin: 0 -15px;
}

.features-box .col-md-3 {
    padding: 15px;
}

.feature-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon i {
    font-size: 2rem;
    color: white;
}

.feature-item h4 {
    color: var(--dark-color);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.feature-item p {
    color: #666;
    margin: 0;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .features-box {
        padding: 3rem 0;
    }
    
    .features-box .col-md-3 {
        padding: 10px 15px;
    }

    .feature-item {
        padding: 1.5rem;
        margin-bottom: 0;
    }

    .feature-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 1rem;
    }

    .feature-item h4 {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }

    .feature-item p {
        font-size: 0.9rem;
    }
}

/* Hizmetler Section */
.service-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    height: 100%;
    margin-bottom: 1rem;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.service-image {
    width: 100%;
    height: 200px;
    margin-top: 20px;
    border-radius: 8px;
    overflow: hidden;
}

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

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

.service-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.3rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-card p {
    color: #666;
    margin: 0;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

/* Header Contact Styles */
.header-contact {
    padding: 0.5rem 0;
}

.contact-title {
    margin-bottom: 0.25rem;
}

.contact-title span {
    font-size: 0.9rem;
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-phone {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-phone i {
    color: var(--primary-color);
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.contact-phone span {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--dark-color);
}

.contact-phone:hover {
    text-decoration: none;
}

.contact-phone:hover i {
    transform: scale(1.1);
}

.contact-phone:hover span {
    color: var(--primary-color);
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .header-contact {
        margin-top: 1rem;
        text-align: center;
        width: 100%;
        align-items: center !important;
    }
}

/* About Section */
.about-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.about-content {
    padding-right: 2rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
}

.section-title i {
    color: var(--primary-color);
    font-size: 2rem;
}

.about-text .lead {
    font-size: 1.25rem;
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.about-text p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.about-feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.about-feature-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.about-feature-item span {
    color: var(--dark-color);
    font-weight: 500;
}

.about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    transition: transform 0.3s ease;
}

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

.experience-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: var(--primary-color);
    color: white;
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.experience-badge .years {
    font-size: 2.5rem;
    font-weight: 700;
    display: block;
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.9rem;
    opacity: 0.9;
}

.about-cta {
    margin-top: 2rem;
}

.about-cta .btn {
    padding: 1rem 2rem;
    font-weight: 500;
    background: var(--gradient);
    color: white;
    border: none;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.about-cta .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    color: white;
}

.about-cta .btn i {
    font-size: 1.2rem;
}

@media (max-width: 991px) {
    .about-content {
        padding-right: 0;
        margin-bottom: 3rem;
        text-align: center;
    }

    .section-title {
        justify-content: center;
    }

    .about-features {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto 2rem;
    }

    .about-feature-item {
        justify-content: center;
    }

    .about-cta {
        display: flex;
        justify-content: center;
    }

    .experience-badge {
        bottom: 20px;
        left: 20px;
        padding: 1rem;
    }

    .experience-badge .years {
        font-size: 2rem;
    }
}

/* Slider Navigation Controls */
.slider-navigation {
    position: absolute;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
}

.slider-nav {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.slider-nav:hover {
    background-color: var(--primary-color);
    border-color: white;
    transform: scale(1.1);
}

.slider-nav i {
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .slider-navigation {
        padding: 0 10px;
    }
    
    .slider-nav {
        width: 40px;
        height: 40px;
    }
    
    .slider-nav i {
        font-size: 1rem;
    }
}

/* Fixed Bottom Buttons */
.fixed-bottom-buttons {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 1000;
    justify-content: center;
    padding: 0 1rem;
    width: 90%;
    max-width: 500px;
}

.btn-call, .btn-whatsapp {
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.btn-call {
    background: var(--gradient);
}

.btn-whatsapp {
    background: #25d366;
}

.btn-call:hover {
    transform: translateY(-3px);
    color: white;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.btn-whatsapp:hover {
    transform: translateY(-3px);
    color: white;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    background: #128C7E;
}

/* Mobil Menü Düzeltmeleri */
@media (max-width: 768px) {
    /* Genel mobil düzenlemeler */
    .features-box .row {
        margin: 0 -0.5rem;
    }

    .feature-item, .service-card {
        margin: 0.5rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

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

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

    .footer-links a {
        justify-content: center;
    }

    .footer-links.footer-contact {
        align-items: center;
    }

    .footer-links.footer-contact li {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .service-image {
        height: 180px;
    }
    
    .service-card h3 {
        font-size: 1.1rem;
    }
    
    .service-card p {
        font-size: 0.85rem;
    }
    
    /* Hizmetler bölümü düzenlemeleri */
    .service-card {
        padding: 1.5rem;
        border-radius: 15px;
        height: 100%;
    }
    
    /* Özellikler kutusu düzenlemeleri */
    .feature-item {
        padding: 1.2rem;
        border-radius: 15px;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
    }
    
    .feature-item h4 {
        font-size: 1rem;
    }
    
    .feature-item p {
        font-size: 0.85rem;
    }
    
    /* İnteraktif araçlar düzenlemeleri */
    .tool-card {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .tool-title {
        font-size: 1rem;
    }
    
    /* SEO içeriği düzenlemeleri */
    .seo-card {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .location-list, .service-list {
        columns: 1;
    }
    
    /* Hakkımızda bölümü düzenlemeleri */
    .about-section {
        padding: 3rem 0;
    }
    
    .about-content {
        padding-right: 0;
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
        justify-content: center;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .about-feature-item {
        justify-content: center;
    }
    
    .about-image {
        max-height: 300px;
    }
}

/* Acil Durum Asistanı Stilleri */
.symptom-checkboxes {
    max-height: 200px;
    overflow-y: auto;
    border: 1px solid rgba(0,0,0,0.1);
}

.symptom-checkboxes .form-check {
    padding-left: 2rem;
}

.symptom-checkboxes .form-check-input {
    width: 1.2rem;
    height: 1.2rem;
    margin-top: 0.2rem;
}

.symptom-checkboxes .form-check-label {
    font-size: 0.9rem;
    padding-left: 0.3rem;
}

@media (max-width: 768px) {
    .symptom-checkboxes {
        max-height: 180px;
    }
    
    .symptom-checkboxes .form-check {
        padding: 0.6rem 0.8rem;
        margin-bottom: 0.5rem !important;
        background-color: rgba(0,0,0,0.03);
        border-radius: 0.5rem;
    }
    
    .symptom-checkboxes .form-check-input {
        width: 1.4rem;
        height: 1.4rem;
        margin-right: 0.5rem;
    }
    
    .symptom-checkboxes .form-check-label {
        font-size: 1rem;
        padding-left: 0.5rem;
        padding-top: 0.1rem;
    }
}

#emergencyAdvice ul li {
    padding: 0.5rem 0;
}

@media (max-width: 768px) {
    #emergencyAdvice ul li {
        padding: 0.7rem 0;
        border-bottom: 1px solid rgba(0,0,0,0.05);
    }
    
    #emergencyAdvice ul li:last-child {
        border-bottom: none;
    }
} 