/* ===== CSS RESET & VARIABLES ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Primary Reds - based on #e13529 */
    --red-50: #fef2f1;
    --red-100: #fde3e1;
    --red-200: #fcc8c4;
    --red-300: #f9a09a;
    --red-400: #f06b62;
    --red-500: #e13529;
    --red-600: #c82d22;
    --red-700: #a8241b;
    --red-800: #8b211a;
    --red-900: #72211c;

    /* Neutrals */
    --white: #ffffff;
    --gray-50: #fafafa;
    --gray-100: #f5f5f5;
    --gray-200: #e5e5e5;
    --gray-300: #d4d4d4;
    --gray-400: #a3a3a3;
    --gray-500: #737373;
    --gray-600: #525252;
    --gray-700: #404040;
    --gray-800: #262626;
    --gray-900: #171717;

    /* Semantic Colors */
    --primary: var(--red-600);
    --primary-light: var(--red-500);
    --primary-dark: var(--red-700);
    --primary-bg: var(--red-50);
    --text-primary: var(--gray-900);
    --text-secondary: var(--gray-600);
    --text-muted: var(--gray-500);
    --bg-primary: var(--white);
    --bg-secondary: var(--gray-50);
    --bg-dark: var(--gray-900);
    --border: var(--gray-200);

    /* Typography */
    --font-primary: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --section-padding: 100px 0;

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.07), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -4px rgba(0, 0, 0, 0.04);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.08), 0 8px 10px -6px rgba(0, 0, 0, 0.04);
    --shadow-red: 0 10px 40px -10px rgba(220, 38, 38, 0.35);

    /* Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 100px;

    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

/* ===== SKIP TO CONTENT ===== */
.skip-to-content {
    position: absolute;
    top: -100%;
    left: 16px;
    z-index: 10000;
    background: var(--red-600);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 0 0 var(--radius-sm) var(--radius-sm);
    font-weight: 600;
    font-size: 14px;
    font-family: var(--font-primary);
    text-decoration: none;
    transition: top 0.3s ease;
}

.skip-to-content:focus {
    top: 0;
    outline: none;
}

/* ===== FOCUS RING ===== */
*:focus-visible {
    outline: 3px solid var(--red-400);
    outline-offset: 2px;
    border-radius: 4px;
}

body {
    font-family: var(--font-body);
    color: var(--text-primary);
    background: var(--bg-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* ===== PRELOADER ===== */
.preloader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.preloader-logo {
    animation: preloaderBounce 1s ease-in-out infinite;
}

@keyframes preloaderBounce {

    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-12px) scale(1.1);
    }
}

.preloader-bar {
    width: 180px;
    height: 4px;
    background: var(--gray-200);
    border-radius: 4px;
    overflow: hidden;
}

.preloader-fill {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, var(--red-500), var(--red-600));
    border-radius: 4px;
    animation: preloaderFill 1.5s ease-in-out forwards;
}

@keyframes preloaderFill {
    0% {
        width: 0%;
    }

    100% {
        width: 100%;
    }
}

.preloader-text {
    font-family: var(--font-primary);
    font-size: 20px;
    font-weight: 800;
    color: var(--gray-800);
    letter-spacing: 1px;
}

/* ===== UTILITY ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.text-accent {
    color: var(--primary);
}

.gradient-text {
    background: linear-gradient(135deg, var(--red-500), var(--red-700));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== REVEAL ANIMATION ===== */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 15px;
    padding: 14px 28px;
    border-radius: var(--radius-full);
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--red-500), var(--red-600));
    color: var(--white);
    border-color: transparent;
    box-shadow: var(--shadow-red);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--red-600), var(--red-700));
    transform: translateY(-2px);
    box-shadow: 0 14px 44px -10px rgba(220, 38, 38, 0.45);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border-color: var(--border);
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 16px;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.btn-arrow {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.btn:hover .btn-arrow {
    transform: translateX(4px);
}

/* Pulse CTA Button */
.pulse-btn {
    animation: btnPulse 3s ease-in-out infinite;
}

@keyframes btnPulse {

    0%,
    100% {
        box-shadow: 0 10px 40px -10px rgba(220, 38, 38, 0.35);
    }

    50% {
        box-shadow: 0 10px 50px -5px rgba(220, 38, 38, 0.55);
    }
}

.pulse-btn:hover {
    animation: none;
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--red-500);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    background: var(--red-500);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 84px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 76px;
    width: auto;
    object-fit: contain;
}

