/* =========================================================
   MAHARANA PRATAP JANVISTAR FOUNDATION
   Main Stylesheet
   ========================================================= */

/* =========================================================
   1. ROOT VARIABLES
   ========================================================= */

:root {
    /* Brand */
    --primary: #7a1f12;
    --primary-dark: #54150c;
    --primary-light: #9a2c1b;

    --accent: #d99a27;
    --accent-dark: #b97b16;
    --accent-light: #efc66f;

    /* Text */
    --dark: #171717;
    --text: #4a4a4a;
    --muted: #707070;
    --white: #ffffff;

    /* Backgrounds */
    --light: #f8f5ef;
    --cream: #fcfaf6;
    --surface: #ffffff;

    /* Borders */
    --border: #e8e1d5;
    --border-dark: #d8cdbb;

    /* Layout */
    --header-height: 88px;
    --container-width: 1160px;
    --section-space: clamp(72px, 8vw, 112px);

    /* Radius */
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 14px;
    --radius-xl: 20px;

    /* Shadows */
    --shadow-sm: 0 3px 12px rgba(23, 23, 23, 0.06);
    --shadow-md: 0 10px 30px rgba(23, 23, 23, 0.09);
    --shadow-lg: 0 20px 55px rgba(23, 23, 23, 0.13);

    /* Motion */
    --transition: 180ms ease;
    --transition-slow: 350ms ease;

    /* Typography */
    --font-body: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --font-heading: "Playfair Display", Georgia, serif;
}


/* =========================================================
   2. RESET
   ========================================================= */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
    margin: 0;
    padding: 0;
    background: var(--white);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

svg {
    max-width: 100%;
}

button,
input,
textarea,
select {
    font: inherit;
}

button {
    cursor: pointer;
}

a {
    color: inherit;
    text-decoration: none;
}

p {
    margin-top: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 0;
    color: var(--dark);
    font-family: var(--font-heading);
    line-height: 1.2;
    text-wrap: balance;
}

ul,
ol {
    margin-top: 0;
}

::selection {
    background: var(--accent);
    color: var(--dark);
}


/* =========================================================
   3. ACCESSIBILITY
   ========================================================= */

:focus-visible {
    outline: 3px solid rgba(217, 154, 39, 0.65);
    outline-offset: 4px;
}

.skip-link {
    position: fixed;
    top: -100px;
    left: 20px;
    z-index: 9999;
    padding: 10px 16px;
    background: var(--primary);
    color: var(--white);
    border-radius: var(--radius-sm);
    font-weight: 700;
    transition: top var(--transition);
}

.skip-link:focus {
    top: 20px;
}


/* =========================================================
   4. CONTAINER
   ========================================================= */

.container {
    width: min(100% - 40px, var(--container-width));
    margin-inline: auto;
}


/* =========================================================
   5. HEADER
   ========================================================= */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    min-height: var(--header-height);
    background: rgba(255, 255, 255, 0.94);
    border-bottom: 1px solid rgba(232, 225, 213, 0.9);
    box-shadow: 0 3px 18px rgba(23, 23, 23, 0.05);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.navbar {
    min-height: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.logo {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    min-width: 0;
}

.logo-mark {
    display: flex;
    align-items: center;
    justify-content: center;
    width: clamp(82px, 12vw, 170px);
    min-height: 60px;
}

.logo-image {
    display: block;
    width: 100%;
    max-width: 170px;
    height: auto;
    object-fit: contain;
}

.logo-text {
    display: none;
    margin-left: 12px;
    color: var(--primary);
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    line-height: 1.15;
}


/* =========================================================
   6. DESKTOP NAVIGATION
   ========================================================= */

.main-navigation {
    display: flex;
    align-items: center;
    margin-left: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 4px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-links a {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 8px 13px;
    color: var(--dark);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.01em;
    border-radius: var(--radius-sm);
    transition:
        color var(--transition),
        background-color var(--transition);
}

.nav-links a::after {
    content: "";
    position: absolute;
    right: 13px;
    bottom: 3px;
    left: 13px;
    height: 2px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform var(--transition);
}

.nav-links a:hover,
.nav-links a:focus-visible {
    color: var(--primary);
    background: rgba(122, 31, 18, 0.04);
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
    transform: scaleX(1);
}

.nav-links .nav-cta {
    margin-left: 8px;
    padding-inline: 18px;
    background: var(--primary);
    color: var(--white);
    border-radius: 999px;
}

.nav-links .nav-cta::after {
    display: none;
}

.nav-links .nav-cta:hover,
.nav-links .nav-cta:focus-visible {
    background: var(--primary-dark);
    color: var(--white);
}


/* =========================================================
   7. MOBILE MENU BUTTON
   ========================================================= */

.mobile-menu-toggle {
    display: none;
    position: relative;
    width: 46px;
    height: 46px;
    padding: 10px;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: var(--white);
    touch-action: manipulation;
}

.mobile-menu-toggle span {
    display: block;
    width: 23px;
    height: 2px;
    margin: 5px auto;
    background: var(--primary);
    border-radius: 10px;
    transition:
        transform var(--transition),
        opacity var(--transition);
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}


/* =========================================================
   8. HERO
   ========================================================= */

.hero {
    position: relative;
    display: flex;
    align-items: center;
    min-height: min(760px, calc(100vh - var(--header-height)));
    padding: 100px 0;
    overflow: hidden;

    /* IMPORTANT:
       CSS file is /assets/css/styles.css
       Image is /assets/images/hero.jpg
    */
    background:
        linear-gradient(
            90deg,
            rgba(44, 12, 7, 0.90) 0%,
            rgba(75, 18, 10, 0.78) 42%,
            rgba(75, 18, 10, 0.35) 75%,
            rgba(75, 18, 10, 0.18) 100%
        ),
        url("/hero.jpg") center center / cover no-repeat;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(
            circle at 85% 45%,
            rgba(217, 154, 39, 0.18),
            transparent 34%
        );
}

.hero-content {
    position: relative;
    z-index: 1;
    width: min(760px, 100%);
    color: var(--white);
}

.hero-badge,
.badge,
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    padding: 7px 13px;
    border: 1px solid rgba(239, 198, 111, 0.55);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--accent-light);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    line-height: 1.3;
    text-transform: uppercase;
}

