/* Modern Minimalist Design - Fully Responsive */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #1f2937;
    background: #f9fafb;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    position: relative;
}

/* Mobile Fix - Force all elements to stay within viewport */
@media (max-width: 768px) {
    * {
        max-width: 100vw;
    }
    
    html, body {
        overflow-x: hidden !important;
        width: 100vw !important;
    }
}

/* Header */
header {
    background: #fff;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo i {
    font-size: 2rem;
    color: #3b82f6;
}

.city {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
}

.service {
    font-size: 0.75rem;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.menu-container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.home-link {
    padding: 0.75rem 1.5rem;
    background: #3b82f6;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: background 0.3s;
}

.home-link:hover {
    background: #2563eb;
}

.home-link.active {
    background: #1d4ed8;
}

.menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 0.5rem;
    cursor: pointer;
    background: #f3f4f6;
    border-radius: 8px;
}

.menu-toggle span {
    width: 24px;
    height: 2px;
    background: #1f2937;
    transition: 0.3s;
}

.menu {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 280px;
    background: white;
    box-shadow: -2px 0 8px rgba(0,0,0,0.1);
    padding: 5rem 1.5rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    transition: right 0.3s;
    z-index: 1000;
    overflow-y: auto;
}

.menu.active {
    right: 0;
}

.menu a {
    padding: 1rem;
    color: #1f2937;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: 0.2s;
    border-left: 3px solid transparent;
}

.menu a:hover {
    background: #f3f4f6;
    border-left-color: #3b82f6;
}

.menu a.active {
    background: #dbeafe;
    color: #1d4ed8;
    border-left-color: #1d4ed8;
}

.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    z-index: 999;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Breadcrumb */
.breadcrumb-nav {
    background: white;
    padding: 1rem;
    border-bottom: 1px solid #e5e7eb;
}

.breadcrumb-container {
    max-width: 1200px;
    margin: 0 auto;
}

.breadcrumb {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    font-size: 0.875rem;
    flex-wrap: wrap;
}

.breadcrumb-item {
    color: #6b7280;
}

.breadcrumb-item a {
    color: #3b82f6;
    text-decoration: none;
}

/* Hero */
.hero {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
    padding: 3rem 1rem;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
}

.hero h1 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

@media (max-width: 768px) {
    .hero {
        padding: 3rem 0.75rem !important;
        width: 100% !important;
        max-width: 100vw !important;
        margin: 0 !important;
    }
    
    .hero h1 {
        font-size: 1.75rem !important;
        line-height: 1.3 !important;
        padding: 0 0.25rem !important;
    }
    
    .hero p {
        font-size: 1rem !important;
        padding: 0 0.25rem !important;
    }
}

.service-areas {
    background: rgba(255,255,255,0.1);
    padding: 1.5rem;
    border-radius: 12px;
    margin: 1.5rem auto;
    max-width: 600px;
}

.service-areas a {
    color: white;
    font-weight: 600;
    text-decoration: underline;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}

