/* ===== CSS RESET & VARIABLES ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Primary Amber/Gold - Trakjet Logo Theme */
    --amber-50: #fffbeb;
    --amber-100: #fef3c7;
    --amber-200: #fde68a;
    --amber-300: #fcd34d;
    --amber-400: #fbbf24;
    --amber-500: #f59e0b;
    --amber-600: #d97706;
    --amber-700: #b45309;
    --amber-800: #92400e;
    --amber-900: #78350f;

    /* Neutrals */
    --white: #ffffff;
    --gray-50: #fafaf9;
    --gray-100: #f5f5f4;
    --gray-200: #e7e5e4;
    --gray-300: #d6d3d1;
    --gray-400: #a8a29e;
    --gray-500: #78716c;
    --gray-600: #57534e;
    --gray-700: #44403c;
    --gray-800: #292524;
    --gray-900: #1c1917;

    /* Semantic Colors */
    --primary: var(--amber-600);
    --primary-light: var(--amber-500);
    --primary-dark: var(--amber-700);
    --primary-bg: var(--amber-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-amber: 0 10px 40px -10px rgba(245, 158, 11, 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(--amber-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(--amber-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: #000000;
    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: 24px;
}

.preloader-logo {
    width: 140px;
    height: auto;
    animation: preloaderBounce 1s ease-in-out infinite;
}

@keyframes preloaderBounce {

    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-12px) scale(1.05);
    }
}



.preloader-bar {
    width: 180px;
    height: 3px;
    background: var(--gray-700);
    border-radius: 4px;
    overflow: hidden;
}

.preloader-fill {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, var(--amber-500), var(--amber-400));
    border-radius: 4px;
    animation: preloaderFill 0.7s ease-in-out forwards;
}

@keyframes preloaderFill {
    0% {
        width: 0%;
    }

    100% {
        width: 100%;
    }
}

.preloader-text {
    font-family: var(--font-primary);
    font-size: 22px;
    font-weight: 800;
    color: var(--white);
    letter-spacing: 3px;
    text-transform: uppercase;
}

/* ===== UTILITY ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.text-accent {
    color: var(--primary);
}

.gradient-text {
    background: linear-gradient(135deg, var(--amber-400), var(--amber-600));
    -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(--amber-500), var(--amber-600));
    color: var(--white);
    border-color: transparent;
    box-shadow: var(--shadow-amber);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--amber-600), var(--amber-700));
    transform: translateY(-2px);
    box-shadow: 0 14px 44px -10px rgba(245, 158, 11, 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-whatsapp {
    background: #25D366;
    color: var(--white);
    border-color: transparent;
    box-shadow: 0 10px 40px -10px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp:hover {
    background: #20BD5A;
    transform: translateY(-2px);
    box-shadow: 0 14px 44px -10px rgba(37, 211, 102, 0.45);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 16px;
}

.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(245, 158, 11, 0.35);
    }

    50% {
        box-shadow: 0 10px 50px -5px rgba(245, 158, 11, 0.55);
    }
}

.pulse-btn:hover {
    animation: none;
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #000000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    background: #000000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 76px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.footer-logo-img {
    height: 50px;
}

.logo-accent {
    color: var(--amber-400);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-links a {
    font-weight: 500;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    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: var(--amber-400);
    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: linear-gradient(135deg, var(--amber-500), var(--amber-600));
    color: var(--white);
    padding: 10px 24px;
    border-radius: var(--radius-full);
    font-weight: 600;
    box-shadow: 0 4px 14px rgba(245, 158, 11, 0.3);
}

.navbar .nav-links .nav-cta::after {
    display: none;
}

.navbar .nav-links .nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.mobile-menu-btn span {
    width: 26px;
    height: 2.5px;
    background: #ffffff;
    border-radius: 2px;
    transition: var(--transition);
    display: block;
    transform-origin: center;
}

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 76px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(170deg, var(--gray-900) 0%, var(--gray-800) 50%, var(--gray-900) 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.08;
}

.shape-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--amber-500), transparent 70%);
    top: -200px;
    right: -200px;
    animation: float 8s ease-in-out infinite;
}

.shape-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--amber-400), transparent 70%);
    bottom: -100px;
    left: -100px;
    animation: float 10s ease-in-out infinite reverse;
}

.shape-3 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, var(--amber-300), 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: 720px;
}



@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-family: var(--font-primary);
    font-size: clamp(38px, 5vw, 62px);
    font-weight: 800;
    line-height: 1.12;
    color: var(--white);
    margin-bottom: 24px;
    animation: slideUp 0.6s ease-out 0.1s both;
}

.hero-description {
    font-size: 18px;
    color: var(--gray-400);
    line-height: 1.7;
    max-width: 540px;
    margin: 0 auto 40px;
    animation: slideUp 0.6s ease-out 0.2s both;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 60px;
    animation: slideUp 0.6s ease-out 0.3s both;
}

.hero .btn-outline {
    color: rgba(255, 255, 255, 0.8);
    border-color: rgba(255, 255, 255, 0.2);
}

.hero .btn-outline:hover {
    color: var(--amber-300);
    border-color: var(--amber-400);
}



/* ===== 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(245, 158, 11, 0.12);
}

.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(--amber-200);
}

.about-icon-wrap {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--amber-50), var(--amber-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(--amber-100), var(--amber-200));
}

.about-icon {
    font-size: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.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(2, 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(--amber-400), var(--amber-600));
    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(245, 158, 11, 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-flex;
    align-items: center;
    justify-content: center;
}

.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: 22px;
    font-weight: 700;
    margin-bottom: 12px;
}

.service-card p {
    font-size: 15px;
    color: var(--gray-400);
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-tag {
    display: inline-block;
    background: rgba(245, 158, 11, 0.12);
    color: var(--amber-300);
    font-size: 12px;
    font-weight: 600;
    padding: 4px 14px;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ===== ADVANTAGES GRID ===== */
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.advantage-card {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.advantage-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: var(--amber-200);
}