.hero h1 {
    max-width: 850px;
    margin-bottom: 22px;
    color: var(--white);
    font-size: clamp(42px, 6vw, 76px);
    font-weight: 700;
    letter-spacing: -0.025em;
}

.hero-description {
    max-width: 690px;
    margin-bottom: 32px;
    color: rgba(255, 255, 255, 0.90);
    font-size: clamp(17px, 2vw, 20px);
    line-height: 1.75;
}

.hero p {
    color: rgba(255, 255, 255, 0.90);
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 34px;
}

.hero-values {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 24px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.hero-values li {
    position: relative;
    padding-left: 20px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 14px;
    font-weight: 600;
}

.hero-values li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-light);
    font-weight: 800;
}


/* =========================================================
   9. BUTTONS
   ========================================================= */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 11px 22px;
    border: 2px solid transparent;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    transition:
        transform var(--transition),
        background-color var(--transition),
        border-color var(--transition),
        color var(--transition),
        box-shadow var(--transition);
}

.btn:hover {
    transform: translateY(-2px);
}

.btn:active {
    transform: translateY(0);
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 8px 20px rgba(84, 21, 12, 0.20);
}

.btn-primary:hover,
.btn-primary:focus-visible {
    background: var(--primary-dark);
    color: var(--white);
    box-shadow: 0 12px 28px rgba(84, 21, 12, 0.28);
}

.btn-outline {
    border-color: var(--primary);
    background: transparent;
    color: var(--primary);
}

.btn-outline:hover,
.btn-outline:focus-visible {
    background: var(--primary);
    color: var(--white);
}

.btn-light {
    border-color: rgba(255, 255, 255, 0.55);
    background: var(--white);
    color: var(--primary);
}

.btn-light:hover,
.btn-light:focus-visible {
    border-color: var(--white);
    background: var(--accent);
    color: var(--dark);
}


/* =========================================================
   10. GENERAL SECTIONS
   ========================================================= */

.section {
    padding: var(--section-space) 0;
    background: var(--white);
}

.section-light {
    background: var(--light);
}

.section-heading {
    max-width: 760px;
    margin: 0 auto 48px;
    text-align: center;
}

.section-heading .section-label {
    margin-bottom: 14px;
    border: 0;
    background: transparent;
    color: var(--primary);
    padding: 0;
}

.section-heading h2 {
    margin-bottom: 16px;
    font-size: clamp(32px, 4vw, 48px);
}

.section-heading p {
    margin-bottom: 0;
    color: var(--muted);
    font-size: 17px;
}


/* =========================================================
   11. TWO COLUMN / INFORMATION
   ========================================================= */

.two-column {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
    gap: clamp(30px, 6vw, 80px);
    align-items: start;
}

.info-card {
    position: relative;
    padding: clamp(26px, 4vw, 38px);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: var(--surface);
    box-shadow: var(--shadow-sm);
}

.info-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 28px;
    width: 60px;
    height: 4px;
    background: var(--accent);
    border-radius: 0 0 6px 6px;
}

.info-card h3 {
    margin-bottom: 14px;
    color: var(--primary);
    font-size: 26px;
}

.info-card p:last-child {
    margin-bottom: 0;
}

.info-card ul {
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
}

.info-card li {
    position: relative;
    padding: 8px 0 8px 28px;
}

.info-card li::before {
    content: "✓";
    position: absolute;
    top: 8px;
    left: 0;
    color: var(--primary);
    font-weight: 800;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--primary);
    font-weight: 700;
    transition: color var(--transition);
}

.text-link::after {
    content: "→";
    transition: transform var(--transition);
}

.text-link:hover {
    color: var(--accent-dark);
}

.text-link:hover::after {
    transform: translateX(4px);
}


/* =========================================================
   12. ABOUT
   ========================================================= */

.about-content {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.8fr);
    gap: clamp(32px, 6vw, 76px);
    align-items: center;
}

.about-content h2 {
    margin-bottom: 18px;
    font-size: clamp(32px, 4vw, 48px);
}

.about-content p {
    color: var(--text);
}

.about-highlight {
    display: grid;
    gap: 14px;
}

.about-highlight-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 20px;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition:
        transform var(--transition),
        box-shadow var(--transition);
}

.about-highlight-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.about-highlight-item strong {
    display: block;
    margin-bottom: 3px;
    color: var(--primary);
}

.about-highlight-item p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
}


/* =========================================================
   13. CARDS
   ========================================================= */

.cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.card {
    height: 100%;
    padding: 30px;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition:
        transform var(--transition-slow),
        box-shadow var(--transition-slow),
        border-color var(--transition);
}

.card:hover {
    transform: translateY(-6px);
    border-color: rgba(217, 154, 39, 0.55);
    box-shadow: var(--shadow-lg);
}

.card h3 {
    margin-bottom: 10px;
    color: var(--primary);
    font-size: 23px;
}

.card p:last-child {
    margin-bottom: 0;
}

