/* ============================================
   Modern Minimal CSS - Alnssor Office
   ============================================ */

/* ============================================
   CSS Custom Properties
   ============================================ */
:root {
    --primary-color: #1a1a1a;
    --secondary-color: #2d2d2d;
    --accent-color: #0066ff;
    --accent-hover: #0052cc;
    --accent-light: rgba(0, 102, 255, 0.08);
    --text-primary: #1a1a1a;
    --text-secondary: #555555;
    --text-light: #888888;
    --bg-primary: #ffffff;
    --bg-secondary: #f7f8fa;
    --bg-tertiary: #eef0f4;
    --border-color: #e8eaee;
    --border-light: #f0f1f3;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.04), 0 1px 2px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.06), 0 2px 4px rgba(0, 0, 0, 0.04);
    --shadow-lg: 0 12px 36px rgba(0, 0, 0, 0.08), 0 4px 12px rgba(0, 0, 0, 0.04);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.1), 0 8px 20px rgba(0, 0, 0, 0.06);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
}

/* ============================================
   Loading Spinner
   ============================================ */
.loading-spinner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-primary);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
}

.loading-spinner.fade-out {
    opacity: 0;
    visibility: hidden;
}

.spinner {
    width: 44px;
    height: 44px;
    border: 3px solid var(--border-color);
    border-top: 3px solid var(--accent-color);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

.main-content-hidden {
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.hidden-input {
    display: none;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ============================================
   Reset and Base Styles
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

/* ============================================
   Hero Section
   ============================================ */
.hero {
    background: linear-gradient(135deg, #0a0a1a 0%, #1a1a2e 40%, #16213e 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 80px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1;
    height: 100vh;
    height: 100svh;
    min-height: 100vh;
    min-height: 100svh;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('assets/hero.png');
    background-size: cover;
    background-position: center;
    opacity: 0.12;
    background-attachment: scroll;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to top, var(--bg-primary), transparent);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 700px;
    padding: 0 24px;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3.25rem);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: -0.8px;
}

.hero-subtitle {
    font-size: clamp(1rem, 1.8vw, 1.15rem);
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    padding: 14px 28px;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    letter-spacing: 0.2px;
}

.hero-btn-primary {
    background-color: var(--accent-color);
    color: #ffffff;
}

.hero-btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-1px);
}

.hero-btn-secondary {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.hero-btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-1px);
}

.content-overlay {
    position: relative;
    z-index: 2;
    background-color: var(--bg-primary);
    margin-top: 100vh;
    margin-top: 100svh;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    will-change: transform;
}

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

.section-label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 20px;
    letter-spacing: -1px;
    line-height: 1.2;
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.section-title-underline {
    width: 56px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), #00a8ff);
    border-radius: 2px;
    margin: 24px auto 0;
}

/* ============================================
   Partners Section
   ============================================ */
.partners {
    padding: 100px 0;
    background-color: var(--bg-secondary);
    overflow: hidden;
}

.partners-scroll {
    position: relative;
    height: 120px;
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(
        to right,
        transparent,
        #000 8%,
        #000 92%,
        transparent
    );
    mask-image: linear-gradient(
        to right,
        transparent,
        #000 8%,
        #000 92%,
        transparent
    );
}

.partners-track {
    display: flex;
    align-items: center;
    height: 100%;
    will-change: transform;
    white-space: nowrap;
    position: absolute;
    left: 0;
    top: 0;
}

.logo-container {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 40px;
    height: 100%;
    flex-shrink: 0;
}

.partner-logo {
    max-height: 50px;
    max-width: 160px;
    width: auto;
    height: auto;
    object-fit: contain;
    opacity: 0.5;
    transition: all 0.3s ease;
    filter: grayscale(100%);
    transform: translateZ(0);
    backface-visibility: hidden;
}

.partner-logo:hover {
    opacity: 1;
    transform: scale(1.08) translateZ(0);
    filter: grayscale(0%);
}

/* ============================================
   About Section
   ============================================ */
