/* ============================================================
   Division 9 — Shared Stylesheet
   Common styles for all Service Department pages
   ============================================================ */

/* ── Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');

/* ── Shared Design Patterns (site-wide utilities) ── */
@import './shared.css';

/* ── Variables ── */
:root {
    --black-deep: #FFFFFF;
    --black-rich: #F8FAFB;
    --black-soft: #F4F7F9;
    --black-medium: #EFF3F6;
    --gold-primary: #0D9488;
    --gold-light: #14B8A6;
    --gold-muted: #0F766E;
    --text-primary: #1A1A2E;
    --text-secondary: rgba(26, 26, 46, 0.80);
    --text-muted: rgba(26, 26, 46, 0.70);
    --border-subtle: rgba(13, 148, 136, 0.15);
    --border-accent: rgba(13, 148, 136, 0.35);
}

/* ── Reset ── */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--black-deep);
    color: var(--text-primary);
    min-height: 100vh;
    overflow-x: hidden;
    line-height: 1.6;
    font-weight: 300;
}

body.modal-open {
    overflow: hidden;
}

/* ── Background Elements ── */
.bg-pattern {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    display: none;
    background-image:
        linear-gradient(var(--gold-primary) 1px, transparent 1px),
        linear-gradient(90deg, var(--gold-primary) 1px, transparent 1px);
    background-size: 80px 80px;
}

.bg-gradient {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    background:
        radial-gradient(ellipse at 20% 0%, rgba(13, 148, 136, 0.03) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 100%, rgba(13, 148, 136, 0.02) 0%, transparent 50%);
}

.accent-line {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
    z-index: 100;
    opacity: 0.6;
}

.main-container {
    position: relative;
    z-index: 10;
}

/* ── Header & Navigation ── */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 48px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    z-index: 1000;
    background: linear-gradient(180deg, var(--black-deep) 0%, rgba(255, 255, 255, 0.9) 60%, transparent 100%);
    backdrop-filter: blur(20px);
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 16px;
    justify-self: start;
}

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

.logo-container img {
    height: 38px !important;
    width: auto !important;
    max-width: none !important;
    object-fit: contain;
    flex-shrink: 0;
    filter: none;
}

.logo-divider {
    width: 1px;
    height: 24px;
    background: linear-gradient(180deg, transparent, var(--gold-primary), transparent);
}

.logo-text {
    font-family: 'Cormorant', serif;
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--gold-primary);
    letter-spacing: 0.3em;
    text-transform: uppercase;
}

nav {
    display: flex;
    gap: 40px;
    align-items: center;
    justify-self: center;
}

nav a {
    color: var(--gold-primary) !important;
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 300;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

nav a:hover {
    color: var(--gold-light) !important;
}

/* ── Dropdown Menus ── */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-btn {
    background: none;
    border: none;
    color: var(--gold-primary);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.75rem;
    font-weight: 300;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 0;
    transition: color 0.3s ease;
}

.nav-dropdown-btn:hover {
    color: var(--gold-light);
}

.nav-dropdown-btn svg {
    transition: transform 0.3s ease;
    stroke: currentColor;
}

.nav-dropdown:hover .nav-dropdown-btn svg {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 16px);
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    min-width: 240px;
    background: #FFFFFF;
    border: 1px solid var(--border-subtle);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 2000;
}

.nav-dropdown-menu::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
}

/* Hover bridge to prevent gap between button and menu */
.nav-dropdown::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 20px;
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu a {
    display: block;
    padding: 12px 24px;
    color: var(--text-primary) !important;
    text-decoration: none;
    font-size: 0.78rem;
    font-weight: 300;
    letter-spacing: 0.02em;
    text-transform: none;
    transition: all 0.2s ease;
    border-left: 2px solid transparent;
}

.nav-dropdown-menu a:hover {
    background: rgba(13, 148, 136, 0.04);
    color: var(--gold-primary) !important;
    border-left-color: var(--gold-primary);
    padding-left: 28px;
}

.admin-toggle {
    background: transparent;
    padding: 10px 24px;
    border: 1px solid var(--border-accent);
    color: var(--gold-primary);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.7rem;
    font-weight: 300;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    justify-self: end;
}

