/* 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, sans-serif;
    line-height: 1.6;
    color: hsl(240, 10%, 95%);
    background: linear-gradient(135deg, hsl(240, 15%, 9%), hsl(280, 20%, 12%), hsl(240, 25%, 8%));
    background-attachment: fixed;
    min-height: 100vh;
}

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

/* Utility classes */
.text-gold {
    color: #FFD700;
}

.text-foreground {
    color: hsl(240, 10%, 95%);
}

.gradient-text {
    background: linear-gradient(135deg, hsl(60, 100%, 70%), hsl(280, 100%, 70%), hsl(240, 100%, 80%));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 200%;
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.icon {
    width: 1rem;
    height: 1rem;
}

.btn-icon {
    width: 1.25rem;
    height: 1.25rem;
    margin-left: 0.5rem;
}

/* Button styles */
.btn {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 0.75rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary {
    background: linear-gradient(135deg, hsl(280, 100%, 70%), hsl(280, 100%, 60%));
    color: white;
}

.btn-gradient {
    background: linear-gradient(135deg, hsl(280, 100%, 70%), hsl(280, 100%, 60%));
    color: white;
    font-size: 1.125rem;
    padding: 1.5rem 2rem;
}

.btn-gradient:hover {
    box-shadow: 0 0 40px hsl(280, 100%, 70% / 0.3);
    transform: translateY(-2px);
}

.btn-outline {
    border: 2px solid hsl(280, 100%, 70%);
    color: hsl(240, 10%, 95%);
    background: transparent;
    font-size: 1.125rem;
    padding: 1.5rem 2rem;
}

.btn-outline:hover {
    background: hsl(280, 100%, 70% / 0.1);
    color: hsl(280, 100%, 70%);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* Contact Bar */
.contact-bar {
    background: hsl(240, 15%, 12% / 0.5);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid hsl(240, 15%, 20%);
    padding: 0.5rem 0;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    color: hsl(240, 5%, 60%);
    font-size: 0.875rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-item .icon {
    width: 1rem;
    height: 1rem;
}

@media (min-width: 768px) {
    .contact-info {
        flex-direction: row;
        gap: 1.5rem;
    }
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: hsl(240, 15%, 12% / 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid hsl(240, 15%, 20%);
    margin-top: 1px;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

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

.logo-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: linear-gradient(135deg, hsl(280, 100%, 70%), hsl(280, 100%, 60%));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.5rem;
    font-weight: bold;
    font-size: 1.125rem;
}

.logo-text {
    font-size: 1.25rem;
    font-weight: bold;
}

.desktop-nav {
    display: none;
}

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

.nav-links a {
    color: hsl(240, 10%, 95%);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: hsl(280, 100%, 70%);
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: hsl(240, 15%, 12%);
    border: 1px solid hsl(240, 15%, 20%);
    border-radius: 0.5rem;
    padding: 0.5rem;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 0.5rem;
    border-radius: 0.25rem;
}

.dropdown-menu a:hover {
    background: hsl(240, 15%, 20%);
}

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

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: hsl(240, 10%, 95%);
    transition: all 0.3s;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.mobile-nav {
    display: none;
    background: hsl(240, 15%, 12%);
    border-top: 1px solid hsl(240, 15%, 20%);
    padding: 1rem 0;
}

.mobile-nav.active {
    display: block;
}

.mobile-nav-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-nav-links a {
    color: hsl(240, 10%, 95%);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem;
    border-radius: 0.25rem;
    transition: all 0.3s;
}

.mobile-nav-links a:hover {
    background: hsl(240, 15%, 20%);
    color: hsl(280, 100%, 70%);
}

@media (min-width: 768px) {
    .desktop-nav {
        display: block;
    }
    
    .mobile-menu-toggle {
        display: none;
    }
}

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

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, hsl(240, 15%, 9%), hsl(280, 20%, 12%), hsl(240, 25%, 8%));
    opacity: 0.9;
}

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

.hero-effect-1 {
    position: absolute;
    top: 25%;
    left: 25%;
    width: 24rem;
    height: 24rem;
    background: hsl(280, 100%, 70% / 0.1);
    border-radius: 50%;
    filter: blur(3rem);
    animation: pulse 2s infinite;
}

.hero-effect-2 {
    position: absolute;
    bottom: 25%;
    right: 25%;
    width: 20rem;
    height: 20rem;
    background: hsl(60, 100%, 70% / 0.1);
    border-radius: 50%;
    filter: blur(3rem);
    animation: pulse 2s infinite;
    animation-delay: 1s;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.1; }
    50% { transform: scale(1.1); opacity: 0.2; }
}

.hero-content {
    text-align: center;
    max-width: 64rem;
    position: relative;
    z-index: 10;
}

.hero-title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: hsl(240, 5%, 60%);
    margin-bottom: 2rem;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
}

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

.scroll-indicator {
    display: flex;
    justify-content: center;
}

.scroll-btn {
    background: none;
    border: none;
    color: hsl(240, 5%, 60%);
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 0.25rem;
    transition: color 0.3s;
    animation: bounce 2s infinite;
}

.scroll-btn:hover {
    color: hsl(280, 100%, 70%);
}

.scroll-icon {
    width: 2rem;
    height: 2rem;
}

@keyframes bounce {
    0%, 20%, 53%, 80%, 100% { transform: translateY(0); }
    40%, 43% { transform: translateY(-30px); }
    70% { transform: translateY(-15px); }
    90% { transform: translateY(-4px); }
}

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

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

/* Section styles */
.section-bg {
    position: absolute;
    inset: 0;
}

.section-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 24rem;
    height: 24rem;
    background: hsl(280, 100%, 70% / 0.05);
    border-radius: 50%;
    filter: blur(3rem);
}

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

