/* Mobil Sabit Ara Butonu */
.mobile-call-button {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    display: none; /* Desktop'ta gizli */
}

.call-btn {
    background: linear-gradient(135deg, #E91E63, #9C27B0);
    color: white;
    padding: 15px 25px;
    border-radius: 50px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 16px;
    box-shadow: 0 4px 20px rgba(233, 30, 99, 0.4);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.call-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(233, 30, 99, 0.5);
}

.call-btn i {
    font-size: 18px;
}

/* Pulse animasyonu */
@keyframes pulse {
    0% {
        box-shadow: 0 4px 20px rgba(233, 30, 99, 0.4);
    }
    50% {
        box-shadow: 0 4px 30px rgba(233, 30, 99, 0.7);
    }
    100% {
        box-shadow: 0 4px 20px rgba(233, 30, 99, 0.4);
    }
}

/* Sadece mobilde göster */
@media (max-width: 768px) {
    .mobile-call-button {
        display: block;
    }
}

/* Lazerle Leke ve Çil Tedavisi - CSS Düzeltmeleri */

/* CSS Reset ve Temel Ayarlar */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-pink: #E91E63;
    --primary-purple: #9C27B0;
    --light-pink: #F8BBD9;
    --dark-purple: #6A1B9A;
    --gold: #FFD700;
    --lavender: #E1BEE7;
    --white: #FFFFFF;
    --light-gray: #F8F9FA;
    --dark-gray: #2C3E50;
    --text-color: #333333;
    --border-color: #E0E0E0;
    --gradient: linear-gradient(135deg, #E91E63, #9C27B0);
    --shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
}

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

/* Header */
.header {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid #eee;
}

.navbar {
    padding: 15px 0;
}

.navbar .container, .navbar .nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand, .nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Logo boyut düzeltmesi - En güçlü kural */
img[src*="elmas_klinik_logo"] {
    width: 30px !important;
    height: 30px !important;
    max-width: 30px !important;
    max-height: 30px !important;
    min-width: 30px !important;
    min-height: 30px !important;
    object-fit: contain !important;
    display: block !important;
}

.logo, .nav-logo img, .nav-brand img, .footer-logo img {
    width: 30px !important;
    height: 30px !important;
    max-width: 30px !important;
    max-height: 30px !important;
    min-width: 30px !important;
    min-height: 30px !important;
    object-fit: contain !important;
    display: block !important;
}

.brand-text, .nav-logo span {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-purple);
}

.nav-menu {
    display: flex;
    align-items: center;
}

.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
}

.nav-menu {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
}

.nav-link {
    text-decoration: none;
    color: var(--dark-gray);
    font-weight: 500;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-link:hover {
    color: var(--primary-pink);
}

/* Dropdown Menu - Safari Düzeltmesi Uygulanmış */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute !important;
    top: 100% !important;
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%) !important;
    -webkit-transform: translateX(-50%) !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    background: var(--white) !important;
    border-radius: 10px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
    padding: 20px !important;
    min-width: 800px !important;
    max-width: calc(100vw - 40px) !important;
    width: auto !important;
    display: none !important;
    grid-template-columns: repeat(5, 1fr) !important;
    gap: 20px !important;
    z-index: 9999 !important;
    overflow: hidden !important;
    box-sizing: border-box !important;
}

/* Hizmetlerimiz menüsü özel ortalama */
.nav-item:nth-child(2) .dropdown-menu,
.dropdown:nth-child(2) .dropdown-menu {
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%) !important;
    -webkit-transform: translateX(-50%) !important;
}


.dropdown-menu.simple {
    min-width: 200px;
    max-width: calc(100vw - 40px);
    width: auto;
    display: block;
    padding: 10px 0;
    grid-template-columns: none;
}

.dropdown:hover .dropdown-menu {
    display: grid !important;
    z-index: 10000 !important;
}

.dropdown:hover .dropdown-menu.simple {
    display: block;
}

.dropdown-column h4 {
    color: var(--primary-purple);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
    border-bottom: 2px solid var(--light-pink);
    padding-bottom: 5px;
}

.dropdown-column a {
    display: block;
    color: var(--dark-gray);
    text-decoration: none;
    padding: 5px 0;
    font-size: 13px;
    transition: color 0.3s ease;
}

.dropdown-column a:hover {
    color: var(--primary-pink);
}

.dropdown-menu.simple a {
    padding: 8px 20px;
    display: block;
    color: var(--dark-gray);
    text-decoration: none;
    transition: background 0.3s ease;
}

.dropdown-menu.simple a:hover {
    background: var(--light-gray);
    color: var(--primary-pink);
}