.card-icon,
.initiative-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    margin-bottom: 20px;
    border-radius: 50%;
    background: rgba(122, 31, 18, 0.08);
    color: var(--primary);
    font-size: 22px;
    font-weight: 700;
}


/* =========================================================
   14. PURPOSE
   ========================================================= */

.card-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    margin-bottom: 18px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    font-size: 13px;
    font-weight: 800;
}

.purpose-list {
    display: grid;
    gap: 12px;
    margin: 24px 0 0;
    padding: 0;
    list-style: none;
}

.purpose-list li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 13px 15px;
    border-radius: var(--radius-md);
    background: var(--light);
}

.purpose-list li::before {
    content: "✓";
    flex-shrink: 0;
    color: var(--primary);
    font-weight: 800;
}


/* =========================================================
   15. IMPACT STRIP
   ========================================================= */

.impact-strip {
    position: relative;
    padding: 38px 0;
    background: var(--primary);
    color: var(--white);
    overflow: hidden;
}

.impact-strip::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            circle at 10% 50%,
            rgba(217, 154, 39, 0.16),
            transparent 28%
        );
    pointer-events: none;
}

.impact-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.impact-item {
    padding: 10px 20px;
    text-align: center;
}

.impact-item + .impact-item {
    border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.impact-item strong {
    display: block;
    margin-bottom: 4px;
    color: var(--accent-light);
    font-family: var(--font-heading);
    font-size: clamp(30px, 4vw, 44px);
    line-height: 1.1;
}

.impact-item span {
    color: rgba(255, 255, 255, 0.82);
    font-size: 13px;
    font-weight: 600;
}


/* =========================================================
   16. MISSION
   ========================================================= */

#mission {
    background: var(--cream);
}

.mission-intro {
    max-width: 780px;
    margin: -20px auto 44px;
    color: var(--muted);
    text-align: center;
    font-size: 17px;
}

.mission-card {
    position: relative;
    height: 100%;
    padding: 32px;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: var(--white);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition:
        transform var(--transition-slow),
        box-shadow var(--transition-slow);
}

.mission-card::after {
    content: "";
    position: absolute;
    right: -35px;
    bottom: -35px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(217, 154, 39, 0.07);
}

.mission-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.mission-card .card-icon {
    background: rgba(217, 154, 39, 0.14);
    color: var(--accent-dark);
}


/* =========================================================
   17. HERITAGE
   ========================================================= */

.heritage-section {
    position: relative;
    padding: var(--section-space) 0;
    background:
        linear-gradient(
            135deg,
            #5b170e 0%,
            #7a1f12 55%,
            #54150c 100%
        );
    color: var(--white);
    overflow: hidden;
}

.heritage-section::before {
    content: "PRATAP";
    position: absolute;
    right: -30px;
    bottom: -50px;
    color: rgba(255, 255, 255, 0.035);
    font-family: var(--font-heading);
    font-size: clamp(120px, 22vw, 300px);
    font-weight: 700;
    line-height: 1;
    pointer-events: none;
}

.heritage-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin-inline: auto;
    text-align: center;
}

.heritage-content h2 {
    margin-bottom: 18px;
    color: var(--white);
    font-size: clamp(34px, 5vw, 54px);
}

.heritage-content > p {
    color: rgba(255, 255, 255, 0.82);
}

.quote-card {
    position: relative;
    margin: 38px auto 0;
    padding: clamp(30px, 5vw, 55px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.07);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    backdrop-filter: blur(6px);
}

.quote-mark {
    margin-bottom: 10px;
    color: var(--accent-light);
    font-family: Georgia, serif;
    font-size: 72px;
    line-height: 0.7;
}

.quote-card blockquote {
    margin: 0;
    color: var(--white);
    font-family: var(--font-heading);
    font-size: clamp(22px, 3vw, 32px);
    font-style: italic;
    line-height: 1.45;
}

.quote-line {
    width: 70px;
    height: 2px;
    margin: 22px auto 12px;
    background: var(--accent);
}

.quote-caption {
    color: rgba(255, 255, 255, 0.65);
    font-size: 13px;
}

.closing {
    margin-top: 26px;
    color: rgba(255, 255, 255, 0.82);
}


/* =========================================================
   18. INITIATIVES / WORK
   ========================================================= */

#work {
    background: var(--white);
}

.initiative-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.initiative {
    position: relative;
    height: 100%;
    padding: 32px;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: var(--white);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition:
        transform var(--transition-slow),
        box-shadow var(--transition-slow),
        border-color var(--transition);
}

.initiative::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(
        90deg,
        var(--primary),
        var(--accent)
    );
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-slow);
}

.initiative:hover {
    transform: translateY(-7px);
    border-color: rgba(217, 154, 39, 0.55);
    box-shadow: var(--shadow-lg);
}

.initiative:hover::before {
    transform: scaleX(1);
}

.initiative-icon {
    margin-bottom: 22px;
}

.initiative h3 {
    margin-bottom: 10px;
    color: var(--primary);
    font-size: 23px;
}

.initiative p {
    margin-bottom: 0;
    color: var(--muted);
}

.initiative-number {
    position: absolute;
    top: 20px;
    right: 22px;
    color: rgba(122, 31, 18, 0.08);
    font-family: var(--font-heading);
    font-size: 54px;
    font-weight: 700;
    line-height: 1;
}


/* =========================================================
   19. PARTICIPATION
   ========================================================= */

.participation-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
    align-items: stretch;
}

/* ---------------------------------------------------------
   PARTICIPATION CARD
   --------------------------------------------------------- */