.btn {
    display: block;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    text-align: center;
    transition: 0.3s;
    font-size: 1.125rem;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .service-areas {
        padding: 1rem !important;
        margin: 1rem 0 !important;
        max-width: 100% !important;
    }
    
    .cta-buttons {
        gap: 0.75rem;
        padding: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .btn {
        width: 100% !important;
        max-width: 100% !important;
        padding: 1rem !important;
        font-size: 1rem !important;
    }
}

.btn i {
    margin-right: 0.5rem;
}

.btn.primary {
    background: white;
    color: #1d4ed8;
}

.btn.primary:hover {
    background: #f3f4f6;
}

.btn.whatsapp {
    background: #25D366;
    color: white;
}

.btn.whatsapp:hover {
    background: #20ba5a;
}

.btn.address {
    background: #f59e0b;
    color: white;
}

.btn.address:hover {
    background: #d97706;
}

/* Sections */
.services, .features, .faq, .districts, .about-service, .location, .testimonials {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .services, .features, .faq, .districts, .about-service, .location, .testimonials {
        padding: 2rem 0.75rem !important;
        width: 100% !important;
        max-width: 100vw !important;
        margin: 0 !important;
    }
}

.services h2, .features h2, .districts h2, .about-service h2, .location h2, .faq h2, .testimonials h2 {
    font-size: 2rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 2rem;
    color: #1f2937;
}

@media (max-width: 768px) {
    .services h2, .features h2, .districts h2, .about-service h2, .location h2, .faq h2, .testimonials h2 {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
        padding: 0 0.5rem;
    }
}

/* Service Cards */
.service-cards, .feature-cards, .district-groups, .testimonials-grid {
    display: block;
    width: 100%;
}

.card, .feature-card, .district-group, .testimonial-card {
    background: white;
    padding: 1.5rem;
    margin-bottom: 1rem;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    transition: 0.3s;
    width: 100%;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .service-cards, .feature-cards, .district-groups, .testimonials-grid {
        display: block !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .card, .feature-card, .district-group, .testimonial-card {
        padding: 1.5rem 1rem !important;
        margin: 0 0 1rem 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
}

.card:hover, .feature-card:hover, .district-group:hover, .testimonial-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.card i, .feature-card i {
    font-size: 2.5rem;
    color: #3b82f6;
    margin-bottom: 1rem;
    display: block;
    text-align: center;
}

.card h3, .feature-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1f2937;
    text-align: center;
}

.district-group h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1f2937;
    text-align: left;
}

.card p, .feature-card p {
    color: #6b7280;
    line-height: 1.6;
    text-align: center;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .card i, .feature-card i {
        font-size: 2.5rem;
    }
    
    .card h3, .feature-card h3 {
        font-size: 1.125rem;
        line-height: 1.4;
    }
    
    .district-group h3 {
        font-size: 1.125rem;
        line-height: 1.4;
        text-align: left;
    }
    
    .card p, .feature-card p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
}

.card a {
    color: #3b82f6;
    font-weight: 600;
}

/* About */
.about-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    width: 100%;
    box-sizing: border-box;
}

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

.service-highlights, .service-stats {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    width: 100%;
    box-sizing: border-box;
}

.service-highlights h3, .service-stats h3 {
    color: #1f2937;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
}

.service-highlights ul {
    list-style: none;
}

.service-highlights li {
    padding: 0.5rem 0;
    color: #4b5563;
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    width: 100%;
    box-sizing: border-box;
}

.stat-item {
    background: #f9fafb;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .about-content {
        gap: 1rem;
        padding: 0;
    }
    
    .service-highlights, .service-stats {
        padding: 1.5rem 1rem !important;
        margin: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .service-highlights h3, .service-stats h3 {
        font-size: 1.25rem;
    }
    
    .service-highlights li {
        text-align: left;
        padding-left: 0.5rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
    }
    
    .stat-item {
        padding: 1rem 0.5rem;
    }
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #3b82f6;
}

.stat-label {
    color: #6b7280;
    font-size: 0.875rem;
    margin-top: 0.5rem;
}

/* District Groups */
.district-groups {
    width: 100%;
    max-width: 100%;
}

.district-group {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.district-group ul {
    list-style: none;
    text-align: left;
    padding: 0;
    padding-left: 0.5rem;
    width: 100%;
    box-sizing: border-box;
}

.district-group li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #4b5563;
    text-align: left;
    line-height: 1.6;
    display: block;
}

.district-group li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #3b82f6;
    font-weight: bold;
    font-size: 1.2rem;
    top: 0.4rem;
}

.district-group a {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 500;
}

.district-group a:hover {
    text-decoration: underline;
}

/* Alt listeler - daha az girintili */
.neighborhoods {
    margin-top: 0.25rem;
    margin-left: 0;
    margin-bottom: 0.25rem;
}

.neighborhoods li {
    font-size: 0.875rem;
    color: #6b7280;
    line-height: 1.6;
    padding: 0.25rem 0;
    padding-left: 1.5rem;
}

.neighborhoods li::before {
    content: '◦';
    font-size: 1rem;
    top: 0.2rem;
    color: #9ca3af;
}

@media (max-width: 768px) {
    .district-groups {
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .district-group {
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .district-group ul {
        text-align: left;
        padding-left: 0.25rem;
        width: 100% !important;
    }
    
    .district-group li {
        font-size: 0.95rem;
        padding: 0.4rem 0 0.4rem 1.25rem;
    }
    
    .neighborhoods {
        margin-left: 0;
    }
    
    .neighborhoods li {
        font-size: 0.85rem;
        padding-left: 1.25rem;
    }
}

/* FAQ */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}

.faq-item {
    background: white;
    margin-bottom: 1rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    width: 100%;
    box-sizing: border-box;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
}

.faq-question h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0;
    flex: 1;
}

