/* ================= GET STARTED HERO SECTION ================= */
.get-started-hero {
    position: relative;
    height: 60vh;
    min-height: 400px;
    width: 100%;
    background: url('../assets/images/warehouse.png') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 80px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(16, 19, 26, 0.7);
}

.get-started-hero .hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 0 2rem;
}

.get-started-hero h1 {
    font-size: 3rem;
    color: #fff;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.get-started-hero p {
    font-size: 1.5rem;
    color: #b3e6ff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* ================= CONTACT INFORMATION SECTION ================= */
.contact-info-section {
    padding: 4rem 2rem;
    background: #181c24;
}

.contact-info-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info-section h2 {
    text-align: center;
    color: #fff;
    font-size: 2.2rem;
    margin-bottom: 3rem;
}

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

.contact-item {
    background: #23283a;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 20px rgba(0, 234, 255, 0.2);
}

.contact-item i {
    font-size: 2.5rem;
    color: #00eaff;
    margin-bottom: 1rem;
}

.contact-item h3 {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: #b3e6ff;
    font-size: 1.1rem;
}

/* ================= MAP SECTION ================= */
.map-section {
    padding: 4rem 2rem;
    background: #10131a;
}

.map-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.map-section h2 {
    text-align: center;
    color: #fff;
    font-size: 2.2rem;
    margin-bottom: 2rem;
}

.map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

/* ================= RESPONSIVE DESIGN ================= */
.get-started-hero, .get-started-container, .contact-info-section, .map-section {
    max-width: 100vw;
    box-sizing: border-box;
}
@media (max-width: 768px) {
    .get-started-hero {
        height: 50vh;
        padding-left: 0.5rem;
        padding-right: 0.5rem;
        max-width: 100vw;
    }
    .get-started-hero h1 {
        font-size: 2.2rem;
    }
    .get-started-hero p {
        font-size: 1.2rem;
    }
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .contact-item {
        padding: 1.5rem;
    }
    .contact-item i {
        font-size: 2rem;
    }
    .contact-item h3 {
        font-size: 1.2rem;
    }
    .contact-item p {
        font-size: 1rem;
    }
    .get-started-container {
        flex-direction: column;
        width: 100vw;
        min-width: 0;
        margin: 1rem 0;
        border-radius: 14px;
        box-sizing: border-box;
        padding: 0.5rem;
        max-width: 100vw;
    }
}
@media (max-width: 480px) {
    .get-started-hero h1 {
        font-size: 1.5rem;
    }
    .get-started-hero p {
        font-size: 1rem;
    }
    .map-section, .contact-info-section {
        padding-left: 0.2rem;
        padding-right: 0.2rem;
        max-width: 100vw;
        box-sizing: border-box;
    }
} 