:root {
    --primary-color: #B89265;
    --secondary-color: #B89265;
    --text-color: #fff;
    --light-gray: #1a1a1a;
    --spacing-unit: 2rem;
}

body {
    font-family: 'Kanit', sans-serif;
}

/* Hero Section - Matching about page style */
.contact-hero {
    text-align: center;
    padding: 4rem 2rem;
    margin-bottom: var(--spacing-unit);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #1a1a1a;
}

.contact-hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-color);
    max-width: 600px;
    line-height: 1.2;
    font-family: 'Kanit', sans-serif;
}

.contact-hero .hero-subtitle {
    font-size: 1.4rem;
    font-weight: 200;
    color: var(--text-color);
    max-width: 500px;
    line-height: 1.4;
    margin: 0 auto;
    font-family: 'Kanit', sans-serif;
}

/* Responsive Design for Hero */
@media (max-width: 768px) {
    .contact-hero {
        padding: 3rem 1.5rem;
    }

    .contact-hero h1 {
        font-size: 2rem;
        letter-spacing: 1.5px;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .contact-hero {
        padding: 2rem 1rem;
    }

    .contact-hero h1 {
        font-size: 1.8rem;
        letter-spacing: 1px;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }
}

.contact-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    margin-bottom: 100px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

@media (min-width: 768px) {
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.contact-card {
    background-color: #1a1a1a;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
}

.contact-card h2 {
    color: #B89265;
    margin-bottom: 20px;
    font-family: 'Kanit', sans-serif;
    font-weight: 600;
}

.contact-card .highlight {
    color: #f4f4f4;
    font-size: 1.1em;
    margin-bottom: 15px;
    font-family: 'Kanit', sans-serif;
    font-weight: 500;
}

.contact-card p {
    margin-bottom: 10px;
    color: #f4f4f4;
    font-family: 'Kanit', sans-serif;
    font-weight: 300;
}

.map-section {
    margin: 40px 0 100px 0;
    text-align: center;
}

.map-section h2 {
    color: #B89265;
    margin-bottom: 20px;
}

.map-container {
    width: 100%;
    height: 600px;
    margin: 20px 0;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 8px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.social-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    transition: transform 0.2s;
    font-family: 'Kanit', sans-serif;
}

.social-button:hover {
    transform: translateY(-3px);
}

.facebook {
    background-color: #1877f2;
}

.instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.tiktok {
    background-color: #000000;
    border: 1px solid #ffffff;
}

@media (max-width: 768px) {
    .contact-grid {
        gap: 20px;
    }

    .social-links {
        flex-direction: column;
    }

    .map-container {
        height: 600px;
    }
}

.whatsapp-link {
    color: #25D366;
    text-decoration: none;
    transition: opacity 0.2s;
}

.whatsapp-link:hover {
    opacity: 0.8;
}

.cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #222;
    padding: 16px 8px;
    z-index: 1000;
}