.faq-toggle {
    width: 32px;
    height: 32px;
    background: #3b82f6;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.faq-item.active .faq-toggle {
    background: #f59e0b;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: #6b7280;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .faq-container {
        padding: 0;
    }
    
    .faq-item {
        margin: 0 0 1rem 0 !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .faq-question {
        padding: 1rem !important;
    }
    
    .faq-question h3 {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .faq-answer p {
        padding: 0 1rem 1rem;
        font-size: 0.95rem;
    }
}

/* Projects Gallery */
.projects {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 1rem;
    box-sizing: border-box;
}

.projects h2 {
    font-size: 2rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 0.5rem;
    color: #1f2937;
}

.section-subtitle {
    text-align: center;
    color: #6b7280;
    font-size: 1rem;
    margin-bottom: 2rem;
}

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

.scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3b82f6;
    font-size: 1.25rem;
}

.scroll-btn:hover {
    background: #3b82f6;
    color: white;
    box-shadow: 0 6px 16px rgba(59,130,246,0.3);
    transform: translateY(-50%) scale(1.1);
}

.scroll-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.scroll-btn-left {
    left: -24px;
}

.scroll-btn-right {
    right: -24px;
}

.projects-scroll-container {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: #3b82f6 #e5e7eb;
    padding-bottom: 1rem;
    cursor: grab;
}

.projects-scroll-container::-webkit-scrollbar {
    height: 8px;
}

.projects-scroll-container::-webkit-scrollbar-track {
    background: #e5e7eb;
    border-radius: 4px;
}

.projects-scroll-container::-webkit-scrollbar-thumb {
    background: #3b82f6;
    border-radius: 4px;
}

.projects-scroll-container::-webkit-scrollbar-thumb:hover {
    background: #2563eb;
}

.projects-grid {
    display: flex;
    gap: 1.5rem;
    width: max-content;
    padding: 0 0.5rem;
}

.project-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    background: white;
    flex-shrink: 0;
    width: 350px;
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.project-image {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

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

.project-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.7) 70%, transparent 100%);
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(0);
    transition: transform 0.3s;
}

.project-overlay h3 {
    color: white;
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.project-overlay p {
    color: #e5e7eb;
    font-size: 0.875rem;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .projects {
        padding: 2rem 0 !important;
        width: 100% !important;
        max-width: 100vw !important;
        margin: 0 !important;
    }
    
    .projects h2 {
        font-size: 1.75rem;
        margin-bottom: 0.5rem;
        padding: 0 1rem;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
        padding: 0 1rem;
    }
    
    .scroll-btn {
        display: none;
    }
    
    .projects-scroll-container {
        padding: 0 0.5rem 1rem;
    }
    
    .projects-grid {
        padding: 0 0.5rem;
    }
    
    .project-card {
        width: 280px !important;
    }
    
    .project-image {
        height: 200px;
    }
    
    .project-overlay {
        padding: 1.5rem 1rem 1rem;
    }
    
    .project-overlay h3 {
        font-size: 1rem;
    }
    
    .project-overlay p {
        font-size: 0.85rem;
    }
}

/* Gallery (Dükkan) */
.gallery {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 1rem;
    box-sizing: border-box;
}

.gallery h2 {
    font-size: 2rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 2rem;
    color: #1f2937;
}

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

.gallery-scroll-container {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: #3b82f6 #e5e7eb;
    padding-bottom: 1rem;
    cursor: grab;
}

.gallery-scroll-container::-webkit-scrollbar {
    height: 8px;
}

.gallery-scroll-container::-webkit-scrollbar-track {
    background: #e5e7eb;
    border-radius: 4px;
}

.gallery-scroll-container::-webkit-scrollbar-thumb {
    background: #3b82f6;
    border-radius: 4px;
}

.gallery-scroll-container::-webkit-scrollbar-thumb:hover {
    background: #2563eb;
}

.gallery-grid {
    display: flex;
    gap: 1.5rem;
    width: max-content;
    padding: 0 0.5rem;
}

.gallery-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    background: white;
    flex-shrink: 0;
    width: 350px;
    height: 280px;
}

.gallery-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

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

