/* Genel Stil Ayarları */
body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
}

/* Header Stilleri */
.header {
    background-color: #ffffff; /* Beyaz başlık arka planı */
    padding: 15px 0; /* Daha fazla dikey boşluk */
    box-shadow: 0 4px 12px rgba(0,0,0,0.08); /* Daha belirgin ama yumuşak gölge */
    position: sticky; /* Sabit başlık */
    top: 0;
    z-index: 1000;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo-container .logo {
    height: 100px;
    display: block;
}

/* Navigasyon Stilleri */
.main-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 30px; /* Menü öğeleri arasında daha fazla boşluk */
}

.main-nav ul li a {
    text-decoration: none;
    color: #555; /* Daha yumuşak menü metin rengi */
    font-weight: 500;
    padding: 10px 0; /* Alttan çizgi için boşluk */
    transition: color 0.3s ease, border-bottom 0.3s ease;
    white-space: nowrap;
    position: relative; /* Hover efekti için */
}

.main-nav ul li a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: #6a1b9a; /* Koyu mor */
    transition: width 0.3s ease;
}

.main-nav ul li a:hover::after,
.main-nav ul li a.active::after {
    width: 100%;
}

.main-nav ul li a:hover,
.main-nav ul li a.active {
    color: #6a1b9a; /* Koyu mor */
}

/* Dropdown Menü Stilleri */
.dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: fit-content;
    background-color: #ffffff; /* Beyaz arka plan */
    box-shadow: 0 6px 20px rgba(0,0,0,0.15); /* Daha belirgin gölge */
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
    border-radius: 8px; /* Daha yuvarlak köşeler */
    overflow: hidden;
}

.dropdown-menu li a {
    padding: 12px 25px; /* Daha fazla iç boşluk */
    display: block;
    white-space: normal;
    color: #444; /* Daha yumuşak metin rengi */
    transition: background-color 0.3s ease, color 0.3s ease;
}

.dropdown-menu li a:hover {
    background-color: #f0f0f0;
    color: #007bff; /* Hover'da vurgu rengi */
}

.dropdown:hover .dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* İletişim Butonları */
.contact-button {
    display: flex;
    align-items: center;
    gap: 20px; /* Butonlar arasında daha fazla boşluk */
    flex-wrap: wrap;
}