.participation-item {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 260px;
    padding: 32px 26px;
    overflow: hidden;

    border: 1px solid var(--border);
    border-radius: var(--radius-lg);

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.98),
            rgba(248, 245, 239, 0.96)
        );

    text-align: left;

    box-shadow:
        0 8px 24px rgba(23, 23, 23, 0.045);

    transition:
        transform 220ms ease,
        border-color 220ms ease,
        background-color 220ms ease,
        box-shadow 220ms ease;
}

/* Decorative top accent */
.participation-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;

    background:
        linear-gradient(
            90deg,
            var(--primary),
            var(--accent)
        );

    transform: scaleX(0);
    transform-origin: left;

    transition: transform 220ms ease;
}

/* Soft decorative glow */
.participation-item::after {
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    right: -55px;
    bottom: -55px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(217, 154, 39, 0.12) 0%,
            rgba(217, 154, 39, 0) 70%
        );

    pointer-events: none;
}


/* ---------------------------------------------------------
   HOVER
   --------------------------------------------------------- */

.participation-item:hover {
    transform: translateY(-7px);

    border-color:
        rgba(122, 31, 18, 0.22);

    background: var(--white);

    box-shadow:
        0 18px 40px rgba(23, 23, 23, 0.09);
}

.participation-item:hover::before {
    transform: scaleX(1);
}


/* ---------------------------------------------------------
   REMOVE OLD 01 / 02 / 03 / 04 NUMBERS
   --------------------------------------------------------- */

.participation-number {
    display: none !important;
}


/* ---------------------------------------------------------
   HEADING
   --------------------------------------------------------- */

.participation-item h3 {
    position: relative;
    z-index: 1;

    margin: 0 0 12px;

    color: var(--dark);

    font-family: var(--font-heading);
    font-size: clamp(21px, 2vw, 25px);
    font-weight: 700;
    line-height: 1.2;

    letter-spacing: -0.02em;
}


/* ---------------------------------------------------------
   DESCRIPTION
   --------------------------------------------------------- */

.participation-item p {
    position: relative;
    z-index: 1;

    margin: 0;

    color: var(--muted);

    font-size: 15px;
    line-height: 1.75;
}


/* ---------------------------------------------------------
   OPTIONAL ICON SUPPORT
   --------------------------------------------------------- */

/*
   If you later add:

   <span class="participation-icon">🎓</span>

   this styling will automatically apply.
*/

.participation-icon {
    position: relative;
    z-index: 1;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 52px;
    height: 52px;

    margin-bottom: 22px;

    border-radius: 14px;

    background:
        rgba(217, 154, 39, 0.12);

    font-size: 25px;

    transition:
        transform 220ms ease,
        background-color 220ms ease;
}

.participation-item:hover .participation-icon {
    transform: translateY(-2px) scale(1.04);

    background:
        rgba(217, 154, 39, 0.18);
}


/* ---------------------------------------------------------
   TABLET
   --------------------------------------------------------- */

@media (max-width: 1000px) {

    .participation-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 20px;
    }

    .participation-item {
        min-height: 235px;
        padding: 28px 24px;
    }

}


/* ---------------------------------------------------------
   MOBILE
   --------------------------------------------------------- */

@media (max-width: 760px) {

    .participation-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .participation-item {
        min-height: auto;
        padding: 26px 22px;
    }

    .participation-item h3 {
        font-size: 21px;
    }

    .participation-item p {
        font-size: 14px;
        line-height: 1.7;
    }

}


/* ---------------------------------------------------------
   SMALL MOBILE
   --------------------------------------------------------- */

@media (max-width: 520px) {

    .participation-item {
        padding: 24px 20px;
        border-radius: var(--radius-md);
    }

    .participation-item h3 {
        margin-bottom: 9px;
        font-size: 20px;
    }

    .participation-item p {
        font-size: 14px;
    }

}


/* ---------------------------------------------------------
   REDUCED MOTION
   --------------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {

    .participation-item,
    .participation-item::before,
    .participation-icon {
        transition: none;
    }

    .participation-item:hover {
        transform: none;
    }

}
/* =========================================================
   20. CTA
   ========================================================= */

.cta-section {
    position: relative;
    padding: clamp(70px, 9vw, 110px) 0;
    background:
        linear-gradient(
            135deg,
            var(--primary-dark),
            var(--primary)
        );
    color: var(--white);
    overflow: hidden;
}

.cta-section::before {
    content: "";
    position: absolute;
    top: -120px;
    right: -80px;
    width: 360px;
    height: 360px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 50%;
}

.cta-section::after {
    content: "";
    position: absolute;
    bottom: -160px;
    left: -100px;
    width: 420px;
    height: 420px;
    border: 1px solid rgba(217, 154, 39, 0.18);
    border-radius: 50%;
}

.cta-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 40px;
    align-items: center;
}

.cta-text {
    max-width: 720px;
}

.cta-text h2 {
    margin-bottom: 14px;
    color: var(--white);
    font-size: clamp(32px, 4vw, 50px);
}

.cta-text p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.82);
}

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 12px;
}


/* =========================================================
   21. FAQ
   ========================================================= */

.faq-section {
    background: var(--cream);
}

.faq {
    max-width: 900px;
    margin-inline: auto;
}

.faq details {
    margin-bottom: 12px;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: var(--white);
    overflow: hidden;
    transition:
        border-color var(--transition),
        box-shadow var(--transition);
}

.faq details[open] {
    border-color: rgba(217, 154, 39, 0.55);
    box-shadow: var(--shadow-sm);
}

.faq summary {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 20px 24px;
    color: var(--dark);
    font-weight: 700;
    cursor: pointer;
    list-style: none;
}

