/* 716 Title Solutions - Main Stylesheet */

/* ===== ROOT VARIABLES ===== */
:root {
    /* Colors - Navy & Red Palette */
    --navy: hsl(211, 72%, 14%);
    --navy-light: hsl(211, 60%, 24%);
    --red: hsl(357, 76%, 43%);
    --red-dark: hsl(357, 76%, 35%);
    --white: #ffffff;
    --gray-50: hsl(213, 33%, 97%);
    --gray-100: hsl(213, 25%, 92%);
    --gray-200: hsl(213, 20%, 88%);
    --gray-300: hsl(213, 20%, 75%);
    --gray-700: hsl(211, 50%, 28%);
    --gray-900: hsl(211, 72%, 14%);
    
    /* Fonts */
    --font-sans: 'Inter', sans-serif;
    --font-heading: 'Montserrat', sans-serif;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    
    /* Container */
    --container-max-width: 1280px;
    --container-padding: 1.5rem;
}

/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    line-height: 1.6;
    color: var(--gray-900);
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--navy);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

@media (min-width: 768px) {
    h1 { font-size: 3rem; }
    h2 { font-size: 2.25rem; }
    h3 { font-size: 1.75rem; }
}

a {
    color: var(--navy);
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: var(--red);
}

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

ul {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
}

/* ===== LAYOUT UTILITIES ===== */
.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.container-text {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
    border: 2px solid transparent;
    border-radius: 0.5rem;
    transition: all 0.2s ease;
    text-decoration: none;
    cursor: pointer;
    font-family: var(--font-sans);
}

.btn-primary {
    background-color: var(--red);
    color: var(--white);
    border-color: var(--red);
}

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

.btn-outline {
    background-color: transparent;
    color: var(--navy);
    border-color: var(--navy);
}

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

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

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

.btn-block {
    display: block;
    width: 100%;
}

.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* ===== HEADER & NAVIGATION ===== */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: #fdf6eb;
    box-shadow: var(--shadow-md);
}

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

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

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

.logo img {
    height: 2.5rem;
    width: auto;
    transition: opacity 0.2s ease;
}

.logo:hover img {
    opacity: 0.9;
}

@media (min-width: 768px) {
    .logo img {
        height: 3rem;
    }
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--navy);
    font-size: 1.5rem;
    padding: 0.5rem;
}

.hamburger {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--navy);
    position: relative;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background: var(--navy);
    left: 0;
}

.hamburger::before { top: -8px; }
.hamburger::after { top: 8px; }

.nav-links {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-link {
    padding: 0.5rem 1rem;
    color: var(--navy);
    font-weight: 500;
    border-radius: 0.375rem;
    transition: background-color 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
    background-color: rgba(13, 40, 71, 0.1);
    color: var(--navy);
}

.nav-link.btn-nav {
    background-color: var(--red);
    padding: 0.5rem 1.25rem;
}

.nav-link.btn-nav:hover {
    background-color: var(--red-dark);
}

@media (max-width: 1024px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    .nav-links {
        position: fixed;
        top: 4rem;
        left: 0;
        right: 0;
        flex-direction: column;
        background-color: #fdf6eb;
        padding: 1rem;
        gap: 0.5rem;
        display: none;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-link {
        width: 100%;
        text-align: center;
        padding: 0.75rem 1rem;
    }
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    height: 80vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-image: url('../images/Hero_office_scene_4cfd2f61.png');
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, 
        hsla(211, 72%, 14%, 0.9),
        hsla(211, 72%, 14%, 0.8),
        hsla(211, 72%, 14%, 0.7)
    );
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 1152px;
    padding: 0 var(--container-padding);
    text-align: center;
    color: var(--white);
}

.hero-title {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.hero-subtitle {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
    }
}

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

/* ===== TRUST BAR ===== */
.trust-bar {
    background-color: var(--white);
    border-bottom: 1px solid var(--gray-200);
    padding: 2rem 0;
}

.trust-items {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

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

.trust-icon {
    width: 3rem;
    height: 3rem;
    color: var(--red);
    flex-shrink: 0;
}

.trust-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 0.25rem;
}

.trust-text {
    font-size: 0.875rem;
    color: var(--gray-700);
}

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

/* ===== SECTIONS ===== */
.features,
.testimonials,
.content-section,
.team-section,
.location-section,
.services-section,
.contact-section,
.compliance-section,
.form-section {
    padding: 4rem 0;
}

.features {
    background-color: var(--white);
}

.testimonials {
    background-color: var(--gray-50);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--navy);
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--gray-700);
    max-width: 42rem;
    margin: 0 auto;
}

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