.preloader-logo {
    width: 120px;
    height: auto;
    margin-bottom: 16px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-links a {
    font-weight: 500;
    font-size: 17px;
    color: rgba(255, 255, 255, 0.85);
    transition: var(--transition);
    position: relative;
}

.nav-links a:hover {
    color: #ffffff;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #ffffff;
    transition: width 0.3s ease;
    border-radius: 2px;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a.active {
    color: #ffffff;
}

.nav-links a.active::after {
    width: 100%;
}

.navbar .nav-links .nav-cta {
    background: #ffffff;
    color: var(--red-600);
    padding: 10px 24px;
    border-radius: var(--radius-full);
    font-weight: 600;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar .nav-links .nav-cta::after {
    display: none;
}

.navbar .nav-links .nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.navbar .nav-links .nav-whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 20px;
    background: #25D366;
    color: #ffffff;
    border-radius: var(--radius-full);
    transition: var(--transition);
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.3);
    font-weight: 600;
    font-size: 15px;
}

.navbar .nav-links .nav-whatsapp::after {
    display: none;
}

.navbar .nav-links .nav-whatsapp:hover {
    transform: translateY(-2px);
    background: #20BD5A;
    box-shadow: 0 6px 15px rgba(37, 211, 102, 0.4);
}

.nav-whatsapp svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.nav-whatsapp span {
    font-family: var(--font-primary);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: #ffffff;
    border-radius: 2px;
    transition: var(--transition);
}

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 84px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(170deg, var(--white) 0%, var(--red-50) 50%, var(--white) 100%);
}

.hero-bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.12;
}

.shape-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--red-400), transparent 70%);
    top: -100px;
    right: -100px;
    animation: float 8s ease-in-out infinite;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--red-300), transparent 70%);
    bottom: -50px;
    left: -50px;
    animation: float 10s ease-in-out infinite reverse;
}

.shape-3 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, var(--red-200), transparent 70%);
    top: 40%;
    left: 30%;
    animation: float 12s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-30px) scale(1.05);
    }
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    text-align: center;
    max-width: 700px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    padding: 8px 20px;
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    box-shadow: var(--shadow-md);
    margin-bottom: 24px;
    animation: slideUp 0.6s ease-out;
}

.badge-pulse {
    width: 8px;
    height: 8px;
    background: var(--red-500);
    border-radius: 50%;
    display: inline-block;
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.4;
        transform: scale(0.8);
    }
}

.hero-title {
    font-family: var(--font-primary);
    font-size: clamp(38px, 5vw, 60px);
    font-weight: 800;
    line-height: 1.15;
    color: var(--text-primary);
    margin-bottom: 20px;
    animation: slideUp 0.6s ease-out 0.1s both;
}

.hero-description {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 540px;
    margin-bottom: 36px;
    animation: slideUp 0.6s ease-out 0.2s both;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 56px;
    animation: slideUp 0.6s ease-out 0.3s both;
}



/* ===== SECTIONS ===== */
.section {
    padding: var(--section-padding);
}

.section-dark {
    background: var(--gray-900);
    color: var(--white);
}

.section-dark .section-desc {
    color: var(--gray-400);
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-tag {
    display: inline-block;
    background: var(--primary-bg);
    color: var(--primary);
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 6px 16px;
    border-radius: var(--radius-full);
    margin-bottom: 16px;
}

.section-dark .section-tag {
    background: rgba(220, 38, 38, 0.15);
}

.section-title {
    font-family: var(--font-primary);
    font-size: clamp(30px, 3.5vw, 44px);
    font-weight: 800;
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-desc {
    font-size: 17px;
    color: var(--text-secondary);
    max-width: 560px;
    margin: 0 auto;
}

/* ===== ABOUT GRID ===== */
.about-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.about-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    transition: var(--transition);
    text-align: center;
}

.about-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--red-200);
}

.about-icon-wrap {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--red-50), var(--red-100));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: var(--transition);
}

.about-card:hover .about-icon-wrap {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, var(--red-100), var(--red-200));
}

.about-icon {
    font-size: 36px;
}

.about-card h3 {
    font-family: var(--font-primary);
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 12px;
}

.about-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ===== SERVICES GRID ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--red-500), var(--red-700));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(220, 38, 38, 0.3);
    transform: translateY(-6px);
}

.service-icon {
    font-size: 48px;
    margin-bottom: 8px;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: inline-block;
}

.service-card:hover .service-icon {
    transform: scale(1.15) translateY(-4px);
}

.service-number {
    font-family: var(--font-primary);
    font-size: 40px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.06);
    margin-bottom: 12px;
    line-height: 1;
}