.faq summary::-webkit-details-marker {
    display: none;
}

.faq summary::after {
    content: "+";
    flex-shrink: 0;
    color: var(--primary);
    font-size: 24px;
    font-weight: 400;
    line-height: 1;
    transition: transform var(--transition);
}

.faq details[open] summary::after {
    transform: rotate(45deg);
}

.faq details > p {
    margin: 0;
    padding: 0 24px 22px;
    color: var(--muted);
}


/* =========================================================
   22. FINAL NAVIGATION
   ========================================================= */

.final-navigation {
    padding: 26px 0;
    border-top: 1px solid var(--border);
    background: var(--white);
}

.final-navigation-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.final-navigation a {
    color: #fff;
    font-weight: 700;
}

.final-navigation a:hover {
    color: var(--accent-dark);
}


/* =========================================================
   23. FOOTER
   ========================================================= */

.site-footer {
    padding: 70px 0 25px;
    background: #17110f;
    color: rgba(255, 255, 255, 0.72);
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) repeat(2, minmax(160px, 0.7fr));
    gap: 48px;
    padding-bottom: 45px;
}

.site-footer h3,
.site-footer h4 {
    margin-bottom: 16px;
    color: var(--white);
}

.site-footer h3 {
    font-size: 24px;
}

.site-footer p {
    max-width: 480px;
    color: rgba(255, 255, 255, 0.65);
}

.footer-links {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-links li {
    margin-bottom: 9px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.68);
    transition:
        color var(--transition),
        padding-left var(--transition);
}

.footer-links a:hover {
    padding-left: 4px;
    color: var(--accent-light);
}

.copyright {
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.10);
    color: rgba(255, 255, 255, 0.48);
    font-size: 13px;
    text-align: center;
}


/* =========================================================
   24. BACK TO TOP
   ========================================================= */

.back-to-top {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 900;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(255, 255, 255, 0.20);
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    box-shadow: var(--shadow-md);
    opacity: 0.95;
    transition:
        transform var(--transition),
        background-color var(--transition);
}

.back-to-top:hover {
    transform: translateY(-3px);
    background: var(--primary-dark);
}




.back-to-top {
    pointer-events: none;
    opacity: 0;
    transform: translateY(10px);
}

.back-to-top.is-visible {
    pointer-events: auto;
    opacity: 1;
    transform: translateY(0);
}

.about-action {
    margin-top: 28px;
}

.btn-ghost-light {
    border-color: rgba(255, 255, 255, 0.55);
    background: transparent;
    color: #ffffff;
}

.btn-ghost-light:hover,
.btn-ghost-light:focus-visible {
    border-color: #ffffff;
    background: #ffffff;
    color: var(--primary);
}

/* =========================================================
   25. HOMEPAGE
   ========================================================= */

.homepage {
    background: var(--white);
}

.homepage section {
    position: relative;
}


/* =========================================================
   26. RESPONSIVE - LARGE TABLET
   ========================================================= */

@media (max-width: 1100px) {

    .nav-links {
        gap: 0;
    }

    .nav-links a {
        padding-inline: 10px;
        font-size: 13px;
    }

    .cards,
    .initiative-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .participation-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-grid {
        grid-template-columns: 1.2fr repeat(2, 1fr);
    }
}


/* =========================================================
   27. RESPONSIVE - TABLET
   ========================================================= */