.advantage-card.visible {
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.advantage-number {
    font-family: var(--font-primary);
    font-size: 48px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--amber-200), var(--amber-100));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    flex-shrink: 0;
}

.advantage-card:hover .advantage-number {
    background: linear-gradient(135deg, var(--amber-500), var(--amber-400));
    -webkit-background-clip: text;
    background-clip: text;
}

.advantage-content h3 {
    font-family: var(--font-primary);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.advantage-content p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ===== CTA SECTION ===== */
.section-cta {
    background: linear-gradient(170deg, var(--amber-50) 0%, var(--white) 100%);
}

.cta-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 56px;
    box-shadow: var(--shadow-xl);
}

.cta-content .section-tag {
    margin-bottom: 20px;
}

.cta-title {
    font-family: var(--font-primary);
    font-size: clamp(26px, 3vw, 36px);
    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: 32px;
}

.contact-info-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

.contact-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gray-50);
    border: 1px solid var(--border);
    padding: 10px 18px;
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
    transition: var(--transition);
}

.contact-chip:hover {
    border-color: var(--amber-400);
    background: var(--amber-50);
    color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.contact-chip-icon {
    font-size: 16px;
}

.cta-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.cta-map-wrapper {
    width: 100%;
    height: 100%;
    min-height: 320px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
}

.cta-map-wrapper iframe {
    width: 100%;
    height: 100%;
    min-height: 320px;
}

/* ===== FOOTER ===== */
.footer {
    background: #000000;
    color: var(--gray-400);
    padding: 64px 0 32px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand .logo {
    margin-bottom: 16px;
}

.footer-desc {
    font-size: 14px;
    line-height: 1.7;
    color: var(--gray-500);
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--gray-400);
    transition: var(--transition);
}

.social-link:hover {
    background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    border-color: transparent;
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px -6px rgba(225, 48, 108, 0.4);
}

.footer h4 {
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-links ul li,
.footer-services ul li,
.footer-contact ul li {
    margin-bottom: 12px;
    font-size: 14px;
}

.footer-links a,
.footer-contact a {
    transition: var(--transition);
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--amber-400);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
    font-size: 13px;
}

.footer-slogan {
    color: var(--gray-600);
    font-style: italic;
}

/* ===== APPLICATION MODAL ===== */
.modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
    padding: 24px;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal {
    background: var(--gray-900);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: 40px;
    max-width: 480px;
    width: 100%;
    position: relative;
    transform: translateY(20px) scale(0.95);
    transition: transform 0.3s ease;
}

.modal-overlay.active .modal {
    transform: translateY(0) scale(1);
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 20px;
    background: none;
    border: none;
    color: var(--gray-400);
    font-size: 28px;
    cursor: pointer;
    transition: var(--transition);
    padding: 4px;
    line-height: 1;
}

.modal-close:hover {
    color: var(--white);
    transform: rotate(90deg);
}

.modal-header {
    text-align: center;
    margin-bottom: 28px;
}

.modal-title {
    font-family: var(--font-primary);
    font-size: 24px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 8px;
}

.modal-desc {
    font-size: 15px;
    color: var(--gray-400);
}

.apply-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.apply-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 20px 24px;
    transition: var(--transition);
    cursor: pointer;
}

.apply-card:hover {
    background: rgba(245, 158, 11, 0.1);
    border-color: rgba(245, 158, 11, 0.3);
    transform: translateX(4px);
}

.apply-card-icon {
    font-size: 36px;
    flex-shrink: 0;
}

.apply-card-content {
    flex: 1;
}

.apply-card-content h3 {
    font-family: var(--font-primary);
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
}

.apply-card-content p {
    font-size: 13px;
    color: var(--gray-400);
}

.apply-card-arrow {
    font-size: 20px;
    color: var(--gray-500);
    transition: var(--transition);
    flex-shrink: 0;
}

.apply-card:hover .apply-card-arrow {
    color: var(--amber-400);
    transform: translateX(4px);
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 72px 0;
    }

    /* Mobile Menu */
    .mobile-menu-btn {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: #000000;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 32px;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
        z-index: 999;
        padding-top: 76px;
    }

    .nav-links.active {
        opacity: 1;
        visibility: visible;
    }

    .nav-links a {
        font-size: 22px;
        color: rgba(255, 255, 255, 0.85);
    }

    .nav-links a:hover {
        color: var(--amber-400);
    }

    .nav-links a::after {
        display: none;
    }

    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }

    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
        transform: scaleX(0);
    }

    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }

    /* Hero */
    .hero-title {
        font-size: clamp(32px, 7vw, 48px);
    }

    .hero-description {
        font-size: 16px;
    }

    /* About */
    .about-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .about-card {
        padding: 28px 20px;
    }

    /* Services */
    .services-grid {
        grid-template-columns: 1fr;
    }

    /* Advantages */
    .advantages-grid {
        grid-template-columns: 1fr;
    }

    /* CTA */
    .cta-card {
        grid-template-columns: 1fr;
        padding: 36px 24px;
    }

    .cta-actions {
        flex-direction: column;
    }

    .cta-actions .btn {
        justify-content: center;
    }

    .contact-info-row {
        flex-direction: column;
    }

    .contact-chip {
        justify-content: center;
    }

    .cta-map-wrapper {
        min-height: 280px;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }
}