/* ===========================
   CSS Variables (Color Tokens)
   =========================== */
:root {
    --background: hsl(210, 40%, 98%);
    --foreground: hsl(222.2, 84%, 4.9%);
    --card: hsl(0, 0%, 100%);
    --card-foreground: hsl(222.2, 84%, 4.9%);
    --primary: hsl(221.2, 83.2%, 53.3%);
    --primary-foreground: hsl(210, 40%, 98%);
    --secondary: hsl(210, 40%, 96%);
    --muted: hsl(210, 40%, 96%);
    --muted-foreground: hsl(215.4, 16.3%, 46.9%);
    --accent: hsl(24.6, 95%, 53.1%);
    --accent-foreground: hsl(60, 9.1%, 97.8%);
    --border: hsl(214.3, 31.8%, 91.4%);
    --radius: 0.75rem;
}

/* ===========================
   Base Styles
   =========================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background-color: var(--background);
    color: var(--foreground);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ===========================
   Utility Classes
   =========================== */
.container {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
}

.hidden {
    display: none !important;
}

/* ===========================
   Header Styles
   =========================== */
.header {
    background-color: var(--card);
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 50;
}

.nav-container {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .nav-container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .nav-container {
        padding: 0 2rem;
    }
}

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

.logo-section {
    display: flex;
    align-items: center;
}

.logo-img {
    width: 3rem;
    height: 3rem;
    object-fit: contain;
    border-radius: var(--radius);
}

.logo-text {
    margin-left: 0.75rem;
}

.logo-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--foreground);
    line-height: 1.2;
}

.logo-subtitle {
    font-size: 0.75rem;
    color: var(--muted-foreground);
    line-height: 1.2;
}

/* Desktop Navigation */
.nav-desktop {
    display: none;
}

@media (min-width: 768px) {
    .nav-desktop {
        display: flex;
        align-items: baseline;
        gap: 2rem;
        margin-left: 2.5rem;
    }
}

.nav-link {
    color: var(--muted-foreground);
    font-weight: 500;
    transition: color 0.2s;
}

.nav-link:first-child {
    color: var(--foreground);
}

.nav-link:hover {
    color: var(--primary);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: block;
    padding: 0.5rem;
}

@media (min-width: 768px) {
    .mobile-menu-btn {
        display: none;
    }
}

.menu-icon,
.close-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--foreground);
}

/* Mobile Navigation */
.nav-mobile {
    padding: 0.5rem 0.5rem 0.75rem;
    background-color: var(--card);
    border-top: 1px solid var(--border);
}

@media (min-width: 768px) {
    .nav-mobile {
        display: none !important;
    }
}

.nav-link-mobile {
    display: block;
    padding: 0.5rem 0.75rem;
    color: var(--muted-foreground);
    font-weight: 500;
    text-align: left;
    width: 100%;
    transition: color 0.2s;
}

.nav-link-mobile:first-child {
    color: var(--foreground);
}

.nav-link-mobile:hover {
    color: var(--primary);
}

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1rem;
    border-radius: var(--radius);
    font-weight: 600;
    transition: all 0.2s;
}

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

.btn-primary:hover {
    background-color: hsl(221.2, 83.2%, 48%);
}

.btn-accent {
    background-color: var(--accent);
    color: var(--accent-foreground);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.btn-accent:hover {
    background-color: hsl(24.6, 95%, 48%);
}

.btn-outline {
    border: 2px solid white;
    color: white;
}

.btn-outline:hover {
    background-color: white;
    color: black;
}

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

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

.btn-mobile {
    width: 100%;
    margin-top: 0.5rem;
}

.btn-full {
    width: 100%;
}

/* ===========================
   Hero Section
   =========================== */
.hero-section {
    position: relative;
    overflow: hidden;
}

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

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

.hero-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.4);
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 80rem;
    margin: 0 auto;
    padding: 8rem 1rem;
}

@media (min-width: 640px) {
    .hero-content {
        padding: 8rem 1.5rem;
    }
}

@media (min-width: 1024px) {
    .hero-content {
        padding: 10rem 2rem;
    }
}

.hero-text {
    text-align: center;
    max-width: 48rem;
}

@media (min-width: 1024px) {
    .hero-text {
        text-align: left;
    }
}

.hero-title {
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: white;
}

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

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

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

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

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
}

