* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

body {
    background: #ffffff;
    color: #111827;
    line-height: 1.55;
    overflow-x: hidden;
}

body.nav-open {
    overflow: hidden;
}

body.modal-open .main-content-blur {
    filter: blur(4px);
    transition: filter 0.3s ease;
    pointer-events: none;
    user-select: none;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

:root {
    --fs-base: clamp(15px, 2.2vw + 0.4rem, 17px);
    --fs-h1: clamp(2.2rem, 6vw + 1rem, 4.2rem);
    --fs-h2: clamp(1.8rem, 4.5vw + 0.8rem, 2.8rem);
    --fs-h3: clamp(1.35rem, 3vw + 0.6rem, 1.8rem);
    --accent: #2D7D84;
    --accent-light: #46bbc6;
    --gray-100: #f3f4f6;
    --gray-600: #4b5563;
    --athenura-teal: #23838a;
    --primary-dark: #1b5e66;
    --bg: #f9fafb;
    --card: white;
    --text: #1f2937;
    --text-light: #4b5563;
    --border: #e5e7eb;
    --radius: 10px;
    --shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    --primary: #0ea5a4;
    --accent: #0ea5a4;
    --dark: #0f172a;
    --gray: #64748b;
    --light: #f1f5f9;
    --white: #ffffff;
    --bg: #f0fafa;
    --surface: #ffffff;
    --border: rgba(14, 165, 164, 0.13);
    --border-hover: rgba(14, 165, 164, 0.35);
    --text-primary: #062a2a;
    --text-secondary: #2d5a5a;
    --text-muted: #5a8888;
    --transition: all 0.3s ease;
    --radius: 20px;
    --radius-sm: 12px;
    --font-display: 'Clash Display', sans-serif;
    --font-body: 'Outfit', sans-serif;
    --font-mono: 'DM Mono', monospace;
}

.navbar {
    animation: navFadeDown 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.1s both;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 2000;
    background: #ffffff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.navbar.scrolled {
    background: #ffffff;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    border-bottom: 1px solid rgba(14, 165, 164, 0.15);
}

.nav-container {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0 20px;
    height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@keyframes navFadeDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

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

.nav-right {
    display: flex;
    align-items: center;
    gap: 32px;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    height: 56px;
    transform: translateY(2px);
    transition: transform 0.4s ease;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.03));
}

.logo:hover img {
    transform: translateY(2px) scale(1.04);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-links a {
    text-decoration: none;
    color: #475569;
    font-weight: 600;
    font-size: 13.5px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    padding: 10px 14px;
    transition: var(--transition);
    ;
    white-space: nowrap;
    position: relative;
    background: transparent !important;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-50%);
    opacity: 0;
    border-radius: 2px;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 60%;
    opacity: 1;
}

.apply-btn-mobile {
    display: none;
}

.apply-btn {
    background: rgba(14, 165, 164, 0.08);
    color: #0b9090;
    border: 1px solid rgba(14, 165, 164, 0.2);
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
}

.apply-btn:hover {
    background: var(--primary);
    color: #ffffff;
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(14, 165, 164, 0.25);
}

.nav-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.5);
    z-index: 2500;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.nav-backdrop.visible {
    display: block;
    opacity: 1;
}