@media (max-width: 768px) {
    .gallery {
        padding: 2rem 0 !important;
        width: 100% !important;
        max-width: 100vw !important;
        margin: 0 !important;
    }
    
    .gallery h2 {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
        padding: 0 1rem;
    }
    
    .gallery-wrapper .scroll-btn {
        display: none;
    }
    
    .gallery-scroll-container {
        padding: 0 0.5rem 1rem;
    }
    
    .gallery-grid {
        padding: 0 0.5rem;
    }
    
    .gallery-card {
        width: 280px !important;
        height: 220px;
    }
}

@media (min-width: 769px) and (max-width: 1023px) {
    .gallery-card {
        width: 340px;
        height: 260px;
    }
}

@media (min-width: 1024px) {
    .gallery-card {
        width: 360px;
        height: 280px;
    }
}

/* Testimonials */
.testimonial-card {
    position: relative;
}

.testimonial-rating {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
    justify-content: center;
}

.testimonial-rating i {
    color: #fbbf24;
}

.testimonial-text {
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
    text-align: center;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding-top: 1rem;
    border-top: 1px solid #e5e7eb;
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: #3b82f6;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.author-name {
    font-weight: 600;
    color: #1f2937;
    text-align: center;
}

.author-location {
    color: #6b7280;
    font-size: 0.875rem;
    text-align: center;
}

@media (max-width: 768px) {
    .testimonial-text {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .author-name {
        font-size: 0.95rem;
    }
    
    .author-location {
        font-size: 0.8rem;
    }
}

/* Location */
.map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    width: 100%;
    box-sizing: border-box;
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
}

@media (max-width: 768px) {
    .map-container {
        margin: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        border-radius: 8px;
    }
    
    .map-container iframe {
        height: 300px;
    }
}

/* Footer */
footer {
    background: #1f2937;
    color: white;
    padding: 3rem 1rem 2rem;
    margin-top: 4rem;
    width: 100%;
    box-sizing: border-box;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    width: 100%;
    box-sizing: border-box;
}

.contact-info h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #3b82f6;
}

.contact-info p {
    margin-bottom: 0.75rem;
    color: #d1d5db;
}

.contact-info i {
    margin-right: 0.5rem;
    color: #3b82f6;
}


@media (max-width: 768px) {
    footer {
        padding: 2rem 1rem 1.5rem !important;
        margin-top: 2rem;
    }
    
    .footer-content {
        gap: 1.5rem;
        padding: 0;
    }
    
    .contact-info h3 {
        font-size: 1.125rem;
    }
    
    .contact-info p {
        font-size: 0.9rem;
    }
}

.copyright {
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid #374151;
    color: #9ca3af;
    font-size: 0.875rem;
}

/* Tablet */
@media (min-width: 769px) and (max-width: 1023px) {
    .scroll-btn-left {
        left: 10px;
    }
    
    .scroll-btn-right {
        right: 10px;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .cta-buttons {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    
    .btn {
        flex: 1;
        min-width: 200px;
        max-width: 250px;
    }
    
    .service-cards, .feature-cards {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .district-groups {
        display: block !important;
        width: 100%;
    }
    
    .district-group {
        width: 100%;
        padding: 2rem;
    }
    
    .testimonials-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .card, .feature-card, .testimonial-card {
        margin-bottom: 0;
        padding: 2rem;
    }
    
    .project-card {
        width: 340px;
    }
}

/* Desktop */
@media (min-width: 1024px) {
    .hero h1 {
        font-size: 3rem;
    }
    
    .hero {
        padding: 4rem 2rem;
    }
    
    .service-cards {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
    
    .feature-cards {
        display: grid !important;
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
    }
    
    .district-groups {
        display: block !important;
        width: 100%;
    }
    
    .district-group {
        width: 100%;
        padding: 2rem;
    }
    
    .district-group ul {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0 2rem;
        width: 100%;
        align-items: start;
    }
    
    .district-group > ul > li {
        width: 100%;
        box-sizing: border-box;
        margin-bottom: 0.5rem;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .neighborhoods {
        margin-left: 0;
        width: 100%;
    }
    
    .neighborhoods li {
        width: 100%;
    }
    
    .testimonials-grid {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
    
    .card, .feature-card, .testimonial-card {
        margin-bottom: 0;
    }
    
    .project-card {
        width: 360px;
    }
    
    .project-image {
        height: 300px;
    }
    
    .about-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}