@media (min-width: 1024px) {
    .hero-buttons {
        justify-content: flex-start;
    }
}

.hero-buttons .btn {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

/* ===========================
   About Section
   =========================== */
.about-section {
    padding: 5rem 0;
    background-color: var(--background);
}

.about-grid {
    display: grid;
    gap: 3rem;
    align-items: center;
}

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

.section-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

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

.about-description {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    margin-bottom: 1.5rem;
}

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

@media (min-width: 640px) {
    .about-buttons {
        flex-direction: row;
    }
}

.experience-card {
    background-color: var(--card);
    padding: 3rem;
    border-radius: var(--radius);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border: 1px solid var(--border);
    text-align: center;
}

.experience-number {
    font-size: 3.75rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
}

.experience-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 0.5rem;
}

.experience-subtitle {
    color: var(--muted-foreground);
}


/* ===========================
   About Owner Section
   =========================== */
.about-owner-section {
    padding: 5rem 0;
    background-color: var(--background);
}

.about-grid {
    display: grid;
    gap: 3rem;
    align-items: center;
}

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

.section-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

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

.about-description {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    margin-bottom: 1.5rem;
}
.about-card {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 2rem;
            
        }



/* Owner Headshot Styling */
.owner-headshot {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border: 5px solid var(--card);
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.owner-headshot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}



/* Responsive adjustments */

   /* Responsive adjustments */
        @media (max-width: 1024px) {
            .about-grid {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .about-content {
                order: 2;
            }

            .about-card {
                order: 1;
            }
        }

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

            .experience-number {
                font-size: 3rem;
            }

            .owner-headshot {
                width: 150px;
                height: 150px;
            }

            .owner-headshot::before {
                font-size: 3rem;
            }

            .quote-map-grid {
                grid-template-columns: 1fr;
            }

            .map-container {
                min-height: 350px;
            }

            .map-container iframe {
                min-height: 350px;
            }
        }

/* ===========================
   Why Choose Us Section
   =========================== */
.why-choose-section {
    padding: 5rem 0;
    background-color: var(--card);
}

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

.section-description {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    max-width: 42rem;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    gap: 2rem;
}

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

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

.feature-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.feature-icon svg {
    width: 2rem;
    height: 2rem;
}

.feature-icon-primary {
    background-color: hsla(221.2, 83.2%, 53.3%, 0.1);
    color: var(--primary);
}

.feature-icon-accent {
    background-color: hsla(24.6, 95%, 53.1%, 0.1);
    color: var(--accent);
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 1rem;
}

.feature-description {
    color: var(--muted-foreground);
}

/* ===========================
   Services Section
   =========================== */
.services-section {
    padding: 5rem 0;
    background-color: hsla(210, 40%, 96%, 0.3);
}

.services-grid {
    display: grid;
    gap: 2rem;
}

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

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

.service-card {
    background-color: var(--card);
    padding: 1.5rem;
    border-radius: var(--radius);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    transform: translateY(-4px);
}

@media (max-width: 640px) {
    .service-card:hover {
        transform: none;
    }
}

.service-icon {
    width: 3rem;
    height: 3rem;
    background-color: hsla(221.2, 83.2%, 53.3%, 0.1);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

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

.service-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 0.5rem;
}

.service-description {
    color: var(--muted-foreground);
}

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

/* ===========================
   Process Section
   =========================== */
.process-section {
    padding: 5rem 0;
    background-color: var(--background);
}

.process-grid {
    display: grid;
    gap: 2rem;
}

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

.process-step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--primary-foreground);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.step-primary {
    background-color: var(--primary);
}

.step-accent {
    background-color: var(--accent);
}

.step-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 1rem;
}

.step-description {
    color: var(--muted-foreground);
}

/* ===========================
   Gallery Section
   =========================== */
.gallery-section {
    padding: 5rem 0;
    background-color: hsla(210, 40%, 96%, 0.3);
}