.admin-toggle:hover {
    background: var(--gold-primary);
    color: #FFFFFF;
}

/* ── Hero ── */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 140px 24px 80px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    border: 1px solid var(--border-subtle);
    font-size: 0.65rem;
    font-weight: 300;
    color: var(--gold-primary);
    margin-bottom: 40px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    opacity: 0;
    animation: fadeIn 0.8s ease 0.2s forwards;
}

.hero-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--gold-primary);
    border-radius: 50%;
}

.hero h1 {
    font-family: 'Cormorant', serif;
    font-size: clamp(2.8rem, 7vw, 5.5rem);
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 28px;
}

.hero h1 .line1 {
    display: block;
    color: var(--text-primary);
    opacity: 0;
    animation: fadeIn 0.8s ease 0.4s forwards;
}

.hero h1 .line2 {
    display: block;
    font-weight: 300;
    opacity: 0;
    animation: fadeIn 0.8s ease 0.6s forwards;
}

.hero-subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
    max-width: 520px;
    margin-bottom: 56px;
    font-weight: 300;
    line-height: 1.8;
    opacity: 0;
    animation: fadeIn 0.8s ease 0.8s forwards;
}

.hero-stats {
    display: flex;
    gap: 64px;
    opacity: 0;
    animation: fadeIn 0.8s ease 1s forwards;
}

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

.stat-value {
    font-family: 'Cormorant', serif;
    font-size: 3rem;
    font-weight: 300;
    color: var(--gold-primary);
}

.stat-label {
    font-size: 0.65rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-top: 8px;
}

/* ── Section Headers ── */
.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-header h2 {
    font-family: 'Cormorant', serif;
    font-size: 2.2rem;
    font-weight: 300;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.section-header p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 300;
}

/* ── Cards ── */
.service-card {
    position: relative;
    background: var(--black-soft);
    border: 1px solid var(--border-subtle);
    padding: 36px;
    cursor: pointer;
    transition: all 0.4s ease;
    overflow: hidden;
    opacity: 0;
    transform: translateY(24px);
}

.service-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.service-card:hover {
    border-color: var(--border-accent);
    transform: translateY(-2px);
}

.card-icon {
    width: 48px;
    height: 48px;
    background: var(--gold-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.card-icon svg {
    width: 22px;
    height: 22px;
    stroke: #FFFFFF;
    stroke-width: 1.5;
}

.card-category {
    display: inline-block;
    padding: 3px 10px;
    background: rgba(13, 148, 136, 0.08);
    font-size: 0.55rem;
    font-weight: 300;
    color: var(--gold-primary);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 14px;
}

.card-title {
    font-family: 'Cormorant', serif;
    font-size: 1.4rem;
    font-weight: 300;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.card-description {
    color: var(--text-secondary);
    font-size: 0.85rem;
    line-height: 1.7;
    margin-bottom: 24px;
    font-weight: 300;
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gold-primary);
    font-weight: 300;
    text-decoration: none;
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: gap 0.3s ease;
}

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

.card-link svg {
    width: 14px;
    height: 14px;
    stroke: currentColor;
}

/* ── Buttons ── */
.deal-cta,
.submit-btn {
    display: inline-block;
    background: var(--gold-primary);
    color: #FFFFFF;
    padding: 14px 40px;
    border: none;
    font-family: 'DM Sans', sans-serif;
    font-weight: 300;
    font-size: 0.7rem;
    text-decoration: none;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.deal-cta:hover,
.submit-btn:hover {
    background: var(--gold-light);
}

.btn-secondary {
    background: transparent;
    border: 1px solid var(--border-subtle);
    color: var(--text-secondary);
    padding: 14px 28px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.7rem;
    font-weight: 300;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    border-color: var(--gold-muted);
    color: var(--gold-primary);
}

/* ── Forms ── */
.form-group label {
    display: block;
    font-size: 0.65rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    background: var(--black-soft);
    border: 1px solid var(--border-subtle);
    color: var(--text-primary);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.85rem;
    outline: none;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold-muted);
}

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

.form-actions {
    display: flex;
    gap: 12px;
    margin-top: 8px;
}

/* ── Modal ── */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

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

.modal {
    background: var(--black-soft);
    border: 1px solid var(--border-subtle);
    width: 90%;
    max-width: 440px;
    max-height: 90vh;
    overflow-y: auto;
    transform: scale(0.96);
    transition: transform 0.3s ease;
    position: relative;
}

.modal-overlay.active .modal {
    transform: scale(1);
}

.modal::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
}

.modal-header {
    padding: 28px 32px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-subtle);
}