/* Mobile Menu Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--primary-pink);
    transition: 0.3s;
}

.btn {
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    display: inline-block;
    text-align: center;
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
}

.btn-primary {
    background: var(--gradient);
    color: var(--white);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(233, 30, 99, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--primary-pink);
    border: 2px solid var(--primary-pink);
}

.btn-outline:hover {
    background: var(--primary-pink);
    color: var(--white);
}

.btn-beyaz {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-beyaz:hover {
    background: var(--white);
    color: var(--primary-pink);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(233, 30, 99, 0.3);
}

.btn-full {
    width: 100%;
}

.btn-lg {
    padding: 15px 30px;
    font-size: 1rem;
}

/* Breadcrumb */
.breadcrumb {
    background: var(--light-gray);
    padding: 1rem 0;
}

.breadcrumb-list {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    align-items: center;
}

.breadcrumb-list li {
    display: flex;
    align-items: center;
}

.breadcrumb-list li:not(:last-child)::after {
    content: '>';
    margin-left: 0.5rem;
    color: var(--text-color);
}

.breadcrumb-list a {
    color: var(--primary-pink);
    text-decoration: none;
}

.breadcrumb-list span {
    color: var(--text-color);
}

/* Service Hero */
.service-hero {
    background: var(--gradient);
    color: var(--white);
    padding: 4rem 0;
    text-align: center;
}

.service-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.service-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.service-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    backdrop-filter: blur(10px);
}

.feature-item i {
    color: var(--gold);
}

/* Service Content - Ana Layout Düzeltmesi */
.service-content {
    padding: 4rem 0;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 3rem;
    align-items: start;
}

.main-content {
    background: var(--white);
}

.content-section {
    margin-bottom: 3rem;
}

.content-section h2 {
    color: var(--primary-purple);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.content-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--gradient);
    border-radius: 2px;
}

.content-section p {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: var(--text-color);
}

/* Technology Info */
.technology-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.tech-feature {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid var(--primary-pink);
}

.tech-feature h3 {
    color: var(--primary-purple);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.tech-feature h3 i {
    color: var(--primary-pink);
}

.tech-feature p {
    margin-bottom: 0.5rem;
}

.tech-feature strong {
    color: var(--primary-purple);
}

/* Advantages Grid */
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.advantage-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.advantage-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.advantage-item i {
    font-size: 3rem;
    color: var(--primary-pink);
    margin-bottom: 1rem;
}

.advantage-item h3 {
    color: var(--primary-purple);
    margin-bottom: 1rem;
}

/* Application Areas */
.application-areas {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.area-category {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 15px;
    border-top: 4px solid var(--primary-pink);
}

.area-category h3 {
    color: var(--primary-purple);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.area-category h3 i {
    color: var(--primary-pink);
}

.area-category ul {
    list-style: none;
}

.area-category li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
}

.area-category li:last-child {
    border-bottom: none;
}

.area-category strong {
    color: var(--primary-purple);
}

/* Suitability Grid */
.suitability-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.suitable, .not-suitable {
    padding: 2rem;
    border-radius: 15px;
}

.suitable {
    background: linear-gradient(135deg, #E8F5E8, #F0FFF0);
    border-left: 4px solid #4CAF50;
}

.not-suitable {
    background: linear-gradient(135deg, #FFF0F0, #FFEBEE);
    border-left: 4px solid #F44336;
}

.suitable h3 {
    color: #2E7D32;
    margin-bottom: 1rem;
}

.not-suitable h3 {
    color: #C62828;
    margin-bottom: 1rem;
}

.suitable h3 i {
    color: #4CAF50;
}

.not-suitable h3 i {
    color: #F44336;
}

.suitable ul, .not-suitable ul {
    list-style: none;
}

.suitable li, .not-suitable li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.suitable li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4CAF50;
    font-weight: bold;
}

.not-suitable li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: #F44336;
    font-weight: bold;
}

/* Process Steps */
.process-steps {
    margin: 2rem 0;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--light-gray);
    border-radius: 15px;
    transition: var(--transition);
}

.step:hover {
    background: var(--white);
    box-shadow: var(--shadow);
}

.step-number {
    background: var(--gradient);
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.step-content h3 {
    color: var(--primary-purple);
    margin-bottom: 0.5rem;
}

/* Results Timeline */
.results-timeline {
    margin: 2rem 0;
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
    position: relative;
}

.timeline-item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 25px;
    top: 60px;
    width: 2px;
    height: 40px;
    background: var(--border-color);
}

.timeline-marker {
    background: var(--gradient);
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.timeline-content {
    flex: 1;
    background: var(--light-gray);
    padding: 1.5rem;
    border-radius: 15px;
    position: relative;
}

.timeline-content h3 {
    color: var(--primary-purple);
    margin-bottom: 0.5rem;
}

.timeline-time {
    color: var(--primary-pink);
    font-weight: 600;
    font-size: 0.9rem;
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    background: var(--white);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
}

/* Care Instructions */
.care-instructions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.care-category {
    padding: 2rem;
    border-radius: 15px;
}

.care-category:first-child {
    background: linear-gradient(135deg, #E8F5E8, #F0FFF0);
    border-left: 4px solid #4CAF50;
}

.care-category:last-child {
    background: linear-gradient(135deg, #FFF0F0, #FFEBEE);
    border-left: 4px solid #F44336;
}

.care-category h3 {
    margin-bottom: 1rem;
}

.care-category:first-child h3 {
    color: #2E7D32;
}

.care-category:last-child h3 {
    color: #C62828;
}

.care-category h3 i {
    margin-right: 0.5rem;
}

.care-category:first-child h3 i {
    color: #4CAF50;
}

.care-category:last-child h3 i {
    color: #F44336;
}

.care-category ul {
    list-style: none;
}

.care-category li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.care-category:first-child li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4CAF50;
    font-weight: bold;
}

.care-category:last-child li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: #F44336;
    font-weight: bold;
}

/* FAQ */
.faq-container {
    margin: 2rem 0;
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: var(--shadow);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--light-gray);
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--lavender);
}

