:root {
    --primary-teal: #008080;
    /* Teal for ReFocus */
    --primary-dark: #1a2c38;
    /* Dark Slate for MoveForward/Text */
    --accent-gold: #e6b800;
    /* Subtle gold/orange from sunrise */
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --text-color: #333333;
    --light-text: #666666;
    --border-radius: 8px;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--bg-light);
    overflow-x: hidden;
}

h1,
h2,
h3 {
    font-family: 'Montserrat', sans-serif;
    /* Keeping it clean, maybe serif for quote */
    font-weight: 700;
    color: var(--primary-dark);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

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

/* Navbar */
.navbar {
    background: var(--white);
    padding: 0.5rem 0;
    /* Reduced padding for image logo */
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 15px;
    /* Space between logo and text */
    min-width: 0;
    flex: 0 0 auto;
    margin-right: auto;
}

.nav-logo {
    height: 60px;
    /* Reducing slightly to fit with text */
    width: auto;
    object-fit: contain;
    transform: scale(1.1);
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1.2;
    display: flex;
    align-items: baseline;
    gap: 5px;
    flex-wrap: wrap;
}

.refocus {
    color: var(--primary-dark);
}

.moveforward {
    color: var(--primary-teal);
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    align-items: center;
}

.nav-links a {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--primary-dark);
}

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

.btn-nav {
    background: var(--primary-teal);
    color: var(--white) !important;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    transition: var(--transition);
}

.btn-nav:hover {
    background: #006666;
    transform: translateY(-2px);
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 85vh;
    height: auto;
    /* Almost full screen */
    background: url('assets/hero.png') no-repeat center center/cover;
    display: flex;
    align-items: center;
    color: var(--white);
    text-align: left;
}

@supports (height: 100svh) {
    .hero {
        min-height: 85svh;
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(26, 44, 56, 0.85) 0%, rgba(26, 44, 56, 0.4) 60%, transparent 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 650px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--white);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    color: #e0e0e0;
    font-weight: 400;
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    cursor: pointer;
    margin-right: 1rem;
}

.btn-primary {
    background: var(--primary-teal);
    color: var(--white);
    border: 2px solid var(--primary-teal);
}

.btn-primary:hover {
    background: transparent;
    color: var(--primary-teal);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary-dark);
}

/* Services Section */
.section {
    padding: 5rem 0;
}

.services-section {
    background: var(--white);
    padding-bottom: 3rem;
}

.services-header {
    max-width: 900px;
    margin: 0 auto 2.5rem;
    text-align: center;
}

.services-lead {
    font-size: 1.15rem;
    color: var(--light-text);
    margin-top: -1rem;
    text-align: center;
}

.services-card {
    background: linear-gradient(135deg, #f7fbfb 0%, #ffffff 100%);
    border-radius: 22px;
    padding: 2.5rem 3rem;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.04);
    text-align: left;
}

.home-mission-cta {
    margin-top: 1.75rem;
    text-align: center;
}

.home-mission-cta .btn {
    margin-right: 0;
}

.section-image-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--primary-teal);
    border-radius: 2px;
}

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

.section-title.center::after {
    left: 50%;
    transform: translateX(-50%);
}

.service-list {
    list-style: none;
    font-size: 1.1rem;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.2rem 2.5rem;
    justify-items: stretch;
    max-width: 760px;
    margin: 0 auto;
}

.service-list li {
    margin-bottom: 0;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-weight: 500;
    text-align: left;
    width: 100%;
}

.check-icon {
    color: var(--primary-teal);
    font-size: 1.2rem;
    line-height: 1;
    margin-top: 0.15rem;
    flex: 0 0 18px;
    text-align: center;
}

.home-quote-section {
    background: linear-gradient(180deg, #ffffff 0%, #f1f7f7 100%);
    padding-top: 3rem;
}

.home-quote-card {
    position: relative;
    background: var(--white);
    padding: 3.5rem 3.75rem;
    border-radius: 26px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.04);
    overflow: hidden;
}

