:root {
    /* Colors - HSL Format */
    --primary: hsl(210, 100%, 20%); /* Deep blue for trust */
    --primary-light: hsl(210, 100%, 30%);
    --primary-dark: hsl(210, 100%, 15%);
    --primary-foreground: hsl(0, 0%, 100%);

    --accent: hsl(145, 63%, 42%); /* Green for growth and hope */
    --accent-light: hsl(145, 63%, 52%);
    --accent-dark: hsl(145, 63%, 32%);
    --accent-foreground: hsl(0, 0%, 100%);

    --background: hsl(0, 0%, 100%);
    --foreground: hsl(220, 14%, 20%);

    --secondary: hsl(220, 9%, 96%);
    --secondary-foreground: hsl(220, 14%, 20%);

    --muted: hsl(220, 9%, 96%);
    --muted-foreground: hsl(220, 8%, 46%);

    --card: hsl(0, 0%, 100%);
    --card-foreground: hsl(220, 14%, 20%);

    --border: hsl(220, 13%, 91%);
    --input: hsl(220, 13%, 91%);

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    --gradient-accent: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
    --gradient-hero: linear-gradient(135deg, hsla(210, 100%, 20%, 0.95) 0%, hsla(210, 100%, 15%, 0.9) 100%);
    
    /* Shadows */
    --shadow-soft: 0 1px 3px hsla(220, 14%, 20%, 0.1);
    --shadow-medium: 0 4px 6px hsla(220, 14%, 20%, 0.1);
    --shadow-large: 0 10px 15px hsla(220, 14%, 20%, 0.1);
    --shadow-hero: 0 20px 25px hsla(220, 14%, 20%, 0.15);

    /* Transitions */
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);

    /* Spacing */
    --section-padding: 5rem 0;
    --container-padding: 0 1rem;
    --border-radius: 0.75rem;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--foreground);
    background-color: var(--background);
    overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.5rem, 3vw, 1.75rem); }

p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    font-size: 1rem;
    line-height: 1;
}

.btn-hero {
    background: var(--gradient-accent);
    color: var(--accent-foreground);
    padding: 1rem 2rem;
    font-weight: 600;
    box-shadow: var(--shadow-medium);
}

.btn-hero:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-large);
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--primary-foreground);
    box-shadow: var(--shadow-soft);
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-medium);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

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

.btn-accent:hover {
    transform: translateY(-1px);
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(50px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes scaleIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-30px); }
    60% { transform: translateY(-15px); }
}

.fade-in {
    animation: fadeIn 0.8s ease-out;
}

.slide-up {
    animation: slideUp 0.8s ease-out;
    animation-fill-mode: both;
}

.scale-in {
    animation: scaleIn 0.6s ease-out;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    color: var(--primary);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    max-width: 600px;
    margin: 0 auto;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: white;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: url('src/assets/hero-bg.jpg') center/cover no-repeat;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: var(--gradient-hero);
    background-size: 50px 50px;
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 2rem 0;
}