.modal-title {
    font-family: 'Cormorant', serif;
    font-size: 1.3rem;
    font-weight: 300;
    color: var(--text-primary);
}

.modal-close {
    background: transparent;
    border: 1px solid var(--border-subtle);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: border-color 0.3s ease;
}

.modal-close:hover {
    border-color: var(--gold-muted);
}

.modal-close svg {
    width: 16px;
    height: 16px;
    stroke: var(--text-secondary);
}

.modal-body {
    padding: 32px;
}

/* ── Status Messages ── */
.error-message {
    color: #c75050;
    font-size: 0.8rem;
    padding: 12px;
    background: rgba(199, 80, 80, 0.1);
    border: 1px solid rgba(199, 80, 80, 0.3);
    display: none;
}

.error-message.show {
    display: block;
}

.success-message {
    color: var(--gold-primary);
    font-size: 0.8rem;
    padding: 12px;
    background: rgba(13, 148, 136, 0.1);
    border: 1px solid rgba(13, 148, 136, 0.3);
    display: none;
}

.success-message.show {
    display: block;
}

/* ── Toast ── */
.toast {
    position: fixed;
    bottom: 32px;
    right: 32px;
    padding: 14px 24px;
    background: var(--black-soft);
    border: 1px solid var(--gold-muted);
    color: var(--gold-primary);
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 3000;
    transform: translateY(80px);
    opacity: 0;
    transition: all 0.3s ease;
}

.toast.show {
    transform: translateY(0);
    opacity: 1;
}

.toast svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
}

/* ── Footer ── */
footer {
    padding: 64px 24px;
    text-align: center;
    border-top: 1px solid var(--border-subtle);
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 160px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
}

.footer-logo {
    height: 32px;
    margin-bottom: 24px;
    opacity: 0.9;
}

.footer-tagline {
    font-family: 'Cormorant', serif;
    font-size: 1rem;
    color: var(--gold-primary);
    margin-bottom: 32px;
    letter-spacing: 0.08em;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 32px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--gold-primary);
}

.footer-contact {
    color: var(--text-muted);
    font-size: 0.8rem;
}

.footer-contact a {
    color: var(--gold-primary);
    text-decoration: none;
}

.footer-copyright {
    margin-top: 40px;
    color: var(--text-muted);
    font-size: 0.7rem;
}