@media (max-width: 768px) {
    .nav-container {
        padding: 0 20px;
        height: 64px;
    }

    .logo img {
        height: 48px;
    }

    /* ── Styled Solid Drawer ── */
    .nav-links {
        display: flex !important;
        position: fixed;
        top: 0;
        right: -100%;
        width: 100vw;
        height: 100vh;
        background: #ffffff;
        border-left: 4px solid #0ea5a4;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        padding: 100px 40px 40px;
        z-index: 3000;
        gap: 30px;
        transition: right 0.6s cubic-bezier(0.85, 0, 0.15, 1);
        overflow: hidden;
        pointer-events: all;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.08);
    }

    .nav-links.open {
        right: 0;
    }

    /* ── Refined Navigation Links ── */
    .nav-links a {
        font-size: 2.2rem;
        font-weight: 800;
        padding: 10px 0;
        width: 100%;
        text-align: left;
        color: #0f172a;
        background: transparent !important;
        text-transform: uppercase;
        letter-spacing: -0.03em;
        border-bottom: none !important;
        transition: color 0.3s ease, transform 0.3s ease;
        position: relative;
    }

    .nav-links a:hover,
    .nav-links a.active {
        color: #0ea5a4;
    }

    .nav-links a.active::before {
        content: '';
        position: absolute;
        left: -24px;
        top: 50%;
        transform: translateY(-50%);
        width: 8px;
        height: 8px;
        background: #0ea5a4;
        border-radius: 50%;
        box-shadow: 0 0 15px rgba(14, 165, 164, 0.5);
    }

    .nav-links a::after {
        display: none !important;
    }

    /* ── Styled Apply Button ── */
    .apply-btn-mobile {
        display: flex !important;
        align-items: center;
        justify-content: center;
        background: linear-gradient(135deg, #0ea5a4 0%, #2dd4bf 100%) !important;
        border: none;
        padding: 18px 40px;
        font-weight: 700;
        font-size: 1.1rem;
        text-decoration: none;
        margin-top: 20px;
        width: 100%;
        max-width: 280px;
        border-radius: 12px;
        box-shadow: 0 10px 30px rgba(14, 165, 164, 0.3);
        transition: all 0.3s ease !important;
    }

    .apply-btn-mobile:active {
        transform: scale(0.97);
    }

    /* Instant appearance for links (animations removed as per user preference) */
    .nav-links.open a,
    .nav-links.open .apply-btn-mobile {
        opacity: 1;
        transform: none;
    }

    .nav-links.open a:nth-child(1) {
        animation-delay: 0.15s;
    }

    .nav-links.open a:nth-child(2) {
        animation-delay: 0.22s;
    }

    .nav-links.open a:nth-child(3) {
        animation-delay: 0.29s;
    }

    .nav-links.open a:nth-child(4) {
        animation-delay: 0.36s;
    }

    .nav-links.open a:nth-child(5) {
        animation-delay: 0.43s;
    }

    .nav-links.open .apply-btn-mobile {
        animation-delay: 0.55s;
    }

    @keyframes drawerItemReveal {
        to {
            opacity: 1;
            transform: translate(0, 0);
        }
    }

    /* ── Hamburger Icon Refinement ── */
    .hamburger {
        display: flex !important;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 44px;
        height: 44px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 3100;
        position: relative;
    }

    .hamburger span {
        display: block;
        width: 24px;
        height: 2px;
        background: #1e293b;
        border-radius: 4px;
        transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        position: absolute;
    }

    .hamburger span:nth-child(1) {
        transform: translateY(-7px);
    }

    .hamburger span:nth-child(2) {
        transform: translateY(0);
    }

    .hamburger span:nth-child(3) {
        transform: translateY(7px);
    }

    .hamburger.open span:nth-child(1) {
        transform: translateY(0) rotate(45deg);
        background: #0ea5a4;
    }

    .hamburger.open span:nth-child(2) {
        opacity: 0;
        transform: scale(0.2);
    }

    .hamburger.open span:nth-child(3) {
        transform: translateY(0) rotate(-45deg);
        background: #0ea5a4;
    }

    /* ── UI Backdrop ── */
    .nav-backdrop {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(15, 23, 42, 0.5);
        z-index: 2500;
    }

    .nav-backdrop.visible {
        display: block;
    }

    .apply-btn {
        display: none !important;
    }
}

.hero {
    position: relative;
    background-color: #0ea5a7;
    min-height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.gradient-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.18) 0%, transparent 40%),
        radial-gradient(circle at 85% 70%, rgba(0, 40, 40, 0.15) 0%, transparent 45%),
        linear-gradient(135deg, rgba(255, 255, 240, 0.08) 0%, transparent 60%);
    pointer-events: none;
    z-index: 1;
}

.background-icons {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.floating-icon {
    position: absolute;
    color: white;
    opacity: 0.14;
    font-size: 3.2rem;
    user-select: none;
    pointer-events: none;
    will-change: transform;
}

@keyframes floatDrift1 {
    0% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }

    50% {
        transform: translate(28px, -22px) rotate(8deg) scale(1.05);
    }

    100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }
}