.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.section-description {
    font-size: 1.25rem;
    color: hsl(240, 5%, 60%);
    max-width: 48rem;
    margin: 0 auto;
}

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

/* About Section */
.about {
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

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

.feature-card {
    background: linear-gradient(135deg, hsl(240, 15%, 12%), hsl(280, 20%, 15%));
    border: 1px solid hsl(240, 15%, 20%);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s;
    box-shadow: 0 10px 30px hsl(240, 15%, 5% / 0.5);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px hsl(240, 15%, 5% / 0.7);
}

.feature-icon {
    width: 4rem;
    height: 4rem;
    margin: 0 auto 1.5rem;
    border-radius: 1rem;
    background: linear-gradient(135deg, hsl(280, 100%, 70%), hsl(280, 100%, 60%));
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 40px hsl(280, 100%, 70% / 0.3);
    transition: transform 0.3s;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

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

.feature-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    transition: color 0.3s;
}

.feature-card:hover .feature-title {
    color: hsl(280, 100%, 70%);
}

.feature-description {
    color: hsl(240, 5%, 60%);
    line-height: 1.6;
}

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

/* Services Section */
.services {
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

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

.service-card {
    background: linear-gradient(135deg, hsl(240, 15%, 12%), hsl(280, 20%, 15%));
    border: 1px solid hsl(240, 15%, 20%);
    border-radius: 1rem;
    padding: 2rem;
    transition: all 0.3s;
    box-shadow: 0 10px 30px hsl(240, 15%, 5% / 0.5);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px hsl(240, 15%, 5% / 0.7);
}

.service-icon {
    width: 4rem;
    height: 4rem;
    margin-bottom: 1.5rem;
    border-radius: 1rem;
    background: linear-gradient(135deg, hsl(280, 100%, 70%), hsl(280, 100%, 60%));
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 40px hsl(280, 100%, 70% / 0.3);
}

.service-icon svg {
    width: 2rem;
    height: 2rem;
    color: white;
}

.service-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.service-description {
    color: hsl(240, 5%, 60%);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    color: hsl(240, 10%, 95%);
}

.service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: hsl(280, 100%, 70%);
    font-weight: bold;
}

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

/* Recruitment Section */
.recruitment {
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.recruitment-card {
    background: linear-gradient(135deg, hsl(240, 15%, 12%), hsl(280, 20%, 15%));
    border: 1px solid hsl(240, 15%, 20%);
    border-radius: 1rem;
    padding: 3rem;
    text-align: center;
    max-width: 64rem;
    margin: 0 auto;
    box-shadow: 0 10px 30px hsl(240, 15%, 5% / 0.5);
}

.recruitment-icon {
    width: 5rem;
    height: 5rem;
    margin: 0 auto 2rem;
    border-radius: 1.5rem;
    background: linear-gradient(135deg, hsl(280, 100%, 70%), hsl(280, 100%, 60%));
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 40px hsl(280, 100%, 70% / 0.3);
}

.recruitment-icon svg {
    width: 2.5rem;
    height: 2.5rem;
    color: white;
}

.recruitment-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.recruitment-description {
    font-size: 1.25rem;
    color: hsl(240, 5%, 60%);
    margin-bottom: 2rem;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.recruitment-info {
    margin-top: 3rem;
    text-align: center;
}

.recruitment-info-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.recruitment-info-description {
    color: hsl(240, 5%, 60%);
    line-height: 1.6;
    max-width: 32rem;
    margin: 0 auto;
}

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

/* Contact Section */
.contact {
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.contact-content {
    display: grid;
    gap: 4rem;
    max-width: 80rem;
    margin: 0 auto;
}

.contact-form-section {
    max-width: 32rem;
    margin: 0 auto;
}

.contact-form {
    background: linear-gradient(135deg, hsl(240, 15%, 12%), hsl(280, 20%, 15%));
    border: 1px solid hsl(240, 15%, 20%);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 10px 30px hsl(240, 15%, 5% / 0.5);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: hsl(240, 10%, 95%);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid hsl(240, 15%, 20%);
    border-radius: 0.5rem;
    background: hsl(240, 15%, 20%);
    color: hsl(240, 10%, 95%);
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: hsl(280, 100%, 70%);
}

.form-group input[type="file"] {
    padding: 0.5rem;
}

.faq-section {
    max-width: 32rem;
    margin: 0 auto;
}

.faq-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 2rem;
    text-align: center;
}

.faq-item {
    background: linear-gradient(135deg, hsl(240, 15%, 12%), hsl(280, 20%, 15%));
    border: 1px solid hsl(240, 15%, 20%);
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s;
}

.faq-question:hover {
    background: hsl(240, 15%, 20%);
}

.faq-icon {
    width: 1.25rem;
    height: 1.25rem;
    transition: transform 0.3s;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
  
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 1rem 1rem;
}

.faq-answer p {
    color: hsl(240, 5%, 60%);
    line-height: 1.6;
}

/* Aroon Dropdown Section */
.aroon-section {
    max-width: 32rem;
    margin: 2rem auto 0;
}

.aroon-dropdown {
    background: linear-gradient(135deg, hsl(240, 15%, 12%), hsl(280, 20%, 15%));
    border: 1px solid hsl(240, 15%, 20%);
    border-radius: 0.5rem;
    overflow: hidden;
}

.aroon-dropdown-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 1rem;
    background: none;
    border: none;
    cursor: pointer;
    font-weight: 600;
    color: hsl(240, 10%, 95%);
    transition: background-color 0.3s;
}

.aroon-dropdown-btn:hover {
    background: hsl(240, 15%, 20%);
}

.aroon-icon {
    width: 1.25rem;
    height: 1.25rem;
    transition: transform 0.3s;
}

.aroon-dropdown.active .aroon-icon {
    transform: rotate(180deg);
}

.aroon-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.aroon-dropdown.active .aroon-content {
    max-height: 200px;
    padding: 0 1rem 1rem;
}

.aroon-content p {
    color: hsl(240, 5%, 60%);
    line-height: 1.6;
}

/* File input enhancement */
.file-info {
    margin-top: 0.5rem;
    font-size: 0.875rem;
    color: hsl(240, 5%, 70%);
}

.file-info.has-file {
    color: hsl(280, 100%, 70%);
    font-weight: 500;
}

input[type="file"] {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid hsl(280, 100%, 70% / 0.3);
    border-radius: 0.75rem;
    background: hsl(240, 15%, 12% / 0.5);
    color: hsl(240, 10%, 95%);
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

input[type="file"]:hover {
    border-color: hsl(280, 100%, 70% / 0.5);
}

input[type="file"]:focus {
    outline: none;
    border-color: hsl(280, 100%, 70%);
    box-shadow: 0 0 0 3px hsl(280, 100%, 70% / 0.1);
}

/* Footer experience text */
.footer-experience {
    margin-top: 1rem;
    color: hsl(240, 5%, 80%);
    font-size: 0.95rem;
    line-height: 1.6;
}

@media (min-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr 1fr;
        gap: 6rem;
    }
}

/* Footer */
.footer {
    background: linear-gradient(135deg, hsl(240, 15%, 8%), hsl(280, 20%, 10%));
    border-top: 1px solid hsl(240, 15%, 20%);
    padding: 4rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.footer-bg {
    position: absolute;
    inset: 0;
}

.footer-effect-1 {
    position: absolute;
    top: -10%;
    left: -10%;
    width: 20rem;
    height: 20rem;
    background: hsl(280, 100%, 70% / 0.05);
    border-radius: 50%;
    filter: blur(3rem);
}

.footer-effect-2 {
    position: absolute;
    bottom: -10%;
    right: -10%;
    width: 16rem;
    height: 16rem;
    background: hsl(60, 100%, 70% / 0.05);
    border-radius: 50%;
    filter: blur(3rem);
}

.footer-content {
    display: grid;
    gap: 2rem;
    position: relative;
    z-index: 10;
}

.footer-section {
    max-width: 100%;
}

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

.footer-tagline {
    font-weight: 600;
    margin-bottom: 1rem;
    color: hsl(280, 100%, 70%);
}

.footer-description {
    color: hsl(240, 5%, 60%);
    line-height: 1.6;
    margin-bottom: 2rem;
}

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

.social-link {
    width: 2.5rem;
    height: 2.5rem;
    background: hsl(240, 15%, 20%);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: hsl(240, 10%, 95%);
    transition: all 0.3s;
}

.social-link:hover {
    background: hsl(280, 100%, 70%);
    color: white;
    transform: translateY(-2px);
}

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

.footer-section-title {
    font-size: 1.125rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: hsl(280, 100%, 70%);
}

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

.footer-links a {
    color: hsl(240, 5%, 60%);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: hsl(280, 100%, 70%);
}

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

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: hsl(240, 5%, 60%);
}

.footer-contact-item .icon {
    width: 1.25rem;
    height: 1.25rem;
    margin-top: 0.125rem;
    flex-shrink: 0;
}

.footer-separator {
    height: 1px;
    background: hsl(240, 15%, 20%);
    margin: 2rem 0;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    text-align: center;
    color: hsl(240, 5%, 60%);
    font-size: 0.875rem;
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    color: hsl(240, 5%, 60%);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-legal a:hover {
    color: hsl(280, 100%, 70%);
}

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: 2fr 1fr 1fr;
        gap: 4rem;
    }
    
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

/* Toast Notification */
.toast {
    position: fixed;
    top: 2rem;
    right: 2rem;
    z-index: 10000;
    background: hsl(240, 15%, 12%);
    border: 1px solid hsl(280, 100%, 70%);
    border-radius: 0.5rem;
    padding: 1rem;
    box-shadow: 0 10px 30px hsl(240, 15%, 5% / 0.5);
    transform: translateX(400px);
    transition: transform 0.3s ease-in-out;
}

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

.toast-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.toast-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: hsl(280, 100%, 70%);
}

.toast-message {
    color: hsl(240, 10%, 95%);
    font-weight: 500;
}

/* Responsive adjustments */
@media (max-width: 640px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .recruitment-title {
        font-size: 2rem;
    }
    
    .contact-item span {
        font-size: 0.8rem;
    }
}