/* ─── CSS Variables — Innotech Consultancy Palette ─── */
:root {
    --ink: #0a1f12;
    /* Deep forest green (logo background) */
    --cream: #f0f4f0;
    /* Soft white-green tint */
    --gold: #c9a84c;
    /* Logo brass/gold */
    --gold-lt: #e0c070;
    /* Lighter gold highlight */
    --green: #2d6a35;
    /* Logo bright green (CONSULTANCY text) */
    --green-lt: #3d8a47;
    /* Lighter green for hover */
    --green-mid: #1a4a22;
    /* Mid forest green */
    --white: #ffffff;
    --muted: #6b8c6e;
    /* Muted green-grey */
    --border: rgba(45, 106, 53, 0.2);
    --border-gold: rgba(201, 168, 76, 0.25);
    --serif: 'Cormorant Garamond', Georgia, serif;
    --sans: 'DM Sans', sans-serif;
    --radius: 4px;
    --trans: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ─── Reset & Base ─── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background: var(--cream);
    color: var(--ink);
    font-family: var(--sans);
    font-weight: 300;
    line-height: 1.7;
}

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

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

ul {
    list-style: none;
}

/* ─── Navbar ─── */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
    padding: 1.2rem 0;
    transition: var(--trans);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(10, 31, 18, 0.97);
    backdrop-filter: blur(14px);
    box-shadow: 0 1px 0 var(--border-gold);
    padding: 0.8rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.nav-logo img {
    height: 80px;   /* change as needed */
    width: auto;    /* keeps aspect ratio */
}

.logo-mark {
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, var(--gold), var(--gold-lt));
    color: var(--ink);
    font-family: var(--serif);
    font-size: 1.2rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 2px;
    border: 1px solid rgba(201, 168, 76, 0.4);
}

.logo-text {
    font-family: var(--sans);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--white);
}

.logo-text em {
    display: block;
    font-style: normal;
    font-size: 0.6rem;
    letter-spacing: 0.25em;
    color: var(--gold);
    font-weight: 400;
    margin-top: 1px;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    position: relative;
    transition: color var(--trans);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width var(--trans);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--gold);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 1.5px;
    background: var(--white);
    transition: var(--trans);
}

/* ─── Hero ─── */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--ink);
    color: var(--white);
    position: relative;
    overflow: hidden;
    padding: 8rem 2rem 4rem;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 55% 70% at 85% 50%, rgba(45, 106, 53, 0.25) 0%, transparent 65%),
        radial-gradient(ellipse 40% 50% at 15% 75%, rgba(201, 168, 76, 0.10) 0%, transparent 60%),
        radial-gradient(ellipse 60% 60% at 50% 110%, rgba(10, 32, 18, 0.8) 0%, transparent 70%);
}

.hero-grid {
    position: absolute;
    inset: 0;
    opacity: 0.05;
    background-image:
        linear-gradient(rgba(201, 168, 76, 0.5) 1px, transparent 1px),
        linear-gradient(90deg, rgba(201, 168, 76, 0.5) 1px, transparent 1px);
    background-size: 60px 60px;
}

/* Shield decorative element */
.hero-shield {
    position: absolute;
    right: 8%;
    top: 50%;
    transform: translateY(-50%);
    width: 320px;
    height: 400px;
    opacity: 0.04;
    border: 2px solid var(--gold);
    border-radius: 50% 50% 50% 50% / 30% 30% 70% 70%;
}

.hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-eyebrow {
    font-size: 0.72rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.hero-eyebrow::before {
    content: '';
    display: block;
    width: 40px;
    height: 1px;
    background: var(--gold);
}

.hero h1 {
    font-family: var(--serif);
    font-size: clamp(3rem, 6.5vw, 6rem);
    font-weight: 300;
    line-height: 1.06;
    margin-bottom: 1.8rem;
}

.hero h1 em {
    font-style: italic;
    color: var(--gold-lt);
}

.hero h1 strong {
    font-weight: 700;
    color: var(--white);
}

.hero-sub {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.55);
    max-width: 480px;
    margin-bottom: 3rem;
    line-height: 1.85;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-stats {
    margin-top: 5.5rem;
    display: flex;
    gap: 4rem;
}

.stat-num {
    font-family: var(--serif);
    font-size: 2.8rem;
    font-weight: 300;
    color: var(--gold-lt);
}

.stat-label {
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
    margin-top: 0.2rem;
}

/* ─── Buttons ─── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 2rem;
    font-size: 0.76rem;
    font-family: var(--sans);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 500;
    border: 1px solid;
    cursor: pointer;
    transition: var(--trans);
    border-radius: var(--radius);
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold), #b8963e);
    border-color: var(--gold);
    color: var(--ink);
    font-weight: 600;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--gold-lt), var(--gold));
    border-color: var(--gold-lt);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(201, 168, 76, 0.3);
}

.btn-outline {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.25);
    color: var(--white);
}

.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.btn-dark {
    background: var(--green-mid);
    border-color: var(--green);
    color: var(--white);
}

.btn-dark:hover {
    background: var(--green);
    border-color: var(--green-lt);
    transform: translateY(-2px);
}

.btn-green {
    background: var(--green);
    border-color: var(--green);
    color: var(--white);
}

.btn-green:hover {
    background: var(--green-lt);
    border-color: var(--green-lt);
    transform: translateY(-2px);
}

/* ─── Section Base ─── */
.section {
    padding: 7rem 2rem;
}

.section-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.section-label {
    font-size: 0.7rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.section-label::before {
    content: '';
    display: block;
    width: 30px;
    height: 1px;
    background: var(--gold);
}

.section-title {
    font-family: var(--serif);
    font-size: clamp(2rem, 3.8vw, 3.3rem);
    font-weight: 300;
    line-height: 1.15;
    margin-bottom: 1.5rem;
}

.section-sub {
    color: var(--muted);
    max-width: 520px;
    line-height: 1.85;
}

/* ─── About Section (homepage) ─── */
.about-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.about-visual {
    position: relative;
}

.about-img-wrap {
    aspect-ratio: 3/4;
    background: linear-gradient(160deg, var(--ink) 0%, var(--green-mid) 60%, #0a2a14 100%);
    border-radius: 2px;
    overflow: hidden;
    position: relative;
    border: 1px solid var(--border-gold);
}

.about-img-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.15) 0%, transparent 55%);
}

/* Shield icon inside about image */
.about-img-wrap::before {
    content: 'I';
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--serif);
    font-size: 8rem;
    font-weight: 300;
    color: rgba(201, 168, 76, 0.12);
    z-index: 1;
}

.about-badge {
    position: absolute;
    bottom: -1.5rem;
    right: -1.5rem;
    background: linear-gradient(135deg, var(--gold), #9a7a30);
    color: var(--ink);
    padding: 2rem;
    border-radius: 2px;
}

.about-badge .num {
    font-size: 2.5rem;
    font-weight: 700;
    display: block;
    font-family: var(--serif);
}

.about-badge .label {
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 600;
}

.about-list {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.about-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    font-size: 0.88rem;
    color: var(--muted);
}

.about-list li::before {
    content: '◆';
    color: var(--gold);
    flex-shrink: 0;
    font-size: 0.5rem;
    margin-top: 0.35rem;
}

/* ─── Services Grid ─── */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5px;
    background: var(--border);
    margin-top: 4rem;
    border: 1.5px solid var(--border);
}

.service-card {
    background: var(--cream);
    padding: 2.5rem;
    transition: var(--trans);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 0;
    background: var(--gold);
    transition: height var(--trans);
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 3px;
    background: var(--green);
    transition: width var(--trans);
}

.service-card:hover::before {
    height: 100%;
}

.service-card:hover::after {
    width: 100%;
}

.service-card:hover {
    background: #fff;
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(10, 31, 18, 0.1);
}

.service-num {
    font-family: var(--serif);
    font-size: 3rem;
    font-weight: 300;
    color: rgba(45, 106, 53, 0.12);
    line-height: 1;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-family: var(--serif);
    font-size: 1.4rem;
    font-weight: 400;
    margin-bottom: 1rem;
    color: var(--ink);
}

.service-card p {
    font-size: 0.875rem;
    color: var(--muted);
    line-height: 1.8;
}

/* ─── Why Us ─── */
.why-section {
    background: var(--ink);
    color: var(--white);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.why-item {
    border-top: 1px solid rgba(201, 168, 76, 0.25);
    padding-top: 2rem;
}

.why-icon {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--gold);
}

.why-item h4 {
    font-family: var(--serif);
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 0.8rem;
    color: var(--white);
}

.why-item p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.8;
}

/* ─── CTA Banner ─── */
.cta-banner {
    padding: 6rem 2rem;
    text-align: center;
    background: linear-gradient(160deg, var(--green-mid) 0%, var(--ink) 60%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.08) 0%, transparent 60%);
}