@keyframes floatDrift2 {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    50% {
        transform: translate(-24px, 30px) rotate(-12deg) scale(0.98);
    }

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

@keyframes floatDrift3 {
    0% {
        transform: translate(0, 0) scale(1);
    }

    40% {
        transform: translate(20px, 18px) scale(1.08);
    }

    80% {
        transform: translate(-15px, -10px) scale(0.96);
    }

    100% {
        transform: translate(0, 0) scale(1);
    }
}

@keyframes floatDrift4 {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    33% {
        transform: translate(-18px, -26px) rotate(6deg);
    }

    66% {
        transform: translate(22px, 14px) rotate(-9deg);
    }

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

.float1 {
    animation: floatDrift1 20s infinite ease-in-out;
}

.float2 {
    animation: floatDrift2 24s infinite ease-in-out;
}

.float3 {
    animation: floatDrift3 22s infinite ease-in-out;
}

.float4 {
    animation: floatDrift4 26s infinite ease-in-out;
}

.card-container {
    position: relative;
    z-index: 3;
    width: 100%;
    padding: 1.8rem 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.glass-card {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 22px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35), inset 0 0 0 1px rgba(255, 255, 255, 0.15);
    padding: clamp(2rem, 6vw, 3.2rem) clamp(1.5rem, 5vw, 2.8rem);
    width: 100%;
    max-width: 780px;
    color: white;
    transition: transform 0.35s cubic-bezier(0.2, 0.9, 0.3, 1.1), box-shadow 0.4s;
}

.glass-card:hover {
    transform: translateY(-8px) scale(1.018);
    box-shadow: 0 32px 60px -18px rgba(0, 50, 50, 0.4), 0 12px 28px -8px rgba(0, 0, 0, 0.2);
}

.glass-card h1 {
    font-size: clamp(2.8rem, 10vw, 5.2rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.05;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.glass-card p {
    font-size: clamp(1rem, 3vw, 1.25rem);
    font-weight: 350;
    margin-bottom: 2.2rem;
    opacity: 0.9;
}

.glass-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 22px;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.45), rgba(255, 255, 255, 0.05), transparent);
    opacity: 0.25;
    pointer-events: none;
}

.search-form {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 60px;
    padding: 0.4rem 0.4rem 0.4rem 1.6rem;
    box-shadow: 0 8px 22px -6px rgba(0, 50, 50, 0.2);
    transition: box-shadow 0.2s;
    flex-wrap: wrap;
}

.search-form:focus-within {
    box-shadow: 0 10px 28px -6px rgba(0, 80, 80, 0.3);
}

.search-form input {
    flex: 1 1 160px;
    border: none;
    outline: none;
    background: transparent;
    padding: 0.8rem 0.4rem 0.8rem 0.2rem;
    font-size: 1rem;
    color: #1a2e3b;
    min-width: 140px;
}

.search-form input::placeholder {
    color: #6b7f8c;
    font-weight: 380;
}

.search-form button {
    background: #0ea5a7;
    border: none;
    color: white;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.2rem;
    transition: background 0.2s, transform 0.1s;
    box-shadow: 0 4px 12px rgba(3, 80, 80, 0.3);
    flex-shrink: 0;
}

.search-form button:hover {
    background: #0b8789;
}

.search-form button:active {
    transform: scale(0.96);
}

.main-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 48px;
    padding: 60px 0;
}

.sidebar h2 {
    font-size: 1.35rem;
    margin-bottom: 0.8rem;
}

.sidebar>p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 1.8rem;
}

.category-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.category-btn {
    padding: 12px 16px;
    border-radius: var(--radius);
    border: none;
    background: transparent;
    text-align: left;
    font-weight: 500;
    color: var(--text-light);
    cursor: pointer;
    transition: all 0.18s;
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
}

.category-btn:hover,
.category-btn.active {
    background: rgba(35, 122, 133, 0.08);
    color: var(--primary);
}

.category-btn.active {
    font-weight: 600;
}

.accordion {
    max-height: 370px;
    overflow-y: auto;
    padding-right: 4px;
    scrollbar-width: thin;
    scrollbar-color: #cbd5e1 #f1f5f9;
}

.accordion::-webkit-scrollbar {
    width: 4px;
}

.accordion::-webkit-scrollbar-track {
    background: #f1f5f9;
    border-radius: 10px;
}

.accordion::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 10px;
}

.faq-item {
    background: #ffffff;
    border: 1px solid rgba(14, 165, 164, 0.15);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 20px -8px rgba(0, 0, 0, 0.08);
    margin-bottom: 12px;
    transition: box-shadow 0.3s ease, transform 0.2s ease, border-color 0.2s ease;
}

