*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --primary: #0d6e3f;
    --primary-dark: #094d2c;
    --primary-light: #e8f5ee;
    --accent: #f59e0b;
    --accent-hover: #d97706;
    --text: #1a1a2e;
    --text-light: #64748b;
    --white: #ffffff;
    --bg: #f8fafc;
    --border: #e2e8f0;
    --card-shadow: 0 4px 24px rgba(0,0,0,0.08);
    --card-hover-shadow: 0 12px 40px rgba(0,0,0,0.12);
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* HEADER */
header {
    background: var(--white);
    border-bottom: 1px solid rgba(0,0,0,0.06);
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(12px);
    background: rgba(255,255,255,0.95);
}
.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}
.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}
.logo svg { width: 36px; height: 36px; }
.logo span { color: var(--accent); }
nav a {
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.2s;
}
nav a:hover,
nav a.active { background: var(--primary-light); color: var(--primary); }

/* PAGE HERO */
.page-hero {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, #10b981 100%);
    color: var(--white);
    padding: 60px 24px 80px;
    position: relative;
    overflow: hidden;
    text-align: center;
}
.page-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
    border-radius: 50%;
}
.page-hero-inner {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
.page-hero .tag {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}
.page-hero h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}
.page-hero p {
    font-size: 1.1rem;
    opacity: 0.9;
    line-height: 1.7;
    max-width: 550px;
    margin: 0 auto;
}

/* CONTACT SECTION */
.contact-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 24px 80px;
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 40px;
    align-items: start;
}

/* CONTACT INFO CARDS */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.info-card {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: var(--white);
    padding: 28px;
    border-radius: 16px;
    box-shadow: var(--card-shadow);
    border: 1px solid var(--border);
    transition: all 0.3s;
}
.info-card:hover {
    border-color: var(--primary);
    box-shadow: var(--card-hover-shadow);
}
.info-icon {
    width: 52px;
    height: 52px;
    background: var(--primary-light);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.info-icon svg { width: 26px; height: 26px; color: var(--primary); }
.info-card h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 4px;
}
.info-card p {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 4px;
}
.info-card p a {
    color: var(--primary);
    text-decoration: none;
    transition: opacity 0.2s;
}
.info-card p a:hover { opacity: 0.8; }
.info-card span {
    font-size: 0.85rem;
    color: var(--text-light);
}

.btn-messenger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #0084ff;
    color: var(--white);
    font-weight: 700;
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s;
    box-shadow: 0 4px 16px rgba(0,132,255,0.3);
    margin-top: 4px;
}
.btn-messenger:hover {
    background: #006bcc;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,132,255,0.4);
}
.btn-messenger svg { width: 22px; height: 22px; }

/* MAP */
.contact-map {
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--card-shadow);
    border: 1px solid var(--border);
    overflow: hidden;
}
.contact-map h2 {
    font-size: 1.2rem;
    font-weight: 700;
    padding: 24px 28px 0;
    margin-bottom: 16px;
}
.map-wrapper {
    width: 100%;
    height: 420px;
}
.map-wrapper iframe {
    width: 100%;
    height: 100%;
    display: block;
}
.map-address {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 18px 28px;
    font-size: 0.95rem;
    color: var(--text-light);
    border-top: 1px solid var(--border);
}
.map-address svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    color: var(--primary);
}

/* FOOTER */
footer {
    background: var(--primary-dark);
    color: var(--white);
    padding: 60px 24px 32px;
}
.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
}
.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}
.footer-brand .logo { color: var(--white); font-size: 1.3rem; margin-bottom: 16px; }
.footer-brand p { opacity: 0.8; font-size: 0.9rem; line-height: 1.7; max-width: 360px; }
footer h5 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
    color: var(--white);
    opacity: 0.75;
    text-decoration: none;
    font-size: 0.9rem;
    transition: opacity 0.2s;
}
.footer-links a:hover { opacity: 1; }
.footer-contact li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 0.9rem;
    opacity: 0.85;
}
.footer-contact svg { width: 18px; height: 18px; flex-shrink: 0; opacity: 0.7; }
.footer-contact a { color: inherit; text-decoration: none; opacity: 0.85; transition: opacity 0.2s; }
.footer-contact a:hover { opacity: 1; text-decoration: underline; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.15);
    padding-top: 24px;
    text-align: center;
    font-size: 0.85rem;
    opacity: 0.6;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .contact-grid { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr; gap: 32px; }
    .header-inner { height: 60px; }
    nav { display: none; }
    .page-hero { padding: 40px 24px 60px; }
    .map-wrapper { height: 300px; }
    .info-card { padding: 20px; }
}