.cta-banner h2 {
    font-family: var(--serif);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 300;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.cta-banner p {
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 1;
}

/* ─── Page Hero (inner pages) ─── */
.page-hero {
    padding: 10rem 2rem 5rem;
    background: linear-gradient(160deg, var(--ink) 0%, var(--green-mid) 100%);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(201, 168, 76, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(201, 168, 76, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
}

.page-hero h1 {
    font-family: var(--serif);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 300;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.page-hero h1 em {
    font-style: italic;
    color: var(--gold-lt);
}

.page-hero p {
    color: rgba(255, 255, 255, 0.5);
    max-width: 500px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* ─── About Page ─── */
.mission-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 6rem;
    align-items: center;
}

.mission-text .section-title {
    margin-bottom: 1.5rem;
}

.mission-text p {
    color: var(--muted);
    line-height: 1.9;
    margin-bottom: 1.2rem;
    font-size: 0.9rem;
}

.values-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    margin-top: 4rem;
}

.value-item {
    background: var(--cream);
    padding: 2rem;
}

.value-item h4 {
    font-family: var(--serif);
    font-size: 1.15rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
    color: var(--green);
}

.value-item p {
    font-size: 0.85rem;
    color: var(--muted);
    line-height: 1.7;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.team-card {
    text-align: center;
}

.team-avatar {
    aspect-ratio: 1;
    background: linear-gradient(160deg, var(--ink), var(--green-mid));
    border-radius: 2px;
    margin-bottom: 1.2rem;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-gold);
}

.team-avatar::after {
    content: attr(data-initials);
    font-family: var(--serif);
    font-size: 2.5rem;
    color: var(--gold);
    font-weight: 300;
}

.team-card h4 {
    font-family: var(--serif);
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--ink);
}

.team-card span {
    font-size: 0.72rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--muted);
}

/* ─── Services Page ─── */
.services-full {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.service-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.service-row.reverse {
    direction: rtl;
}

.service-row.reverse>* {
    direction: ltr;
}

.service-row-img {
    background: linear-gradient(160deg, var(--ink) 0%, var(--green-mid) 100%);
    min-height: 360px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-row-img-inner {
    font-family: var(--serif);
    font-size: 6rem;
    color: rgba(201, 168, 76, 0.18);
    position: relative;
    z-index: 1;
}

.service-row-img::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.08) 0%, transparent 60%);
}

.service-row-content {
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: 1px solid var(--border);
    background: var(--cream);
}

.service-row-content h3 {
    font-family: var(--serif);
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 1rem;
    color: var(--ink);
}

.service-row-content p {
    color: var(--muted);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.service-features li {
    font-size: 0.85rem;
    color: var(--muted);
    display: flex;
    gap: 0.6rem;
}

.service-features li::before {
    content: '◆';
    color: var(--gold);
    font-size: 0.45rem;
    margin-top: 0.38rem;
}

/* ─── Contact Page ─── */
.contact-wrap {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 6rem;
}

.contact-info h3 {
    font-family: var(--serif);
    font-size: 1.8rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    color: var(--ink);
}

.contact-info p {
    color: var(--muted);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 0.9rem;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.2rem;
}

.contact-detail .icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--gold), #9a7a30);
    color: var(--ink);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 2px;
    flex-shrink: 0;
    font-size: 0.9rem;
    font-weight: 600;
}

.contact-detail p {
    margin: 0;
    font-size: 0.875rem;
    color: var(--muted);
}

.contact-detail strong {
    display: block;
    color: var(--ink);
    font-weight: 500;
    margin-bottom: 0.2rem;
}

/* ─── Form ─── */
.form-group {
    margin-bottom: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

label {
    display: block;
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 0.5rem;
}

input,
textarea,
select {
    width: 100%;
    padding: 0.875rem 1rem;
    background: #fff;
    border: 1px solid var(--border);
    font-family: var(--sans);
    font-size: 0.9rem;
    color: var(--ink);
    border-radius: var(--radius);
    transition: border-color var(--trans);
    outline: none;
}

input:focus,
textarea:focus,
select:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.1);
}

textarea {
    resize: vertical;
    min-height: 140px;
}

.form-note {
    font-size: 0.78rem;
    color: var(--muted);
    margin-top: 1rem;
}

/* ─── Alerts ─── */
.alert {
    padding: 1rem 1.5rem;
    border-radius: var(--radius);
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
}