.phone-number {
    text-decoration: none;
    color: #007bff; /* Vurgu rengi */
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

.phone-number:hover {
    color: #0056b3;
}

.chat-button {
    text-decoration: none;
    color: #fff;
    background-color: #28a745;
    padding: 10px 20px; /* Daha büyük buton */
    border-radius: 25px; /* Yuvarlak buton */
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.chat-button:hover {
    background-color: #218838;
    transform: translateY(-2px); /* Hafif yukarı kaydırma efekti */
}

/* Kahraman (Hero) Bölümü */
.hero-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    overflow: hidden;
}

.hero-section .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-content {
    max-width: 600px;
}

.hero-subtitle {
    display: inline-block;
    background: rgba(106, 27, 154, 0.1); /* Mor arka plan */
    color: #6a1b9a; /* Koyu mor */
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero-content h1 {
    font-size: 2.8em;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #2c3e50;
}

.hero-description {
    font-size: 1.2em;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-primary {
    background: #6a1b9a; /* Koyu mor */
    color: #fff;
    border: none;
}

.btn-primary:hover {
    background: #8e24aa; /* Daha açık mor */
    transform: translateY(-2px);
}

.btn-outline {
    border: 2px solid #6a1b9a; /* Koyu mor */
    color: #333;
    background: transparent;
}

.btn-outline:hover {
    background: #6a1b9a; /* Koyu mor */
    color: #fff;
    transform: translateY(-2px);
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.hero-image img:hover {
    transform: translateY(-10px);
}

/* Features Section */
.features-section {
    padding: 60px 0;
    background: #fff;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: rgba(106, 27, 154, 0.1); /* Mor arka plan */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.feature-icon i {
    font-size: 2em;
    color: #6a1b9a; /* Koyu mor */
}

.feature-card h3 {
    margin-bottom: 15px;
    color: #2c3e50;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

/* Corporate Section */
.corporate-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.corporate-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.section-subtitle {
    display: inline-block;
    background: rgba(106, 27, 154, 0.1); /* Mor arka plan */
    color: #6a1b9a; /* Koyu mor */
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    margin-bottom: 20px;
}

.corporate-content h2 {
    font-size: 2.4em;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #2c3e50;
}

.corporate-text {
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
}

.corporate-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.4em;
    font-weight: 700;
    color: #6a1b9a; /* Koyu mor */
    margin-bottom: 5px;
}

.stat-label {
    color: #666;
    font-size: 0.9em;
}

.corporate-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

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

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-size: 2.4em;
    color: #2c3e50;
    margin: 15px 0;
}

.section-description {
    color: #666;
    font-size: 1.1em;
    line-height: 1.6;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

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

.service-image {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.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-content {
    padding: 25px;
}

.service-content h3 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 1.3em;
}

.service-content p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-link {
    display: inline-flex;
    align-items: center;
    color: #6a1b9a; /* Koyu mor */
    text-decoration: none;
    font-weight: 600;
    gap: 8px;
    transition: gap 0.3s ease;
}

.service-link:hover {
    gap: 12px;
}

.service-link i {
    font-size: 0.9em;
    transition: transform 0.3s ease;
}

.service-link:hover i {
    transform: translateX(3px);
}

/* İletişim CTA Bölümü */
.contact-cta {
    background: linear-gradient(135deg, #4a148c 0%, #6a1b9a 100%); /* Mor gradient */
    color: white;
    padding: 80px 0;
    text-align: center;
}

.cta-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}

.location-icon {
    font-size: 3.5em;
    margin-bottom: 15px;
}

.cta-content h2 {
    font-size: 2.5em;
    margin: 0;
    line-height: 1.2;
}

.cta-button {
    background-color: white;
    color: #6a1b9a; /* Koyu mor */
    padding: 15px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
}

.cta-button:hover {
    background-color: #f3e5f5; /* Çok açık mor */
    color: #4a148c; /* Daha koyu mor */
    transform: translateY(-3px);
}

/* Hizmetlerimiz Detay Sayfası Stilleri (hizmetlerimiz.html) */
.section-header {
    background-color: #f5f5f5;
    padding: 40px 0;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.section-header .section-title {
    font-size: 2.5em;
    color: #0056b3;
    margin-bottom: 10px;
}

.section-header .section-description {
    font-size: 1.1em;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
}

.services-detail {
    padding: 60px 0;
    background-color: #fff;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.service-item:nth-child(even) {
    flex-direction: row-reverse; /* Alternatif sıralama */
}

.service-image {
    flex: 1;
    min-width: 300px;
}

.service-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.service-content {
    flex: 2;
    max-width: 700px;
}

.service-content h2 {
    font-size: 2em;
    color: #2c3e50;
    margin-bottom: 15px;
}

.service-content p {
    font-size: 1.05em;
    color: #666;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    padding: 0;
}

.service-features li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    color: #333;
}

.service-features li i {
    color: #28a745;
    margin-right: 10px;
}

/* Responsive Tasarım */
@media (max-width: 992px) {
    .hero-section .container,
    .corporate-grid {
        grid-template-columns: 1fr;
    }

    .hero-content,
    .corporate-content {
        text-align: center;
        max-width: 100%;
    }

    .hero-buttons {
        justify-content: center;
    }

    .corporate-stats {
        max-width: 500px;
        margin: 0 auto 30px;
    }

    .corporate-image {
        order: -1;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2em;
    }

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

    .corporate-stats {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2.2em;
    }

    .section-header h2 {
        font-size: 1.8em;
    }

    .cta-content h2 {
        font-size: 1.6em;
    }

    .service-content h2 {
        font-size: 1.6em;
    }
}

/* Services Hero Section */
.services-hero {
    background: linear-gradient(135deg, #4a148c 0%, #6a1b9a 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
    margin-bottom: 40px;
}

.services-hero .hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.services-hero .hero-subtitle {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #ffffff;
}

.services-hero h1 {
    font-size: 3em;
    margin-bottom: 20px;
    font-weight: 700;
    color: #ffffff;
}

.services-hero p {
    font-size: 1.2em;
    line-height: 1.6;
    color: #ffffff;
    opacity: 0.9;
}

/* Services Filter */
.services-filter {
    margin-bottom: 40px;
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 25px;
    border: 2px solid #6a1b9a;
    background: transparent;
    color: #6a1b9a;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    background: rgba(106, 27, 154, 0.1);
}

.filter-btn.active {
    background: #6a1b9a;
    color: white;
}

/* Services Grid */
.services-grid {
    padding: 40px 0;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.service-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

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

.card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

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

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(106, 27, 154, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover .card-overlay {
    opacity: 1;
}

.card-overlay i {
    color: white;
    font-size: 2.5em;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.service-card:hover .card-overlay i {
    transform: translateY(0);
}

.card-content {
    padding: 25px;
}

.card-content h3 {
    color: #333;
    font-size: 1.4em;
    margin-bottom: 15px;
}

.card-content p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: #555;
}

.feature-list i {
    color: #6a1b9a;
}

.card-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #6a1b9a;
    text-decoration: none;
    font-weight: 600;
    transition: gap 0.3s ease;
}

.card-button:hover {
    gap: 15px;
}

.card-button i {
    font-size: 0.9em;
    transition: transform 0.3s ease;
}

.card-button:hover i {
    transform: translateX(5px);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #4a148c 0%, #6a1b9a 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
    margin-top: 60px;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2em;
    opacity: 0.9;
    margin-bottom: 30px;
}

.cta-button {
    display: inline-block;
    background: white;
    color: #6a1b9a;
    padding: 15px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: rgba(255,255,255,0.9);
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .services-hero h1 {
        font-size: 2.2em;
    }

    .filter-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .filter-btn {
        width: 100%;
        text-align: center;
    }

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

    .cta-content h2 {
        font-size: 2em;
    }
}

/* Modern Contact Page Styles */
.contact-modern-bg {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
    min-height: 100vh;
}

.contact-modern-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    overflow: hidden;
}

.contact-modern-left {
    padding: 50px;
    background: linear-gradient(135deg, #4a148c 0%, #6a1b9a 100%);
    color: white;
}

.contact-modern-logo {
    width: 180px;
    margin-bottom: 30px;
    border-radius: 10px;
}

.contact-modern-title {
    font-size: 2.5em;
    margin-bottom: 20px;
    font-weight: 700;
}

.contact-modern-left p {
    font-size: 1.1em;
    margin-bottom: 40px;
    opacity: 0.9;
    line-height: 1.6;
}

.contact-modern-info {
    margin-top: 40px;
}

.contact-modern-label {
    font-size: 0.9em;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    color: rgba(255,255,255,0.7);
}

.contact-modern-address,
.contact-modern-hours,
.contact-modern-phone,
.contact-modern-email {
    font-size: 1.1em;
    margin-bottom: 25px;
}

.contact-modern-phone a,
.contact-modern-email a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s;
}

.contact-modern-phone a:hover,
.contact-modern-email a:hover {
    opacity: 0.8;
}

.contact-modern-right {
    padding: 50px;
}

.contact-modern-form-card {
    width: 100%;
}

.contact-modern-form-title {
    font-size: 2em;
    color: #333;
    margin-bottom: 30px;
}

.contact-modern-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-modern-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-modern-form input,
.contact-modern-form textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1em;
    transition: all 0.3s ease;
}

.contact-modern-form input:focus,
.contact-modern-form textarea:focus {
    border-color: #6a1b9a;
    outline: none;
    box-shadow: 0 0 0 3px rgba(106, 27, 154, 0.1);
}

.contact-modern-form textarea {
    height: 150px;
    resize: vertical;
}

.contact-modern-form button {
    background: #6a1b9a;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 10px;
    font-size: 1.1em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.contact-modern-form button:hover {
    background: #4a148c;
    transform: translateY(-2px);
}

.contact-modern-map {
    margin-top: 50px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.contact-modern-map iframe {
    width: 100%;
    height: 450px;
    border: none;
}

/* Responsive Design */
@media (max-width: 992px) {
    .contact-modern-container {
        grid-template-columns: 1fr;
    }
    
    .contact-modern-left,
    .contact-modern-right {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .contact-modern-form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-modern-title {
        font-size: 2em;
    }
    
    .contact-modern-form-title {
        font-size: 1.8em;
    }
}

@media (max-width: 480px) {
    .contact-modern-bg {
        padding: 20px 0;
    }
    
    .contact-modern-container {
        border-radius: 10px;
    }
    
    .contact-modern-left,
    .contact-modern-right {
        padding: 20px;
    }
}

/* Service Detail Page Styles */
.service-detail-hero {
    background: linear-gradient(135deg, #4a148c 0%, #6a1b9a 100%);
    color: white;
    padding: 80px 0;
    margin-bottom: 60px;
}

.service-category {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 1.1em;
    margin-bottom: 20px;
}

.service-detail-content {
    padding: 0 0 80px;
}

.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.info-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.info-card h2 {
    color: #333;
    font-size: 1.8em;
    margin-bottom: 20px;
}

.feature-list, .benefit-list {
    list-style: none;
    padding: 0;
}

.feature-list li, .benefit-list li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 1.1em;
    color: #555;
}

.feature-list i, .benefit-list i {
    color: #6a1b9a;
    margin-right: 15px;
    font-size: 1.2em;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.step {
    text-align: center;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    position: relative;
}

.step-number {
    width: 40px;
    height: 40px;
    background: #6a1b9a;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2em;
    font-weight: 600;
    margin: 0 auto 15px;
}

.step h3 {
    color: #333;
    margin-bottom: 10px;
}

.sidebar {
    position: sticky;
    top: 100px;
    align-self: start;
}

.contact-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: center;
}

.contact-card h3 {
    color: #333;
    margin-bottom: 15px;
}

.contact-button {
    display: block;
    background: #6a1b9a;
    color: white;
    padding: 15px;
    border-radius: 10px;
    text-decoration: none;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.contact-button:hover {
    background: #4a148c;
    transform: translateY(-2px);
}

.contact-button.secondary {
    background: #f8f9fa;
    color: #333;
}

.contact-button.secondary:hover {
    background: #e9ecef;
}

.contact-button i {
    margin-right: 10px;
}

.info-box {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 30px;
}

.info-box h3 {
    color: #333;
    margin-bottom: 15px;
    font-size: 1.2em;
}

.standards-list {
    list-style: none;
    padding: 0;
}

.standards-list li {
    background: white;
    padding: 10px 15px;
    border-radius: 8px;
    margin-bottom: 10px;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 992px) {
    .content-grid {
        grid-template-columns: 1fr;
    }

    .sidebar {
        position: static;
    }
}

@media (max-width: 768px) {
    .service-detail-hero {
        padding: 60px 0;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .info-card {
        padding: 20px;
    }

    .service-detail-hero h1 {
        font-size: 2em;
    }
}

/* About Page Styles */
.about-hero {
    background: linear-gradient(135deg, #4a148c 0%, #6a1b9a 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.about-hero h1 {
    font-size: 3em;
    margin-bottom: 20px;
}

.about-hero p {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.9;
}

.about-content {
    padding: 60px 0;
    background: #f8f9fa;
}

.about-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.vision-mission {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.about-text .info-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.about-text .info-card h2 {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #333;
    font-size: 1.8em;
    margin-bottom: 20px;
}

.about-text .info-card h2 i {
    color: #6a1b9a;
}

.values-list, .team-features {
    list-style: none;
    padding: 0;
}

.values-list li, .team-features li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 1.1em;
    color: #555;
}

.values-list i, .team-features i {
    color: #6a1b9a;
}

.about-sidebar .info-box {
    background: white;
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.about-sidebar .info-box h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #333;
    font-size: 1.3em;
    margin-bottom: 15px;
}

.about-sidebar .info-box h3 i {
    color: #6a1b9a;
}

.service-areas {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.service-areas li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    color: #555;
}

.service-areas li:last-child {
    border-bottom: none;
}

.learn-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #6a1b9a;
    text-decoration: none;
    font-weight: 600;
    margin-top: 10px;
    transition: gap 0.3s ease;
}

.learn-more:hover {
    gap: 12px;
}

.stats-section {
    background: white;
    padding: 60px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-item {
    padding: 20px;
}

.stat-item i {
    font-size: 2.5em;
    color: #6a1b9a;
    margin-bottom: 15px;
}

.stat-number {
    display: block;
    font-size: 2.5em;
    font-weight: 700;
    color: #333;
    margin-bottom: 5px;
}

.stat-label {
    color: #666;
    font-size: 1.1em;
}

/* Responsive Design for About Page */
@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
    }

    .vision-mission {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 2.5em;
    }

    .about-text .info-card {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .about-hero h1 {
        font-size: 2em;
    }
}