/* ===== Variables ===== */
:root {
    --primary: #e67e22;
    --primary-dark: #d35400;
    --accent: #e67e22;
    --dark: #2c3e50;
    --darker: #1a252f;
    --topbar-brown: #2c1810;
    --light: #f4f4f4;
    --white: #ffffff;
    --gray: #7f8c8d;
    --btn-outline-border: #c0392b;
    --radius: 8px;
    --radius-lg: 8px;
    --shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    --transition: 0.3s ease;
}

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background: var(--white);
}

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

ul {
    list-style: none;
}

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

section {
    padding: 80px 5%;
}

h1, h2, h3, h4 {
    line-height: 1.2;
}

/* ===== Top Bar ===== */
.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 5%;
    background: var(--topbar-brown);
    color: var(--white);
    font-size: 0.85rem;
}

.top-bar-left {
    display: flex;
    gap: 24px;
    align-items: center;
}

.top-bar-left span {
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0.9;
}

.top-bar-left i {
    color: var(--primary);
    font-size: 0.9rem;
}

.top-bar-right {
    display: flex;
    gap: 16px;
    align-items: center;
}

.top-bar-right a {
    color: var(--white);
    opacity: 0.8;
    transition: opacity var(--transition);
}

.top-bar-right a:hover {
    opacity: 1;
    color: var(--primary);
}

.top-bar-search {
    margin-left: 8px;
}

/* ===== Header (sticky nav) ===== */
.header-transparent {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--topbar-brown);
}

/* ===== Navbar ===== */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 5%;
    background: transparent;
}

.header-transparent .navbar {
    background: transparent;
}

.logo {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.logo-main {
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 1.75rem;
    letter-spacing: 0.5px;
    color: var(--white);
}

.logo-main span,
.logo span {
    color: var(--primary);
}

.logo-sub {
    font-size: 0.65rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-links a {
    padding: 10px 18px;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--white);
    border-radius: var(--radius);
    transition: color var(--transition);
    position: relative;
}

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

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 18px;
    right: 18px;
    height: 2px;
    background: var(--primary);
    border-radius: 1px;
}

.btn-donate {
    background: var(--primary) !important;
    color: var(--white) !important;
    padding: 12px 28px !important;
    border-radius: var(--radius) !important;
    font-weight: 700 !important;
    font-size: 0.85rem !important;
    text-transform: none !important;
    transition: background var(--transition) !important;
}

.btn-donate::after {
    display: none !important;
}

.btn-donate:hover {
    background: var(--primary-dark) !important;
    color: var(--white) !important;
}

/* Footer logo (simpler - uses old structure) */
footer .logo {
    flex-direction: row;
    align-items: baseline;
}

footer .logo .logo-sub {
    display: none;
}

/* Burger Menu */
.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.burger span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}


/* ===== Featured Image Section ===== */
.featured-image-section {
    position: relative;
    overflow: hidden;
    min-height: 65vh;
    background: var(--dark);
}

/* Title overlay at bottom - keeps children's faces visible */
.hero-title-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 48px 5% 40px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
    color: var(--white);
    text-align: center;
    z-index: 5;
}

.hero-title-overlay h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 12px;
}

.page-hero-tagline {
    font-size: clamp(1rem, 2vw, 1.35rem);
    opacity: 0.95;
}

.hero-slides,
.featured-image-section .hero-slides {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.hero-slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4));
}

.hero-slide.active {
    opacity: 1;
    z-index: 1;
}

.featured-image-section .particles-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* ===== Jump to Navigation ===== */
.jump-to-nav {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px 5%;
    background: var(--light);
    flex-wrap: wrap;
}

.jump-to-label {
    font-weight: 600;
    color: var(--dark);
}

.jump-to-nav a {
    color: var(--primary);
    font-weight: 500;
}

.jump-to-nav a:hover {
    text-decoration: underline;
}

/* ===== Programme Sections (UNICEF-style) ===== */
.programme-section {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 5%;
}

.programme-section h2 {
    font-size: 2rem;
    margin-bottom: 24px;
    color: var(--dark);
}

.programme-intro {
    font-size: 1.15rem;
    color: var(--gray);
    margin-bottom: 20px;
    line-height: 1.7;
}

.programme-section > p {
    color: var(--gray);
    margin-bottom: 32px;
    line-height: 1.7;
}

.challenge-subsection {
    margin: 48px 0;
}

.challenge-subsection h3 {
    font-size: 1.3rem;
    margin-bottom: 16px;
    color: var(--dark);
}

.challenge-subsection p {
    color: var(--gray);
    margin-bottom: 20px;
    line-height: 1.7;
}

