/* ============================================================
   Cricket Kit Rental Hub - Main Stylesheet
   Aesthetic: Bold sports editorial - deep green + cream + gold
   ============================================================ */

:root {
    --green-dark:   #0a2e1a;
    --green-mid:    #1a5c34;
    --green-bright: #2d8a52;
    --green-light:  #e8f5ee;
    --gold:         #c9a84c;
    --gold-light:   #f5e9cc;
    --cream:        #faf7f0;
    --white:        #ffffff;
    --gray-100:     #f4f4f2;
    --gray-200:     #e8e8e4;
    --gray-400:     #a0a09a;
    --gray-600:     #6a6a62;
    --gray-800:     #2a2a24;
    --text-dark:    #1a1a16;
    --text-mid:     #3d3d36;
    --text-light:   #6a6a62;
    --danger:       #c0392b;
    --success:      #1a5c34;
    --warning:      #c9a84c;
    --font-display: 'Barlow Condensed', sans-serif;
    --font-body:    'Barlow', sans-serif;
    --radius-sm:    4px;
    --radius-md:    8px;
    --radius-lg:    16px;
    --shadow-sm:    0 2px 8px rgba(0,0,0,0.08);
    --shadow-md:    0 4px 20px rgba(0,0,0,0.12);
    --shadow-lg:    0 8px 40px rgba(0,0,0,0.16);
    --transition:   0.2s ease;
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
    background: var(--cream);
}

a { color: var(--green-mid); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--green-bright); }
img { max-width: 100%; display: block; }
ul { list-style: none; }

h1, h2, h3, h4, h5 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.15;
    color: var(--text-dark);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.2rem; }

p { margin-bottom: 1rem; color: var(--text-mid); }
p:last-child { margin-bottom: 0; }

/* ============================================================
   DARK BACKGROUND TEXT — ALL WHITE
   Applies to: header, hero, page-hero, cta-section, footer,
   any dark green background section.
   ============================================================ */

.site-header,
.hero,
.page-hero,
.cta-section,
.site-footer,
.bg-dark {
    color: #ffffff;
}

.site-header p,
.site-header span,
.site-header li,
.hero p,
.hero span,
.hero li,
.hero h1,
.hero h2,
.hero h3,
.hero h4,
.page-hero p,
.page-hero span,
.page-hero h1,
.page-hero h2,
.cta-section p,
.cta-section span,
.cta-section h2,
.site-footer p,
.site-footer span,
.site-footer li,
.site-footer h4,
.bg-dark p,
.bg-dark span,
.bg-dark h1,
.bg-dark h2,
.bg-dark h3 {
    color: #ffffff !important;
}

/* Gold accents stay gold on dark */
.site-footer .footer-col h4,
.site-footer .footer-logo,
.site-footer .footer-contact-quick a,
.site-footer .footer-cta,
.hero .hero-badge,
.hero .section-label,
.page-hero .section-label {
    color: var(--gold) !important;
}

