/* St. Croix Materials - Complete CSS with All Improvements */
:root {
    --primary: #2d3142;
    --primary-dark: #1a1d2e;
    --secondary: #ef8354;
    --secondary-dark: #d96e3f;
    --off-white: #f4f5f7;
    --light: #bfc0c0;
    --light-text: #d5d6d7;
    --concrete: #9fa0a0;
    --text-dark: #2d3142;
    --text-light: #6c757d;
    --font-display: 'Bebas Neue', sans-serif;
    --font-body: 'Work Sans', sans-serif;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

/* Skip Link for Accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--secondary);
    color: white;
    padding: 8px 16px;
    text-decoration: none;
    z-index: 10000;
    font-weight: 600;
}

.skip-link:focus {
    top: 0;
}

/* Focus Styles */
*:focus-visible {
    outline: 3px solid var(--secondary);
    outline-offset: 2px;
}

.btn:focus-visible {
    outline: 3px solid white;
    outline-offset: 2px;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: white;
    z-index: 1000;
    transition: var(--transition);
}

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

.logo {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--primary);
    letter-spacing: 3px;
    font-weight: 900;
}

.logo-subtext {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--secondary);
    letter-spacing: 5px;
    font-weight: 700;
}

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

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
}

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

.btn-contact {
    background: var(--secondary);
    color: white !important;
    padding: 0.7rem 1.5rem;
    border-radius: 4px;
}

.btn-contact:hover {
    background: var(--secondary-dark);
    transform: translateY(-2px);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary);
    transition: var(--transition);
    display: block;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: 
        linear-gradient(rgba(26, 29, 46, 0.75), rgba(26, 29, 46, 0.75)),
        url('concrete-pour.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    backdrop-filter: blur(3px);
    pointer-events: none;
    z-index: 1;
}

#particles-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    padding: 2rem 1rem;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: rgba(239, 131, 84, 0.2);
    color: var(--secondary);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-family: var(--font-display);
    letter-spacing: 3px;
    margin-bottom: 2rem;
    border: 2px solid rgba(239, 131, 84, 0.3);
    backdrop-filter: blur(10px);
}

.badge-icon {
    font-size: 1.2rem;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 7vw, 6rem);
    line-height: 0.9;
    margin-bottom: 2rem;
    color: white;
    font-weight: 900;
}

.title-line {
    display: block;
}

.title-highlight {
    color: var(--secondary);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--light);
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    padding: 0 1rem;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: var(--transition);
    font-family: var(--font-body);
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

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

