/* ===== 1. CORE DESIGN SYSTEM (Modern & Sophisticated) ===== */
:root {
    /* Color Palette */
    --clr-bg: #F8F9FA; /* Very light modern grey */
    --clr-surface: #FFFFFF; /* Pure White */
    --clr-accent: #111111; /* Deep Black Accent */
    --clr-text-main: #222222;
    --clr-text-muted: #666666;
    --clr-border: #EAEAEA;
    
    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Outfit', 'M PLUS Rounded 1c', sans-serif;
    
    /* UI Elements */
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 32px;
    --shadow-soft: 0 12px 40px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 20px 60px rgba(0, 0, 0, 0.1);
    
    /* Layout */
    --container-max: 1100px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--clr-bg);
    color: var(--clr-text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.15;
    color: var(--clr-accent);
}

a {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 5%;
}

.container-narrow {
    max-width: 800px;
}

section {
    padding: 100px 0;
}

.pb-large {
    padding-bottom: 120px;
}

.section-header {
    margin-bottom: 60px;
}

.text-center {
    text-align: center;
}

.subtitle-badge {
    display: inline-block;
    padding: 6px 14px;
    background: #F0F0F0;
    color: #555;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.15rem;
    color: var(--clr-text-muted);
}

/* ===== 2. BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 50px; /* Pill shape for modern look */
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    cursor: pointer;
    border: 1px solid transparent;
    gap: 8px;
}

.btn-large {
    padding: 16px 36px;
    font-size: 1.1rem;
}

.btn-primary {
    background-color: var(--clr-accent);
    color: var(--clr-surface);
}

.btn-primary:hover {
    background-color: #333;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.btn-outline {
    background-color: transparent;
    border-color: #DDD;
    color: var(--clr-accent);
}

.btn-outline:hover {
    border-color: var(--clr-accent);
    background-color: var(--clr-surface);
    transform: translateY(-3px);
    box-shadow: var(--shadow-soft);
}