.quote-mark {
    position: absolute;
    top: 25px;
    left: 30px;
    font-size: 5rem;
    color: rgba(0, 128, 128, 0.2);
    font-family: 'Playfair Display', serif;
    line-height: 1;
}

.quote-mark-end {
    top: auto;
    left: auto;
    right: 30px;
    bottom: 25px;
}

.home-quote-card blockquote {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-style: italic;
    color: var(--primary-dark);
    line-height: 1.7;
    position: relative;
    z-index: 1;
    text-align: center;
}

.quote-attribution {
    margin-top: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--primary-teal);
    text-transform: uppercase;
    font-size: 0.85rem;
    text-align: center;
}

/* About / Reflection Section */
.reflection-section {
    background: linear-gradient(to bottom, #f8f9fa, #e0f2f1);
    /* Soft gradient to teal tint */
    padding-bottom: 6rem;
}

.reflection-content {
    max-width: 900px;
    margin: 0 auto;
}

.reflection-cta {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 4rem;
    flex-wrap: wrap;
    text-align: center;
}

.btn-outline-dark {
    background: transparent;
    color: var(--primary-dark);
    border: 2px solid var(--primary-dark);
}

.btn-outline-dark:hover {
    background: var(--primary-dark);
    color: var(--white);
}

.reflection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.reflection-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* Center content vertically for square shape */
    gap: 1rem;
    aspect-ratio: 1 / 1;
    /* Make items square */
    height: 100%;
    /* Ensure they fill the grid cell */
}

.reflection-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 128, 128, 0.15);
    /* Teal shadow glow */
    border-color: var(--primary-teal);
}

.reflection-item .icon {
    font-size: 2.5rem;
    color: var(--primary-teal);
    background: #e0f2f1;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 0.5rem;
    flex-shrink: 0;
}

.reflection-item p {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--primary-dark);
    line-height: 1.5;
}