@media (max-width: 900px) {

    :root {
        --header-height: 76px;
    }

    .navbar {
        min-height: var(--header-height);
    }

    .mobile-menu-toggle {
        display: block;
    }

    .main-navigation {
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
        display: block;
        max-height: 0;
        margin: 0;
        padding: 0 20px;
        background: rgba(255, 255, 255, 0.98);
        border-bottom: 1px solid transparent;
        box-shadow: 0 12px 25px rgba(23, 23, 23, 0.08);
        overflow: hidden;
        visibility: hidden;
        opacity: 0;
        transition:
            max-height var(--transition-slow),
            opacity var(--transition),
            visibility var(--transition),
            padding var(--transition-slow);
    }

    .main-navigation.is-open,
    .main-navigation.active {
        max-height: calc(100vh - var(--header-height));
        padding-top: 12px;
        padding-bottom: 18px;
        border-bottom-color: var(--border);
        visibility: visible;
        opacity: 1;
        overflow-y: auto;
    }

    .nav-links {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 2px;
    }

    .nav-links a {
        width: 100%;
        justify-content: flex-start;
        min-height: 48px;
        padding: 10px 14px;
    }

    .nav-links a::after {
        display: none;
    }

    .nav-links .nav-cta {
        justify-content: center;
        margin: 8px 0 0;
    }

    .hero {
        min-height: 680px;
        padding: 85px 0;
        background-position: 62% center;
    }

    .two-column,
    .about-content {
        grid-template-columns: 1fr;
    }

    .impact-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .impact-item:nth-child(3) {
        border-left: 0;
    }

    .cta-content {
        grid-template-columns: 1fr;
    }

    .cta-actions {
        justify-content: flex-start;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-grid > :first-child {
        grid-column: 1 / -1;
    }
}


/* =========================================================
   28. RESPONSIVE - MOBILE
   ========================================================= */

@media (max-width: 700px) {

    .container {
        width: min(100% - 30px, var(--container-width));
    }

    .site-header {
        min-height: var(--header-height);
    }

    .logo-mark {
        width: 100px;
        min-height: 52px;
    }

    .logo-image {
        max-width: 100px;
    }

    .hero {
        min-height: 650px;
        padding: 70px 0;
        background:
            linear-gradient(
                90deg,
                rgba(44, 12, 7, 0.93),
                rgba(75, 18, 10, 0.72)
            ),
            url("/hero.jpg") center / cover no-repeat;
    }

    .hero h1 {
        font-size: clamp(38px, 11vw, 56px);
    }

    .hero-description {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .hero-values {
        flex-direction: column;
        gap: 8px;
    }

    .cards,
    .initiative-grid {
        grid-template-columns: 1fr;
    }

    .impact-grid {
        grid-template-columns: 1fr 1fr;
    }

    .impact-item {
        padding-inline: 8px;
    }

    .impact-item + .impact-item {
        border-left: 0;
    }

    .impact-item:nth-child(odd) {
        border-right: 1px solid rgba(255, 255, 255, 0.18);
    }

    .participation-grid {
        grid-template-columns: 1fr;
    }

    .quote-card {
        padding: 28px 22px;
    }

    .quote-card blockquote {
        font-size: 21px;
    }

    .cta-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .cta-actions .btn {
        width: 100%;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-grid > :first-child {
        grid-column: auto;
    }

    .final-navigation-content {
        flex-direction: column;
        align-items: flex-start;
    }
}


/* =========================================================
   29. RESPONSIVE - SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {

    :root {
        --header-height: 68px;
    }

    .container {
        width: min(100% - 24px, var(--container-width));
    }

    .navbar {
        min-height: var(--header-height);
    }

    .logo-mark {
        width: 82px;
        min-height: 48px;
    }

    .logo-image {
        max-width: 82px;
    }

    .mobile-menu-toggle {
        width: 42px;
        height: 42px;
    }

    .hero {
        min-height: 610px;
        padding: 60px 0;
    }

    .hero h1 {
        margin-bottom: 17px;
        font-size: 38px;
    }

    .hero-description {
        margin-bottom: 26px;
        font-size: 15px;
        line-height: 1.65;
    }

    .section {
        padding: 65px 0;
    }

    .section-heading {
        margin-bottom: 35px;
    }

    .section-heading h2 {
        font-size: 32px;
    }

    .card,
    .initiative,
    .mission-card,
    .info-card {
        padding: 24px;
    }

    .impact-grid {
        grid-template-columns: 1fr;
    }

    .impact-item {
        padding: 14px;
    }

    .impact-item:nth-child(odd) {
        border-right: 0;
    }

    .impact-item + .impact-item {
        border-top: 1px solid rgba(255, 255, 255, 0.14);
    }

    .quote-mark {
        font-size: 58px;
    }

    .quote-card blockquote {
        font-size: 20px;
    }

    .back-to-top {
        right: 15px;
        bottom: 15px;
        width: 42px;
        height: 42px;
    }
}


/* =========================================================
   30. REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}


/* =========================================================
   31. HIGH CONTRAST
   ========================================================= */

@media (prefers-contrast: more) {

    .nav-links a,
    .btn,
    .card,
    .initiative,
    .mission-card,
    .info-card,
    .faq details {
        border-width: 2px;
    }

    .hero-description,
    .hero p,
    .cta-text p {
        color: var(--white);
    }
}


/* =========================================================
   32. PRINT
   ========================================================= */

@media print {

    .site-header,
    .mobile-menu-toggle,
    .back-to-top,
    .hero-buttons,
    .cta-actions {
        display: none !important;
    }

    .hero,
    .heritage-section,
    .cta-section,
    .impact-strip {
        background: none !important;
        color: #000 !important;
    }

    .hero h1,
    .heritage-content h2,
    .quote-card blockquote,
    .cta-text h2 {
        color: #000 !important;
    }

    .section,
    .heritage-section,
    .cta-section {
        padding: 30px 0;
    }

    a {
        text-decoration: underline;
    }
}





    /* ---------------------------------------------------------
       CONTACT HERO
    --------------------------------------------------------- */

    .contact-hero {
        position: relative;
        padding: 90px 0 85px;
        background:
            linear-gradient(
                135deg,
                rgba(30, 41, 59, 0.97),
                rgba(120, 53, 15, 0.94)
            );
        color: #fff;
        overflow: hidden;
    }

    .contact-hero::before {
        content: "";
        position: absolute;
        width: 420px;
        height: 420px;
        border: 1px solid rgba(255,255,255,.12);
        border-radius: 50%;
        top: -220px;
        right: -100px;
    }

    .contact-hero::after {
        content: "";
        position: absolute;
        width: 300px;
        height: 300px;
        border: 1px solid rgba(255,255,255,.08);
        border-radius: 50%;
        bottom: -200px;
        left: -100px;
    }

    .contact-hero-content {
        position: relative;
        z-index: 1;
        max-width: 850px;
        text-align: center;
    }

    .contact-hero h1 {
        margin: 18px 0;
        font-size: clamp(40px, 6vw, 64px);
        line-height: 1.08;
    }

    .contact-hero p {
        max-width: 760px;
        margin: 0 auto;
        color: rgba(255,255,255,.86);
        font-size: 18px;
        line-height: 1.8;
    }


    /* ---------------------------------------------------------
       CONTACT GRID
    --------------------------------------------------------- */

    .contact-section {
        padding-top: 80px;
        padding-bottom: 90px;
    }

    .contact-grid {
        display: grid;
        grid-template-columns: minmax(300px, .85fr) minmax(400px, 1.35fr);
        gap: 40px;
        align-items: stretch;
    }


    /* ---------------------------------------------------------
       CONTACT INFORMATION
    --------------------------------------------------------- */
.contact-information {
    position: relative;
    isolation: isolate;
    padding: 48px;
    border-radius: 20px;

    /* Main Heritage Color */
    background:
        radial-gradient(
            circle at 100% 0%,
            rgba(255, 196, 92, 0.18) 0,
            rgba(255, 196, 92, 0.05) 28%,
            transparent 52%
        ),
        radial-gradient(
            circle at 0% 100%,
            rgba(255, 255, 255, 0.07) 0,
            transparent 38%
        ),
        linear-gradient(
            145deg,
            #7a1f12 0%,
            #68190f 45%,
            #4a100a 100%
        );

    color: #fff;

    overflow: hidden;

    border: 1px solid rgba(255, 210, 130, 0.20);

    box-shadow:
        0 25px 60px rgba(74, 16, 10, 0.22),
        0 8px 25px rgba(0, 0, 0, 0.10);

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}


/* ---------------------------------------------------------
   DECORATIVE HERITAGE CIRCLE
--------------------------------------------------------- */

.contact-information::before {
    content: "";
    position: absolute;

    width: 360px;
    height: 360px;

    top: -190px;
    right: -150px;

    border-radius: 50%;

    border: 1px solid rgba(255, 205, 120, 0.22);

    box-shadow:
        0 0 0 25px rgba(255, 205, 120, 0.025),
        0 0 0 50px rgba(255, 205, 120, 0.018);

    z-index: -1;
}


/* ---------------------------------------------------------
   SECOND DECORATIVE ELEMENT
--------------------------------------------------------- */

.contact-information::after {
    content: "";

    position: absolute;

    width: 230px;
    height: 230px;

    bottom: -145px;
    left: -115px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(255, 196, 92, 0.12),
            transparent 68%
        );

    border: 1px solid rgba(255, 255, 255, 0.08);

    z-index: -1;
}


/* ---------------------------------------------------------
   HOVER EFFECT
--------------------------------------------------------- */

.contact-information:hover {
    transform: translateY(-4px);

    box-shadow:
        0 32px 70px rgba(74, 16, 10, 0.28),
        0 12px 30px rgba(0, 0, 0, 0.12);
}


/* ---------------------------------------------------------
   SECTION LABEL
--------------------------------------------------------- */

.contact-information .section-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    color: #f5c46b;

    font-size: 12px;
    font-weight: 800;

    text-transform: uppercase;
    letter-spacing: 0.14em;
}

.contact-information .section-label::before {
    content: "";

    width: 28px;
    height: 2px;

    background: #f5c46b;

    border-radius: 10px;
}


/* ---------------------------------------------------------
   HEADING
--------------------------------------------------------- */

.contact-information h2 {
    position: relative;

    margin: 16px 0 15px;

    color: #fff;

    font-size: clamp(28px, 3vw, 36px);
    line-height: 1.15;

    letter-spacing: -0.02em;
}


/* Gold underline accent */

.contact-information h2::after {
    content: "";

    display: block;

    width: 52px;
    height: 3px;

    margin-top: 16px;

    background:
        linear-gradient(
            90deg,
            #f5c46b,
            rgba(245, 196, 107, 0.15)
        );

    border-radius: 10px;
}


/* ---------------------------------------------------------
   INTRO TEXT
--------------------------------------------------------- */

.contact-information .contact-intro {
    position: relative;

    margin: 0 0 35px;

    max-width: 520px;

    color: rgba(255, 245, 232, 0.78);

    font-size: 15px;
    line-height: 1.8;
}


/* ---------------------------------------------------------
   CONTACT DETAILS
--------------------------------------------------------- */

.contact-information .contact-details {
    display: flex;
    flex-direction: column;

    gap: 20px;
}


/* Individual contact item */

.contact-information .contact-detail {
    position: relative;

    display: flex;
    align-items: flex-start;

    gap: 16px;

    padding: 14px;

    margin-left: -14px;

    border-radius: 12px;

    transition:
        background 0.25s ease,
        transform 0.25s ease;
}


.contact-information .contact-detail:hover {
    background: rgba(255, 255, 255, 0.065);

    transform: translateX(5px);
}


/* ---------------------------------------------------------
   CONTACT ICON
--------------------------------------------------------- */

.contact-information .contact-icon {
    flex: 0 0 46px;

    width: 46px;
    height: 46px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 12px;

    background:
        linear-gradient(
            145deg,
            rgba(255, 205, 120, 0.20),
            rgba(255, 205, 120, 0.08)
        );

    border: 1px solid rgba(255, 205, 120, 0.25);

    color: #f5c46b;

    font-size: 19px;

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.08),
        0 5px 15px rgba(0,0,0,.08);
}