.gallery-grid {
    display: grid;
    gap: 1.5rem;
}

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

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

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.gallery-image {
    width: 100%;
    height: 16rem;
    object-fit: cover;
    transition: transform 0.3s;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
    opacity: 0;
    transition: opacity 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1rem;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-title {
    color: white;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.gallery-location {
    color: white;
    font-size: 0.875rem;
}

/* ===========================
   Commitment Section
   =========================== */
.commitment-section {
    padding: 5rem 0;
    background-color: var(--primary);
    color: var(--primary-foreground);
}

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

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

.commitment-description {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
}

/* ===========================
   Testimonials Section
   =========================== */
.testimonials-section {
    padding: 5rem 0;
    background-color: var(--background);
}

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

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

.testimonial-card {
    padding: 1.5rem;
    border-radius: var(--radius);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border);
    background: linear-gradient(145deg, var(--card), var(--muted));
}

.testimonial-stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.star {
    color: #facc15;
    font-size: 1.25rem;
}

.testimonial-text {
    color: var(--foreground);
    margin-bottom: 1rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.author-avatar {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background-color: var(--muted);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted-foreground);
    font-weight: 600;
}

.author-name {
    font-weight: 600;
    color: var(--foreground);
}

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

/* ===========================
   Contact Section
   =========================== */
.contact-section {
    padding: 5rem 0;
    background-color: var(--card);
    
}

.contact-grid {
    display: grid;
    gap: 3rem;
}

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

.contact-description {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    margin-bottom: 1.5rem;
}

.contact-highlight {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 1.5rem;
}

.phone-card {
    background-color: hsla(221.2, 83.2%, 53.3%, 0.1);
    border: 1px solid hsla(221.2, 83.2%, 53.3%, 0.2);
    border-radius: var(--radius);
    padding: 1.5rem;
    text-align: center;
}

.phone-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.phone-number {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--primary);
    transition: color 0.2s;
}

.phone-number:hover {
    color: hsl(221.2, 83.2%, 48%);
}

/* ===========================
   Form Styles
   =========================== */
.contact-form-wrapper {
    background-color: var(--background);
   
    border-radius: var(--radius);
    border: 1px solid var(--border);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

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

.form-row {
    display: grid;
    gap: 1.5rem;
}

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

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

.form-label {
    font-weight: 500;
    color: var(--foreground);
    margin-bottom: 0.5rem;
}

.form-input,
.form-select,
.form-textarea {
    padding: 0.5rem 0.75rem;
    border: 1px solid var(--border);
    border-radius: calc(var(--radius) - 2px);
    background-color: var(--card);
    color: var(--foreground);
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.2s;
    width: 100%;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px hsla(221.2, 83.2%, 53.3%, 0.1);
}

.form-input.error,
.form-select.error,
.form-textarea.error {
    border-color: hsl(0, 84.2%, 60.2%);
}

.form-error {
    color: hsl(0, 84.2%, 60.2%);
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: none;
}

.form-error.show {
    display: block;
}

.textarea-wrapper {
    position: relative;
}

.form-textarea {
    resize: none;
}

.char-counter {
    position: absolute;
    bottom: 0.75rem;
    right: 0.75rem;
    font-size: 0.75rem;
    color: var(--muted-foreground);
}

/* ===========================
   Footer Styles
   =========================== */
.footer {
    background-color: var(--foreground);
    color: var(--background);
    padding: 3rem 0;
}

.footer-grid {
    display: grid;
    gap: 2rem;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.footer-logo-img {
    width: 2.5rem;
    height: 2.5rem;
    object-fit: contain;
    border-radius: var(--radius);
}

.footer-logo-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-left: 0.75rem;
}

.footer-logo-subtitle {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    margin-left: 0.75rem;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.2s;
}

.social-link:hover {
    color: white;
}

.social-link svg {
    width: 1.5rem;
    height: 1.5rem;
}

.footer-heading {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-link {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.2s;
}

.footer-link:hover {
    color: white;
}

.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
}

.contact-item svg {
    width: 1.25rem;
    height: 1.25rem;
    flex-shrink: 0;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 3rem;
    padding-top: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

/* ===========================
   Toast Notification
   =========================== */
.toast {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 100;
    background-color: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    padding: 1rem 1.5rem;
    max-width: 20rem;
    animation: slideIn 0.3s ease-out;
}

.toast.success {
    border-left: 4px solid #10b981;
}

.toast.error {
    border-left: 4px solid hsl(0, 84.2%, 60.2%);
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.toast-content {
    color: var(--foreground);
    font-size: 0.875rem;
}

/* ===========================
   Smooth Scroll
   =========================== */
html {
    scroll-behavior: smooth;
}