/* Footer links white */
.site-footer .footer-col ul a { color: #ffffff !important; }
.site-footer .footer-col ul a:hover { color: var(--gold) !important; }
.site-footer .footer-bottom p { color: #cccccc !important; }
.site-footer .footer-bottom a { color: #cccccc !important; }
.site-footer .footer-note { color: #aaaaaa !important; }
.site-footer .footer-contact-quick a { color: var(--gold) !important; }

/* Hero white text */
.hero h1 { color: #ffffff !important; }
.hero h1 span { color: var(--gold) !important; }
.hero-desc { color: #ffffff !important; }
.hero-stat .num { color: var(--gold) !important; }
.hero-stat .lbl { color: #cccccc !important; }
.trust-item { color: #ffffff !important; }

/* Page hero white */
.page-hero h1 { color: #ffffff !important; }
.page-hero p { color: #ffffff !important; }
.breadcrumb { color: #cccccc !important; }
.breadcrumb a { color: var(--gold) !important; }
.breadcrumb span { color: #aaaaaa !important; }

/* CTA section white */
.cta-section h2 { color: #ffffff !important; }
.cta-section p { color: #ffffff !important; }

/* ---- Layout ---- */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }
.section-lg { padding: 7rem 0; }

.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header h2 { margin-bottom: 0.75rem; }
.section-header p { max-width: 600px; margin: 0 auto; color: var(--text-light); font-size: 1.1rem; }

.section-label {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.75rem;
}

/* ---- Header ---- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--green-dark);
    border-bottom: 2px solid var(--gold);
    box-shadow: var(--shadow-md);
}

.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #ffffff !important;
}

.logo-icon { font-size: 1.8rem; line-height: 1; }

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-main {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 0.02em;
}

.logo-tag {
    font-size: 0.72rem;
    color: var(--gold);
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.main-nav a {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #ffffff !important;
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}

.main-nav a:hover,
.main-nav a.active {
    color: #ffffff !important;
    background: rgba(255,255,255,0.15);
}

.main-nav .nav-cta {
    background: var(--gold);
    color: var(--green-dark) !important;
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-sm);
    font-weight: 700;
}

.main-nav .nav-cta:hover { background: #e0bc60; color: var(--green-dark) !important; }

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

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #ffffff;
    transition: var(--transition);
}

/* ---- Buttons ---- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.8rem 2rem;
    border-radius: var(--radius-sm);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
}

.btn-primary { background: var(--green-mid); color: #ffffff !important; border-color: var(--green-mid); }
.btn-primary:hover { background: var(--green-dark); border-color: var(--green-dark); color: #ffffff !important; }

.btn-gold { background: var(--gold); color: var(--green-dark) !important; border-color: var(--gold); }
.btn-gold:hover { background: #e0bc60; border-color: #e0bc60; color: var(--green-dark) !important; }

.btn-outline { background: transparent; color: var(--green-mid) !important; border-color: var(--green-mid); }
.btn-outline:hover { background: var(--green-mid); color: #ffffff !important; }

.btn-outline-white { background: transparent; color: #ffffff !important; border-color: rgba(255,255,255,0.6); }
.btn-outline-white:hover { background: rgba(255,255,255,0.15); color: #ffffff !important; border-color: #ffffff; }

.btn-sm { padding: 0.5rem 1.25rem; font-size: 0.85rem; }
.btn-lg { padding: 1rem 2.5rem; font-size: 1.1rem; }

/* ---- Hero ---- */
.hero {
    background: var(--green-dark);
    position: relative;
    overflow: hidden;
    padding: 6rem 0 5rem;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(45,138,82,0.15) 0%, transparent 70%);
    pointer-events: none;
}

.hero-pattern {
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(45deg, transparent, transparent 40px, rgba(255,255,255,0.015) 40px, rgba(255,255,255,0.015) 41px);
    pointer-events: none;
}

.hero-content { position: relative; z-index: 2; max-width: 700px; }

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(201,168,76,0.15);
    border: 1px solid rgba(201,168,76,0.4);
    color: var(--gold);
    font-family: var(--font-display);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.4rem 1rem;
    border-radius: 100px;
    margin-bottom: 1.5rem;
}

.hero h1 { color: #ffffff !important; margin-bottom: 1.25rem; font-size: clamp(2.5rem, 6vw, 4.5rem); font-weight: 800; line-height: 1.05; }
.hero h1 span { color: var(--gold) !important; }
.hero-desc { color: #ffffff !important; font-size: 1.15rem; margin-bottom: 2.5rem; max-width: 560px; line-height: 1.7; }

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

.hero-stats { display: flex; flex-wrap: wrap; gap: 2.5rem; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.2); }
.hero-stat .num { font-family: var(--font-display); font-size: 2rem; font-weight: 800; color: var(--gold) !important; line-height: 1; }
.hero-stat .lbl { font-size: 0.82rem; color: #dddddd !important; text-transform: uppercase; letter-spacing: 0.08em; margin-top: 0.25rem; }

/* ---- Cards ---- */
.card {
    background: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid var(--gray-200);
    padding: 1.75rem;
    transition: all var(--transition);
}

.card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); border-color: var(--green-bright); }

.card-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.5rem; }
.card-icon { font-size: 2rem; margin-bottom: 1rem; display: block; }
.card-title { font-family: var(--font-display); font-size: 1.25rem; font-weight: 700; margin-bottom: 0.5rem; color: var(--text-dark); }
.card-price { font-family: var(--font-display); font-size: 1.6rem; font-weight: 800; color: var(--green-mid); margin-bottom: 0.25rem; }
.card-unit { font-size: 0.8rem; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.06em; }

/* ---- Price Table ---- */
.price-table { width: 100%; border-collapse: collapse; background: var(--white); border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm); }
.price-table th { background: var(--green-dark); color: #ffffff !important; font-family: var(--font-display); font-size: 0.9rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 1rem 1.25rem; text-align: left; }
.price-table td { padding: 0.9rem 1.25rem; border-bottom: 1px solid var(--gray-100); color: var(--text-mid); font-size: 0.95rem; }
.price-table tr:last-child td { border-bottom: none; }
.price-table tr:nth-child(even) td { background: var(--gray-100); }
.price-table tr:hover td { background: var(--green-light); }
.price-table .price-cell { font-family: var(--font-display); font-size: 1.15rem; font-weight: 700; color: var(--green-mid); }

/* ---- Process Steps ---- */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; counter-reset: step; }

.step { text-align: center; padding: 2rem 1.5rem; background: var(--white); border-radius: var(--radius-md); border: 1px solid var(--gray-200); position: relative; }

.step::before {
    counter-increment: step;
    content: counter(step);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--green-mid);
    color: #ffffff;
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 800;
    border-radius: 50%;
    margin: 0 auto 1.25rem;
}

.step-icon { font-size: 1.8rem; margin-bottom: 0.75rem; }
.step h3 { font-size: 1.2rem; margin-bottom: 0.5rem; }

/* ---- Notice / Alert Boxes ---- */
.notice { padding: 1.25rem 1.5rem; border-radius: var(--radius-md); border-left: 4px solid; margin-bottom: 1.5rem; }
.notice-green { background: var(--green-light); border-color: var(--green-mid); color: var(--green-dark) !important; }
.notice-green p, .notice-green span, .notice-green strong { color: var(--green-dark) !important; }
.notice-gold { background: var(--gold-light); border-color: var(--gold); color: #5a4010 !important; }
.notice-gold p, .notice-gold span, .notice-gold strong, .notice-gold a { color: #5a4010 !important; }
.notice-red { background: #fdf0ee; border-color: var(--danger); color: #7a1f17 !important; }
.notice-red p, .notice-red span, .notice-red strong { color: #7a1f17 !important; }

/* ---- Forms ---- */
.form-group { margin-bottom: 1.5rem; }
.form-group label { display: block; font-weight: 500; margin-bottom: 0.4rem; color: var(--text-dark); font-size: 0.92rem; }
.form-group label .required { color: var(--danger); margin-left: 2px; }

.form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-dark);
    background: var(--white);
    transition: border-color var(--transition), box-shadow var(--transition);
}

.form-control:focus { outline: none; border-color: var(--green-mid); box-shadow: 0 0 0 3px rgba(45,138,82,0.12); }
select.form-control { cursor: pointer; }
textarea.form-control { resize: vertical; min-height: 120px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-note { font-size: 0.82rem; color: var(--text-light); margin-top: 0.35rem; }

/* ---- Badges ---- */
.badge { display: inline-block; font-family: var(--font-display); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; padding: 0.2rem 0.65rem; border-radius: 100px; }
.badge-green { background: var(--green-light); color: var(--green-mid); }
.badge-gold { background: var(--gold-light); color: #7a5e10; }
.badge-gray { background: var(--gray-100); color: var(--gray-600); }
.badge-red { background: #fdf0ee; color: var(--danger); }
.badge-blue { background: #e8f0fb; color: #1a4a8a; }

/* ---- Page Hero (inner pages) ---- */
.page-hero {
    background: var(--green-dark);
    padding: 4rem 0 3.5rem;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(45deg, transparent, transparent 40px, rgba(255,255,255,0.018) 40px, rgba(255,255,255,0.018) 41px);
}

.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: #ffffff !important; font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 0.5rem; }
.page-hero p { color: #ffffff !important; font-size: 1.05rem; max-width: 560px; }

.breadcrumb { display: flex; align-items: center; gap: 0.5rem; font-size: 0.82rem; color: #cccccc; margin-bottom: 1rem; }
.breadcrumb a { color: var(--gold) !important; }
.breadcrumb span { color: #aaaaaa; }

/* ---- FAQ Accordion ---- */
.faq-item { border: 1px solid var(--gray-200); border-radius: var(--radius-md); margin-bottom: 0.75rem; overflow: hidden; background: var(--white); }

.faq-question {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 1.25rem 1.5rem;
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    transition: background var(--transition);
}

.faq-question:hover { background: var(--green-light); }
.faq-question.open { background: var(--green-light); color: var(--green-dark); }
.faq-icon { font-size: 1.4rem; font-weight: 300; flex-shrink: 0; transition: transform var(--transition); color: var(--green-mid); }
.faq-question.open .faq-icon { transform: rotate(45deg); }
.faq-answer { display: none; padding: 0 1.5rem 1.25rem; color: var(--text-mid); line-height: 1.75; border-top: 1px solid var(--gray-100); padding-top: 1rem; }
.faq-answer.open { display: block; }

/* ---- CTA Section ---- */
.cta-section {
    background: var(--green-dark);
    padding: 5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -30%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(45,138,82,0.2) 0%, transparent 70%);
}

.cta-section .container { position: relative; z-index: 1; }
.cta-section h2 { color: #ffffff !important; margin-bottom: 1rem; }
.cta-section p { color: #ffffff !important; margin-bottom: 2rem; font-size: 1.1rem; }

/* ---- Trust Bar ---- */
.trust-bar { background: var(--green-mid); padding: 1rem 0; }
.trust-bar .container { display: flex; justify-content: center; flex-wrap: wrap; gap: 2.5rem; }
.trust-item { display: flex; align-items: center; gap: 0.5rem; color: #ffffff !important; font-family: var(--font-display); font-size: 0.9rem; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; }
.trust-item span:first-child { font-size: 1.2rem; }

/* ---- Payment Info Box ---- */
.payment-info { background: var(--gold-light); border: 1.5px solid var(--gold); border-radius: var(--radius-md); padding: 1.5rem; margin: 1.5rem 0; }
.payment-info h4 { color: #5a4010; margin-bottom: 0.75rem; font-size: 1rem; }
.payment-info p { color: #5a4010; margin-bottom: 0.5rem; font-size: 0.92rem; }

/* ---- Data Tables ---- */
.data-table-wrap { overflow-x: auto; border-radius: var(--radius-md); box-shadow: var(--shadow-sm); }

/* ---- Page Content Sections ---- */
.content-section { padding: 4rem 0; }

.content-block {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 2.5rem;
    border: 1px solid var(--gray-200);
    margin-bottom: 2rem;
}

.content-block h3 { color: var(--green-dark); margin-bottom: 1rem; padding-bottom: 0.75rem; border-bottom: 2px solid var(--green-light); }
.content-block ul { padding-left: 1.25rem; }
.content-block ul li { list-style: disc; color: var(--text-mid); margin-bottom: 0.4rem; font-size: 0.95rem; }

/* ---- Admin Styles ---- */
.admin-layout { display: grid; grid-template-columns: 240px 1fr; min-height: 100vh; }
.admin-sidebar { background: var(--green-dark); padding: 2rem 0; }
.admin-sidebar-header { padding: 0 1.5rem 1.5rem; border-bottom: 1px solid rgba(255,255,255,0.1); margin-bottom: 1.5rem; }

.admin-nav a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    color: #ffffff !important;
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: all var(--transition);
}

.admin-nav a:hover, .admin-nav a.active { background: rgba(255,255,255,0.1); color: #ffffff !important; border-left: 3px solid var(--gold); }
.admin-main { padding: 2rem; background: var(--gray-100); }
.admin-card { background: var(--white); border-radius: var(--radius-md); padding: 1.5rem; box-shadow: var(--shadow-sm); margin-bottom: 1.5rem; }

.stat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 1rem; margin-bottom: 2rem; }
.stat-card { background: var(--white); border-radius: var(--radius-md); padding: 1.5rem; box-shadow: var(--shadow-sm); border-left: 4px solid var(--green-mid); }
.stat-card .stat-num { font-family: var(--font-display); font-size: 2rem; font-weight: 800; color: var(--green-mid); line-height: 1; }
.stat-card .stat-lbl { font-size: 0.82rem; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.06em; margin-top: 0.25rem; }

/* ---- Confirmation Page ---- */
.confirm-box { max-width: 640px; margin: 0 auto; background: var(--white); border-radius: var(--radius-lg); padding: 3rem; box-shadow: var(--shadow-md); text-align: center; }
.confirm-icon { font-size: 4rem; margin-bottom: 1rem; display: block; }
.confirm-id { font-family: var(--font-display); font-size: 1.4rem; font-weight: 800; color: var(--green-mid); background: var(--green-light); padding: 0.5rem 1.5rem; border-radius: 100px; display: inline-block; margin: 1rem 0; letter-spacing: 0.1em; }
.confirm-details { text-align: left; background: var(--gray-100); border-radius: var(--radius-md); padding: 1.5rem; margin: 1.5rem 0; }
.confirm-row { display: flex; justify-content: space-between; padding: 0.5rem 0; border-bottom: 1px solid var(--gray-200); font-size: 0.92rem; }
.confirm-row:last-child { border-bottom: none; }
.confirm-row .key { color: var(--text-light); }
.confirm-row .val { font-weight: 600; color: var(--text-dark); text-align: right; }

/* ---- Footer ---- */
.site-footer {
    background: var(--green-dark);
    padding: 4rem 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.15);
}

.footer-logo { font-family: var(--font-display); font-size: 1.3rem; font-weight: 800; color: #ffffff !important; margin-bottom: 1rem; }
.footer-about { font-size: 0.9rem; line-height: 1.7; margin-bottom: 1.25rem; color: #ffffff !important; }

.footer-contact-quick { display: flex; flex-direction: column; gap: 0.4rem; }
.footer-contact-quick a { color: var(--gold) !important; font-size: 0.9rem; font-weight: 500; transition: color var(--transition); }
.footer-contact-quick a:hover { color: #e0bc60 !important; }

.footer-col h4 { font-family: var(--font-display); font-size: 0.85rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold) !important; margin-bottom: 1rem; }
.footer-col ul { display: flex; flex-direction: column; gap: 0.4rem; }
.footer-col ul a { color: #ffffff !important; font-size: 0.88rem; transition: color var(--transition); }
.footer-col ul a:hover { color: var(--gold) !important; }

.footer-address,
.footer-hours,
.footer-area { font-size: 0.88rem; margin-bottom: 0.6rem; line-height: 1.6; color: #ffffff !important; }

.footer-cta {
    display: inline-block;
    background: var(--gold);
    color: var(--green-dark) !important;
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.6rem 1.5rem;
    border-radius: var(--radius-sm);
    margin-top: 1rem;
    transition: background var(--transition);
}
.footer-cta:hover { background: #e0bc60; color: var(--green-dark) !important; }

.footer-bottom { padding: 1.5rem 0; text-align: center; }
.footer-bottom p { color: #cccccc !important; font-size: 0.82rem; margin-bottom: 0.25rem; }
.footer-bottom a { color: #cccccc !important; }
.footer-note { color: #aaaaaa !important; font-size: 0.75rem !important; }

/* ---- Background variants ---- */
.bg-white { background: var(--white); }
.bg-cream { background: var(--cream); }
.bg-green-light { background: var(--green-light); }
.bg-dark { background: var(--green-dark); }

/* ---- Utility ---- */
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-green { color: var(--green-mid); }
.text-light { color: var(--text-light); }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.fw-bold { font-weight: 700; }
.font-display { font-family: var(--font-display); }
.divider { border: none; border-top: 1px solid var(--gray-200); margin: 2rem 0; }

/* ---- Responsive ---- */
@media (max-width: 1024px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .nav-toggle { display: flex; }

    .main-nav {
        display: none;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--green-dark);
        flex-direction: column;
        padding: 1rem;
        gap: 0.25rem;
        border-bottom: 2px solid var(--gold);
        box-shadow: var(--shadow-lg);
        z-index: 99;
    }

    .main-nav.open { display: flex; }
    .main-nav a { padding: 0.75rem 1rem; font-size: 1rem; border-radius: var(--radius-sm); }
    .hero { padding: 4rem 0 3rem; }
    .form-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .admin-layout { grid-template-columns: 1fr; }
    .admin-sidebar { display: none; }
    .hero-stats { gap: 1.5rem; }
}

@media (max-width: 480px) {
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { text-align: center; justify-content: center; }
    .confirm-box { padding: 2rem 1.25rem; }
}
