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

:root {
    --primary-color: #2563eb;
    --secondary-color: #1e40af;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --white: #ffffff;
    --shadow: 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);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: var(--shadow);
    z-index: 1000;
    transition: all 0.3s ease;
}

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

.logo img {
    width: 10rem;
    height: auto;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.phone-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

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

.phone-link svg {
    color: var(--primary-color);
}

.contact-btn {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.contact-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.contact-btn:active {
    transform: translateY(0);
}

/* Hero Section */
.hero {
    margin-top: 115px;
    padding: 5rem 0;
    background: url("./static/hero.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--white);
    text-align: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: fadeInUp 0.8s ease;
}

.hero-logo {
    margin-bottom: 2rem;
    color: var(--white);
    animation: float 3s ease-in-out infinite;
}

.hero-logo img {
    width: 50%;
    height: auto;
}

.hero-logo img {
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.2));
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.95;
    font-weight: 300;
}

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

.about-heading {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2rem;
    position: relative;
}

.about-heading::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

.about-intro {
    text-align: center;
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-light);
    max-width: 900px;
    margin: 2.5rem auto 3rem;
}

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

.about-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.about-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.about-card p {
    color: var(--text-light);
    line-height: 1.7;
}

.services-section {
    margin-bottom: 4rem;
}

.services-heading {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

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

.service-item {
    background: var(--primary-color);
    color: var(--white);
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    transition: all 0.3s ease;
}

.service-item:hover {
    background: var(--secondary-color);
    transform: scale(1.05);
}

.delivery-options {
    margin-bottom: 3rem;
}

.delivery-heading {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

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

.delivery-card {
    background: var(--white);
    border: 2px solid var(--primary-color);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.delivery-card:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.delivery-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

.delivery-card:hover h4 {
    color: var(--white);
}

.delivery-card p {
    color: var(--text-light);
    line-height: 1.6;
    transition: color 0.3s ease;
}

.delivery-card:hover p {
    color: var(--white);
    opacity: 0.95;
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background: var(--bg-light);
}

.contact-heading {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 3rem;
}

.contact-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: stretch;
}

@media (min-width: 900px) {
    .contact-wrapper {
        flex-direction: row;
        align-items: flex-start;
        gap: 2rem;
    }

    .contact-form-wrapper {
        flex: 1;
    }

    .opportunities-subsection {
        flex: 0 0 350px;
    }
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

@media (min-width: 900px) {
    .contact-form {
        margin: 0;
        max-width: none;
    }
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: var(--white);
}

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

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

.submit-btn {
    width: 100%;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.submit-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.submit-btn:active {
    transform: translateY(0);
}

.success-message {
    display: none;
    margin: 2rem auto 0;
    padding: 1.5rem;
    background: #10b981;
    color: var(--white);
    text-align: center;
    border-radius: 8px;
    font-weight: 600;
    animation: slideIn 0.5s ease;
}

@media (min-width: 900px) {
    .success-message {
        margin: 2rem 0 0;
    }
}

.success-message.show {
    display: block;
}

/* Opportunities Subsection */
.opportunities-subsection {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

@media (min-width: 900px) {
    .opportunities-subsection {
        margin: 0;
        max-width: none;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
}

.opportunities-heading {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.opportunities-text {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.jobs-btn {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
    text-decoration: none;
}

.jobs-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.jobs-btn:active {
    transform: translateY(0);
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 3rem 0 1.5rem;
}

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

.footer-section h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--white);
}

.footer-section p {
    margin-bottom: 0.75rem;
    opacity: 0.9;
    line-height: 1.6;
}

.footer-section a {
    color: var(--white);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-section a:hover {
    opacity: 0.7;
}

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

.footer-bottom p {
    opacity: 0.7;
    font-size: 0.9rem;
}

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

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        padding: 3rem 0;
        margin-top: 2rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-logo svg {
        width: 100px;
        height: 100px;
    }

    .about-heading,
    .contact-heading {
        font-size: 2rem;
    }

    .about-intro {
        font-size: 1rem;
    }

    .about-grid {
        gap: 1.5rem;
    }

    .about-card {
        padding: 1.5rem;
    }

    .services-heading,
    .delivery-heading {
        font-size: 1.75rem;
    }

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

    .service-item {
        padding: 0.75rem;
        font-size: 0.9rem;
    }

    .delivery-grid {
        gap: 1.5rem;
    }

    .delivery-card {
        padding: 1.5rem;
    }

    .opportunities-heading {
        font-size: 1.25rem;
    }

    .opportunities-text {
        font-size: 0.9rem;
    }

    .opportunities-subsection {
        padding: 1.5rem;
    }

    .jobs-btn {
        padding: 0.625rem 1.5rem;
        font-size: 0.9rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .logo img {
        width: 8rem;
        height: auto;
    }

    .header-right {
        gap: 1rem;
    }

    .phone-link span {
        font-size: 0.875rem;
    }

    .phone-link svg {
        width: 16px;
        height: 16px;
    }

    .contact-btn {
        padding: 0.625rem 1.5rem;
        font-size: 0.875rem;
    }

    .footer-content {
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .header-content {
        padding: 1rem 0;
    }

    .logo img {
        width: 7rem;
    }

    .header-right {
        gap: 0.75rem;
    }

    .phone-link span {
        display: none;
    }

    .phone-link svg {
        width: 20px;
        height: 20px;
    }

    .contact-btn {
        padding: 0.5rem 1.25rem;
        font-size: 0.8rem;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .hero {
        margin-top: 4.25rem;
    }

    .about-heading,
    .contact-heading {
        font-size: 1.75rem;
    }

    .about-intro {
        font-size: 0.95rem;
    }

    .about-card {
        padding: 1.25rem;
    }

    .about-card h3 {
        font-size: 1.25rem;
    }

    .services-heading,
    .delivery-heading {
        font-size: 1.5rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .delivery-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .opportunities-heading {
        font-size: 1.15rem;
    }

    .opportunities-subsection {
        padding: 1.25rem;
        margin-top: 2rem;
    }

    .jobs-btn {
        padding: 0.625rem 1.5rem;
        font-size: 0.85rem;
    }

    .contact-form {
        padding: 1.25rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
}

/* Careers Page */
.careers-section {
    min-height: calc(100vh - 400px);
    padding: 8rem 0 5rem;
    background: var(--bg-light);
    display: flex;
    align-items: center;
}

.careers-heading {
    text-align: center;
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.careers-intro {
    text-align: center;
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto 3rem;
}

.no-positions-card {
    max-width: 600px;
    margin: 0 auto;
    background: var(--white);
    padding: 3rem;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.no-positions-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    background: var(--bg-light);
    border-radius: 50%;
    margin-bottom: 1.5rem;
}

.no-positions-icon svg {
    color: var(--primary-color);
}

.no-positions-card h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.no-positions-card p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.no-positions-cta {
    font-weight: 600;
    color: var(--text-dark);
    margin-top: 1.5rem;
    margin-bottom: 2rem;
}

.back-home-btn {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    padding: 0.875rem 2.5rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.back-home-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.back-home-btn:active {
    transform: translateY(0);
}

.contact-btn-link {
    text-decoration: none;
}

/* Careers Page Responsive */
@media (max-width: 768px) {
    .careers-section {
        padding: 6rem 0 3rem;
    }

    .careers-heading {
        font-size: 2.25rem;
    }

    .careers-intro {
        font-size: 1rem;
    }

    .no-positions-card {
        padding: 2rem;
    }

    .no-positions-icon {
        width: 80px;
        height: 80px;
    }

    .no-positions-icon svg {
        width: 48px;
        height: 48px;
    }

    .no-positions-card h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .careers-heading {
        font-size: 1.75rem;
    }

    .no-positions-card {
        padding: 1.5rem;
    }

    .back-home-btn {
        padding: 0.75rem 2rem;
        font-size: 0.9rem;
    }
}