.service-card h3 {
    font-family: var(--font-primary);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.service-card p {
    font-size: 14px;
    color: var(--gray-400);
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-tag {
    display: inline-block;
    padding: 5px 14px;
    background: rgba(220, 38, 38, 0.15);
    color: var(--red-400);
    font-size: 12px;
    font-weight: 600;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ===== CTA BLOCK ===== */
.cta-layout {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 28px;
    width: 100%;
}

.cta-block {
    flex: 1;
}

.cta-map-card {
    width: 340px;
    flex-shrink: 0;
}

.cta-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 40px;
    background: linear-gradient(135deg, var(--red-50), var(--white));
    border: 1px solid var(--red-100);
    border-radius: var(--radius-xl);
    padding: 48px 44px;
    position: relative;
    overflow: hidden;
}

.cta-block::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(220, 38, 38, 0.08), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.cta-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-image img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.1));
}

.cta-content {
    text-align: left;
}

.cta-title {
    font-family: var(--font-primary);
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
}

.cta-desc {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 28px;
}

/* Map Card */
.cta-map-card {
    background: var(--white);
    border: 1px solid var(--red-100);
    border-radius: var(--radius-xl);
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    aspect-ratio: 1 / 1;
    max-height: 100%;
}

.cta-map-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-primary);
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
}

.cta-map-icon {
    font-size: 22px;
}

.cta-map-wrapper {
    flex: 1;
    min-height: 200px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--red-100);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    transition: var(--transition);
}

.cta-map-wrapper:hover {
    border-color: var(--red-300);
    box-shadow: 0 8px 24px rgba(220, 38, 38, 0.1);
}

.cta-map-wrapper iframe {
    width: 100%;
    height: 100%;
    display: block;
}



/* ===== FOOTER ===== */
.footer {
    background: var(--gray-900);
    color: var(--white);
    padding: 64px 0 32px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand p {
    color: var(--gray-400);
    font-size: 14px;
    margin-top: 12px;
    max-width: 320px;
    line-height: 1.7;
}

.footer-links h4,
.footer-contact h4 {
    font-family: var(--font-primary);
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 16px;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 10px;
}

.footer-links a,
.footer-contact li {
    color: var(--gray-400);
    font-size: 14px;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 4px;
}

.footer-bottom {
    padding-top: 24px;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: var(--gray-500);
}

/* ===== MODAL ===== */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal {
    background: var(--white);
    border-radius: var(--radius-xl);
    max-width: 560px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 40px;
    position: relative;
    transform: translateY(20px) scale(0.97);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-overlay.active .modal {
    transform: translateY(0) scale(1);
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: var(--white);
    font-size: 24px;
    color: var(--text-secondary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.modal-close:hover {
    background: var(--red-50);
    border-color: var(--red-200);
    color: var(--primary);
    transform: rotate(90deg);
}

.modal-header {
    text-align: center;
    margin-bottom: 32px;
}

.modal-icon {
    font-size: 48px;
    margin-bottom: 12px;
}

.modal-title {
    font-family: var(--font-primary);
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 8px;
}

.modal-desc {
    font-size: 14px;
    color: var(--text-secondary);
}

/* ===== APPLY BUTTONS ===== */
.apply-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.apply-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.apply-card:hover {
    border-color: var(--red-500);
    background: var(--red-50);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(225, 53, 41, 0.12);
}

.apply-card-icon {
    font-size: 40px;
    flex-shrink: 0;
}

.apply-card-content {
    flex: 1;
}

.apply-card-content h3 {
    font-family: var(--font-primary);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--text-primary);
}

.apply-card-content p {
    font-size: 14px;
    color: var(--text-secondary);
}

.apply-card-arrow {
    font-size: 24px;
    color: var(--gray-400);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.apply-card:hover .apply-card-arrow {
    color: var(--red-500);
    transform: translateX(4px);
}



/* ===== SLIDE UP ANIMATION ===== */
@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}



/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-layout {
        flex-direction: column;
    }

    .cta-block {
        grid-template-columns: 1fr;
        padding: 40px;
    }

    .cta-content {
        text-align: center;
    }

    .cta-map-card {
        width: 100%;
        max-width: 100%;
        aspect-ratio: auto;
        max-height: none;
        padding: 16px;
    }

    .cta-map-wrapper {
        min-height: 350px;
        height: 350px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 72px 0;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 84px;
        left: 0;
        right: 0;
        background: var(--red-500);
        flex-direction: column;
        padding: 24px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        gap: 16px;
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .hero-title {
        font-size: 34px;
    }



    .about-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .cta-block {
        padding: 32px 24px;
    }



    .modal {
        padding: 28px 20px;
        margin: 16px;
    }


}

@media (max-width: 480px) {
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }




}