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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', sans-serif;
    color: #1e293b;
    background-color: #f2f5f9;
    line-height: 1.5;
    min-height: 100vh;
    padding-top: 76px;
    overflow-x: hidden;
}

:root {
    --brand: #00968a;
    --brand-dark: #00968a;
    --brand-light: #e7f9fb;
    --deep: #0f172a;
    --slate-50: #f8fafc;
    --slate-100: #f1f5f9;
    --slate-300: #cbd5e1;
    --slate-400: #94a3b8;
    --slate-500: #64748b;
    --slate-600: #475569;
    --white: #ffffff;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --radius: 12px;
    --transition: all 0.2s ease;
    --primary: #0ea5a4;
    --accent: #0ea5a4;
    --dark: #0f172a;
    --gray: #64748b;
    --light: #f1f5f9;
    --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;
    --font-display: 'Clash Display', sans-serif;
    --font-body: 'Outfit', sans-serif;
    --font-mono: 'DM Mono', monospace;
}

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

.navbar {
    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;
}

.navbar {
    animation: navFadeDown 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.1s both;
}

@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: all 0.3s ease;
    white-space: nowrap;
    position: relative;
    background: transparent !important;
}

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

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary, #0ea5a4);
    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: all 0.3s ease;
}

.apply-btn:hover {
    background: var(--primary, #0ea5a4);
    color: #ffffff;
    border-color: var(--primary, #0ea5a4);
    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);
    backdrop-filter: blur(8px);
    z-index: 2500;
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.hero-section {
    position: relative;
    min-height: auto;
    padding: 2rem 0 2rem;
    overflow: hidden;
    background-image: radial-gradient(#00968a22 1px, transparent 1px);
    background-size: 30px 30px;
}

.hero-grid {
    display: grid;
    gap: 5rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.hero-content {
    max-width: 600px;
}

.hero-header {
    max-width: 36rem;
    margin-bottom: 2rem;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--deep);
    letter-spacing: -0.025em;
    line-height: 1.25;
    margin-bottom: 1rem;
}

.hero-title span {
    display: inline-block;
    white-space: nowrap;
}

.brand-text {
    color: var(--brand);
}

.hero-description {
    font-size: 1.125rem;
    color: var(--slate-600);
    line-height: 1.625;
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--slate-500);
    margin: 2rem 0;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.trust-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--brand);
}

.contact-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .contact-cards {
        grid-template-columns: 1fr 1fr;
    }
}

.contact-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--slate-100);
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon-wrapper {
    width: 3rem;
    height: 3rem;
    background-color: var(--brand-light);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--brand);
}

.contact-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--slate-500);
}

.contact-link {
    color: var(--deep);
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
}

.contact-link:hover {
    color: var(--brand);
}

.contact-response-time {
    font-size: 0.75rem;
    color: var(--slate-400);
    margin-top: 0.25rem;
}

.satisfaction-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--slate-400);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding-top: 1rem;
}

.dot {
    width: 0.375rem;
    height: 0.375rem;
    background-color: var(--slate-300);
    border-radius: 9999px;
}

.testimonials-wrapper {
    position: relative;
    margin-left: 3rem;
    height: 600px;
    display: none;
    overflow: hidden;
    border-radius: 20px;
    background: #f2f5f9;
}

@media (min-width: 1024px) {
    .testimonials-wrapper {
        display: block;
    }
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-color: transparent;
}

.commitment-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #0d4d54 0%, #166e7a 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.commitment-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
}

@media (min-width: 768px) {
    .commitment-grid {
        flex-direction: row;
    }
}

.commitment-text {
    width: 100%;
}

@media (min-width: 768px) {
    .commitment-text {
        width: 50%;
    }
}

.commitment-title {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.commitment-description {
    font-size: 1.125rem;
    opacity: 0.8;
    margin-bottom: 3rem;
    max-width: 32rem;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.stat-item .stat-value {
    font-size: 2.25rem;
    font-weight: 800;
}

.stat-item .stat-caption {
    font-size: 0.75rem;
    opacity: 0.7;
    text-transform: uppercase;
    margin-top: 0.5rem;
}

.commitment-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    padding: 2.5rem;
    border-radius: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: 100%;
}

@media (min-width: 768px) {
    .commitment-card {
        width: 41.666667%;
    }
}

.commitment-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.commitment-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.commitment-list-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.125rem;
}

.check-circle {
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 9999px;
    background-color: var(--brand);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.check-icon {
    width: 1rem;
    height: 1rem;
    color: var(--deep);
    stroke-width: 3;
}

.faq-section {
    padding: 6rem 0;
    background-color: var(--slate-50);
}

.faq-header {
    text-align: center;
    margin-bottom: 4rem;
}

.faq-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--deep);
    margin-bottom: 1rem;
}