.about {
    padding: 120px 0;
    background-color: var(--bg-primary);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-text {
    position: relative;
}

.about-label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.about-heading {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 24px;
    letter-spacing: -0.8px;
    line-height: 1.25;
}

.about-description {
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
    line-height: 1.8;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 32px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background-color: var(--bg-secondary);
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-primary);
}

.about-feature-icon {
    width: 32px;
    height: 32px;
    background-color: var(--accent-light);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.about-feature-icon svg {
    width: 16px;
    height: 16px;
    stroke: var(--accent-color);
}

.about-logo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-logo img {
    max-width: 280px;
    width: 100%;
    height: auto;
    transition: var(--transition);
    filter: drop-shadow(var(--shadow-md));
}

.about-logo img:hover {
    transform: scale(1.03);
}

.about-essay {
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-tertiary) 100%);
    padding: 48px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.about-essay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--accent-color), #00a8ff);
}

.about-essay:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.essay-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
    letter-spacing: -0.3px;
}

.essay-text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

/* ============================================
   Services Section
   ============================================ */
.services {
    padding: 120px 0;
    background-color: var(--bg-secondary);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    background-color: var(--bg-primary);
    padding: 40px 32px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color), #00a8ff);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 52px;
    height: 52px;
    background-color: var(--accent-light);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background-color: var(--accent-color);
}

.service-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--accent-color);
    transition: var(--transition);
}

.service-card:hover .service-icon svg {
    stroke: #ffffff;
}

.service-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 14px;
    letter-spacing: -0.3px;
}

.service-description {
    font-size: 0.925rem;
    color: var(--text-secondary);
    line-height: 1.7;
    flex: 1;
}

/* ============================================
   Contact Section
   ============================================ */
.contact {
    padding: 120px 0;
    background-color: var(--bg-primary);
}

.contact-content {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: start;
}

.contact-form {
    background-color: var(--bg-primary);
    padding: 48px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
}

.form-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-primary);
    letter-spacing: -0.3px;
}

.form-subtitle {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1.5px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    font-family: 'Inter', sans-serif;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    transition: var(--transition);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-light);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 4px rgba(0, 102, 255, 0.08);
}

.form-group textarea {
    resize: vertical;
    min-height: 130px;
}

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

.attach-files {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition);
    padding: 14px 18px;
    border: 1.5px dashed var(--border-color);
    border-radius: var(--radius-sm);
    background-color: var(--bg-secondary);
}

.attach-files:hover {
    color: var(--accent-color);
    border-color: var(--accent-color);
    background-color: var(--accent-light);
}

.attach-icon {
    font-size: 1.1rem;
}

.file-list {
    margin-top: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.file-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 12px;
    background-color: var(--bg-secondary);
    border-radius: 6px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.file-item-name {
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.file-item-remove {
    background: none;
    border: none;
    color: var(--text-light);
    cursor: pointer;
    padding: 4px 8px;
    font-size: 1.2rem;
    line-height: 1;
    transition: var(--transition);
}

.file-item-remove:hover {
    color: #e74c3c;
}

.turnstile-container {
    margin: 24px 0;
    display: flex;
    justify-content: center;
}

.submit-btn {
    width: 100%;
    background-color: var(--accent-color);
    color: #ffffff;
    padding: 16px 0;
    border: none;
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(0, 102, 255, 0.25);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.submit-btn:hover {
    background-color: var(--accent-hover);
    box-shadow: 0 6px 20px rgba(0, 102, 255, 0.35);
    transform: translateY(-2px);
}

.submit-btn:active {
    transform: translateY(0);
}

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.visit-info {
    background-color: var(--bg-secondary);
    padding: 48px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
}

.visit-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
    letter-spacing: -0.3px;
}

.visit-description {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
    line-height: 1.7;
}

.contact-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
}

.whatsapp-btn,
.email-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-weight: 600;
    padding: 14px 24px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.whatsapp-btn:hover {
    background-color: #25D366;
    color: #ffffff;
    border-color: #25D366;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.email-btn:hover {
    background-color: var(--accent-color);
    color: #ffffff;
    border-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 102, 255, 0.3);
}

.whatsapp-btn img,
.email-btn svg {
    height: 20px;
    width: 20px;
    flex-shrink: 0;
}

