/* =========================================================
   Starline Shop - Contact Page
========================================================= */

.starline-contact-page {
    background: #f7f8fa;
    padding: 60px 0;
}

.starline-contact-container {
    width: min(1200px, calc(100% - 40px));
    margin: 0 auto;
}


/* Header */

.starline-contact-header {
    max-width: 700px;
    margin: 0 auto 45px;
    text-align: center;
}

.starline-contact-title {
    margin: 0 0 12px;
    font-size: 42px;
    line-height: 1.2;
    font-weight: 700;
    color: #111827;
}

.starline-contact-subtitle {
    margin: 0;
    font-size: 16px;
    line-height: 1.8;
    color: #6b7280;
}


/* Main Grid */

.starline-contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 30px;
    align-items: stretch;
}


/* Info Box */

.starline-contact-info,
.starline-contact-form-box {
    background: #ffffff;
    border-radius: 16px;
    padding: 35px;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.06);
}

.starline-contact-info h2,
.starline-contact-form-box h2 {
    margin: 0 0 12px;
    font-size: 26px;
    font-weight: 700;
    color: #111827;
}

.starline-contact-info-description,
.starline-form-subtitle {
    margin: 0 0 28px;
    font-size: 15px;
    line-height: 1.7;
    color: #6b7280;
}


/* Contact Items */

.starline-contact-items {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.starline-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.starline-contact-icon {
    width: 46px;
    height: 46px;
    min-width: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: #f1f5f9;
    font-size: 20px;
}

.starline-contact-item-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.starline-contact-label {
    font-size: 13px;
    color: #9ca3af;
}

.starline-contact-item-content a,
.starline-contact-item-content span:not(.starline-contact-label) {
    font-size: 15px;
    line-height: 1.6;
    color: #111827;
    text-decoration: none;
}

.starline-contact-item-content a:hover {
    text-decoration: underline;
}


/* Business Hours */

.starline-contact-hours {
    margin-top: 28px;
    padding-top: 25px;
    border-top: 1px solid #e5e7eb;
}

.starline-contact-hours h3 {
    margin: 0 0 10px;
    font-size: 18px;
}

.starline-contact-hours p {
    margin: 0;
    color: #6b7280;
    line-height: 1.8;
}


/* WhatsApp */

.starline-whatsapp-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 25px;
    padding: 13px 22px;
    border-radius: 8px;
    background: #25d366;
    color: #ffffff;
    font-weight: 600;
    text-decoration: none;
    transition: 0.25s ease;
}

.starline-whatsapp-button:hover {
    opacity: 0.9;
    color: #ffffff;
}


/* Social */

.starline-contact-social {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 25px;
}

.starline-contact-social a {
    padding: 8px 13px;
    border: 1px solid #e5e7eb;
    border-radius: 7px;
    background: #ffffff;
    font-size: 13px;
    color: #374151;
    text-decoration: none;
    transition: 0.2s ease;
}

.starline-contact-social a:hover {
    background: #f3f4f6;
}


/* Form */

.starline-contact-form-box {
    position: relative;
}

.starline-contact-form input[type="text"],
.starline-contact-form input[type="email"],
.starline-contact-form input[type="tel"],
.starline-contact-form input[type="url"],
.starline-contact-form input[type="number"],
.starline-contact-form select,
.starline-contact-form textarea {
    width: 100%;
    border: 1px solid #e1e5eb;
    border-radius: 8px;
    background: #ffffff;
    padding: 13px 15px;
    font-size: 15px;
    outline: none;
    box-sizing: border-box;
    transition: 0.2s ease;
}

.starline-contact-form input:focus,
.starline-contact-form select:focus,
.starline-contact-form textarea:focus {
    border-color: #111827;
}

.starline-contact-form textarea {
    min-height: 140px;
    resize: vertical;
}

.starline-contact-form input[type="submit"],
.starline-contact-form button[type="submit"] {
    border: 0;
    border-radius: 8px;
    padding: 13px 25px;
    background: #111827;
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s ease;
}

.starline-contact-form input[type="submit"]:hover,
.starline-contact-form button[type="submit"]:hover {
    opacity: 0.88;
}

.starline-no-form {
    padding: 25px;
    border: 1px dashed #d1d5db;
    border-radius: 10px;
    background: #f9fafb;
    color: #6b7280;
    line-height: 1.7;
}


/* Google Map */

.starline-contact-map-section {
    margin-top: 40px;
}

.starline-contact-map-section h2 {
    margin: 0 0 20px;
    font-size: 28px;
    color: #111827;
}

.starline-contact-map {
    overflow: hidden;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.06);
}

.starline-contact-map iframe {
    display: block;
}


/* Tablet */

@media (max-width: 991px) {

    .starline-contact-grid {
        grid-template-columns: 1fr;
    }

}


/* Mobile */

@media (max-width: 767px) {

    .starline-contact-page {
        padding: 35px 0;
    }

    .starline-contact-container {
        width: min(100% - 30px, 1200px);
    }

    .starline-contact-header {
        margin-bottom: 30px;
    }

    .starline-contact-title {
        font-size: 32px;
    }

    .starline-contact-info,
    .starline-contact-form-box {
        padding: 24px 20px;
        border-radius: 12px;
    }

    .starline-contact-info h2,
    .starline-contact-form-box h2 {
        font-size: 23px;
    }

    .starline-contact-map iframe {
        height: 320px;
    }

}