.faq-subtitle {
    color: var(--slate-600);
    max-width: 36rem;
    margin: 0 auto;
}

.faq-grid {
    display: grid;
    gap: 2rem;
    max-width: 64rem;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .faq-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--slate-100);
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-question {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--deep);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.faq-answer {
    color: var(--slate-600);
    font-size: 0.875rem;
    line-height: 1.625;
}

.faq-footer {
    text-align: center;
    margin-top: 3rem;
}

.faq-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 2rem;
    border: 2px solid var(--brand);
    color: var(--brand);
    font-weight: 700;
    border-radius: 9999px;
    text-decoration: none;
    transition: var(--transition);
}

.faq-button:hover {
    background-color: var(--brand);
    color: white;
}

.button-arrow {
    width: 1rem;
    height: 1rem;
}

.contact-panel {
    max-width: 1280px;
    width: 100%;
    margin: 80px auto;
    background-color: #ffffff;
    border-radius: 2.5rem;
    box-shadow: 0 30px 60px -10px rgba(0, 20, 40, 0.12), 0 12px 30px -8px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.contact-panel .grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.contact-panel .panel-left {
    padding: 3.5rem 3rem 3.5rem 3rem;
    background: white;
}

.contact-panel .panel-right {
    padding: 3.5rem 3rem 3.5rem 3rem;
    background: white;
    border-left: 1px solid #e9ecf2;
}

.contact-panel .get-in-touch {
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #0b1e33;
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

.contact-panel .vision-sub {
    font-size: 1.6rem;
    font-weight: 500;
    color: #1e3a5f;
    margin-bottom: 1.25rem;
    line-height: 1.3;
}

.contact-panel .desc-text {
    color: #3f4e67;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    font-size: 1rem;
    max-width: 90%;
}

.contact-panel .rating-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 3rem;
}

.contact-panel .pill {
    background: #edf2fa;
    color: #1e3a5f;
    padding: 0.5rem 1.4rem;
    border-radius: 40px;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    white-space: nowrap;
}

.contact-panel .info-row {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    margin-bottom: 2.8rem;
}

.contact-panel .info-row:last-of-type {
    margin-bottom: 0;
}

.contact-panel .icon-circle {
    width: 68px;
    height: 68px;
    background: #e6f3f4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(0, 40, 50, 0.05);
}

.contact-panel .icon-circle i {
    font-size: 24px;
    color: #2D7D84;
}

.contact-panel .info-text {
    flex: 1;
}

.contact-panel .info-text h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #0b1e33;
    margin-bottom: 0.3rem;
    line-height: 1.3;
}

.contact-panel .info-text p {
    color: #4b5e7a;
    margin-bottom: 0.25rem;
    line-height: 1.5;
    font-size: 1rem;
}

.contact-panel .info-text .detail {
    font-weight: 600;
    color: #0b1e33;
    font-size: 1.1rem;
    margin: 0.2rem 0 0.1rem 0;
}

.contact-panel .info-text .small-meta {
    font-size: 0.9rem;
    color: #6f7d98;
}

.contact-panel .info-text a {
    color: inherit;
    text-decoration: none;
    border-bottom: 1px dotted transparent;
    transition: border-color 0.15s;
}

.contact-panel .info-text a:hover {
    border-bottom: 1px dotted #3f5e8c;
}

.contact-panel .conversation-head {
    font-size: 2rem;
    font-weight: 600;
    color: #0b1e33;
    margin-bottom: 0.3rem;
    letter-spacing: -0.01em;
}

.contact-panel .back-in {
    color: #556b89;
    margin-bottom: 2.3rem;
    font-size: 1.05rem;
}

.contact-panel .form-group {
    margin-bottom: 1.5rem;
}

.contact-panel label {
    display: block;
    font-weight: 600;
    color: #1e3a5f;
    margin-bottom: 0.4rem;
    font-size: 0.95rem;
}

.contact-panel input,
.contact-panel textarea {
    width: 100%;
    padding: 1rem 1.2rem;
    border: 1px solid #dae0e9;
    border-radius: 16px;
    font-size: 1rem;
    background-color: #fbfdff;
    transition: 0.2s ease;
}

.contact-panel input:focus,
.contact-panel textarea:focus {
    outline: none;
    border-color: #2b4f8e;
    box-shadow: 0 0 0 3px rgba(33, 77, 161, 0.08);
    background-color: #ffffff;
}

.contact-panel input::placeholder,
.contact-panel textarea::placeholder {
    color: #a7b6cc;
    font-weight: 400;
    opacity: 1;
}

