/* ================= VARIABLES ================= */
:root {
    --bg-main: #fafafa;
    --bg-alt: #ffffff;
    --bg-dark: #111;

    --text-main: #111;
    --text-muted: #555;
    --text-light: #ffffff;

    --border-soft: #e5e5e5;
    --highlight-bg: #111;
}

/* ================= DARK MODE ================= */
@media (prefers-color-scheme: dark) {
    :root {
        --bg-main: #0b0b0b;
        --bg-alt: #141414;
        --bg-dark: #000;

        --text-main: #f5f5f5;
        --text-muted: #bdbdbd;

        --border-soft: #2a2a2a;
        --highlight-bg: #1c1c1c;
    }
}

/* ================= HERO ================= */
.policy-hero {
    min-height: 55vh;
    background: linear-gradient(
        135deg,
        rgba(0,0,0,0.75),
        rgba(0,0,0,0.4)
    );
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.policy-hero-content {
    color: var(--text-light);
}

.policy-hero h1 {
    font-size: 3rem;
    letter-spacing: 2px;
}

.policy-hero p {
    margin-top: 12px;
    opacity: 0.9;
}

/* ================= CONTENT ================= */
.policy-section {
    background: var(--bg-main);
    padding: 80px 20px;
}

.policy-container {
    max-width: 900px;
    margin: auto;
    background: var(--bg-alt);
    padding: 60px;
    border-radius: 18px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.08);
}

.updated {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.policy-block {
    margin-bottom: 45px;
}

.policy-block h2 {
    font-size: 1.6rem;
    margin-bottom: 12px;
    color: var(--text-main);
}

.policy-block p {
    line-height: 1.9;
    font-size: 1rem;
    color: var(--text-muted);
}

/* ================= FORM ================= */
.contact-form {
    display: grid;
    gap: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 500;
    color: var(--text-main);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 14px;
    border-radius: 10px;
    border: 1px solid var(--border-soft);
    background: transparent;
    color: var(--text-main);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--text-main);
}

/* BUTTON */
.submit-btn {
    margin-top: 10px;
    padding: 14px;
    border: none;
    border-radius: 12px;
    background: var(--text-main);
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
}

.submit-btn:hover {
    opacity: 0.9;
}

/* ================= HIGHLIGHT ================= */
.policy-block.highlight {
    background: var(--highlight-bg);
    color: var(--text-light);
    padding: 35px;
    border-radius: 14px;
}

.policy-block.highlight h2,
.policy-block.highlight p {
    color: var(--text-light);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
    .policy-container {
        padding: 35px 25px;
    }

    .policy-hero h1 {
        font-size: 2.3rem;
    }
}
.success-msg {
    margin-top: 15px;
    color: green;
    font-weight: 500;
}
small {
    color: #d9534f;
}
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: #25D366;
    color: #fff;
    font-size: 24px;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
    z-index: 999;
}