.faq-item:hover {
    box-shadow: 0 12px 28px -10px rgba(14, 165, 164, 0.2), 0 4px 12px rgba(0, 0, 0, 0.02);
    border-color: rgba(14, 165, 164, 0.3);
    transform: translateY(-1px);
}

.faq-question {
    width: 100%;
    padding: 18px 24px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(2px);
    border: none;
    font-size: 1.05rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease, color 0.2s;
    color: #1a2e3b;
}

.faq-question:hover {
    background: rgba(14, 165, 164, 0.04);
    color: #0ea5a4;
}

.faq-item.active .faq-question {
    background: rgba(14, 165, 164, 0.02);
    border-bottom: 1px solid rgba(14, 165, 164, 0.1);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-question i {
    transition: transform 0.25s ease;
    color: var(--primary);
    font-size: 0.95rem;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.25s ease;
    background: #ffffff;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    opacity: 1;
    transform: translateY(0);

    padding: 0 24px 24px;
}

.faq-answer p {
    padding-top: 4px;
    color: var(--text-light);
    white-space: pre-line;
}

.support-cta {
    position: relative;
    background: linear-gradient(135deg, #0ea5a7, #0b7c7e);
    border-radius: 2px;
    padding: clamp(2.5rem, 8vw, 4rem) clamp(1.5rem, 5vw, 3rem);
    margin: 40px 0 60px;
    overflow: hidden;
    box-shadow: 0 20px 40px -12px rgba(0, 80, 80, 0.25);
    border: 1px solid rgba(45, 125, 132, 0.15);
}

.support-cta-content {
    position: relative;
    z-index: 10;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.badge {
    display: inline-block;
    background: rgba(14, 165, 164, 0.12);
    backdrop-filter: blur(4px);
    padding: 6px 18px;
    border-radius: 40px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: white;
    border: 1px solid rgba(14, 165, 164, 0.3);
    margin-bottom: 1.5rem;
}

.support-cta h2 {
    font-size: clamp(2rem, 6vw, 2.8rem);
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.description {
    font-size: clamp(1rem, 3vw, 1.2rem);
    color: white;
    margin-bottom: 2rem;
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1.2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.btn-support {
    background: #0ea5a4;
    border: none;
    color: white;
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    box-shadow: 0 8px 20px rgba(14, 165, 164, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-support:hover {
    background: #0c8b8a;
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 16px 28px rgba(14, 165, 164, 0.45);
}

.btn-policy {
    background: transparent;
    border: 1.5px solid #aef1fa;
    color: white;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.25s;
}

.btn-policy:hover {
    background: rgba(35, 122, 133, 0.06);
    transform: translateY(-3px);
    border-color: #0ea5a4;
}

.response-time {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #1c4e52;
    font-weight: 500;
    font-size: 0.95rem;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(4px);
    padding: 8px 20px;
    border-radius: 40px;
    width: fit-content;
    margin: 0 auto;
    flex-wrap: wrap;
}

.floating-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.shape {
    position: absolute;
    background: radial-gradient(circle at 30% 30%, rgba(14, 165, 164, 0.15), rgba(45, 125, 132, 0.02));
    border-radius: 62% 38% 42% 58% / 37% 53% 47% 63%;
    width: 280px;
    height: 280px;
    filter: blur(8px);
}

.shape-1 {
    top: -80px;
    left: -60px;
    background: rgba(79, 209, 197, 0.18);
    animation: slowMove 26s infinite alternate;
}

.shape-2 {
    bottom: -40px;
    right: -30px;
    width: 340px;
    height: 340px;
    background: rgba(14, 165, 164, 0.1);
    animation: slowMove2 30s infinite alternate;
}

.shape-3 {
    top: 20%;
    right: 5%;
    width: 180px;
    height: 180px;
    background: rgba(255, 214, 107, 0.12);
    animation: slowMove3 22s infinite alternate;
}

.shape-4 {
    bottom: 10%;
    left: 10%;
    width: 220px;
    height: 220px;
    background: rgba(129, 140, 248, 0.08);
    animation: slowMove 24s infinite alternate;
}

@keyframes slowMove {
    0% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }

    100% {
        transform: translate(40px, -30px) rotate(15deg) scale(1.1);
    }
}

@keyframes slowMove2 {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    100% {
        transform: translate(-50px, 20px) rotate(-10deg) scale(1.15);
    }
}

@keyframes slowMove3 {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(20px, 40px) rotate(8deg) scale(1.2);
    }
}

.curved-lines {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
    opacity: 0.2;
    pointer-events: none;
    z-index: 2;
}

.support-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease, visibility 0.3s;
}

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

.support-modal {
    background: white;
    width: 90%;
    max-width: 520px;
    border-radius: 40px;
    padding: clamp(1.8rem, 6vw, 2.5rem) clamp(1.5rem, 4vw, 2rem);
    box-shadow: 0 40px 70px rgba(0, 30, 30, 0.4);
    transform: scale(0.7) translateY(40px);
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 1px solid rgba(255, 255, 255, 0.5);
    position: relative;
}

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

.modal-close-btn {
    position: absolute;
    top: 16px;
    right: 20px;
    background: none;
    border: none;
    font-size: 2.2rem;
    line-height: 1;
    cursor: pointer;
    color: #6b7f8c;
    transition: color 0.2s, transform 0.2s;
}

.modal-close-btn:hover {
    color: #0ea5a4;
    transform: rotate(90deg);
}

.support-modal h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #0b3f42;
    margin-bottom: 0.5rem;
}

.support-modal p {
    color: #3e6b6e;
    margin-bottom: 2rem;
    font-size: 1rem;
}

.input-field {
    display: flex;
    align-items: center;
    border-bottom: 2px solid #dde7e7;
    margin-bottom: 1.5rem;
    padding: 0.2rem 0;
    transition: border-color 0.2s;
}

.input-field i {
    color: #0ea5a4;
    width: 30px;
    font-size: 1.2rem;
    text-align: center;
}

.input-field input,
.input-field select,
.input-field textarea {
    border: none;
    background: transparent;
    padding: 10px 0 8px 8px;
    width: 100%;
    font-size: 1rem;
    outline: none;
    font-family: inherit;
}

.input-field textarea {
    min-height: 70px;
    resize: vertical;
}

.input-field:focus-within {
    border-bottom-color: #0ea5a4;
}

.btn-send {
    background: #0ea5a4;
    color: white;
    border: none;
    padding: 16px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    width: 100%;
    cursor: pointer;
    margin-top: 1rem;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 8px 20px rgba(14, 165, 164, 0.3);
}

.btn-send:hover {
    background: #0b8789;
    transform: translateY(-2px);
    box-shadow: 0 14px 26px rgba(14, 165, 164, 0.4);
}

.map-section {
    position: relative;
    padding: 100px 0;
    text-align: center;
    overflow: hidden;
}

.map-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
    border: 0;
}

.map-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: -1;
}

.map-overlay {
    background: rgba(255, 255, 255, 0.95);
    color: var(--text);
    max-width: 480px;
    margin: 0 auto;
    padding: 40px 32px;
    border-radius: var(--radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    width: 90%;
}

.map-overlay i {
    font-size: 3.2rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.map-overlay .btn-primary {
    background: var(--primary);
    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    width: 100%;
}

.map-overlay .btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

.athenura-footer {
    background: #0ea5a4;
    color: #fff;
    font-family: 'Inter', Arial, sans-serif;
    padding-top: 60px;
    margin-top: 0;
}

.footer-container {
    max-width: 1400px;
    margin: auto;
    padding: 0 60px 80px;
    display: grid;
    grid-template-columns: 1.6fr 1fr 1.4fr 1.2fr 1.6fr;
    gap: 50px;
    align-items: start;
}

.footer-col h3 {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 28px;
}

.footer-logo {
    width: 160px;
    margin-bottom: 18px;
    display: block;
    max-width: 100%;
    height: auto;
}

.branding p {
    font-size: 14px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 24px;
    max-width: 230px;
}

.follow-us-text {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 14px;
    display: block;
}

.social-links {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    flex-shrink: 0;
    transition: transform 0.25s, box-shadow 0.25s;
    color: inherit;
}

.social-icon svg {
    width: 18px;
    height: 18px;
}

.social-links a:nth-child(1) {
    color: #0A66C2;
}

.social-links a:nth-child(2) {
    color: #E1306C;
}

.social-links a:nth-child(3) {
    color: #1DA1F2;
}

.social-links a:nth-child(4) {
    color: black;
}

.social-icon:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 16px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.88);
    text-decoration: none;
    font-size: 15px;
    transition: all 0.25s;
}

.footer-col ul li a:hover {
    color: #d6f1f3;
    transform: translateX(4px);
    text-decoration: underline;
}

.info-row {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 22px;
}

.white-circle {
    width: 30px;
    height: 30px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.25s;
}

.white-circle svg {
    width: 15px;
    height: 20px;
    display: block;
}

.email-icon {
    color: #e11d48;
}

.phone-icon {
    color: #22c55e;
}

.info-text span {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.8px;
    margin-bottom: 3px;
}

.info-text a {
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    word-break: break-word;
}

.info-row:hover a {
    text-decoration: underline;
}

.info-row:hover .white-circle {
    transform: translateY(-4px);
}

.footer-col iframe {
    width: 100%;
    height: 160px;
    border: none;
    border-radius: 10px;
    margin-top: 4px;
}

.address {
    display: flex;
    align-items: flex-start;
    gap: 6px;
    margin-top: 10px;
    font-size: 14px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.88);
}

