@font-face {
    font-family: 'IRANYekanX';
    src: url('fonts/IRANYekanX-Regular.woff2') format('woff2'),
         url('fonts/IRANYekanX-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'IRANYekanX';
    src: url('fonts/IRANYekanX-Bold.woff2') format('woff2'),
         url('fonts/IRANYekanX-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* ========== Reset & Base ========== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #0e7b7c;
    --primary-dark: #0a5e5f;
    --secondary: #14b8a6;
    --accent: #0891b2;
    --gray-light: #f8fafc;
    --gray: #e2e8f0;
    --text-dark: #1e293b;
    --text-light: #64748b;
    --white: #ffffff;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
    --radius: 12px;
    --radius-sm: 8px;
    --whatsapp-green: #25D366;
    --font-main: 'IRANYekanX', Tahoma, Arial, sans-serif;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    background-color: var(--gray-light);
    color: var(--text-dark);
    line-height: 1.7;
    font-size: 16px;
    font-family: var(--font-main);
    overflow-x: hidden;
    padding-top: 70px;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========== Header ========== */
header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: white;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: var(--shadow-md);
    min-height: 70px;
    display: flex;
    align-items: center;
    padding: 10px 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 15px;
    flex-wrap: wrap;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    flex-shrink: 0;
}

.logo-image {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-sm);
    background: white;
    padding: 5px;
    object-fit: contain;
    flex-shrink: 0;
}

.logo-text .logo-title {
    font-size: 1rem;
    font-weight: 800;
    color: white;
    line-height: 1.4;
    display: block;
}

.logo-text p {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.85);
    margin-top: 4px;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.8rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: var(--radius-sm);
}

.nav-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
}

.nav-menu {
    display: flex;
    gap: 0.8rem;
    list-style: none;
    flex-wrap: wrap;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 6px;
    font-weight: 500;
    font-size: 0.85rem;
    transition: background-color 0.2s;
    white-space: nowrap;
}

.nav-menu a:hover {
    background: rgba(255, 255, 255, 0.15);
}

.header-phone {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.15);
    padding: 6px 14px;
    border-radius: 30px;
    font-weight: 700;
    border: 1px solid rgba(255, 255, 255, 0.3);
    flex-shrink: 0;
}

.header-phone a {
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
}

/* ========== Hero Section (مطابق تصویر) ========== */
.hero {
    background: linear-gradient(145deg, #0a5e5f 0%, #063a3a 100%);
    padding: 50px 0;
    color: white;
    position: relative;
    min-height: 550px;
    display: flex;
    align-items: center;
}

.hero-content {
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
    width: 100%;
}

/* کارت اصلی با پس‌زمینه نیمه‌شفاف */
.hero-card {
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 20px;
    padding: 40px 35px 35px;
    max-width: 850px;
    margin: 0 auto;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.hero-main-title {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.4;
    text-align: center;
    color: #ffffff;
}

/* ===== باکس خدمات با تیک ===== */
.hero-services-box {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    padding: 18px 25px;
    margin-bottom: 25px;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.hero-service-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 25px;
}

.hero-service-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    font-weight: 500;
    color: #fff;
    padding: 4px 0;
}

.hero-service-list li i {
    color: #4ade80;
    font-size: 1.2rem;
}

/* ===== نشان‌های اعتماد ===== */
.hero-trust-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 18px;
    margin-bottom: 28px;
}

.hero-trust-badges span {
    background: rgba(255, 255, 255, 0.10);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.85rem;
    border: 1px solid rgba(255, 255, 255, 0.10);
    color: rgba(255, 255, 255, 0.95);
}

/* ===== دکمه‌ها ===== */
.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-family: var(--font-main);
}

.btn-primary {
    background: var(--secondary);
    color: white;
    box-shadow: 0 8px 25px rgba(20, 184, 166, 0.35);
}

.btn-primary:hover {
    background: #0f766e;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(20, 184, 166, 0.5);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.12);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.35);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.22);
    transform: translateY(-3px);
}

.shahsavari-brand {
    text-align: center;
    margin: 30px 0 10px;
}

.shahsavari-badge {
    display: inline-block;
    background: linear-gradient(145deg, var(--primary) 0%, var(--accent) 100%);
    color: white;
    padding: 12px 40px;
    border-radius: 50px;
    font-size: 1.4rem;
    font-weight: 800;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* ========== Contact Numbers ========== */
.contact-numbers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

.contact-number-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray);
    border-right: 5px solid var(--secondary);
    transition: all 0.3s;
}

.contact-number-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.contact-number-card h2 {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 15px;
}

.contact-number-card p {
    color: var(--text-dark);
    line-height: 1.9;
    margin-bottom: 15px;
}

/* ========== Sections ========== */
.section {
    padding: 60px 0;
    background: var(--white);
}

.section-alt {
    background: var(--gray-light);
}

.section-title {
    text-align: center;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 20px;
    position: relative;
}

.section-title::after {
    content: "";
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 3px;
    background: var(--secondary);
    border-radius: 3px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 40px;
}