.hero-title {
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.text-accent {
    color: var(--accent-light);
}

.hero-subtitle {
    font-size: clamp(1.125rem, 2.5vw, 1.5rem);
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    margin-bottom: 4rem;
}

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

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.stat-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.stat-icon {
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    backdrop-filter: blur(10px);
}

.stat-icon i {
    color: var(--accent-light);
    font-size: 1.5rem;
}

.stat-number {
    font-size: 2rem;
    font-weight: bold;
    color: var(--accent-light);
}

.stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-mouse {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 8px;
}

.scroll-wheel {
    width: 4px;
    height: 12px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 2px;
    animation: pulse 2s infinite;
}

/* Benefits Section */
.benefits {
    padding: var(--section-padding);
    background: var(--secondary);
}

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

.benefit-card {
    background: var(--card);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
    text-align: center;
    transition: var(--transition-smooth);
}

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

.benefit-icon {
    width: 4rem;
    height: 4rem;
    margin: 0 auto 1.5rem;
    background: rgba(var(--primary), 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.benefit-card:hover .benefit-icon {
    background: rgba(var(--primary), 0.2);
}

.benefit-icon i {
    font-size: 2rem;
    color: var(--primary);
}

.benefit-card h3 {
    color: var(--card-foreground);
    margin-bottom: 1rem;
}

.benefit-card p {
    color: var(--muted-foreground);
    margin: 0;
}

/* About Section */
.about {
    padding: var(--section-padding);
}

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

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

.about-content h2 {
    color: var(--primary);
    margin-bottom: 1.5rem;
}

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

.values-list {
    margin-bottom: 2rem;
}

.value-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.value-item i {
    color: var(--accent);
    font-size: 1.25rem;
    width: 1.5rem;
}

.about-stats {
    background: linear-gradient(135deg, rgba(var(--primary), 0.05) 0%, rgba(var(--accent), 0.05) 100%);
    padding: 2rem;
    border-radius: calc(var(--border-radius) * 2);
}

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

.stat {
    text-align: center;
}

.stat-value {
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.stat:nth-child(even) .stat-value {
    color: var(--accent);
}

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

.quote-box {
    background: rgba(255, 255, 255, 0.8);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(var(--primary), 0.1);
    text-align: center;
}

.quote-box p {
    color: var(--primary);
    font-weight: 500;
    font-style: italic;
    margin: 0;
}

/* Jobs Section */
.jobs {
    padding: var(--section-padding);
    background: rgba(var(--secondary), 0.5);
}

.jobs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.job-card {
    background: var(--card);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    transition: var(--transition-smooth);
    cursor: pointer;
    border: 2px solid transparent;
}

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

.job-card.health { border-color: hsl(210, 100%, 90%); }
.job-card.engineering { border-color: hsl(25, 100%, 90%); }
.job-card.tech { border-color: hsl(260, 100%, 90%); }
.job-card.construction { border-color: hsl(45, 100%, 90%); }
.job-card.hospitality { border-color: hsl(145, 60%, 90%); }

.job-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.job-icon {
    padding: 0.75rem;
    background: white;
    border-radius: var(--border-radius);
    font-size: 1.5rem;
}

.job-card.health .job-icon { color: hsl(210, 100%, 50%); }
.job-card.engineering .job-icon { color: hsl(25, 100%, 50%); }
.job-card.tech .job-icon { color: hsl(260, 100%, 50%); }
.job-card.construction .job-icon { color: hsl(45, 100%, 50%); }
.job-card.hospitality .job-icon { color: hsl(145, 60%, 40%); }

.job-category {
    font-size: 0.75rem;
    padding: 0.25rem 0.75rem;
    background: var(--secondary);
    border-radius: 1rem;
    color: var(--secondary-foreground);
}

.job-card h3 {
    color: var(--card-foreground);
    margin-bottom: 0.5rem;
    transition: var(--transition-smooth);
}

.job-card:hover h3 {
    color: var(--primary);
}

.job-card p {
    color: var(--muted-foreground);
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.job-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.job-location, .job-salary {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
}

.job-location i {
    color: var(--muted-foreground);
}

.job-salary i {
    color: var(--accent);
}

.job-salary span {
    color: var(--accent);
    font-weight: 500;
}

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

/* Testimonials Section */
.testimonials {
    padding: var(--section-padding);
}

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

.testimonial-card {
    background: var(--card);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
    transition: var(--transition-smooth);
}

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

.testimonial-quote {
    margin-bottom: 1.5rem;
}

.testimonial-quote i {
    font-size: 2rem;
    color: rgba(var(--primary), 0.3);
    margin-bottom: 1rem;
}

.testimonial-quote p {
    font-size: 1.125rem;
    font-style: italic;
    color: var(--card-foreground);
    line-height: 1.6;
    margin: 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.author-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(var(--primary), 0.2);
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

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

.testimonial-rating {
    display: flex;
    gap: 0.25rem;
}

.testimonial-rating i {
    color: #fbbf24;
    font-size: 1rem;
}

.testimonials-cta {
    background: linear-gradient(135deg, rgba(var(--primary), 0.05) 0%, rgba(var(--accent), 0.05) 100%);
    padding: 3rem 2rem;
    border-radius: calc(var(--border-radius) * 2);
    text-align: center;
}

.testimonials-cta h3 {
    color: var(--primary);
    margin-bottom: 1rem;
}

.testimonials-cta p {
    color: var(--muted-foreground);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.feature-dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
}

.feature-dot.accent {
    background: var(--accent);
}

.feature-dot.primary {
    background: var(--primary);
}

/* Contact Form Section */
.contact {
    padding: var(--section-padding);
    background: rgba(var(--secondary), 0.5);
}

.contact-form-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--card);
    border-radius: calc(var(--border-radius) * 2);
    box-shadow: var(--shadow-large);
    overflow: hidden;
}

.form-header {
    text-align: center;
    padding: 2rem 2rem 1rem;
    border-bottom: 1px solid var(--border);
}

.form-header h3 {
    color: var(--primary);
    margin: 0;
}

.contact-form {
    padding: 2rem;
}

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

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid var(--border);
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: var(--transition-smooth);
    background: var(--background);
    color: var(--foreground);
}

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

.file-upload {
    border: 2px dashed var(--border);
    border-radius: var(--border-radius);
    padding: 2rem;
    text-align: center;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.file-upload:hover {
    border-color: rgba(var(--primary), 0.5);
}

.upload-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.upload-content i {
    font-size: 2rem;
    color: var(--muted-foreground);
}

.upload-content span {
    color: var(--muted-foreground);
}

.file-selected .upload-content i {
    color: var(--accent);
}

.file-selected .upload-content span {
    color: var(--accent);
    font-weight: 500;
}

.form-note {
    background: rgba(var(--accent), 0.1);
    border: 1px solid rgba(var(--accent), 0.2);
    border-radius: var(--border-radius);
    padding: 1rem;
    margin-bottom: 2rem;
}

.form-note p {
    color: var(--muted-foreground);
    font-size: 0.875rem;
    margin: 0;
    line-height: 1.5;
}

.form-note strong {
    color: var(--accent);
}

.submit-btn {
    width: 100%;
    padding: 1rem 2rem;
    font-size: 1.125rem;
    position: relative;
}

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

.btn-loading {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: inherit;
    border-radius: inherit;
}

/* Footer */
.footer {
    background: var(--primary);
    color: var(--primary-foreground);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 4rem 0;
}

.footer-section h4 {
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

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

.footer-logo i {
    font-size: 2rem;
    color: var(--accent);
}

.footer-logo h3 {
    font-size: 1.5rem;
    margin: 0;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.foundation-note {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
}

.foundation-note i {
    color: var(--accent);
}

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

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition-smooth);
}

.footer-section ul li a:hover {
    color: var(--accent);
}

.contact-info {
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.contact-item:hover {
    color: var(--accent);
}

.contact-item i {
    margin-top: 0.25rem;
    width: 1.25rem;
}

.contact-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.25rem;
}

.contact-value {
    font-size: 0.875rem;
}

.social-section h5 {
    margin-bottom: 1rem;
    font-size: 0.875rem;
    font-weight: 500;
}

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

.social-links a {
    width: 2.5rem;
    height: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition-smooth);
    text-decoration: none;
}

.social-links a:hover {
    border-color: var(--accent);
    background: var(--accent);
    color: var(--accent-foreground);
}

.newsletter {
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

@media (min-width: 768px) {
    .newsletter-content {
        grid-template-columns: 1fr auto;
    }
}

.newsletter-text h4 {
    margin-bottom: 0.5rem;
}

.newsletter-text p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    margin: 0;
}

.newsletter-form {
    display: flex;
    gap: 0.75rem;
    flex-direction: column;
}

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

.newsletter-form input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    backdrop-filter: blur(10px);
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--accent);
}

.footer-bottom {
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    justify-content: space-between;
}

@media (min-width: 768px) {
    .footer-bottom-content {
        flex-direction: row;
    }
}

.copyright {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.footer-links a {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition-smooth);
}

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

/* Toast Notification */
.toast {
    position: fixed;
    top: 2rem;
    right: 2rem;
    max-width: 400px;
    background: var(--card);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-large);
    transform: translateX(100%);
    transition: var(--transition-smooth);
    z-index: 1000;
    border: 1px solid var(--border);
}

.toast.show {
    transform: translateX(0);
}

.toast-content {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
}

.toast-icon {
    font-size: 1.25rem;
    margin-top: 0.25rem;
}

.toast.success .toast-icon {
    color: var(--accent);
}

.toast.error .toast-icon {
    color: hsl(0, 84%, 60%);
}

.toast-text {
    flex: 1;
}

.toast-title {
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 0.25rem;
}

.toast-message {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    line-height: 1.4;
}

/* Responsive Design */
@media (max-width: 768px) {
    :root {
        --section-padding: 3rem 0;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .stat-item {
        justify-content: flex-start;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .jobs-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-features {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 0.75rem;
    }
    
    .hero-content {
        padding: 1rem 0;
    }
    
    .contact-form {
        padding: 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}