.challenge-subsection img {
    width: 100%;
    max-width: 600px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.solution-tagline {
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: 20px;
}

.programme-section blockquote {
    font-size: 1.2rem;
    color: var(--dark);
    border-left: 4px solid var(--primary);
    padding-left: 24px;
    margin: 32px 0 48px;
    font-style: italic;
}

.programme-solution {
    background: var(--light);
}

.solution-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 24px;
}

.solution-card {
    display: block;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform var(--transition);
}

.solution-card:hover {
    transform: translateY(-4px);
}

.solution-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.solution-card span {
    display: block;
    padding: 16px;
    background: var(--white);
    font-weight: 600;
}

.programme-resources {
    background: var(--white);
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 32px;
    margin-bottom: 48px;
}

.resource-card {
    padding: 32px 24px;
    background: var(--light);
    border-radius: var(--radius);
}

.resource-card h3 {
    margin-bottom: 12px;
    font-size: 1.2rem;
}

.resource-card p {
    color: var(--gray);
    font-size: 0.95rem;
}

.resource-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

/* ===== Hero (legacy - for projects/about pages) ===== */
.hero {
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    margin-top: -120px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    color: var(--white);
    text-align: left;
    padding: 240px 5% 80px;
    padding-left: 8%;
}

.hero-slides {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.hero-slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55));
}

.hero-slide.active {
    opacity: 1;
    z-index: 1;
}

.particles-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 5;
    max-width: 620px;
}

.hero-content h1 {
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
}

.hero-content p {
    font-size: clamp(1rem, 1.8vw, 1.15rem);
    margin-bottom: 32px;
    opacity: 0.9;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-buttons .btn-primary {
    margin-right: 0;
}

/* Hero slider arrows - square style like reference */
.hero-slider-arrow {
    position: absolute;
    z-index: 10;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: var(--white);
    border-radius: 4px;
    cursor: pointer;
    z-index: 10;
    transition: background var(--transition);
}

.hero-slider-arrow:hover {
    background: var(--primary-dark);
}

.hero-prev {
    left: 2%;
}

.hero-next {
    right: 2%;
}

/* ===== Buttons ===== */
.btn-primary {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 14px 36px;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 1rem;
    transition: background var(--transition), transform var(--transition);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-secondary {
    display: inline-block;
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 12px 32px;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 1rem;
    transition: background var(--transition), color var(--transition);
}

.btn-secondary:hover {
    background: var(--primary);
    color: var(--white);
}

/* Learn More button - white with red border (reference style) */
.btn-outline {
    background: var(--white) !important;
    color: #1a1a1a !important;
    border: 2px solid var(--btn-outline-border) !important;
}

.btn-outline:hover {
    background: var(--btn-outline-border) !important;
    color: var(--white) !important;
    border-color: var(--btn-outline-border) !important;
}

/* ===== SDG Section ===== */
.sdg-section {
    text-align: center;
    background: var(--white);
}

.sdg-section h2 {
    font-size: 2rem;
    margin-bottom: 16px;
}

.sdg-section .section-intro {
    max-width: 650px;
    margin: 0 auto 48px;
    color: var(--gray);
    font-size: 1.1rem;
}

.sdg-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.sdg-card {
    padding: 24px 16px;
    background: var(--light);
    border-radius: var(--radius);
    transition: transform var(--transition);
}

.sdg-card:hover {
    transform: translateY(-4px);
}

.sdg-card img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin: 0 auto 12px;
}

.sdg-card h3 {
    font-size: 1rem;
    color: var(--primary);
    margin-bottom: 4px;
}

.sdg-card p {
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 8px;
}

.sdg-card span {
    font-size: 0.85rem;
    color: var(--gray);
}

.sdg-attribution {
    margin-top: 32px;
    font-size: 0.8rem;
    color: var(--gray);
}

.sdg-attribution a {
    color: var(--primary);
}

/* ===== Kids Section (The Need) ===== */
.kids-section {
    text-align: center;
    background: var(--light);
}

.kids-section h2 {
    font-size: 2rem;
    margin-bottom: 16px;
}

.kids-section .section-intro {
    max-width: 650px;
    margin: 0 auto 48px;
    color: var(--gray);
    font-size: 1.1rem;
}

.kids-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    max-width: 1100px;
    margin: 0 auto;
}

.kids-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform var(--transition);
}

.kids-card:hover {
    transform: translateY(-4px);
}

.kids-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    background: var(--light);
}

.kids-card .card-body {
    padding: 24px;
}

.kids-card h3 {
    margin-bottom: 12px;
    font-size: 1.2rem;
}

.kids-card p {
    color: var(--gray);
    font-size: 0.95rem;
}

/* ===== Education Gallery ===== */
.education-gallery {
    text-align: center;
    background: var(--light);
}