.alert-success {
    background: #f0faf0;
    border: 1px solid #a8d5a8;
    color: #1a4a22;
}

.alert-error {
    background: #fdf0f0;
    border: 1px solid #d5a8a8;
    color: #6a2d2d;
}

/* ─── Thank You Page ─── */
.thankyou-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
}

.thankyou-card {
    text-align: center;
    max-width: 560px;
}

.thankyou-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--gold), #9a7a30);
    color: var(--ink);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 2rem;
    font-weight: 700;
}

.thankyou-card h1 {
    font-family: var(--serif);
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 1rem;
}

.thankyou-card p {
    color: var(--muted);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.payment-box {
    background: linear-gradient(160deg, var(--ink), var(--green-mid));
    color: var(--white);
    padding: 2rem;
    border-radius: var(--radius);
    margin: 2rem 0;
    border: 1px solid var(--border-gold);
}

.payment-box h3 {
    font-family: var(--serif);
    font-size: 1.4rem;
    font-weight: 300;
    margin-bottom: 0.8rem;
}

.payment-box p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 1.5rem;
}

/* ─── Razorpay Hint ─── */
.rzp-hint {
    background: rgba(201, 168, 76, 0.1);
    border: 1px solid rgba(201, 168, 76, 0.3);
    border-radius: 4px;
    padding: 1rem 1.2rem;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.2rem;
    display: flex;
    gap: 0.6rem;
}

/* ─── Admin Layout ─── */
.admin-body {
    background: #eef2ee;
    font-family: var(--sans);
    min-height: 100vh;
}

.admin-layout {
    display: flex;
    min-height: 100vh;
}

