/* ===================================
   SIPZZ - CONTACT.CSS
   Styles for the Contact Us page
   =================================== */

/* === HERO SECTION === */
.contact-hero {
    background-color: #f4f8fb;
    padding: 80px 20px;
    text-align: center;
    margin-bottom: 60px;
}

.contact-hero h1 {
    font-size: 48px;
    font-weight: 800;
    color: #0067b1;
    margin: 0 0 20px 0;
    line-height: 1.2;
}

.contact-hero p {
    font-size: 18px;
    color: #546e7a;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* === CENTERED LAYOUT === */
.contact-container.centered-layout {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px 80px;
    display: block;
    /* Override grid */
}

.contact-card {
    background-color: white;
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.contact-card h2 {
    font-size: 32px;
    font-weight: 800;
    color: #333;
    margin: 0 0 15px 0;
}

.contact-intro {
    font-size: 18px;
    color: #546e7a;
    max-width: 600px;
    margin: 0 auto 50px;
    line-height: 1.6;
}

/* === CONTACT OPTIONS GRID === */
.contact-options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(195px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

/* ... existing styles ... */

/* === RESPONSIVE === */
@media (max-width: 768px) {
    .contact-hero h1 {
        font-size: 36px;
    }

    .contact-card {
        padding: 40px 20px;
    }
}

@media (max-width: 500px) {
    .contact-options-grid {
        grid-template-columns: 1fr;
    }

    .contact-option-card {
        flex-direction: row;
        text-align: left;
        align-items: center;
        padding: 20px;
    }

    .icon-wrapper {
        margin-bottom: 0;
        margin-right: 20px;
        width: 50px;
        height: 50px;
        font-size: 24px;
    }

    .contact-option-card h3 {
        margin-bottom: 5px;
        font-size: 18px;
    }

    .contact-option-card p {
        margin-bottom: 0;
        font-size: 14px;
    }

    .action-text {
        margin-left: auto;
        font-size: 20px;
    }

    /* Hide text in action-text on mobile, show arrow only */
    .action-text {
        font-size: 0;
    }

    .action-text::after {
        content: '\f054';
        /* FontAwesome right chevron */
        font-family: "Font Awesome 6 Free";
        font-weight: 900;
        font-size: 16px;
    }
}

.contact-option-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px 20px;
    background-color: #f8f9fa;
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    height: 100%;
}

.contact-option-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    background-color: white;
    border-color: #0067b1;
}

.icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 20px;
    transition: all 0.3s;
}

/* Specific Colors */
.contact-option-card.whatsapp .icon-wrapper {
    background-color: #e6ffed;
    color: #25D366;
}

.contact-option-card.email .icon-wrapper {
    background-color: #e6f0f7;
    color: #0067b1;
}

.contact-option-card.location .icon-wrapper {
    background-color: #fff0f0;
    color: #ff6b6b;
}

.contact-option-card.corporate .icon-wrapper {
    background-color: #f0f0f0;
    color: #333;
}

.contact-option-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin: 0 0 10px 0;
}

.contact-option-card p {
    font-size: 15px;
    color: #546e7a;
    margin: 0 0 20px 0;
    line-height: 1.4;
}

.action-text {
    margin-top: auto;
    font-size: 15px;
    font-weight: 700;
    color: #0067b1;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* === SOCIAL CONNECT === */
.social-connect {
    border-top: 1px solid #e0e0e0;
    padding-top: 50px;
}

.social-connect h3 {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin: 0 0 30px 0;
}

.social-icons-large {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.social-icon-lg {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: white;
    transition: transform 0.3s;
}

.social-icon-lg:hover {
    transform: translateY(-5px) scale(1.1);
}

.social-icon-lg.instagram {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

.social-icon-lg.facebook {
    background-color: #1877F2;
}

.social-icon-lg.tiktok {
    background-color: #000000;
}

.social-icon-lg.threads {
    background-color: #000000;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
    .contact-hero h1 {
        font-size: 36px;
    }

    .contact-card {
        padding: 40px 20px;
    }
}

@media (max-width: 500px) {
    .contact-options-grid {
        grid-template-columns: 1fr;
    }

    .contact-option-card {
        flex-direction: row;
        text-align: left;
        align-items: center;
        padding: 20px;
    }

    .text-content {
        flex: 1;
        padding-right: 10px;
    }

    .icon-wrapper {
        margin-bottom: 0;
        margin-right: 20px;
        width: 50px;
        height: 50px;
        font-size: 24px;
    }

    .contact-option-card h3 {
        margin-bottom: 5px;
        font-size: 18px;
    }

    .contact-option-card p {
        margin-bottom: 0;
        font-size: 14px;
    }

    .action-text {
        margin-left: auto;
        font-size: 20px;
    }

    /* Hide text in action-text on mobile, show arrow only */
    .action-text {
        font-size: 0;
    }

    .action-text::after {
        content: '\f054';
        /* FontAwesome right chevron */
        font-family: "Font Awesome 6 Free";
        font-weight: 900;
        font-size: 16px;
    }
}