/* Contact Us Page Styles */

/* Main Content */
.contact-main {
    background-color: #ffffff;
    min-height: calc(100vh - 60px);
    padding: 60px 20px 80px;
}

.contact-container {
    max-width: 900px;
    margin: 0 auto;
}

/* Communication Illustration */
.communication-illustration {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.communication-image {
    display: block;
    margin: 0 auto;
    max-width: 250px;
    width: 100%;
    height: auto;
}

/* Contact Information Text */
.contact-info-text {
    text-align: center;
    margin-bottom: 40px;
}

.contact-heading {
    font-size: 18px;
    font-weight: 600;
    color: #333333;
    line-height: 1.6;
    margin-bottom: 25px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.service-details {
    max-width: 650px;
    margin: 0 auto;
}

.service-item {
    font-size: 14px;
    line-height: 1.8;
    color: #555555;
    margin-bottom: 10px;
    text-align: center;
}

.service-item strong {
    color: #000000;
    font-weight: 600;
}

/* Contact Method Buttons */
.contact-methods {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 50px;
    padding: 0 20px;
}

.contact-method-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    color: #ffffff;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    min-width: 150px;
    justify-content: center;
}

.contact-method-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
}

.contact-method-btn svg {
    flex-shrink: 0;
}

/* Button Colors */
.whatsapp-btn {
    background-color: #25D366;
}

.whatsapp-btn:hover {
    background-color: #20BA5A;
}

.telegram-btn {
    background-color: #0088cc;
}

.telegram-btn:hover {
    background-color: #006699;
}

.online-cs-btn {
    background-color: #FFA726;
}

.online-cs-btn:hover {
    background-color: #FB8C00;
}

.email-btn {
    background-color: #5E81F4;
}

.email-btn:hover {
    background-color: #4267D6;
}

/* Contact Card Section */
.contact-card-section {
    margin-top: 50px;
}

.contact-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 1px solid #dee2e6;
    border-radius: 12px;
    padding: 30px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.card-left {
    flex: 0 0 auto;
}

.card-title {
    font-size: 22px;
    font-weight: 700;
    color: #000000;
    margin: 0 0 8px 0;
}

.card-subtitle {
    font-size: 14px;
    color: #666666;
    margin: 0;
}

.card-center {
    flex: 0 0 auto;
}

.profile-image {
    display: block;
    margin: 0 auto;
    max-width: 100px;
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.card-right {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 20px;
}

.hello-banner {
    background: linear-gradient(135deg, #FFF9E6 0%, #FFE8B3 100%);
    border: 2px solid #FFD700;
    border-radius: 8px;
    padding: 15px 20px;
    flex: 1;
}

.hello-text {
    font-size: 20px;
    font-weight: 800;
    color: #FF9800;
    margin: 0 0 8px 0;
    letter-spacing: 1px;
}

.hello-message {
    font-size: 13px;
    line-height: 1.6;
    color: #333333;
    margin: 0;
}

.decorative-graphic {
    flex: 0 0 auto;
    text-align: center;
}

.decorative-image {
    display: block;
    max-width: 120px;
    width: 100%;
    height: auto;
}

/* Footer */
.footer {
    background-color: #000000;
    color: #ffffff;
    padding: 50px 20px 25px;
    border-top: 1px solid #1a1a1a;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 30px;
}

.footer-column h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: #888888;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #c4ff0d;
}

.footer-column p {
    color: #888888;
    font-size: 13px;
    line-height: 1.8;
    margin-bottom: 8px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #1a1a1a;
}

.footer-bottom p {
    color: #666666;
    font-size: 13px;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 992px) {
    .contact-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 30px 25px;
    }

    .card-left,
    .card-center,
    .card-right {
        width: 100%;
    }

    .card-right {
        flex-direction: column;
    }

    .hello-banner {
        width: 100%;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .contact-main {
        padding: 40px 15px 60px;
    }

    .contact-heading {
        font-size: 16px;
    }

    .service-item {
        font-size: 13px;
    }

    .contact-methods {
        gap: 12px;
    }

    .contact-method-btn {
        padding: 12px 20px;
        font-size: 14px;
        min-width: 140px;
    }

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

    .card-title {
        font-size: 20px;
    }

    .hello-text {
        font-size: 18px;
    }

    .hello-message {
        font-size: 12px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .contact-main {
        padding: 30px 10px 50px;
    }

    .contact-container {
        max-width: 100%;
    }

    .communication-image {
        max-width: 180px;
    }

    .contact-heading {
        font-size: 14px;
        line-height: 1.5;
        margin-bottom: 20px;
    }

    .service-item {
        font-size: 12px;
        margin-bottom: 8px;
    }

    .contact-methods {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        padding: 0 10px;
    }

    .contact-method-btn {
        width: 100%;
        max-width: 100%;
        margin: 0;
        padding: 12px 20px;
        font-size: 14px;
    }

    .contact-method-btn svg {
        width: 20px;
        height: 20px;
    }

    .contact-card {
        padding: 20px 12px;
        gap: 20px;
    }

    .card-title {
        font-size: 16px;
        margin-bottom: 6px;
    }

    .card-subtitle {
        font-size: 12px;
    }

    .profile-image {
        max-width: 70px;
    }

    .hello-banner {
        padding: 12px 15px;
    }

    .hello-text {
        font-size: 16px;
        margin-bottom: 6px;
    }

    .hello-message {
        font-size: 11px;
        line-height: 1.5;
    }

    .decorative-image {
        max-width: 80px;
    }

    .footer-content {
        gap: 25px;
    }

    .footer-column h4 {
        font-size: 14px;
        margin-bottom: 15px;
    }

    .footer-column ul li {
        margin-bottom: 10px;
    }

    .footer-column ul li a,
    .footer-column p {
        font-size: 12px;
    }
}

/* Extra small phones */
@media (max-width: 360px) {
    .contact-main {
        padding: 20px 8px 40px;
    }

    .communication-illustration svg {
        width: 120px;
        height: 120px;
    }

    .contact-heading {
        font-size: 13px;
    }

    .service-item {
        font-size: 11px;
    }

    .contact-method-btn {
        padding: 10px 16px;
        font-size: 13px;
    }

    .contact-card {
        padding: 15px 10px;
    }

    .card-title {
        font-size: 15px;
    }

    .hello-text {
        font-size: 14px;
    }

    .hello-message {
        font-size: 10px;
    }
}