.education-gallery h2 {
    font-size: 2rem;
    margin-bottom: 16px;
}

.education-gallery .section-intro {
    max-width: 650px;
    margin: 0 auto 48px;
    color: var(--gray);
    font-size: 1.1rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.gallery-item span {
    display: block;
    padding: 12px;
    background: var(--white);
    font-size: 0.95rem;
    font-weight: 600;
}

/* ===== Help Section ===== */
.help-section {
    text-align: center;
}

.help-section h2 {
    font-size: 2rem;
    margin-bottom: 48px;
}

.help-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

.help-card {
    padding: 32px 24px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: transform var(--transition);
}

.help-card:hover {
    transform: translateY(-4px);
}

.help-icon {
    font-size: 3rem;
    margin-bottom: 16px;
}

.help-card h3 {
    margin-bottom: 12px;
    font-size: 1.2rem;
}

.help-card p {
    color: var(--gray);
    font-size: 0.95rem;
}

/* ===== Projects Intro ===== */
.projects-intro {
    max-width: 700px;
    margin: 0 auto 48px;
    text-align: center;
    color: var(--gray);
    font-size: 1.1rem;
}

/* ===== Donate CTA ===== */
.donate-cta {
    text-align: center;
    background: var(--light);
}

.donate-cta h2 {
    font-size: 1.8rem;
    margin-bottom: 12px;
}

.donate-cta p {
    color: var(--gray);
    margin-bottom: 24px;
}

/* ===== Impact Section (legacy - kept for compatibility) ===== */
.impact {
    text-align: center;
    background: var(--light);
}

.impact h2 {
    font-size: 2rem;
    margin-bottom: 48px;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
}

.impact-card {
    background: var(--white);
    padding: 32px 16px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.impact-card .counter {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    display: block;
    margin-bottom: 8px;
}

.impact-card p {
    color: var(--gray);
    font-weight: 500;
}

/* ===== Mission Section ===== */
.mission {
    text-align: center;
    max-width: 750px;
    margin: 0 auto;
}

.mission h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.mission p {
    color: var(--gray);
    font-size: 1.1rem;
    margin-bottom: 32px;
}

/* ===== Donate Section ===== */
.donate-section {
    text-align: center;
    background: var(--dark);
    color: var(--white);
    padding: 60px 5%;
}

.programme-resources .donate-section {
    margin-top: 48px;
}

.donate-section h2 {
    font-size: 2rem;
    margin-bottom: 12px;
}

.donate-section > p {
    opacity: 0.8;
    max-width: 550px;
    margin: 0 auto 32px;
}

.donate-amounts {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.amt-btn {
    padding: 12px 28px;
    border: 2px solid var(--primary);
    background: transparent;
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: var(--radius);
    cursor: pointer;
    transition: background var(--transition), color var(--transition);
}

.amt-btn:hover,
.amt-btn.selected {
    background: var(--primary);
    color: var(--white);
}

/* ===== Donate Page ===== */
.donate-page-content {
    max-width: 700px;
    margin: 0 auto;
    padding: 60px 5%;
}

.donate-intro {
    text-align: center;
    color: var(--gray);
    font-size: 1.1rem;
    margin-bottom: 48px;
}

.donate-form {
    background: var(--light);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.donate-amount-section {
    margin-bottom: 40px;
}

.donate-amount-section > label {
    display: block;
    font-weight: 600;
    margin-bottom: 16px;
}

.donate-form .donate-amounts {
    margin-bottom: 24px;
}

.donate-form .amt-btn {
    color: var(--dark);
    border-color: var(--dark);
}

.donate-form .amt-btn:hover,
.donate-form .amt-btn.selected {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.donate-custom {
    margin-top: 20px;
}

.donate-custom label {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.donate-custom input {
    width: 100%;
    max-width: 200px;
    padding: 12px 16px;
    border: 2px solid #ddd;
    border-radius: var(--radius);
    font-size: 1rem;
}

.donate-donor-info {
    margin-bottom: 32px;
}

.donate-donor-info h3 {
    margin-bottom: 24px;
}

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

@media (max-width: 600px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

.donate-form .form-group {
    margin-bottom: 20px;
}

.donate-form .form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
}

.donate-form .form-group input,
.donate-form .form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #ddd;
    border-radius: var(--radius);
    font-family: inherit;
}

.donate-form .form-group input:focus,
.donate-form .form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.donate-form textarea {
    height: 100px;
    resize: vertical;
}

.btn-donate-submit {
    width: 100%;
    padding: 16px;
    font-size: 1.1rem;
}

.btn-donate-submit i {
    margin-right: 8px;
}

.donate-security {
    text-align: center;
    margin-top: 32px;
    color: var(--gray);
    font-size: 0.9rem;
}

.donate-security i {
    color: var(--primary);
    margin-right: 8px;
}

/* ===== Project Cards ===== */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    max-width: 1100px;
    margin: 0 auto;
}

.project-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform var(--transition);
}

.project-card:hover {
    transform: translateY(-4px);
}

.project-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background: var(--light);
}

.project-card .card-body {
    padding: 24px;
}

.project-card h3 {
    margin-bottom: 8px;
    font-size: 1.2rem;
}

.project-card p {
    color: var(--gray);
    margin-bottom: 16px;
    font-size: 0.95rem;
}

.progress-bar {
    background: var(--light);
    border-radius: 50px;
    height: 10px;
    overflow: hidden;
    margin-bottom: 8px;
}

.progress-bar .fill {
    height: 100%;
    background: var(--primary);
    border-radius: 50px;
    transition: width 1s ease;
}

.progress-label {
    font-size: 0.85rem;
    color: var(--gray);
}

/* ===== Page Header (subpages) ===== */
.page-header {
    background: var(--dark);
    color: var(--white);
    text-align: center;
    padding: 140px 5% 60px;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 8px;
}

.page-header p {
    opacity: 0.8;
    font-size: 1.1rem;
}

/* ===== About Page ===== */
.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-content h2 {
    font-size: 1.8rem;
    margin-bottom: 16px;
}

.about-content p {
    color: var(--gray);
    margin-bottom: 24px;
    font-size: 1.05rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.team-card {
    padding: 24px;
}

.team-card .avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--light);
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary);
    font-weight: 700;
}