/* Footer / Contact */
.footer {
    background: linear-gradient(to right, #1a2c38 0%, #2c4a5f 100%);
    color: var(--white);
    padding: 4rem 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.footer h3 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.text-teal {
    color: #4db6ac;
}

/* Lighter teal for dark bg */
.text-slate {
    color: #b0bec5;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.contact-item .icon {
    margin-right: 15px;
    font-size: 1.5rem;
    color: #4db6ac;
    /* Consistent with other footer highlights */
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-item .icon svg {
    width: 24px;
    height: 24px;
}

.highlight {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 12px;
    backdrop-filter: blur(5px);
}

.phone-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
    margin: 5px 0;
}

.name {
    font-weight: 700;
    font-size: 1.2rem;
}

.cert {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-top: 5px;
}

.footer-credit {
    margin-top: 2rem;
    text-align: center;
    font-size: 0.85rem;
    opacity: 0.75;
}

.footer-credit a {
    color: var(--white);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.footer-credit a:hover {
    color: var(--accent-gold);
    border-color: var(--accent-gold);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

.animate-up {
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

/* Responsive */
@media (max-width: 900px) {
    .section-image-wrapper {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .contact-item {
        justify-content: center;
    }

    /* On tablet/mobile, we might want to relax the 3 column rule if it gets too squeezed */
    .reflection-grid {
        grid-template-columns: repeat(2, 1fr);
        /* Force 2 columns on mobile/tablet */
    }

    .reflection-item {
        padding: 1rem;
        /* Reduce padding slightly for smaller screens */
        aspect-ratio: auto;
        /* Allow height to adapt if needed, or keep 1/1 if preferred */
        min-height: 200px;
        /* Ensure enough height */
    }

    .reflection-item .icon {
        width: 50px;
        height: 50px;
        font-size: 1.8rem;
    }

    .reflection-item p {
        font-size: 0.95rem;
        /* Slightly smaller text */
    }
}

@media (min-width: 901px) {
    .reflection-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 1.6rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .nav-container {
        flex-wrap: nowrap;
    }

    .logo-wrapper {
        flex: 1 1 auto;
        max-width: calc(100% - 44px);
        gap: 10px;
    }

    .nav-logo {
        height: 52px;
    }

    .logo-text {
        font-size: 1.25rem;
        line-height: 1.1;
    }

    .mobile-menu-btn {
        margin-left: auto;
    }

    .hero {
        min-height: 75svh;
        padding: 6.5rem 0 4.5rem;
    }

    .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .hero-buttons .btn {
        margin-right: 0;
        text-align: center;
    }

    .home-quote-card {
        padding: 2.5rem 2rem;
    }

    .home-quote-card blockquote {
        font-size: 1.35rem;
    }

    .contact-header,
    .about-header,
    .mission-header {
        padding: 7rem 0 3.5rem;
    }

    .reflection-cta {
        flex-direction: column;
        align-items: center;
    }

    .reflection-cta .btn {
        width: 100%;
        max-width: 320px;
    }

    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        padding: 2rem;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }
}

/* Contact Page Styles */
.contact-header {
    background: linear-gradient(rgba(26, 44, 56, 0.9), rgba(26, 44, 56, 0.8)), url('assets/hero.png') no-repeat center center/cover;
    padding: 8rem 0 4rem;
    text-align: center;
    color: var(--white);
}

.contact-header h1 {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.contact-page-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

.contact-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.contact-form-wrapper h2 {
    margin-bottom: 0.5rem;
    font-size: 2rem;
}

.form-subtitle {
    margin-bottom: 2rem;
    color: var(--light-text);
}

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

.form-success {
    margin-top: 1.5rem;
    padding: 1rem 1.25rem;
    border-radius: 12px;
    background: rgba(0, 128, 128, 0.08);
    color: var(--primary-dark);
    font-weight: 600;
    display: none;
}

.form-success.is-visible {
    display: block;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--primary-dark);
    font-size: 0.95rem;
}

.form-control {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
    background: #fdfdfd;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-teal);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(0, 128, 128, 0.1);
}

textarea.form-control {
    resize: vertical;
    min-height: 150px;
}

.contact-info-wrapper {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #2c4a5f 100%);
    color: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.contact-info-wrapper::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.contact-info-wrapper h3 {
    color: var(--white);
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.info-item .icon {
    font-size: 1.5rem;
    color: var(--accent-gold);
    margin-right: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}


.info-content {
    flex: 1;
    min-width: 0;
    /* Important for text wrapping in flex container */
}

.info-content .label {
    display: block;
    font-size: 0.85rem;
    opacity: 0.7;
    margin-bottom: 0.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.info-content .value {
    font-size: 1rem;
    font-weight: 500;
    word-break: normal;
    overflow-wrap: normal;
}

.info-content a {
    color: var(--white);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    white-space: normal;
    display: inline-block;
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.info-content a:hover {
    color: var(--accent-gold);
    border-color: var(--accent-gold);
}

@media (max-width: 900px) {
    .contact-container {
        grid-template-columns: 1fr;
        padding: 2rem;
        gap: 3rem;
    }

    .contact-info-wrapper {
        order: -1;
        padding: 2rem;
    }

    .info-item .icon {
        width: 42px;
        height: 42px;
        margin-right: 1rem;
    }

    .info-content .value {
        font-size: 0.95rem;
    }
}

/* About Section */
.about-section {
    background: #f0f4f4;
    /* Very light teal/grey */
    padding: 6rem 0;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about-text h2 {
    margin-bottom: 2rem;
}

.about-text p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-color);
}

/* Extended About Section on Home Page */
.about-section-extended {
    background: #f0f4f4;
    padding: 5rem 0;
}

.about-content-extended {
    max-width: 1100px;
    margin: 0 auto;
}

.about-text-extended {
    background: var(--white);
    padding: 3rem 3.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
}

.about-text-extended h2 {
    margin-bottom: 0.5rem;
}

.about-subtitle {
    text-align: center;
    font-size: 1.25rem;
    font-style: italic;
    color: var(--primary-teal);
    margin-bottom: 2rem;
    font-weight: 500;
}

.about-text-extended .about-paragraphs {
    column-count: 2;
    column-gap: 3rem;
}

.about-text-extended p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 1.25rem;
    break-inside: avoid;
}

.about-text-extended p:last-of-type {
    margin-bottom: 0;
}

.about-cta {
    text-align: center;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid #e0e0e0;
}

/* Mission Page Styles */
.mission-header {
    background: linear-gradient(rgba(26, 44, 56, 0.9), rgba(26, 44, 56, 0.85)), url('assets/hero.png') no-repeat center center/cover;
    padding: 8rem 0 4rem;
    text-align: center;
    color: var(--white);
}

.mission-header h1 {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.mission-header-subtitle {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
    max-width: 720px;
    margin: 0 auto;
}

.mission-section {
    background: var(--bg-light);
    padding: 5rem 0;
}

.mission-panel {
    background: var(--white);
    padding: 3.5rem 3.75rem;
    border-radius: 26px;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    max-width: 980px;
    margin: 0 auto;
}


.mission-intro {
    text-align: center;
    margin-bottom: 2.5rem;
}

.mission-subtitle {
    font-size: 1.25rem;
    font-style: italic;
    color: var(--primary-teal);
    margin-top: 1rem;
    font-weight: 500;
}

.mission-text {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.mission-lead {
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.mission-columns {
    display: grid;
    gap: 1.4rem;
}

.mission-columns p {
    font-size: 1.05rem;
    line-height: 1.85;
    color: var(--text-color);
    margin-bottom: 1.25rem;
    break-inside: avoid;
}

.mission-highlight {
    background: rgba(0, 128, 128, 0.08);
    border-left: 4px solid var(--primary-teal);
    padding: 1rem 1.25rem;
    border-radius: 12px;
    font-weight: 500;
}

.mission-cta {
    text-align: center;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid #e0e0e0;
}

@media (max-width: 900px) {
    .services-card {
        padding: 2rem;
    }

    .service-list {
        grid-template-columns: 1fr;
    }

    .about-text-extended {
        padding: 2rem 1.5rem;
    }

    .about-text-extended .about-paragraphs {
        column-count: 1;
    }

    .about-subtitle {
        font-size: 1.1rem;
    }

    .mission-panel {
        padding: 2.5rem 2rem;
    }

    .mission-columns {
        display: grid;
    }
}

/* About Me Page Styles */
.about-header {
    background: linear-gradient(rgba(26, 44, 56, 0.9), rgba(26, 44, 56, 0.85)), url('assets/hero.png') no-repeat center center/cover;
    padding: 8rem 0 4rem;
    text-align: center;
    color: var(--white);
}

.about-header h1 {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.about-header-subtitle {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
}

.about-me-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

.about-me-container {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 4rem;
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    align-items: start;
}

.about-me-image-wrapper {
    position: sticky;
    top: 120px;
}

.about-me-image {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    aspect-ratio: 1/1;
    object-fit: cover;
    object-position: center top;
}

.about-me-content {
    padding: 0.5rem 0;
}

.about-me-text p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

.about-me-text p:first-child {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--primary-dark);
}

.about-me-text p:last-child {
    margin-bottom: 0;
}

.about-me-cta {
    text-align: center;
    margin-top: 3rem;
}

/* Active nav link */
.nav-links a.active {
    color: var(--primary-teal);
    position: relative;
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-teal);
    border-radius: 1px;
}

@media (max-width: 900px) {
    .about-me-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem;
    }

    .about-me-image-wrapper {
        position: static;
        max-width: 300px;
        margin: 0 auto;
    }

    .about-header h1 {
        font-size: 2.5rem;
    }
}

/* WhatsApp Floating Button */
.whatsapp-btn {
    display: none;
    /* Hidden by default on desktop */
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.whatsapp-btn:hover {
    transform: scale(1.05);
}

.whatsapp-btn svg {
    width: 34px;
    height: 34px;
    fill: white;
    display: block;
}

@media (max-width: 768px) {
    .whatsapp-btn {
        display: flex;
        /* Only show on mobile */
    }
}

/* Fix for logo text on small mobile screens */
@media (max-width: 400px) {
    .logo-text {
        font-size: 1.05rem;
        flex-wrap: wrap;
        line-height: 1.1;
    }

    .nav-logo {
        height: 44px;
    }
}
