/* =========================================================
   RADHA RANI PUJA SERVICES
   Global Design System
   ========================================================= */

:root {
    --primary: #7a1230;
    --primary-dark: #560b21;
    --secondary: #c69232;
    --gold-light: #e7c878;

    --bg: #fffaf2;
    --bg-soft: #fff4df;
    --surface: #ffffff;

    --text: #241817;
    --text-soft: #6e625e;
    --border: #eadfce;

    --success: #168a4b;
    --white: #ffffff;

    --container: 1180px;

    --shadow-sm: 0 5px 20px rgba(70, 35, 15, 0.08);
    --shadow-md: 0 12px 35px rgba(70, 35, 15, 0.12);

    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;

    --transition: 0.25s ease;
}

/* =========================
   RESET
   ========================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
select,
textarea {
    font: inherit;
}

/* =========================
   CONTAINER
   ========================= */

.container {
    width: min(100% - 32px, var(--container));
    margin-inline: auto;
}

/* =========================
   TYPOGRAPHY
   ========================= */

h1,
h2,
h3,
h4 {
    line-height: 1.2;
    font-weight: 700;
}

h1 {
    font-size: clamp(2.2rem, 5vw, 4.2rem);
}

h2 {
    font-size: clamp(1.8rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.25rem, 2vw, 1.6rem);
}

p {
    color: var(--text-soft);
}

/* =========================
   SECTION
   ========================= */

.section {
    padding: 90px 0;
}

.section-heading {
    max-width: 720px;
    margin: 0 auto 50px;
    text-align: center;
}

.section-heading h2 {
    margin-bottom: 14px;
}

.section-heading p {
    font-size: 1.05rem;
}

/* =========================
   BUTTONS
   ========================= */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;

    min-height: 50px;
    padding: 0 24px;

    border: 0;
    border-radius: 999px;

    font-weight: 700;
    cursor: pointer;

    transition:
        transform var(--transition),
        box-shadow var(--transition),
        background var(--transition);
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    background: var(--primary-dark);
    box-shadow: var(--shadow-md);
}

.btn-whatsapp {
    background: var(--success);
    color: var(--white);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 1px solid var(--primary);
}

.btn-gold {
    background: var(--secondary);
    color: var(--white);
}

/* =========================
   CARDS
   ========================= */

.card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

/* =========================
   BADGE
   ========================= */

.badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;

    padding: 7px 14px;

    border-radius: 999px;

    background: var(--bg-soft);
    color: var(--primary);

    font-size: 0.9rem;
    font-weight: 700;
}

/* =========================
   FORM ELEMENTS
   ========================= */

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    margin-bottom: 7px;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;

    min-height: 50px;
    padding: 12px 15px;

    background: var(--white);
    color: var(--text);

    border: 1px solid var(--border);
    border-radius: var(--radius-sm);

    outline: none;

    transition: border-color var(--transition),
                box-shadow var(--transition);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(198, 146, 50, 0.12);
}

/* =========================
   VISIBILITY
   ========================= */

.hidden {
    display: none !important;
}

/* =========================
   ACCESSIBILITY
   ========================= */

:focus-visible {
    outline: 3px solid var(--gold-light);
    outline-offset: 3px;
}

/* =========================
   MOBILE
   ========================= */

@media (max-width: 768px) {

    .container {
        width: min(100% - 24px, var(--container));
    }

    .section {
        padding: 65px 0;
    }

    .section-heading {
        margin-bottom: 35px;
    }

    .btn {
        min-height: 48px;
        padding: 0 19px;
    }
}