/* ================================
   CSS Variables
   ================================ */
:root {
    /* Light Theme (Default) */
    --primary-color: #0066cc;
    --secondary-color: #004499;
    --accent-color: #0099cc;
    --text-dark: #333333;
    --text-light: #666666;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --bg-hero-overlay: rgba(0, 0, 0, 0.65);
    --border-color: #e0e0e0;
    --shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --header-bg: #ffffff;
    --footer-bg: #333333;
    --card-bg: #ffffff;
}

/* Dark Theme */
[data-theme="dark"] {
    --primary-color: #66b3ff;
    --secondary-color: #4d99e6;
    --accent-color: #3399cc;
    --text-dark: #f5f5f5;
    --text-light: #cccccc;
    --bg-light: #1a1a1a;
    --bg-white: #2d2d2d;
    --bg-hero-overlay: rgba(0, 0, 0, 0.75);
    --border-color: #444444;
    --shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    --header-bg: #2d2d2d;
    --footer-bg: #1a1a1a;
    --card-bg: #2d2d2d;
}

/* ================================
   Reset & Base
   ================================ */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* ================================
   Skip Link (Accessibility)
   ================================ */
.skip-link {
    position: absolute;
    top: -100%;
    left: 0;
    background: var(--primary-color);
    color: white;
    padding: 1rem 2rem;
    z-index: 9999;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 0 0 8px 0;
    text-decoration: none;
    transition: top 0.2s ease;
}

.skip-link:focus {
    top: 0;
    color: white;
    outline: 3px solid white;
    outline-offset: 2px;
}

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

/* ================================
   Typography
   ================================ */
h1, h2, h3, h4 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

h1 { font-size: clamp(2rem, 5vw, 3rem); }
h2 { font-size: clamp(1.5rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 3vw, 1.5rem); }

p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

/* ================================
   Header
   ================================ */
.header {
    background: var(--header-bg);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 100;
    transition: background-color 0.3s ease;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo img {
    height: 50px;
    width: auto;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    order: 3;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    order: 2;
}

.nav-menu a {
    color: var(--text-dark);
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
}

.nav-menu a:hover {
    color: var(--primary-color);
    text-decoration: none;
}

.nav-menu a.active {
    color: var(--primary-color);
    font-weight: 700;
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    order: 4;
}

.hamburger {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    position: relative;
    transition: background-color 0.3s ease;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    left: 0;
    transition: background-color 0.3s ease;
}

.hamburger::before { top: -8px; }
.hamburger::after { top: 8px; }

/* ================================
   Theme Toggle Button (Header)
   ================================ */
.theme-toggle {
    background: var(--bg-light);
    border: 2px solid var(--border-color);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.theme-toggle:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.theme-toggle:hover svg {
    color: white;
}

.theme-toggle svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
    color: var(--text-dark);
}

.theme-toggle .sun-icon {
    display: block;
}

.theme-toggle .moon-icon {
    display: none;
}

[data-theme="dark"] .theme-toggle .sun-icon {
    display: none;
}

[data-theme="dark"] .theme-toggle .moon-icon {
    display: block;
}

[data-theme="dark"] .theme-toggle svg {
    color: #ffd700;
}

/* ================================
   Back to Top Button
   ================================ */
.back-to-top {
    background: var(--primary-color);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--secondary-color);
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.back-to-top svg {
    width: 24px;
    height: 24px;
}

/* ================================
   Hero Section
   ================================ */
.hero {
    background-image: url('../images/banner.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
    min-height: 500px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-hero-overlay);
    z-index: 1;
    transition: background-color 0.3s ease;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

/* Enhanced Hero Title Visibility */
.hero h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    letter-spacing: 2px;
    text-shadow:
        0 0 10px rgba(0, 0, 0, 0.9),
        0 0 30px rgba(0, 0, 0, 0.6),
        2px 2px 4px rgba(0, 0, 0, 0.9),
        0 0 60px rgba(0, 0, 0, 0.4);
    margin-bottom: 1rem;
    padding: 0.5rem 1.5rem;
    display: inline-block;
}

.hero-tagline {
    font-size: 1.6rem;
    margin-bottom: 3rem;
    opacity: 1;
    font-weight: 500;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
    background: rgba(0, 0, 0, 0.3);
    display: inline-block;
    padding: 0.5rem 1.5rem;
    border-radius: 8px;
}

/* ================================
   Hero CTA Button
   ================================ */
.hero-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    animation: fadeIn 1s ease-out;
}

