/* Contact Page Styling */
#contact-page {
    display: flex;
    align-items: flex-start;
    padding-top: 5em;
}

.page-title {
    text-align: center;
    margin-bottom: 3em;
}

.page-title h1 {
    font-family: "devil breeze";
    font-size: clamp(2.5rem, 6vw, 6rem);
    color: hsl(75, 100%, 64%);
}

.page-title p {
    font-size: clamp(1rem, 1vw + 0.8rem, 1.2rem);
    color: #ccc;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3em;
    width: 100%;
}

/* Contact Info */
.contact-info table {
    width: 100%;
    font-size: clamp(1rem, 1vw + 0.8rem, 1.2rem);
    border-collapse: collapse;
}

.contact-info td {
    padding: 1em 0;
    border-bottom: 1px dashed #445022;
}

.contact-info td:first-child {
    font-weight: 600;
    text-align: left;
}

.contact-info td:last-child {
    text-align: right;
}

.contact-info a {
    color: hsl(75, 100%, 64%);
    text-decoration: none;
}

.contact-info a:hover {
    color: #cc85e4;
}

/* WhatsApp CTA */
.contact-cta {
    display: flex;
    justify-content: center;
    align-items: center;
}

.whatsapp-card {
    background: linear-gradient(145deg, rgba(27, 27, 27, 0.8), rgba(15, 15, 15, 0.95));
    border: 1px solid rgba(204, 255, 68, 0.15);
    border-radius: 20px;
    padding: 3em;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(16px);
    width: 100%;
}

.whatsapp-card h3 {
    color: hsl(75, 100%, 64%); /* Main lime green */
    font-size: 2rem;
    margin-bottom: 0.5em;
    font-family: "devil breeze";
}

.whatsapp-card p {
    color: #eef8ce; /* Main cream text color */
    margin-bottom: 2em;
    line-height: 1.6;
    font-size: 1.1rem;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: #25D366; /* Official WhatsApp Green */
    color: #fff;
    font-weight: 600;
    font-size: 1.2rem;
    padding: 1em 2em;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
}

.whatsapp-btn:hover {
    transform: translateY(-5px);
    background: #128C7E;
    box-shadow: 0 15px 25px rgba(37, 211, 102, 0.4);
    color: #fff;
}

.whatsapp-btn svg {
    width: 28px;
    height: 28px;
}

/* Responsive */
@media screen and (min-width: 768px) {
    #contact-page {
        padding-top: 8em;
    }

    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }
}