.address::before {
    content: "📍";
    font-size: 13px;
    flex-shrink: 0;
}

.footer-bottom-bar {
    padding: 0;
}

.bottom-content {
    max-width: 1400px;
    margin: auto;
    padding: 30px 60px 50px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
}

.bottom-content p a {
    color: #fff;
    text-decoration: none;
    transition: opacity 0.25s;
}

.bottom-content p a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

.legal-links {
    display: flex;
    gap: 30px;
}

.legal-links a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 14px;
}

@media (max-width: 1024px) {
    .main-layout {
        gap: 32px;
    }
}

@media (max-width: 900px) {
    .main-layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .category-list {
        display: flex;
        flex-direction: column;
        width: 100%;
    }

    .category-btn {
        width: 100%;
        justify-content: flex-start;
    }

    .accordion {
        max-height: calc(5 * 72px);
        overflow-y: auto;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 80vh;
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
        padding: 0 24px 60px;
    }

    .footer-col.branding {
        grid-column: 1 / -1;
    }

    .bottom-content {
        flex-direction: column;
        align-items: center;
        gap: 10px;
        text-align: center;
        padding: 20px 24px 40px;
    }

    .map-overlay {
        padding: 30px 20px;
    }
}

@media (max-width: 576px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .glass-card {
        max-width: 95%;
    }

    .search-form {
        padding: 0.3rem 0.3rem 0.3rem 1rem;
    }

    .search-form input {
        font-size: 0.95rem;
    }

    .search-form button {
        width: 48px;
        height: 48px;
    }

    .category-btn {
        font-size: 0.9rem;
        padding: 10px 12px;
    }

    .faq-question {
        padding: 14px 18px;
        font-size: 1rem;
    }

    .faq-item.active .faq-answer {
        padding: 0 18px 16px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-support,
    .btn-policy {
        text-align: center;
    }

    .btn-policy {
        justify-content: center;
    }
}

@media (max-width: 480px) {

    .glass-card h1 {
        font-size: clamp(2.4rem, 13vw, 3.2rem);
    }

    .glass-card p {
        font-size: 1rem;
    }

    .support-cta h2 {
        font-size: 2rem;
    }

    .bottom-content {
        padding: 14px 20px 36px;
    }

    .legal-links {
        gap: 16px;
    }

    .legal-links a {
        font-size: 13px;
    }

    .map-overlay {
        padding: 24px 16px;
    }

    .map-overlay i {
        font-size: 2.8rem;
    }

    .support-modal {
        padding: 1.8rem 1.2rem;
    }

    .input-field i {
        width: 24px;
    }
}

@media (max-width: 375px) {
    .search-form {
        flex-wrap: wrap;
        border-radius: 30px;
        padding: 0.3rem;
    }

    .search-form input {
        flex: 1 1 100%;
        padding: 0.7rem 0.8rem;
    }

    .search-form button {
        margin: 0 auto 0.3rem;
        width: 48px;
        height: 48px;
    }

    .category-btn {
        font-size: 0.85rem;
        padding: 8px 10px;
    }
}

@media (max-width: 320px) {
    .glass-card {
        padding: 1.5rem 1rem;
    }

    .glass-card h1 {
        font-size: 2.2rem;
    }
}

@media (min-width: 480px) and (max-width: 1024px) {

    .footer-container {
        grid-template-columns: 1fr 1fr;
        /* 2 columns */
    }

    .branding {
        grid-column: span 2;
        /* full width le lega */
    }

    .branding p {
        max-width: 100%;
    }

}