.team-card h3 {
    margin-bottom: 4px;
}

.team-card p {
    color: var(--gray);
    font-size: 0.9rem;
}

/* ===== Contact Form ===== */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #ddd;
    border-radius: var(--radius);
    font-family: inherit;
    font-size: 1rem;
    transition: border-color var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.contact-form textarea {
    height: 150px;
    resize: vertical;
}

.contact-form button {
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 14px 36px;
    font-size: 1rem;
    font-weight: 700;
    border-radius: var(--radius);
    cursor: pointer;
    transition: background var(--transition);
}

.contact-form button:hover {
    background: var(--primary-dark);
}

/* ===== Contact Info (no form) ===== */
.contact-info-section {
    text-align: center;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
}

.contact-info-item {
    padding: 40px 24px;
    background: var(--light);
    border-radius: var(--radius);
    transition: transform var(--transition);
}

.contact-info-item:hover {
    transform: translateY(-4px);
}

.contact-info-item i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 16px;
}

.contact-info-item h3 {
    margin-bottom: 12px;
    font-size: 1.1rem;
}

.contact-info-item a,
.contact-info-item p {
    color: var(--gray);
    font-size: 1.05rem;
}

.contact-info-item a:hover {
    color: var(--primary);
}

/* ===== Footer ===== */
footer {
    background: var(--dark);
    color: var(--white);
    padding: 60px 5% 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto 40px;
}

.footer-col p {
    opacity: 0.8;
    margin-top: 12px;
    font-size: 0.95rem;
}

.footer-col h4 {
    margin-bottom: 16px;
    font-size: 1.1rem;
}

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col ul a {
    opacity: 0.8;
    transition: opacity var(--transition);
}

.footer-col ul a:hover {
    opacity: 1;
    color: var(--primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.6;
    font-size: 0.9rem;
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
    .top-bar-left span:nth-child(n+2) {
        display: none;
    }

    .top-bar-left span:first-child {
        display: flex;
    }
}

@media (max-width: 768px) {
    .top-bar {
        display: none;
    }

    .header-transparent .navbar {
        background: var(--topbar-brown);
        padding: 16px 5%;
    }

    .burger {
        display: flex;
        z-index: 1001;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 70%;
        max-width: 300px;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        gap: 24px;
        padding: 40px;
        box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
        transition: right var(--transition);
    }

    .nav-links.open {
        right: 0;
    }

    .nav-links a {
        font-size: 1rem;
        color: var(--dark);
    }

    .nav-links a.active {
        color: var(--primary);
    }

    .featured-image-section {
        min-height: 45vh;
    }

    .hero {
        min-height: 80vh;
        padding: 80px 5% 60px;
        padding-left: 8%;
        justify-content: flex-start;
        text-align: left;
        background-attachment: scroll;
    }

    .hero-slide {
        background-attachment: scroll;
    }

    .jump-to-nav {
        padding: 16px 5%;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-buttons {
        justify-content: flex-start;
    }

    .hero-slider-arrow {
        display: none;
    }

    .page-header {
        padding: 100px 5% 50px;
    }

    section {
        padding: 60px 5%;
    }
}