/* ---------------------------------------------------------
   DETAIL LABEL
--------------------------------------------------------- */

.contact-information .contact-detail-label {
    display: block;

    margin-bottom: 4px;

    color: rgba(255, 225, 185, 0.58);

    font-size: 11px;
    font-weight: 800;

    text-transform: uppercase;
    letter-spacing: 0.12em;
}


/* ---------------------------------------------------------
   CONTACT VALUES
--------------------------------------------------------- */

.contact-information .contact-detail a,
.contact-information .contact-detail span:last-child {
    color: #fff;

    font-size: 15px;
    line-height: 1.65;

    text-decoration: none;

    transition: color 0.2s ease;
}


.contact-information .contact-detail a:hover {
    color: #f5c46b;
}


/* ---------------------------------------------------------
   BOTTOM NOTE
--------------------------------------------------------- */

.contact-information .contact-note {
    position: relative;
    z-index: 2;

    margin-top: 38px;
    padding-top: 25px;

    border-top: 1px solid rgba(255, 225, 185, 0.16);
}


.contact-information .contact-note strong {
    display: block;

    margin-bottom: 8px;

    color: #f5c46b;

    font-size: 13px;
    line-height: 1.6;
}


.contact-information .contact-note p {
    margin: 0;

    color: rgba(255, 245, 232, 0.62);

    font-size: 13px;
    line-height: 1.7;
}