.contact-panel textarea {
    resize: vertical;
    min-height: 130px;
}

.contact-panel .secure-text {
    font-size: 0.9rem;
    color: #5f6f8a;
    margin: 0.5rem 0 1.8rem 0;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.contact-panel .btn-whatsapp {
    background: #25D366;
    color: white;
    border: none;
    padding: 1.1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    width: 100%;
    transition: background 0.2s, transform 0.1s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: 0 8px 18px -6px rgba(37, 211, 102, 0.3);
}

.contact-panel .btn-whatsapp:hover {
    background: #20b859;
    box-shadow: 0 10px 20px -6px rgba(37, 211, 102, 0.4);
}

.contact-panel .btn-whatsapp:active {
    transform: scale(0.98);
}

.fade-up {
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.show {
    opacity: 1;
    transform: translateY(0);
}

.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 {
    min-width: 0;
}

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

.footer-logo {
    width: 160px;
    margin-bottom: 18px;
    display: block;
}

.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;
}

.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;
    fill: currentColor;
}

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

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

.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;
    font-weight: 400;
    display: inline-block;
    transition: all 0.25s;
}

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

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

.athenura-footer .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;
}

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

.athenura-footer .email-icon {
    color: #e11d48;
}

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

.athenura-footer .info-text {
    line-height: 1.4;
}

.athenura-footer .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;
}

.athenura-footer .info-text a {
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

.athenura-footer .info-row:hover a {
    text-decoration: underline;
    cursor: pointer;
}

.athenura-footer .info-row:hover .white-circle {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

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

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

.athenura-footer .address::before {
    content: "📍";
    font-size: 13px;
    flex-shrink: 0;
    margin-top: 1px;
}

.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: 1200px) {
    .bottom-content {
        padding: 18px 40px 44px;
    }
}

@media (max-width: 1024px) {
    .hero-title {
        font-size: 2.8rem;
    }

    .contact-panel .get-in-touch {
        font-size: 2rem;
    }

    .contact-panel .vision-sub {
        font-size: 1.5rem;
    }
}

@media (max-width: 900px) {
    .contact-panel .grid-2 {
        grid-template-columns: 1fr;
    }

    .contact-panel .panel-right {
        border-left: none;
        border-top: 1px solid #e2e8f0;
    }

    .contact-panel .panel-left,
    .contact-panel .panel-right {
        padding: 2.5rem 2rem;
    }

    .contact-panel .get-in-touch {
        font-size: 2rem;
    }

    .contact-panel .vision-sub {
        font-size: 1.4rem;
    }

    .contact-panel .desc-text {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 64px;
    }

    .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-section {
        padding: 1.5rem 0;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-content {
        max-width: 100%;
        padding: 0 1rem;
    }

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

    .trust-badges {
        flex-wrap: wrap;
        gap: 0.75rem;
    }

    .contact-cards {
        grid-template-columns: 1fr;
    }

    .commitment-section,
    .faq-section {
        padding: 4rem 0;
    }

    .contact-panel {
        margin: 60px auto;
    }

    .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;
    }
}

@media (max-width: 600px) {
    .hero-title {
        font-size: 2rem;
    }

    .contact-panel {
        margin: 40px auto;
    }

    .contact-panel .panel-left,
    .contact-panel .panel-right {
        padding: 2rem 1.5rem;
    }

    .contact-panel .pill {
        white-space: normal;
        font-size: 0.85rem;
        padding: 0.4rem 1rem;
    }

    .contact-panel .icon-circle {
        width: 58px;
        height: 58px;
    }

    .contact-panel .icon-circle i {
        font-size: 22px;
    }

    .contact-panel .info-row {
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 1rem 0;
    }

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

    .contact-panel .get-in-touch {
        font-size: 1.8rem;
    }

    .contact-panel .vision-sub {
        font-size: 1.3rem;
    }

    .contact-panel .icon-circle {
        width: 48px;
        height: 48px;
    }

    .contact-panel .icon-circle i {
        font-size: 20px;
    }

    .contact-panel .info-text h4 {
        font-size: 1.1rem;
    }

    .contact-panel .info-text .detail {
        font-size: 0.95rem;
    }

    .faq-title {
        font-size: 1.8rem;
    }

    .commitment-title {
        font-size: 1.8rem;
    }

    .stats-row {
        gap: 1rem;
    }

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

    .footer-container {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 0 20px 50px;
    }

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

    .legal-links {
        gap: 16px;
    }

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

    .commitment-section,
    .faq-section {
        padding: 3rem 0;
    }
}


@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%;
    }

}