.btn-primary:hover {
    background: var(--secondary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(239, 131, 84, 0.3);
}

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

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

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

.btn-large {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
}

.btn-block {
    width: 100%;
    margin-top: 1.5rem;
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: white;
    font-family: var(--font-display);
    letter-spacing: 2px;
    z-index: 3;
}

.scroll-indicator {
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, white, transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

/* Section Styles */
section {
    padding: 6rem 0;
}

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

.section-label {
    display: inline-block;
    color: var(--secondary-dark);
    font-family: var(--font-display);
    font-size: 1rem;
    letter-spacing: 4px;
    margin-bottom: 0.5rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--primary);
    letter-spacing: 1px;
}

.section-description {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    margin-top: 1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

/* Services Section */
.services {
    background: white;
    position: relative;
}

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

.service-card {
    background: white;
    padding: 3rem 2rem;
    border-left: 4px solid var(--secondary);
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.service-card:hover {
    transform: translateX(10px);
    box-shadow: -10px 10px 30px rgba(0, 0, 0, 0.15);
}

.service-icon {
    color: var(--secondary);
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.service-card p {
    color: var(--text-light);
    line-height: 1.9;
    font-size: 1rem;
}

/* Service Area Map */
.service-area {
    padding: 6rem 0;
    background: white;
}

.map-wrapper {
    max-width: 1200px;
    margin: 0 auto 3rem;
    border: 3px solid var(--primary);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

.map-wrapper iframe {
    display: block;
    width: 100%;
}

.towns-served {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem;
    background: var(--off-white);
    border-left: 4px solid var(--secondary);
}

.towns-served h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 2rem;
    letter-spacing: 1px;
}

.towns-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.town-item {
    background: white;
    padding: 1rem 1.5rem;
    border-left: 3px solid var(--secondary);
    font-weight: 500;
    transition: var(--transition);
    font-size: 1rem;
}

.town-item:hover {
    background: var(--secondary);
    color: white;
    transform: translateX(5px);
}

.coverage-note {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 2px solid #e0e0e0;
}

.coverage-note a {
    color: var(--secondary);
    text-decoration: none;
    font-weight: 600;
}

.coverage-note a:hover {
    text-decoration: underline;
}

/* Products Section */
.products {
    padding: 6rem 0;
    background: var(--off-white);
}

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

.product-item {
    background: white;
    padding: 2.5rem 2rem;
    border-top: 3px solid var(--primary);
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.product-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.product-number {
    font-family: var(--font-display);
    font-size: 3rem;
    color: var(--secondary);
    opacity: 0.4;
    line-height: 1;
    margin-bottom: 1rem;
}

.product-item h3 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.product-item p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.product-specs {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--primary);
    color: white;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
}

/* About Section */
.about {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(45, 49, 66, 0.98) 0%, rgba(26, 29, 46, 0.98) 100%);
    color: var(--off-white);
    border-top: 4px solid var(--secondary);
    border-bottom: 4px solid var(--secondary);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text .section-label {
    color: var(--secondary);
}

.about-text .section-title {
    color: var(--off-white);
    margin-bottom: 2rem;
}

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

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

.stat {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(239, 131, 84, 0.3);
    transition: var(--transition);
}

.stat:hover {
    border-color: rgba(239, 131, 84, 0.6);
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
}

.stat-number {
    font-family: var(--font-display);
    font-size: 3rem;
    color: var(--secondary);
    line-height: 1;
    margin-bottom: 0.5rem;
}

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

.about-image {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 3px solid var(--secondary);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
}

.about-image img:hover {
    transform: scale(1.02);
}

/* Calculator Section */
.calculator {
    padding: 6rem 0;
    background: white;
}

.calculator-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.calculator-form {
    background: var(--off-white);
    padding: 2.5rem;
    border-left: 4px solid var(--secondary);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.calc-tabs {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    border-bottom: 2px solid #e0e0e0;
}

.calc-tab {
    background: none;
    border: none;
    padding: 1rem 1.5rem;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-light);
    cursor: pointer;
    transition: var(--transition);
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
}

.calc-tab.active {
    color: var(--secondary);
    border-bottom-color: var(--secondary);
}

.calc-tab:hover {
    color: var(--secondary-dark);
}

.calc-tab-content {
    display: none;
}

.calc-tab-content.active {
    display: block;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

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

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

.calculator-form input,
.calculator-form select {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid #e0e0e0;
    background: white;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
    border-radius: 4px;
}

.calculator-form input:focus,
.calculator-form select:focus {
    outline: none;
    border-color: var(--secondary);
}

.calculator-form input.error,
.calculator-form select.error {
    border-color: #dc3545;
}

.error-message {
    display: block;
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    min-height: 1.2em;
}

.help-text {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-light);
}

.calculator-results {
    background: var(--primary);
    padding: 2.5rem;
    color: white;
}

.results-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.results-content h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--secondary);
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.results-help {
    color: var(--light);
    line-height: 1.8;
}

.results-details {
    margin-top: 2rem;
}

.result-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.result-label {
    font-weight: 500;
    color: var(--light);
}

.result-value {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: white;
    font-weight: bold;
}

.result-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    margin: 1rem 0;
}

.result-total {
    border-bottom: none;
    padding-top: 1rem;
}

.result-total .result-label {
    color: var(--secondary);
    font-size: 1.1rem;
    font-weight: 700;
}

.result-total .result-value {
    color: var(--secondary);
    font-size: 2rem;
}

.disclaimer {
    margin-top: 1.5rem;
    font-size: 0.8rem;
    color: var(--light);
    font-style: italic;
    text-align: center;
}

/* Contact Bar */
.contact-bar {
    background: var(--secondary);
    padding: 3rem 0;
    position: relative;
    overflow: hidden;
}

.contact-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(45deg, transparent, transparent 50px, rgba(0, 0, 0, 0.05) 50px, rgba(0, 0, 0, 0.05) 100px);
    pointer-events: none;
}

.contact-bar-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.contact-bar-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-left: 4px solid white;
    transition: var(--transition);
}

