/* IMPORT FONTS (MUST BE AT TOP) */
@import url('https://fonts.googleapis.com/css2?family=Sora:wght@400;600;700&family=Manrope:wght@400;500;600&display=swap');

/* GLOBAL SETTINGS */
:root {
    --primary: #1db954;
    --black: #111;
    --gray: #666;
    --light-gray: #f5f5f5;
    --white: #fff;
}

/* RESET */
* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
}

/* DEFAULT TEXT → MANROPE */
body {
    font-family: 'Manrope', sans-serif;
    background: var(--white);
    color: var(--black);
}

/* HEADINGS → SORA */
h1, h2, h3 {
    font-family: 'Sora', sans-serif;
}

/* HEADER */
.header {
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--light-gray);
}

.nav-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 15px;
    height: 70px;
    position: relative;
}

.logo-wrapper {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.logo-img {
    height: 90px;
    width: auto;
    object-fit: contain;
}

.back-icon { 
    font-size: 20px; 
    color: var(--black); 
    text-decoration: none; 
    z-index: 10; 
}

.header-spacer { 
    width: 25px; 
}

/* CONTACT PAGE */
.contact-container {
    max-width: 500px;
    margin: 0 auto;
    padding: 40px 20px;
    text-align: center;
}

/* HEADING → SORA */
.contact-header h1 { 
    font-size: 28px; 
    margin-bottom: 10px; 
}

/* SUBTEXT → MANROPE */
.contact-header p { 
    color: var(--gray); 
    margin-bottom: 40px; 
    font-family: 'Manrope', sans-serif;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 50px;
}

.contact-card {
    display: flex;
    align-items: center;
    padding: 20px;
    background: var(--white);
    border: 1px solid var(--light-gray);
    border-radius: 12px;
    text-decoration: none;
    color: var(--black);
}

.icon-box {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-right: 15px;
}

.icon-box.whatsapp { background: #e8f5e9; color: #25d366; }
.icon-box.email { background: #e3f2fd; color: #2196f3; }

.text-box { 
    text-align: left; 
}

/* LABEL → MANROPE */
.text-box span { 
    font-size: 12px; 
    color: var(--gray); 
    display: block; 
    font-family: 'Manrope', sans-serif;
}

/* VALUE → SLIGHTLY STRONG (CAN USE SORA OR KEEP MANROPE) */
.text-box p { 
    font-size: 16px; 
    font-weight: 600; 
}

/* CTA BUTTON */
.cta-btn {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 16px 40px;
    border-radius: 30px;
    text-decoration: none;
    margin-top: 30px;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(29, 185, 84, 0.3);
}