.btn-cta {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    color: white !important;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 800;
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    box-shadow: 0 6px 20px rgba(238, 90, 36, 0.4);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid transparent;
}

.btn-cta:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 25px rgba(238, 90, 36, 0.6);
    background: linear-gradient(135deg, #ee5a24 0%, #d63031 100%);
}

.btn-cta:active {
    transform: translateY(-1px);
}

.cta-subtext {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    font-weight: 500;
    margin: 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Animation for CTA */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive adjustments for CTA */
@media (max-width: 768px) {
    .hero-cta {
        margin-bottom: 1.5rem;
    }
    
    .btn-cta {
        padding: 0.9rem 2rem;
        font-size: 1.1rem;
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .cta-subtext {
        font-size: 0.9rem;
    }
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.feature-item {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 0.8rem;
}

.feature-item h3 {
    color: white;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.feature-item p {
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 0;
    font-weight: 400;
    font-size: 0.9rem;
}

/* ================================
   Sections Base
   ================================ */
section {
    padding: 4rem 0;
}

section:nth-child(even) {
    background: var(--bg-light);
}

/* ================================
   About Section
   ================================ */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.about-highlight {
    font-size: 1.1rem;
    border-left: 4px solid var(--primary-color);
    padding-left: 1rem;
    margin-top: 1.5rem;
}

/* ================================
   Services Section
   ================================ */
.services h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.service-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

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

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* ================================
   Media Mention Section
   ================================ */
.media-mention {
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-white) 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

/* Διακοσμητικό στοιχείο φόντου */
.media-mention::before {
    content: '"';
    position: absolute;
    top: -20px;
    right: 5%;
    font-size: 20rem;
    color: rgba(0, 102, 204, 0.03);
    font-family: serif;
    line-height: 1;
    z-index: 0;
}

.media-card {
    background: var(--card-bg);
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    padding: 3rem;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

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

.media-content {
    text-align: center;
}

.media-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.media-mention h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.media-mention blockquote {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--text-dark);
    font-style: italic;
    margin: 0 auto 2rem;
    max-width: 800px;
    position: relative;
    padding: 0 2rem;
}

.media-mention blockquote::before,
.media-mention blockquote::after {
    content: '"';
    font-size: 3rem;
    color: var(--primary-color);
    opacity: 0.3;
    position: absolute;
    font-family: serif;
}

.media-mention blockquote::before {
    top: -20px;
    left: 0;
}

.media-mention blockquote::after {
    bottom: -40px;
    right: 0;
}

.media-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.media-source {
    font-weight: 700;
    color: var(--text-light);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-media {
    background: var(--primary-color);
    color: white !important;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none !important;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.25);
}

.btn-media:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 102, 204, 0.35);
}

/* Responsive για Media Mention */
@media (max-width: 768px) {
    .media-mention {
        padding: 3rem 0;
    }
    
    .media-card {
        padding: 2rem;
    }
    
    .media-mention blockquote {
        font-size: 1.1rem;
    }
    
    .media-footer {
        flex-direction: column;
        gap: 1rem;
    }
}

/* ================================
   Hours Section
   ================================ */
.hours h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.hours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.hours-main, .hours-accounting {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.hours-list {
    list-style: none;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
}

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

.hours-item.highlight {
    background: rgba(0, 102, 204, 0.05);
    margin: 0 -2rem;
    padding: 1rem 2rem;
}

.hours-item small {
    color: var(--text-light);
    font-size: 0.85rem;
}

/* ================================
   Reviews Section
   ================================ */
.reviews {
    background: var(--bg-light);
    text-align: center;
    padding: 4rem 0;
}

.reviews h2 {
    margin-bottom: 0.5rem;
}

.reviews-subtitle {
    color: var(--text-light);
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.review-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-align: left;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.review-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.review-stars {
    color: #f5a623;
    font-size: 1.2rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.review-text {
    font-style: italic;
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex-grow: 1;
    quotes: "\AB" "\BB";
}

.review-text::before {
    content: open-quote;
    font-size: 2rem;
    color: var(--primary-color);
    line-height: 0;
    vertical-align: -0.4em;
    margin-right: 0.2em;
}

.review-text::after {
    content: close-quote;
    font-size: 2rem;
    color: var(--primary-color);
    line-height: 0;
    vertical-align: -0.4em;
    margin-left: 0.2em;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border-top: 1px solid var(--border-color);
    padding-top: 1rem;
}

.review-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.review-name {
    font-style: normal;
    font-weight: 600;
    color: var(--text-dark);
    display: block;
    font-size: 0.95rem;
}

.review-source {
    color: var(--text-light);
    font-size: 0.8rem;
    display: block;
}

.google-rating-summary {
    background: var(--card-bg);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.google-badge {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.google-badge-text {
    display: flex;
    flex-direction: column;
}

.google-rating-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1;
}

.google-rating-stars {
    color: #f5a623;
    font-size: 1rem;
    letter-spacing: 1px;
}

.google-rating-count {
    color: var(--text-light);
    font-size: 0.85rem;
}

.btn-reviews {
    background: var(--primary-color);
    color: white !important;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none !important;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-reviews:hover {
    background: var(--secondary-color);
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.3);
}

/* ================================
   FAQ Section
   ================================ */
.faq {
    background: var(--bg-white);
    text-align: center;
}

.faq h2 {
    margin-bottom: 3rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.faq-item {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-align: left;
    transition: var(--transition);
}

.faq-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.faq-item h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.faq-item p {
    margin-bottom: 0;
    color: var(--text-light);
    line-height: 1.7;
}

/* ================================
   Contact Section
   ================================ */
.contact h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

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

.contact-item h3 {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.contact-note {
    font-size: 0.9rem;
    color: var(--text-light);
}

address {
    font-style: normal;
    line-height: 1.8;
}

.contact-map iframe {
    border-radius: 12px;
    width: 100%;
}

/* ================================
   Footer
   ================================ */
.footer {
    background: var(--footer-bg);
    color: white;
    padding: 3rem 0 1rem;
    transition: background-color 0.3s ease;
}

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

.footer-brand h3 {
    color: white;
    margin-bottom: 0.5rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
}

.footer-links a:hover {
    color: white;
}

.footer-contact p {
    margin-bottom: 0.5rem;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.8);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0;
}

/* ================================
   Responsive Design
   ================================ */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--header-bg);
        flex-direction: column;
        padding: 1rem 0;
        box-shadow: var(--shadow);
        gap: 0;
        order: unset;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        padding: 0.5rem 2rem;
    }

    .nav-menu a.active::after {
        display: none;
    }
    
    .nav-menu a.active {
        background-color: rgba(0, 102, 204, 0.1);
        border-left: 4px solid var(--primary-color);
        padding-left: 1rem;
    }

    .hero-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .feature-item {
        padding: 1.2rem;
    }
    
    .feature-icon {
        font-size: 1.8rem;
    }
    
    .feature-item h3 {
        font-size: 1rem;
    }

    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

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

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

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

    .google-rating-summary {
        flex-direction: column;
        text-align: center;
    }

    .google-badge {
        flex-direction: column;
    }

    .google-badge-text {
        align-items: center;
    }
}

@media (max-width: 576px) {
    .hero-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 14px;
    }

    .container {
        padding: 0 15px;
    }

    section {
        padding: 3rem 0;
    }
}

/* ================================
   Print Styles
   ================================ */
@media print {
    .header, .footer, .mobile-menu-toggle, .theme-toggle, .back-to-top {
        display: none;
    }

    body {
        font-size: 12pt;
    }

    a {
        text-decoration: underline;
    }

    a[href]::after {
        content: " (" attr(href) ")";
    }
}

/* ================================
   Reduced Motion
   ================================ */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }
}

/* ================================
   High Contrast Mode
   ================================ */
@media (prefers-contrast: high) {
    :root {
        --text-dark: #000000;
        --text-light: #333333;
        --border-color: #000000;
    }

    .service-card, .hours-main, .hours-accounting, .review-card, .faq-item {
        border: 2px solid var(--text-dark);
    }

    .theme-toggle, .back-to-top {
        border: 2px solid var(--text-dark);
    }
}