/* ---------------------------------------------------------
   MOBILE
--------------------------------------------------------- */

@media (max-width: 700px) {

    .contact-information {
        padding: 32px 24px;

        border-radius: 16px;
    }

    .contact-information h2 {
        font-size: 28px;
    }

    .contact-information .contact-detail {
        margin-left: -8px;
        padding: 10px 8px;
    }

    .contact-information .contact-icon {
        flex-basis: 42px;

        width: 42px;
        height: 42px;
    }

}



    /* ---------------------------------------------------------
       FORM
    --------------------------------------------------------- */

    .contact-form-wrapper {
        padding: 45px;
        border: 1px solid rgba(15, 23, 42, .08);
        border-radius: 18px;
        background: #fff;
        box-shadow: 0 15px 45px rgba(15, 23, 42, .08);
    }

    .form-heading {
        margin-bottom: 30px;
    }

    .form-heading h2 {
        margin: 12px 0 8px;
        font-size: 32px;
        line-height: 1.2;
    }

    .form-heading p {
        margin: 0;
        color: #64748b;
        line-height: 1.7;
    }

    .contact-form {
        display: flex;
        flex-direction: column;
        gap: 0;
    }

    .form-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 22px;
    }

    .form-group {
        margin-bottom: 22px;
    }

    .form-group label {
        display: block;
        margin-bottom: 8px;
        color: #1e293b;
        font-size: 14px;
        font-weight: 700;
    }

    .form-group label span {
        color: #b45309;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        width: 100%;
        padding: 14px 16px;
        border: 1px solid #d8dee8;
        border-radius: 9px;
        background: #fff;
        color: #1e293b;
        font-family: inherit;
        font-size: 15px;
        outline: none;
        transition:
            border-color .2s ease,
            box-shadow .2s ease;
    }

    .form-group input,
    .form-group select {
        height: 50px;
    }

    .form-group textarea {
        min-height: 160px;
        resize: vertical;
    }

    .form-group input::placeholder,
    .form-group textarea::placeholder {
        color: #94a3b8;
    }

    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
        border-color: #b45309;
        box-shadow: 0 0 0 3px rgba(180, 83, 9, .10);
    }

    .form-submit {
        display: flex;
        align-items: center;
        gap: 18px;
        margin-top: 4px;
    }

    .form-submit .btn {
        border: 0;
        cursor: pointer;
    }

    .form-required-note {
        margin: 0;
        color: #64748b;
        font-size: 13px;
    }


    /* ---------------------------------------------------------
       FORM MESSAGES
    --------------------------------------------------------- */

    .form-message {
        padding: 17px 20px;
        margin-bottom: 25px;
        border-radius: 10px;
        line-height: 1.6;
    }

    .form-message strong {
        display: block;
        margin-bottom: 4px;
    }

    .form-message p {
        margin: 0;
    }

    .form-success {
        background: #ecfdf5;
        border: 1px solid #a7f3d0;
        color: #065f46;
    }

    .form-error {
        background: #fef2f2;
        border: 1px solid #fecaca;
        color: #991b1b;
    }


    /* ---------------------------------------------------------
       CONTACT PURPOSE CARDS
    --------------------------------------------------------- */

    .contact-purpose-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 22px;
        margin-top: 45px;
    }

    .contact-purpose {
        position: relative;
        padding: 30px 25px;
        border: 1px solid rgba(15, 23, 42, .08);
        border-radius: 14px;
        background: #fff;
        overflow: hidden;
        transition:
            transform .25s ease,
            box-shadow .25s ease;
    }

    .contact-purpose:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 35px rgba(15, 23, 42, .09);
    }

    .contact-purpose-number {
        display: block;
        margin-bottom: 20px;
        color: #b45309;
        font-size: 13px;
        font-weight: 800;
        letter-spacing: .08em;
    }

    .contact-purpose-icon {
        margin-bottom: 17px;
        font-size: 28px;
    }

    .contact-purpose h3 {
        margin-bottom: 10px;
        color: #1e293b;
        font-size: 21px;
    }

    .contact-purpose p {
        margin: 0;
        color: #64748b;
        line-height: 1.7;
        font-size: 14px;
    }


    /* ---------------------------------------------------------
       RESPONSIVE
    --------------------------------------------------------- */

    @media (max-width: 1000px) {

        .contact-grid {
            grid-template-columns: 1fr;
        }

        .contact-purpose-grid {
            grid-template-columns: repeat(2, 1fr);
        }

    }


    @media (max-width: 700px) {

        .contact-hero {
            padding: 65px 0;
        }

        .contact-hero p {
            font-size: 16px;
        }

        .contact-section {
            padding-top: 55px;
            padding-bottom: 65px;
        }

        .contact-information,
        .contact-form-wrapper {
            padding: 28px 22px;
        }

        .contact-information h2,
        .form-heading h2 {
            font-size: 27px;
        }

        .form-row {
            grid-template-columns: 1fr;
            gap: 0;
        }

        .contact-purpose-grid {
            grid-template-columns: 1fr;
        }

        .form-submit {
            align-items: flex-start;
            flex-direction: column;
            gap: 12px;
        }

        .form-submit .btn {
            width: 100%;
            text-align: center;
        }

    }
.contact-purpose-number {
    display: none !important;
}