.email-btn svg {
    stroke: currentColor;
}

.info-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background-color: var(--bg-primary);
    border-radius: var(--radius-sm);
    margin-bottom: 16px;
    border: 1px solid var(--border-color);
}

.info-card-icon {
    width: 40px;
    height: 40px;
    background-color: var(--accent-light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-card-icon svg {
    width: 18px;
    height: 18px;
    stroke: var(--accent-color);
}

.info-card-content h4 {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-card-content p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.business-hours {
    margin-top: 8px;
}

.hours-title {
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.hours-list li {
    padding: 8px 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
    border-bottom: 1px solid var(--border-light);
    display: flex;
    justify-content: space-between;
}

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

.hours-list li strong {
    color: var(--text-primary);
    font-weight: 600;
}

.closed {
    color: #e74c3c;
    font-weight: 600;
}

/* ============================================
   Map Section
   ============================================ */
.map-section {
    background-color: var(--bg-secondary);
    padding: 0;
}

.map-container-full {
    width: 100%;
    max-width: 100%;
}

.map-responsive-wrapper {
    width: 100%;
    max-width: 100%;
    height: 0;
    padding-bottom: 25%;
    position: relative;
}

.map-iframe {
    border: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* ============================================
   Responsive Design
   ============================================ */
.site-alert {
    position: fixed;
    top: 24px;
    right: 24px;
    z-index: 10000;
    min-width: 320px;
    max-width: 480px;
    background-color: var(--bg-primary);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border-color);
    opacity: 0;
    transform: translateX(400px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.site-alert.show {
    opacity: 1;
    transform: translateX(0);
    pointer-events: all;
}

.site-alert-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
    gap: 16px;
}

.site-alert-message {
    flex: 1;
    font-size: 0.9rem;
    color: var(--text-primary);
    line-height: 1.5;
}

.site-alert-close {
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    padding: 0;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    flex-shrink: 0;
    border-radius: 6px;
}

.site-alert-close:hover {
    color: var(--text-primary);
    background-color: var(--bg-secondary);
}

.site-alert.success {
    border-left: 4px solid #27ae60;
}

.site-alert.error {
    border-left: 4px solid #e74c3c;
}

.site-alert.warning {
    border-left: 4px solid #f39c12;
}

.site-alert.info {
    border-left: 4px solid var(--accent-color);
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-content {
        gap: 48px;
    }
}

@media (max-width: 968px) {
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about-text {
        order: 2;
    }

    .about-logo {
        order: 1;
    }

    .about-logo img {
        max-width: 220px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding-top: 120px;
        min-height: 60vh;
        height: auto;
        position: relative;
        padding-bottom: 60px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .content-overlay {
        margin-top: 0;
    }

    .partners,
    .about,
    .services,
    .contact {
        padding: 80px 0;
    }

    .section-title {
        margin-bottom: 16px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

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

    .about-essay,
    .contact-form,
    .visit-info {
        padding: 32px 24px;
    }

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

    .map-responsive-wrapper {
        padding-bottom: 56.25%;
    }

    .partners-scroll {
        height: 100px;
    }

    .partners-track img {
        height: 50px;
    }

    .site-alert {
        top: 12px;
        right: 12px;
        left: 12px;
        min-width: auto;
        max-width: none;
    }

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

    .hero-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

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

    .partners,
    .about,
    .services,
    .contact {
        padding: 60px 0;
    }

    .hero {
        padding-top: 120px;
        padding-bottom: 80px;
    }

    .hero-title {
        font-size: 1.85rem;
    }

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

    .section-title {
        font-size: 1.65rem;
        margin-bottom: 12px;
    }

    .section-description {
        font-size: 0.95rem;
    }

    .service-card {
        padding: 28px 24px;
    }

    .about-essay,
    .contact-form,
    .visit-info {
        padding: 24px;
    }

    .partners-scroll {
        height: 80px;
    }

    .partners-track img {
        height: 44px;
    }
}

/* ============================================
   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;
    }
}

/* ============================================
   GPU Acceleration
   ============================================ */
section,
.service-card,
.about-essay {
    backface-visibility: hidden;
    transform: translateZ(0);
}