.contact-bar-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.contact-bar-item svg {
    color: white;
    flex-shrink: 0;
}

.contact-bar-text {
    display: flex;
    flex-direction: column;
}

.contact-bar-label {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.25rem;
}

.contact-bar-value {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: white;
    text-decoration: none;
    letter-spacing: 0.5px;
}

a.contact-bar-value:hover {
    color: var(--primary-dark);
}

/* Footer */
.footer {
    background: var(--primary-dark);
    color: var(--light);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand .logo {
    margin-bottom: 1rem;
}

.footer-brand p {
    color: var(--light);
    line-height: 1.8;
}

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

.footer-column h4 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--secondary);
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 0.5rem;
}

.footer-column a {
    color: var(--light);
    text-decoration: none;
    transition: var(--transition);
}

.footer-column a:hover {
    color: var(--secondary);
    padding-left: 5px;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: var(--concrete);
    font-size: 0.9rem;
}

/* Mobile Responsive */
@media (max-width: 968px) {
    .mobile-menu-toggle {
        display: flex;
        z-index: 1001;
    }
    
    .nav-links {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        gap: 1rem;
    }
    
    .nav-links.active {
        transform: translateX(0);
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .about-content,
    .calculator-container,
    .contact-bar-content {
        grid-template-columns: 1fr;
    }
    
    .towns-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .towns-served {
        padding: 2rem;
    }
    
    .about-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 640px) {
    section {
        padding: 4rem 0;
    }
    
    .container {
        padding: 0 1.5rem;
    }
    
    .hero {
        padding-top: 80px;
        padding-bottom: 3rem;
        min-height: 100vh;
    }
    
    .hero-content {
        padding: 1rem;
    }
    
    .hero-title {
        font-size: clamp(2.2rem, 10vw, 2.8rem);
        line-height: 1;
        margin-bottom: 1.5rem;
    }
    
    .hero-badge {
        font-size: 0.75rem;
        padding: 0.6rem 1.5rem;
        margin-bottom: 1.5rem;
        letter-spacing: 2px;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
        padding: 0 1rem;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 1rem;
        padding: 0 1rem;
    }
    
    .btn {
        width: 100%;
        max-width: 350px;
        justify-content: center;
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .logo-text {
        font-size: 2rem;
    }
    
    .logo-subtext {
        font-size: 0.9rem;
        letter-spacing: 3px;
    }
    
    .services-grid,
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card h3 {
        font-size: 1.5rem;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
    }
    
    .calculator-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .map-wrapper {
        border-radius: 4px;
    }
    
    .map-wrapper iframe {
        height: 400px;
    }
    
    .towns-served {
        padding: 2rem 1.5rem;
    }
    
    .towns-served h3 {
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
    }
    
    .towns-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .town-item {
        padding: 0.75rem 1rem;
        font-size: 0.95rem;
    }
    
    .coverage-note {
        font-size: 0.9rem;
    }
    
    .calculator-form,
    .calculator-results {
        padding: 2rem 1.5rem;
    }
    
    .calculator-form input,
    .calculator-form select {
        padding: 1rem;
        font-size: 16px; /* Prevents iOS zoom on focus */
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-bar-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-bar-item {
        padding: 1.25rem;
    }
    
    .contact-bar-value {
        font-size: 1.1rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
}

/* Extra small screens */
@media (max-width: 400px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-badge {
        font-size: 0.7rem;
        padding: 0.5rem 1.2rem;
        letter-spacing: 2px;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
    }
    
    .btn {
        font-size: 0.95rem;
        padding: 0.9rem 1.2rem;
    }
    
    .logo-text {
        font-size: 1.8rem;
    }
    
    .logo-subtext {
        font-size: 0.85rem;
    }
}

/* Utility Classes */
.text-lg { 
    font-size: 1.125rem; 
    line-height: 1.75; 
}

.text-base { 
    font-size: 1rem; 
    line-height: 1.6; 
}

.text-sm { 
    font-size: 0.875rem; 
    line-height: 1.5; 
}