/* ========== Services ========== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 30px 25px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray);
    transition: all 0.3s;
    text-align: right;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--secondary);
}

.service-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--gray);
    padding-bottom: 15px;
}

.service-icon {
    font-size: 2.5rem;
    color: var(--primary);
    background: rgba(14, 123, 124, 0.1);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.service-header h3 {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 5px;
}

.service-header p {
    color: var(--text-light);
    font-size: 0.9rem;
}

.service-description {
    color: var(--text-dark);
    line-height: 1.8;
}

.service-description p {
    margin-bottom: 15px;
}

.service-features {
    list-style: none;
    margin: 20px 0;
    padding: 0;
}

.service-features li {
    margin-bottom: 10px;
    padding-right: 25px;
    position: relative;
    color: var(--text-dark);
}

.service-features li::before {
    content: "✓";
    color: var(--secondary);
    font-weight: bold;
    position: absolute;
    right: 0;
}

/* ========== Brands ========== */
.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.brand-card {
    background: var(--white);
    padding: 20px;
    border-radius: var(--radius);
    text-align: center;
    text-decoration: none;
    color: var(--text-dark);
    border: 1px solid var(--gray);
    transition: all 0.3s;
    display: block;
}

.brand-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.brand-card h3 {
    font-size: 1rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 8px;
}

.brand-card p {
    font-size: 0.8rem;
    color: var(--text-light);
}

/* ========== Brands Logo Slider ========== */
.brands-logo-slider {
    margin: 30px 0 20px;
    padding: 10px 0;
}

.brand-logo-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: white;
    padding: 15px 10px;
    border-radius: var(--radius);
    border: 1px solid var(--gray);
    transition: all 0.3s;
    min-height: 100px;
}

.brand-logo-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.brand-logo-card svg {
    max-width: 100%;
    height: auto;
    margin-bottom: 8px;
}

.brand-logo-card span {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-dark);
}

/* ========== Why Us ========== */
.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.why-us-item {
    background: white;
    padding: 25px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray);
    transition: all 0.3s;
}

.why-us-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.why-us-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.why-us-item h3 {
    color: var(--primary);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.why-us-item p {
    color: var(--text-light);
}

/* ========== Expertise ========== */
.section-expertise {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 50px 0;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 30px 0;
    text-align: center;
}

.expertise-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
}

.expertise-label {
    color: var(--text-light);
    font-size: 1rem;
}

.expertise-desc {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: var(--text-dark);
    font-size: 1.1rem;
    line-height: 1.8;
}

.expertise-desc a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: underline;
}

/* ========== Areas ========== */
.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.area-item {
    background: var(--white);
    padding: 25px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray);
    transition: all 0.3s;
    border-right: 4px solid var(--secondary);
}

.area-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.area-item h3 {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 10px;
}

.area-item h3::before {
    content: "📍";
    margin-left: 8px;
}

.area-item p {
    color: var(--text-light);
}

/* ========== FAQ ========== */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.faq-item {
    background: white;
    padding: 25px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray);
}

.faq-item h4 {
    color: var(--primary);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.faq-item p {
    color: var(--text-dark);
}

/* ========== Contact ========== */
.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.contact-item {
    background: var(--white);
    padding: 25px 20px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray);
}

.contact-icon {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.contact-item h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.contact-phone {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--primary);
    display: inline-block;
    margin: 10px 0;
    padding: 5px 15px;
    background: rgba(13, 148, 136, 0.05);
    border-radius: 30px;
}

.btn-contact {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 8px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.2s;
    margin-top: 10px;
    font-family: var(--font-main);
}

.btn-whatsapp-contact {
    background: var(--whatsapp-green);
}

.btn-contact:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.map-container {
    margin-top: 40px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray);
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: 0;
    display: block;
}

/* ========== Footer ========== */
footer {
    background: #0f172a;
    color: white;
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-section h4 {
    color: #99f6e4;
    font-size: 1.1rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.footer-section p,
.footer-section li {
    color: #cbd5e1;
    font-size: 0.9rem;
    margin-bottom: 8px;
    list-style: none;
}

.footer-section a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-section a:hover {
    color: #99f6e4;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.2s;
}

.social-icon:hover {
    background: var(--secondary);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #94a3b8;
    font-size: 0.85rem;
}

/* ========== Fixed Elements ========== */
.whatsapp-button {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1000;
}

.whatsapp-button a {
    background: var(--whatsapp-green);
    color: white;
    padding: 12px 24px;
    border-radius: 40px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
    transition: all 0.2s;
}

.whatsapp-button a:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(37, 211, 102, 0.4);
}

.back-to-top {
    position: fixed;
    bottom: 90px;
    right: 25px;
    z-index: 999;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    border: none;
    box-shadow: 0 4px 15px rgba(14, 123, 124, 0.4);
    cursor: pointer;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.9);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.back-to-top:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    transform: translateY(-3px) scale(1.05);
}