/* ===== FEATURE GRID ===== */
.feature-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

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

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

.feature-card {
    background-color: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: 0.5rem;
    padding: 1.5rem;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.feature-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.feature-icon-wrapper {
    width: 3rem;
    height: 3rem;
    border-radius: 0.5rem;
    background-color: rgba(215, 45, 65, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.feature-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--red);
}

.feature-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--navy);
}

.feature-description {
    font-size: 0.875rem;
    color: var(--gray-700);
}

/* ===== TESTIMONIALS ===== */
.testimonial-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

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

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

.testimonial-card {
    background-color: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 0.5rem;
    padding: 1.5rem;
}

.quote-icon {
    width: 2rem;
    height: 2rem;
    color: var(--red);
    margin-bottom: 1rem;
    opacity: 0.5;
}

.testimonial-text {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--gray-700);
    margin-bottom: 1.5rem;
}

.author-name {
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 0.25rem;
}

.author-role {
    font-size: 0.875rem;
    color: var(--gray-700);
}

/* ===== CTA SECTION ===== */
.cta-section {
    background-color: var(--navy);
    padding: 4rem 0;
    text-align: center;
}

.cta-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

@media (min-width: 768px) {
    .cta-title {
        font-size: 2.5rem;
    }
}

/* ===== FOOTER ===== */
.footer {
    background-color: var(--navy);
    color: var(--white);
    padding: 3rem 0 1rem;
}

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

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

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer-heading {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--white);
}

.footer-text {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
}

.footer-links,
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a,
.footer-contact a {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.2s ease;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--white);
}

.footer-contact li {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    text-align: center;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
}

/* ===== BACK TO TOP BUTTON ===== */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 3rem;
    height: 3rem;
    background-color: var(--red);
    color: var(--white);
    border: none;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    transition: all 0.2s ease;
    z-index: 999;
}

.back-to-top:hover {
    background-color: var(--red-dark);
    transform: translateY(-2px);
}

.back-to-top.visible {
    display: flex;
}

.back-to-top svg {
    width: 1.5rem;
    height: 1.5rem;
}

/* ===== PAGE HEADER ===== */
.page-header {
    background-color: var(--navy);
    color: var(--white);
    padding: 4rem 0 3rem;
    text-align: center;
}

.page-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--white);
}

.page-subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 48rem;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .page-title {
        font-size: 3rem;
    }
}

/* ===== TEAM SECTION ===== */
.team-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

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

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

.team-photo {
    width: 12rem;
    height: 12rem;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1rem;
    border: 4px solid var(--gray-200);
}

.team-name {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--navy);
}

.team-role {
    font-size: 1rem;
    font-weight: 500;
    color: var(--red);
    margin-bottom: 0.75rem;
}

.team-bio {
    font-size: 0.9375rem;
    color: var(--gray-700);
    line-height: 1.6;
}

/* ===== LOCATION CARD ===== */
.location-card {
    background-color: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: 0.5rem;
    padding: 2rem;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.location-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background-color: rgba(215, 45, 65, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.location-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--red);
}

.location-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--navy);
}

.location-text {
    font-size: 1rem;
    color: var(--gray-700);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.location-subtitle {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--navy);
}

.location-address {
    font-size: 1rem;
    color: var(--gray-700);
    line-height: 1.6;
}

/* ===== SERVICES ===== */
.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

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

.service-card {
    background-color: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 0.5rem;
    padding: 2rem;
}

.service-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--navy);
}

.service-description {
    font-size: 1rem;
    color: var(--gray-700);
    margin-bottom: 1rem;
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.service-list li {
    font-size: 0.9375rem;
    color: var(--gray-700);
    padding-left: 1.5rem;
    position: relative;
}

.service-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--red);
    font-weight: 700;
}

.pricing-notice {
    background-color: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: 0.5rem;
    padding: 2rem;
    text-align: center;
}

.pricing-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--navy);
}