.faq-question h3 {
    color: var(--primary-purple);
    margin: 0;
    font-size: 1.1rem;
}

.faq-question i {
    color: var(--primary-pink);
    transition: var(--transition);
}

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

/* Sidebar Düzeltmeleri */
.sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.sidebar-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
}

.info-card h3 {
    color: var(--primary-purple);
    margin-bottom: 1rem;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.info-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
}

.info-item:last-child {
    border-bottom: none;
}

.info-item i {
    color: var(--primary-pink);
    width: 20px;
    text-align: center;
}

.info-item span {
    font-weight: 500;
    color: var(--text-color);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin: 0;
}

.contact-info i {
    color: var(--primary-pink);
    width: 20px;
    text-align: center;
}

.related-links {
    list-style: none;
}

.related-links li {
    margin-bottom: 0.5rem;
}

.related-links a {
    color: var(--text-color);
    text-decoration: none;
    padding: 0.5rem 0;
    display: block;
    transition: var(--transition);
    border-bottom: 1px solid var(--border-color);
}

.related-links a:hover {
    color: var(--primary-pink);
    padding-left: 10px;
}

.related-links li:last-child a {
    border-bottom: none;
}

/* CTA Section */
.cta-section {
    background: var(--gradient);
    color: var(--white);
    padding: 4rem 0;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background: var(--dark-gray);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: var(--gold);
    margin-bottom: 1rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1rem;
}

.footer-logo {
    height: 40px;
    width: auto;
}

.footer-brand h3 {
    color: var(--primary-pink);
}

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

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--gradient);
    color: var(--white);
    border-radius: 50%;
    text-decoration: none;
    transition: var(--transition);
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(233, 30, 99, 0.4);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul a {
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section ul a:hover {
    color: var(--primary-pink);
}

.branch-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.branch-item h5 {
    color: var(--primary-pink);
    margin-bottom: 0.3rem;
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.contact-info i {
    color: var(--primary-pink);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #444;
    color: #ccc;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--white);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        transition: var(--transition);
        box-shadow: var(--shadow);
        padding-top: 2rem;
    }

    .nav-menu.show {
        left: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        text-align: center;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .dropdown-menu {
        position: static;
        box-shadow: none;
        background: var(--light-gray);
        margin-top: 1rem;
        border-radius: 8px;
        min-width: auto;
        width: 90%;
        flex-direction: column;
    }

    .dropdown:hover .dropdown-menu {
        display: flex;
    }

    .service-hero-content h1 {
        font-size: 2rem;
    }

    .service-features {
        flex-direction: column;
        align-items: center;
    }

    .content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .sidebar {
        position: static;
        order: -1;
    }

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

    .application-areas {
        grid-template-columns: 1fr;
    }

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

    .care-instructions {
        grid-template-columns: 1fr;
    }

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

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

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

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .service-hero {
        padding: 2rem 0;
    }

    .service-hero-content h1 {
        font-size: 1.8rem;
    }

    .service-subtitle {
        font-size: 1rem;
    }

    .content-section h2 {
        font-size: 1.5rem;
    }

    .step {
        flex-direction: column;
        text-align: center;
    }

    .timeline-item {
        flex-direction: column;
        text-align: center;
    }

    .timeline-item::after {
        display: none;
    }

    .timeline-time {
        position: static;
        margin-top: 0.5rem;
        display: inline-block;
    }
}

/* Print Styles */
@media print {
    .header, .footer, .sidebar, .cta-section {
        display: none;
    }

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

    .service-hero {
        background: none;
        color: var(--text-color);
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    :root {
        --shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
        --border-color: #000000;
    }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    :root {
        --white: #1a1a1a;
        --light-gray: #2a2a2a;
        --text-color: #ffffff;
        --border-color: #444444;
    }
}