/* ========== Swiper ========== */
.slider-section {
    padding: 40px 0;
    background: linear-gradient(135deg, #f0fdfa, #e6f7f5);
}

.swiper {
    width: 100%;
    height: auto;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.swiper-slide {
    text-align: center;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: contain;
    border-radius: 24px;
}

.swiper-pagination-bullet-active {
    background: var(--primary) !important;
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--primary) !important;
    background: rgba(255, 255, 255, 0.7);
    width: 44px;
    height: 44px;
    border-radius: 50%;
}

/* ========== Responsive ========== */
@media (max-width: 768px) {
    body {
        padding-top: 60px;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        display: none;
        position: fixed;
        top: 60px;
        right: 0;
        width: 100%;
        background: var(--primary);
        flex-direction: column;
        padding: 20px 0;
        z-index: 999;
        max-height: calc(100vh - 60px);
        overflow-y: auto;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu a {
        padding: 15px 25px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        width: 100%;
        white-space: normal;
        text-align: center;
    }

    .header-phone {
        display: none;
    }

    .logo {
        gap: 10px;
        max-width: 70%;
    }

    .logo-image {
        width: 42px;
        height: 42px;
    }

    .logo-text .logo-title {
        font-size: 0.8rem;
    }

    .logo-text p {
        font-size: 0.6rem;
    }

    /* Hero Responsive */
    .hero {
        padding: 30px 0;
        min-height: auto;
    }

    .hero-card {
        padding: 25px 18px 25px;
        border-radius: 16px;
    }

    .hero-main-title {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }

    .hero-services-box {
        padding: 14px 16px;
        border-radius: 12px;
    }

    .hero-service-list {
        gap: 6px 15px;
    }

    .hero-service-list li {
        font-size: 0.85rem;
    }

    .hero-service-list li i {
        font-size: 1rem;
    }

    .hero-trust-badges {
        gap: 6px 12px;
        margin-bottom: 20px;
    }

    .hero-trust-badges span {
        font-size: 0.7rem;
        padding: 4px 10px;
    }

    .btn {
        padding: 12px 20px;
        font-size: 0.95rem;
        width: 100%;
        justify-content: center;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .shahsavari-badge {
        font-size: 1.2rem;
        padding: 10px 30px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-header {
        flex-direction: column;
        text-align: center;
    }

    .service-icon {
        margin: 0 auto;
    }

    .brands-grid,
    .why-us-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .expertise-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-numbers-grid {
        grid-template-columns: 1fr;
    }

    .map-container iframe {
        height: 300px;
    }

    .whatsapp-button {
        bottom: 20px;
        left: 10px;
        right: 10px;
    }

    .whatsapp-button a {
        width: 100%;
        justify-content: center;
    }

    .back-to-top {
        bottom: 80px;
        right: 15px;
        width: 44px;
        height: 44px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-main-title {
        font-size: 1.3rem;
    }

    .hero-card {
        padding: 18px 12px 20px;
    }

    .hero-services-box {
        padding: 10px 12px;
    }

    .hero-service-list {
        gap: 4px 10px;
    }

    .hero-service-list li {
        font-size: 0.78rem;
        padding: 2px 0;
    }

    .hero-service-list li i {
        font-size: 0.9rem;
    }

    .hero-trust-badges span {
        font-size: 0.65rem;
        padding: 3px 8px;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .logo {
        max-width: 75%;
    }

    .logo-image {
        width: 38px;
        height: 38px;
    }

    .logo-text .logo-title {
        font-size: 0.7rem;
    }

    .logo-text p {
        font-size: 0.55rem;
    }

    .back-to-top {
        bottom: 80px;
        right: 10px;
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }
}

/* ========== Print ========== */
@media print {
    header, footer, .whatsapp-button, .nav-toggle, .back-to-top {
        display: none !important;
    }

    body {
        padding-top: 0;
        font-size: 12pt;
        color: #000;
        background: #fff;
    }

    .hero {
        background: #f0f0f0 !important;
        color: #000 !important;
        padding: 30px 0 !important;
    }

    .hero-card {
        background: #f9f9f9 !important;
        backdrop-filter: none !important;
        border: 1px solid #ccc !important;
        box-shadow: none !important;
    }

    .hero-service-list li {
        color: #000 !important;
        background: none !important;
        border: 1px solid #ccc !important;
    }

    .hero-service-list li i {
        color: #000 !important;
    }

    .hero-trust-badges span {
        background: #f0f0f0 !important;
        border: 1px solid #ccc !important;
        color: #000 !important;
    }

    .btn {
        border: 1px solid #ccc !important;
        background: #f9f9f9 !important;
        color: #000 !important;
        box-shadow: none !important;
    }

    .btn-primary, .btn-outline {
        background: #f9f9f9 !important;
        color: #000 !important;
        border: 1px solid #ccc !important;
    }

    .service-card, .brand-card, .why-us-item, .faq-item, .area-item {
        border: 1px solid #ddd !important;
        box-shadow: none !important;
    }
}