/* ── Loading Screen ── */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--black-deep);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader {
    width: 48px;
    height: 48px;
    border: 1px solid var(--border-subtle);
    border-top-color: var(--gold-primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.loading-text {
    margin-top: 24px;
    font-size: 0.65rem;
    color: var(--gold-muted);
    letter-spacing: 0.25em;
    text-transform: uppercase;
}

/* ── Empty State ── */
.empty-state {
    text-align: center;
    padding: 80px 24px;
    grid-column: 1 / -1;
}

.empty-state svg {
    width: 56px;
    height: 56px;
    stroke: var(--text-muted);
    margin-bottom: 20px;
}

.empty-state h3 {
    font-family: 'Cormorant', serif;
    font-size: 1.4rem;
    font-weight: 300;
    margin-bottom: 8px;
    color: var(--text-secondary);
}

.empty-state p {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* ── Animations ── */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(16px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes bounce {

    0%,
    100% {
        transform: rotate(45deg) translateY(0);
    }

    50% {
        transform: rotate(45deg) translateY(4px);
    }
}

/* ── Scrollbar ── */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--black-deep);
}

::-webkit-scrollbar-thumb {
    background: var(--gold-muted);
}

/* ── Mobile Nav Toggle ── */
.mobile-nav-toggle {
    display: none;
    background: none;
    border: 1px solid var(--border-accent);
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    justify-self: end;
    padding: 0;
    z-index: 1001;
}

.mobile-nav-toggle span {
    display: block;
    width: 20px;
    height: 1.5px;
    background: var(--gold-primary);
    position: relative;
    transition: all 0.3s ease;
}

.mobile-nav-toggle span::before,
.mobile-nav-toggle span::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 1.5px;
    background: var(--gold-primary);
    left: 0;
    transition: all 0.3s ease;
}

.mobile-nav-toggle span::before {
    top: -6px;
}

.mobile-nav-toggle span::after {
    top: 6px;
}

.mobile-nav-toggle.active span {
    background: transparent;
}

.mobile-nav-toggle.active span::before {
    transform: rotate(45deg);
    top: 0;
}

.mobile-nav-toggle.active span::after {
    transform: rotate(-45deg);
    top: 0;
}

/* ── Responsive ── */
@media (max-width: 768px) {
    header {
        padding: 14px 16px;
        grid-template-columns: 1fr auto auto;
        gap: 12px;
    }

    .mobile-nav-toggle {
        display: flex;
    }

    nav {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(255, 255, 255, 0.97);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 28px;
        z-index: 1000;
    }

    nav.mobile-open {
        display: flex;
    }

    nav a {
        font-size: 1rem !important;
        letter-spacing: 0.15em;
    }

    /* Stack dropdowns vertically on mobile */
    .nav-dropdown-menu {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        min-width: auto;
        box-shadow: none;
        border: none;
        background: transparent;
        text-align: center;
        display: none;
    }

    .nav-dropdown:hover .nav-dropdown-menu,
    .nav-dropdown.open .nav-dropdown-menu {
        display: block;
    }

    .nav-dropdown-menu a {
        text-align: center;
        padding: 8px 16px;
        font-size: 0.85rem !important;
        border-left: none;
    }

    .logo-container img {
        height: 30px !important;
    }

    .logo-text {
        font-size: 0.7rem;
        letter-spacing: 0.15em;
    }

    .logo-divider {
        height: 20px;
    }

    .admin-toggle {
        padding: 8px 16px;
        font-size: 0.6rem;
    }

    .hero {
        padding: 120px 16px 50px;
        min-height: 80vh;
    }

    .hero h1 {
        font-size: clamp(2rem, 8vw, 3.5rem);
    }

    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 36px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 24px;
    }

    .hero-badge {
        margin-bottom: 24px;
        font-size: 0.55rem;
    }

    .stat-value {
        font-size: 2.2rem;
    }

    .section-header {
        margin-bottom: 40px;
    }

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

    .service-card {
        padding: 24px;
    }

    .card-title {
        font-size: 1.2rem;
    }

    .modal-body {
        padding: 24px 16px;
    }

    .modal-header {
        padding: 20px 16px 16px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .form-actions {
        flex-direction: column;
        gap: 8px;
    }

    .deal-cta,
    .submit-btn {
        padding: 12px 28px;
        width: 100%;
        text-align: center;
    }

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

    footer {
        padding: 40px 16px;
    }

    .footer-links {
        flex-direction: column;
        gap: 14px;
    }

    .footer-tagline {
        font-size: 0.9rem;
    }

    .toast {
        right: 12px;
        left: 12px;
        bottom: 16px;
        font-size: 0.75rem;
    }
}

/* ── Small Phone ── */
@media (max-width: 480px) {
    header {
        padding: 10px 12px;
    }

    .logo-container {
        gap: 8px;
    }

    .logo-container img {
        height: 26px !important;
    }

    .logo-text {
        font-size: 0.6rem;
        letter-spacing: 0.1em;
    }

    .hero {
        padding: 100px 12px 40px;
        min-height: 70vh;
    }

    .hero h1 {
        font-size: clamp(1.6rem, 8vw, 2.5rem);
        margin-bottom: 18px;
    }

    .hero-subtitle {
        font-size: 0.8rem;
        line-height: 1.6;
    }

    .stat-value {
        font-size: 1.8rem;
    }

    .stat-label {
        font-size: 0.55rem;
    }

    .section-header h2 {
        font-size: 1.4rem;
    }

    .section-header p {
        font-size: 0.8rem;
    }

    .service-card {
        padding: 18px;
    }

    .card-icon {
        width: 40px;
        height: 40px;
    }

    .footer-copyright {
        font-size: 0.6rem;
    }
}