.admin-sidebar {
    width: 260px;
    background: linear-gradient(180deg, var(--ink) 0%, #0d2415 100%);
    color: var(--white);
    display: flex;
    flex-direction: column;
    position: fixed;
    inset-block: 0;
    left: 0;
    overflow-y: auto;
    border-right: 1px solid var(--border-gold);
}

.admin-sidebar-logo {
    padding: 2rem 1.5rem 1.5rem;
    border-bottom: 1px solid rgba(201, 168, 76, 0.15);
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.admin-nav {
    padding: 1.5rem 0;
    flex: 1;
}

.admin-nav a {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1.5rem;
    font-size: 0.84rem;
    color: rgba(255, 255, 255, 0.45);
    transition: var(--trans);
    border-left: 3px solid transparent;
}

.admin-nav a:hover,
.admin-nav a.active {
    color: var(--white);
    background: rgba(201, 168, 76, 0.08);
    border-left-color: var(--gold);
}

.admin-nav a .icon {
    width: 18px;
    text-align: center;
}

.admin-nav .nav-group-label {
    font-size: 0.62rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(201, 168, 76, 0.4);
    padding: 1.5rem 1.5rem 0.5rem;
}

.admin-main {
    margin-left: 260px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.admin-topbar {
    background: #fff;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 10;
}

.admin-topbar h2 {
    font-family: var(--serif);
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--ink);
}

.admin-topbar .topbar-user {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.admin-avatar {
    width: 34px;
    height: 34px;
    background: linear-gradient(135deg, var(--gold), #9a7a30);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    color: var(--ink);
    font-weight: 700;
}

.admin-content {
    padding: 2rem;
    flex: 1;
}

/* ─── Admin Stat Cards ─── */
.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stat-card {
    background: #fff;
    padding: 1.5rem;
    border-radius: 6px;
    border: 1px solid var(--border);
    border-top: 3px solid var(--gold);
}

.stat-card .s-label {
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 0.5rem;
}

.stat-card .s-num {
    font-family: var(--serif);
    font-size: 2.2rem;
    font-weight: 300;
    color: var(--ink);
}

.stat-card .s-sub {
    font-size: 0.76rem;
    color: var(--green);
    margin-top: 0.3rem;
}

/* ─── Admin Table Card ─── */
.admin-card {
    background: #fff;
    border-radius: 6px;
    border: 1px solid var(--border);
    overflow: hidden;
    margin-bottom: 2rem;
}

.admin-card-header {
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, rgba(10, 31, 18, 0.03) 0%, transparent 100%);
}

.admin-card-header h3 {
    font-family: var(--serif);
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--ink);
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.875rem;
}

.admin-table th {
    text-align: left;
    padding: 0.75rem 1.5rem;
    font-size: 0.68rem;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: var(--muted);
    background: #f5f8f5;
    border-bottom: 1px solid var(--border);
    font-weight: 500;
}

.admin-table td {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid rgba(45, 106, 53, 0.06);
    color: var(--ink);
    vertical-align: middle;
}

.admin-table tr:last-child td {
    border-bottom: none;
}

.admin-table tr:hover td {
    background: #f5f8f5;
}

.badge {
    display: inline-block;
    padding: 0.25rem 0.7rem;
    border-radius: 20px;
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.04em;
}

.badge-new {
    background: rgba(201, 168, 76, 0.15);
    color: #7a5a00;
}

.badge-contacted {
    background: rgba(45, 106, 53, 0.12);
    color: var(--green);
}

.badge-pending {
    background: rgba(180, 50, 50, 0.08);
    color: #8a2020;
}

.btn-sm {
    padding: 0.4rem 0.9rem;
    font-size: 0.7rem;
}

.btn-pay {
    background: linear-gradient(135deg, var(--gold), #9a7a30);
    color: var(--ink);
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
}

.btn-pay:hover {
    background: linear-gradient(135deg, var(--gold-lt), var(--gold));
}

/* ─── Admin Login ─── */
.login-page {
    min-height: 100vh;
    display: flex;
}

.login-left {
    flex: 1;
    background: linear-gradient(160deg, var(--ink) 0%, #0d2a18 60%, var(--green-mid) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    position: relative;
    overflow: hidden;
}

.login-left::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(201, 168, 76, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(201, 168, 76, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
}

/* Decorative shield on login */
.login-left::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 380px;
    border: 1px solid rgba(201, 168, 76, 0.12);
    border-radius: 50% 50% 50% 50% / 30% 30% 70% 70%;
    opacity: 0.5;
}

.login-brand {
    text-align: center;
    color: var(--white);
    position: relative;
    z-index: 1;
}

.login-brand .logo-mark {
    width: 70px;
    height: 70px;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--gold), #9a7a30);
}

.login-brand h1 {
    font-family: var(--serif);
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 0.3rem;
}

.login-brand .tagline {
    font-size: 0.68rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.login-brand p {
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.82rem;
}

.login-brand .motto {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(201, 168, 76, 0.15);
    font-size: 0.68rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(201, 168, 76, 0.5);
}

.login-right {
    width: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    background: var(--cream);
}

.login-form-wrap {
    width: 100%;
}

.login-form-wrap h2 {
    font-family: var(--serif);
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 0.4rem;
    color: var(--ink);
}

.login-form-wrap p {
    color: var(--muted);
    font-size: 0.875rem;
    margin-bottom: 2.5rem;
}

.login-security {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.73rem;
    color: var(--muted);
    margin-top: 1.5rem;
}

.login-security::before {
    content: '🔒';
}

/* ─── Footer ─── */
.footer {
    background: linear-gradient(180deg, var(--ink) 0%, #061409 100%);
    color: var(--white);
    padding: 4rem 2rem;
    border-top: 1px solid var(--border-gold);
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 3rem;
    align-items: center;
}

.footer-brand {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.footer-brand p {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.35);
    max-width: 220px;
    line-height: 1.7;
}

.footer-brand .tagline {
    display: block;
    font-size: 0.62rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    margin-top: 0.3rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    font-size: 0.75rem;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
    transition: color var(--trans);
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-legal {
    text-align: right;
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.2);
}

.footer-divider {
    border: none;
    border-top: 1px solid rgba(201, 168, 76, 0.1);
    margin: 2.5rem 0;
}

/* ─── Responsive ─── */
@media (max-width: 1024px) {
    .stats-row {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

    .about-split,
    .mission-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .service-row {
        grid-template-columns: 1fr;
    }

    .service-row.reverse {
        direction: ltr;
    }

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

    .footer-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-legal {
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--ink);
        padding: 1.5rem 2rem;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
        border-top: 1px solid var(--border-gold);
    }

    .nav-links.open {
        display: flex;
    }

    .nav-toggle {
        display: flex;
    }

    .services-grid,
    .why-grid,
    .values-list,
    .team-grid,
    .stats-row {
        grid-template-columns: 1fr;
    }

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

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

    .admin-sidebar {
        transform: translateX(-100%);
        transition: var(--trans);
        z-index: 100;
    }

    .admin-sidebar.open {
        transform: none;
    }

    .admin-main {
        margin-left: 0;
    }

    .login-left {
        display: none;
    }

    .login-right {
        width: 100%;
    }

    .hero-stats {
        flex-direction: column;
        gap: 2rem;
    }

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