.pricing-text {
    font-size: 1rem;
    color: var(--gray-700);
    margin-bottom: 1rem;
}

/* ===== CONTACT ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

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

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-card {
    background-color: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: 0.5rem;
    padding: 1.5rem;
}

.contact-card-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--navy);
}

.contact-text {
    font-size: 1rem;
    color: var(--gray-700);
    line-height: 1.6;
}

.contact-text a {
    color: var(--red);
    font-weight: 500;
}

.contact-text a:hover {
    color: var(--red-dark);
}

.contact-sub {
    font-size: 0.875rem;
    color: var(--gray-700);
    margin-top: 0.5rem;
}

.wire-fraud-notice {
    background-color: rgba(215, 45, 65, 0.05);
    border: 1px solid rgba(215, 45, 65, 0.2);
    border-left: 4px solid var(--red);
    border-radius: 0.5rem;
    padding: 1.5rem;
}

.wire-fraud-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--red);
    margin-bottom: 0.5rem;
}

.wire-fraud-text {
    font-size: 0.9375rem;
    color: var(--gray-900);
    line-height: 1.6;
}

.calendly-wrapper {
    background-color: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: 0.5rem;
    padding: 2rem;
}

.calendly-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--navy);
    text-align: center;
}

.calendly-placeholder {
    text-align: center;
    padding: 3rem 1rem;
}

/* ===== COMPLIANCE ===== */
.compliance-item {
    margin-bottom: 3rem;
}

.compliance-heading {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--navy);
}

.compliance-subheading {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    margin-top: 1.5rem;
    color: var(--navy);
}

.compliance-item p {
    font-size: 1rem;
    color: var(--gray-700);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.compliance-list {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.compliance-list li {
    font-size: 1rem;
    color: var(--gray-700);
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1rem;
}

.compliance-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--red);
}

.wire-fraud-warning {
    background-color: rgba(215, 45, 65, 0.05);
    border: 1px solid rgba(215, 45, 65, 0.2);
    border-left: 4px solid var(--red);
    border-radius: 0.5rem;
    padding: 1.5rem;
    margin: 1.5rem 0;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.warning-icon {
    width: 2.5rem;
    height: 2.5rem;
    flex-shrink: 0;
}

.warning-icon svg {
    width: 100%;
    height: 100%;
    color: var(--red);
}

.warning-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--red);
    margin-bottom: 0.5rem;
}

.warning-text,
.warning-content p {
    font-size: 0.9375rem;
    color: var(--gray-900);
    line-height: 1.6;
}

/* ===== WIRE FRAUD WARNING SECTION ===== */
.wire-fraud-warning-section {
    padding: 2rem 0;
    background-color: var(--gray-50);
}

/* ===== FORMS ===== */
.form-card {
    background-color: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 0.5rem;
    padding: 2rem;
}

.order-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

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

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem;
    border: 1px solid var(--gray-300);
    border-radius: 0.375rem;
    font-size: 1rem;
    font-family: var(--font-sans);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--navy);
    box-shadow: 0 0 0 3px rgba(19, 52, 85, 0.1);
}

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

.success-message,
.error-message {
    text-align: center;
    padding: 3rem 2rem;
}

.success-icon,
.error-icon {
    width: 4rem;
    height: 4rem;
    margin: 0 auto 1rem;
}

.success-icon svg {
    width: 100%;
    height: 100%;
    color: var(--red);
}

.error-icon svg {
    width: 100%;
    height: 100%;
    color: var(--red);
}

.success-title,
.error-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--navy);
}

.success-text,
.success-sub,
.error-text {
    font-size: 1rem;
    color: var(--gray-700);
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.success-sub {
    font-size: 0.875rem;
}

/* ===== CONTENT SECTIONS ===== */
.text-large {
    font-size: 1.125rem;
    color: var(--gray-700);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}


/* Mobile menu closed by default */
@media (max-width: 768px) {
    #navLinks {
        display: none;
        flex-direction: column;
        background: #fff;
        padding: 20px;
        position: absolute;
        right: 0;
        top: 80px;
        width: 220px;
        box-shadow: 0 4px 16px rgba(0,0,0,0.15);
        z-index: 9999;
    }

    /* When active is toggled */
    #navLinks.active {
        display: flex;
    }
}