.link {
    color: var(--clr-accent);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.link:hover {
    gap: 12px;
}

/* ===== 3. NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    z-index: 1000;
    transition: all 0.3s ease;
    background: transparent;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--clr-border);
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 5%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.4rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    font-size: 1.6rem;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--clr-text-muted);
}

.nav-links a:hover {
    color: var(--clr-accent);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--clr-text-main);
    cursor: pointer;
}

/* ===== 4. HERO SECTION ===== */
.hero {
    position: relative;
    padding-top: 180px;
    padding-bottom: 80px;
    min-height: calc(100vh - 60px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-bg {
    position: absolute;
    top: 100px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    z-index: -1;
}

.hero-image-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: transparent;
}

.hero-container {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
    position: relative;
    z-index: 1;
    width: 100%;
}

.badge {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 500;
    color: #fff;
    margin-bottom: 30px;
    margin-left: auto;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.hero-title {
    font-size: clamp(3.5rem, 6vw, 5.5rem);
    margin-bottom: 24px;
    color: #ffffff;
    white-space: nowrap;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero-buttons {
    display: flex;
    justify-content: flex-end;
    gap: 16px;
}

.hero-buttons .btn-outline {
    border-color: rgba(255,255,255,0.4);
    color: #fff;
    background: rgba(0,0,0,0.1);
}

.hero-buttons .btn-outline:hover {
    border-color: #fff;
    background: #fff;
    color: var(--clr-accent);
}

/* ===== 5. ABOUT SECTION ===== */
.about-card {
    background: var(--clr-surface);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: 80px 60px;
    text-align: center;
    box-shadow: var(--shadow-soft);
}

.about-card .section-description {
    font-size: 1.25rem;
    color: var(--clr-text-muted);
    max-width: 700px;
    margin: 0 auto 50px;
    line-height: 1.8;
}

.stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    border-top: 1px solid var(--clr-border);
    padding-top: 40px;
    max-width: 600px;
    margin: 0 auto;
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.stat .num {
    font-size: 3.5rem;
    font-weight: 300;
    line-height: 1;
    color: var(--clr-accent);
}

.stat .label {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--clr-text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== 6. INTERACTIVE MAP ===== */
.map-showcase {
    position: relative;
    background: var(--clr-surface);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--clr-border);
    padding: 12px; /* acts as a bezel */
}

/* A stylish MAC OS like top bar for the map */
.map-decoration {
    padding: 8px 16px 16px;
    display: flex;
    align-items: center;
}

.mac-buttons {
    display: flex;
    gap: 8px;
}

.mac-buttons span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #EAEAEA;
}

.mac-buttons span:nth-child(1) { background: #FF5F56; }
.mac-buttons span:nth-child(2) { background: #FFBD2E; }
.mac-buttons span:nth-child(3) { background: #27C93F; }

.map-container {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    height: 550px;
    background: #FAFAFA;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

/* ===== 7. FEATURED TEMPLES ===== */
.temple-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.temple-list-item {
    background: var(--clr-surface);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    padding: 20px;
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    gap: 24px;
    align-items: stretch;
}

.temple-list-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.card-img-wrapper {
    width: 180px;
    flex-shrink: 0;
    background: var(--clr-bg);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-content {
    flex: 1;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    grid-template-rows: auto auto 1fr auto;
    column-gap: 30px;
}

.tags {
    grid-column: 1;
    grid-row: 1;
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.tag {
    background: var(--clr-bg);
    color: var(--clr-text-muted);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.temple-list-item h3 {
    grid-column: 1;
    grid-row: 2;
    font-size: 1.5rem;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.romaji {
    font-size: 0.95rem;
    color: #999;
    font-weight: 400;
}

.temple-list-item p {
    grid-column: 1;
    grid-row: 3;
    color: var(--clr-text-muted);
    margin-bottom: 16px;
    font-size: 0.95rem;
}

.temple-details {
    grid-column: 2;
    grid-row: 1 / span 4;
    font-size: 0.85rem;
    color: var(--clr-text-muted);
    background: rgba(0,0,0,0.02);
    padding: 15px;
    border-radius: var(--radius-sm);
    margin-bottom: 0;
    border: 1px solid var(--clr-border);
    line-height: 1.5;
    text-align: left;
}

.temple-details strong {
    color: var(--clr-text-main);
}

.temple-details ul {
    margin: 5px 0 0 20px;
    padding: 0;
}

.card-content .btn-outline {
    grid-column: 1;
    grid-row: 4;
    justify-self: start;
    align-self: end;
}

.coming-soon {
    grid-column: 1 / span 2;
    color: #888;
    font-style: italic;
    margin-top: 15px;
    text-align: center;
    font-size: 0.95rem;
}

/* Mobile Responsive for Temple List */
@media (max-width: 768px) {
    .temple-list-item {
        flex-direction: column;
        padding: 20px;
        gap: 20px;
    }
    .card-img-wrapper {
        width: 100%;
        height: 200px;
    }
    .temple-list-item h3 {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }
    .card-content {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }
    .temple-details {
        margin-top: 5px;
        margin-bottom: 10px;
    }
    .card-content .btn-outline {
        align-self: stretch;
        width: 100% !important;
        text-align: center;
        justify-content: center;
    }
}

/* ===== 8. GUIDE STEPS ===== */
.step-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.step-card {
    background: var(--clr-surface);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    padding: 30px 40px;
    display: flex;
    align-items: center;
    gap: 30px;
    box-shadow: var(--shadow-soft);
    transition: transform 0.2s ease;
}

.step-card:hover {
    transform: translateX(8px);
}

.step-icon {
    font-size: 2.5rem;
    color: #CCC;
    background: #FFF;
    min-width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--clr-border);
}

.step-info h3 {
    font-size: 1.4rem;
    margin-bottom: 8px;
}

.step-info p {
    color: var(--clr-text-muted);
}

/* ===== 9. FAQ ACCORDION & PROMO ===== */
.faq-promo {
    text-align: center;
    margin-bottom: 30px;
}

.promo-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--clr-surface);
    color: var(--clr-text-main);
    border: 1px solid var(--clr-border);
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}

.promo-link i.ph-book-open {
    color: var(--clr-text-muted);
    font-size: 1.2rem;
}

.promo-link i.ph-arrow-right {
    font-size: 0.85rem;
    margin-left: 2px;
    color: var(--clr-text-muted);
    transition: transform 0.3s ease;
}

.promo-link:hover {
    border-color: var(--clr-accent);
    box-shadow: var(--shadow-soft);
    transform: translateY(-2px);
}

.promo-link:hover i.ph-arrow-right {
    transform: translateX(4px);
    color: var(--clr-accent);
}

.faq-filters {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-bottom: 40px;
}

.faq-row-1 {
    display: flex;
    justify-content: center;
    width: 100%;
}

.faq-row-2 {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

.filter-btn {
    padding: 8px 20px;
    border-radius: 30px;
    border: 1px solid var(--clr-border);
    background: var(--clr-bg);
    color: var(--clr-text-muted);
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    border-color: var(--clr-accent);
    color: var(--clr-text-main);
}

.faq-row-1 .filter-btn {
    background: #666;
    color: white;
    border-color: #666;
}

.faq-row-1 .filter-btn:hover {
    background: #555;
    border-color: #555;
}

.filter-btn.active, .faq-row-1 .filter-btn.active {
    background: var(--clr-accent);
    color: var(--clr-surface);
    border-color: var(--clr-accent);
}

.accordion {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.acc-item {
    background: var(--clr-surface);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.02);
}

.acc-header {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 24px 30px;
    font-size: 1.1rem;
    font-family: inherit;
    font-weight: 500;
    color: var(--clr-accent);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background 0.3s ease;
}

.acc-header:hover {
    background: #FAFAFA;
}

.acc-header i {
    color: var(--clr-text-muted);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.acc-header.active i {
    transform: rotate(45deg);
    color: var(--clr-accent);
}

.acc-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--clr-surface);
}

.acc-body p {
    padding: 0 30px 24px;
    color: var(--clr-text-muted);
}

/* ===== 10. SUPPORT BANNER ===== */
.support-banner {
    background: var(--clr-accent);
    color: var(--clr-surface);
    border-radius: var(--radius-lg);
    padding: 80px 40px;
    text-align: center;
    box-shadow: var(--shadow-soft);
}

.support-banner h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
    color: var(--clr-surface);
}

.support-banner p {
    font-size: 1.1rem;
    color: #AAA;
    margin-bottom: 40px;
    max-width: 500px;
    margin-inline: auto;
}

.support-banner .btn-primary {
    background: var(--clr-surface);
    color: var(--clr-accent);
}

.support-banner .btn-primary:hover {
    background: #EAEAEA;
}

.support-banner .btn-outline {
    border-color: rgba(255,255,255,0.2);
    color: var(--clr-surface);
}

.support-banner .btn-outline:hover {
    border-color: var(--clr-surface);
    background: transparent;
}

.flex-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
}

/* ===== 10.5 PROFILE SECTION ===== */
.profile {
    padding-bottom: 120px;
}

.profile-card {
    background: var(--clr-surface);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    box-shadow: var(--shadow-soft);
}

.profile-image {
    width: 30%;
    min-height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.profile-image img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 50%;
}

.profile-content {
    width: 70%;
    padding: 60px 40px 60px 0;
}

.profile-content h2 {
    font-size: 2.2rem;
    margin-bottom: 24px;
}

.profile-content p {
    color: var(--clr-text-muted);
    margin-bottom: 16px;
    line-height: 1.8;
}

.members-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
}

.member-card {
    background: var(--clr-surface);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.member-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-soft);
}

.member-name {
    font-size: 1.4rem;
    margin-bottom: 4px;
    color: var(--clr-accent);
    font-family: var(--font-heading);
}

.member-role {
    font-size: 0.8rem;
    color: var(--clr-text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.member-desc {
    color: var(--clr-text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ===== 11. FOOTER ===== */
.footer {
    padding: 60px 0 30px;
    border-top: 1px solid var(--clr-border);
    background: var(--clr-bg);
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-brand h2 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.footer-brand p {
    color: var(--clr-text-muted);
    font-size: 0.95rem;
}

.footer-social {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-top: 20px;
}

.footer-social a {
    color: var(--clr-text-muted);
    font-size: 1.6rem;
    transition: color 0.3s ease, transform 0.3s ease;
    display: flex;
    align-items: center;
}

.footer-social a:hover {
    color: var(--clr-accent);
    transform: translateY(-2px);
}

.footer-links {
    display: flex;
    gap: 32px;
}

.footer-links a {
    font-weight: 500;
    color: var(--clr-text-muted);
}

.footer-links a:hover {
    color: var(--clr-accent);
}

.footer-bottom {
    text-align: center;
    color: #999;
    font-size: 0.9rem;
}

/* ===== 12. MODAL ===== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

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

.modal-content {
    background: var(--clr-surface);
    width: 90%;
    max-width: 550px;
    border-radius: var(--radius-lg);
    padding: 60px 40px;
    position: relative;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    transform: translateY(20px) scale(0.95);
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    max-height: 90vh;
    overflow-y: auto;
}

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

.modal-close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: transparent;
    border: none;
    font-size: 1.5rem;
    color: var(--clr-text-muted);
    cursor: pointer;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    color: var(--clr-accent);
}

.modal-title {
    font-size: 2rem;
    margin-bottom: 10px;
}

.modal-subtitle {
    color: var(--clr-text-muted);
    margin-bottom: 30px;
    font-size: 1.05rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: left;
}

.form-group label {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--clr-text-main);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--clr-text-main);
    background: var(--clr-bg);
    transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--clr-accent);
    background: var(--clr-surface);
    box-shadow: 0 0 0 4px rgba(0,0,0,0.03);
}

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

@media (max-width: 768px) {
    .modal-content {
        padding: 40px 30px;
    }
    .modal-title {
        font-size: 1.6rem;
    }
}

.mobile-only-menu-items {
    display: none;
}

/* ===== 12. ANIMATIONS & RESPONSIVE ===== */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), 
                transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.scroll-reveal.active {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .scroll-reveal {
        opacity: 1 !important;
        transform: none !important;
    }
}

@media (max-width: 768px) {
    .mobile-only-menu-items {
        display: flex;
        flex-direction: column;
        gap: 20px;
        align-items: center;
        margin-top: 10px;
        padding-top: 20px;
        border-top: 1px solid var(--clr-border);
        width: 100%;
    }
    
    .mobile-socials {
        display: flex;
        gap: 20px;
        font-size: 1.8rem;
    }

    .mobile-socials a {
        color: var(--clr-text-main) !important;
    }

    .mobile-only-menu-items .btn-primary {
        color: #EAEAEA !important;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        padding: 20px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        border-bottom: 1px solid var(--clr-border);
        text-align: center;
        gap: 20px;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-actions .btn {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }

    .hero {
        padding-top: 140px;
    }

    .hero-bg {
        top: 80px;
        left: 10px;
        right: 10px;
        bottom: 10px;
    }
    
    .hero-container {
        align-items: center;
        text-align: center;
    }
    
    .hero-subtitle, .badge {
        margin-left: 0;
    }

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

    .profile-image {
        width: 100%;
        height: 300px;
        min-height: auto;
    }

    .profile-content {
        width: 100%;
        padding: 40px 30px;
    }
    
    .hero-content {
        display: none;
    }

    .hero-title {
        font-size: 3rem;
        white-space: normal;
        line-height: 1.1;
    }

    .about-card {
        padding: 50px 30px;
    }
    
    .stats {
        flex-direction: column;
        gap: 30px;
    }
    
    .step-card {
        flex-direction: column;
        text-align: center;
        padding: 40px 20px;
    }

    .flex-buttons {
        flex-direction: column;
    }

    .footer-top {
        flex-direction: column;
        text-align: center;
    }
}


