/* ============================================================
   EASTERN HOPE LTD — PREMIUM DEMO STYLES
   ============================================================ */

:root {
    /* Color Palette */
    --primary: #0B3C6F;
    --primary-light: #0f4f8f;
    --primary-dark: #072c53;
    --secondary: #5E6770;
    --secondary-light: #7a848e;
    --accent: #F58220;
    --accent-light: #f7943d;
    --accent-dark: #e07410;
    --bg: #ffffff;
    --bg-off: #f8f9fa;
    --bg-light: #f0f2f5;
    --text: #1a1d21;
    --text-light: #5E6770;
    --text-muted: #8a9099;
    --border: #e2e6ea;
    --border-light: #eef0f2;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow: 0 4px 16px rgba(0, 0, 0, 0.08), 0 2px 6px rgba(0, 0, 0, 0.04);
    --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.12), 0 4px 12px rgba(0, 0, 0, 0.06);
    --shadow-xl: 0 24px 60px rgba(0, 0, 0, 0.16), 0 8px 20px rgba(0, 0, 0, 0.08);
    --radius-sm: 8px;
    --radius: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
    --nav-height: 76px;
    --max-width: 1280px;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--nav-height);
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition);
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* ========== TYPOGRAPHY ========== */
h1, h2, h3, h4, .hero-title, .section-title, .cta-title {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.3;
    color: var(--primary-dark);
}

h1 { font-size: 2.8rem; }
h2 { font-size: 2.2rem; }
h3 { font-size: 1.5rem; }

p {
    margin-bottom: 1rem;
    color: var(--secondary);
}

.text-accent { color: var(--accent); }
.text-white { color: #fff; }
.text-center { text-align: center; }

.section-title {
    margin-bottom: 1.2rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
}

.section-header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2.5rem;
}

/* ========== COLORS ========== */
.bg-primary { background-color: var(--primary); }
.bg-primary-light { background-color: var(--primary-light); }
.bg-accent { background-color: var(--accent); }
.bg-light { background-color: var(--bg-light); }
.bg-off { background-color: var(--bg-off); }
.text-white { color: #fff; }

/* ========== SECTION PADDING ========== */
.section-padding {
    padding: 80px 0;
}

/* ========== BUTTONS ========== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.3px;
    cursor: pointer;
    transition: all var(--transition);
    border: 2px solid transparent;
    text-align: center;
    gap: 8px;
}

.btn-primary {
    background-color: var(--primary);
    color: #fff;
    border-color: var(--primary);
}
.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-accent {
    background-color: var(--accent);
    color: #fff;
    border-color: var(--accent);
}
.btn-accent:hover {
    background-color: var(--accent-dark);
    border-color: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    background-color: transparent;
    color: #fff;
    border-color: rgba(255,255,255,0.6);
}
.btn-outline:hover {
    background-color: rgba(255,255,255,0.15);
    border-color: #fff;
    transform: translateY(-2px);
}

.btn-text {
    background: none;
    border: none;
    color: var(--accent);
    font-weight: 600;
    padding: 8px 0;
}
.btn-text:hover {
    color: var(--accent-dark);
}

.btn-large {
    padding: 16px 40px;
    font-size: 1.1rem;
}

/* ========== JOB CARDS ========== */
.jobs-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.job-card {
    background: #fff;
    border-radius: var(--radius-xl);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

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

.job-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.job-card-header h3 {
    font-size: 1.5rem;
    color: var(--primary);
}

.badge {
    background: var(--bg-light);
    color: var(--primary);
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.85rem;
}

.badge-primary {
    background: var(--accent);
    color: #fff;
}

.job-location {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.job-card h4 {
    font-size: 1.1rem;
    margin: 1rem 0 0.6rem;
    color: var(--text);
}

.job-requirements {
    padding-left: 1.3rem;
    margin-bottom: 1.5rem;
    list-style: disc;
}

.job-requirements li {
    margin-bottom: 0.4rem;
    color: var(--text-light);
    font-size: 0.95rem;
}

/* ========== NAVIGATION ========== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--nav-height);
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: background var(--transition), box-shadow var(--transition);
}

.navbar.scrolled {
    background: rgba(255,255,255,0.98);
    box-shadow: var(--shadow);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--primary);
}
.logo-icon { font-size: 1.8rem; }
.logo-accent { color: var(--accent); }

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    font-weight: 500;
}

.nav-links a {
    position: relative;
    padding: 8px 0;
    color: var(--secondary);
    font-weight: 500;
    transition: color var(--transition);
}

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

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--accent);
    border-radius: 3px;
}

.nav-cta {
    margin-left: 0.5rem;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}
.mobile-toggle span {
    width: 26px;
    height: 3px;
    background: var(--primary);
    border-radius: 3px;
    transition: var(--transition);
}

/* ========== ABOUT PAGE ========== */
.grid-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

/* Values */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.value-card {
    background: #fff;
    padding: 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--border-light);
}
.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}
.value-icon { font-size: 2.8rem; margin-bottom: 1rem; }

/* Timeline */
.timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    padding: 2rem 0;
}
.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--border);
    transform: translateX(-50%);
}
.timeline-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    position: relative;
}
.timeline-item:nth-child(even) { flex-direction: row-reverse; }
.timeline-year {
    width: 70px;
    height: 70px;
    background: var(--accent);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    z-index: 1;
}
.timeline-content {
    width: 45%;
    background: #fff;
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    border: 1px solid var(--border-light);
}

/* Leadership */
.leadership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 2rem;
    text-align: center;
}
.leader-card {
    background: #fff;
    padding: 2rem 1.5rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--border-light);
}
.leader-card img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1rem;
}
.leader-card h3 { margin-bottom: 0.3rem; }

/* Certificates */
.certificates-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}
.cert-card {
    background: #fff;
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    text-align: center;
    min-width: 180px;
    transition: var(--transition);
    border: 1px solid var(--border-light);
}
.cert-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.cert-icon { font-size: 2.5rem; margin-bottom: 0.8rem; }

/* ========== HERO ========== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('https://images.unsplash.com/photo-1541888946425-d81bb19240f5?w=1400&h=900&fit=crop') center/cover no-repeat;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(11,60,111,0.85) 0%, rgba(0,0,0,0.6) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: #fff;
    max-width: 900px;
    padding-top: var(--nav-height);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #fff;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.7);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.scroll-mouse {
    width: 26px;
    height: 40px;
    border: 2px solid rgba(255,255,255,0.6);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}
.scroll-wheel {
    width: 4px;
    height: 8px;
    background: #fff;
    border-radius: 2px;
    animation: scrollWheel 1.8s infinite;
}

@keyframes scrollWheel {
    0% { opacity: 1; transform: translateY(0); }
    100% { opacity: 0; transform: translateY(12px); }
}

/* ========== STATS ========== */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-item h3 {
    font-size: 2.8rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.3rem;
}

.stat-item p {
    color: rgba(255,255,255,0.8);
    font-weight: 500;
}

/* ========== SEARCH ========== */
.search-wrapper {
    max-width: 650px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 50px;
    padding: 6px 6px 6px 24px;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}
.search-wrapper:focus-within {
    box-shadow: 0 0 0 4px rgba(11,60,111,0.15);
}
.search-input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 1rem;
    padding: 12px 0;
    background: transparent;
    color: var(--text);
}
.search-btn {
    background: var(--accent);
    border: none;
    color: #fff;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background var(--transition);
}
.search-btn:hover {
    background: var(--accent-dark);
}

/* ========== CATEGORIES ========== */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.8rem;
}

.category-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 2rem 1.8rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
    border: 1px solid var(--border-light);
    cursor: pointer;
}
.category-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}
.category-icon {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}
.category-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}
.category-card p {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* ========== PRODUCTS GRID ========== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.8rem;
}

.product-card {
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
    border: 1px solid var(--border-light);
    display: flex;
    flex-direction: column;
}
.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}
.product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.product-card-body {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.product-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.4rem;
}
.product-brand {
    font-size: 0.85rem;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 0.4rem;
}
.product-price {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--primary);
    margin: 0.5rem 0;
}
.product-desc {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    flex: 1;
}
.product-availability {
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}
.in-stock { color: #0a8a3f; }
.out-stock { color: #c00; }

.product-card .btn {
    width: 100%;
    margin-top: auto;
}

/* ========== WHY US ========== */
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.why-card {
    background: #fff;
    padding: 2.5rem 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    text-align: center;
    border: 1px solid var(--border-light);
}
.why-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}
.why-icon {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}
.why-card h3 {
    margin-bottom: 0.8rem;
}

/* Branch detailed cards (used on branches.html) */
.branches-grid-detailed {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.branch-card-detailed {
    background: #fff;
    border-radius: var(--radius-xl);
    padding: 2rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

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

.branch-card-detailed h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.branch-services {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-light);
}

/* News toolbar */
.news-toolbar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.news-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.filter-btn {
    padding: 8px 20px;
    border: 1px solid var(--border);
    background: #fff;
    border-radius: 50px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-body);
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
}

.news-grid-full {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.branch-services ul {
    margin-top: 0.5rem;
    padding-left: 1.2rem;
}

.branch-services li {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0.3rem;
}

/* ========== DELIVERY ========== */
.delivery-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}
.delivery-text h2 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 1rem;
}
.delivery-text p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 2rem;
}
.delivery-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
}

/* ========== PROJECTS ========== */
/* Make projects-gallery identical to projects-grid */
.projects-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.8rem;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.8rem;
}
.project-card {
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--border-light);
}
.project-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}
.project-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}
.project-card-body {
    padding: 1.5rem;
}
.project-card h3 {
    margin-bottom: 0.4rem;
}
.project-client {
    color: var(--accent);
    font-weight: 600;
    font-size: 0.9rem;
}

/* ========== TESTIMONIALS ========== */
.testimonial-slider {
    display: flex;
    overflow: hidden;
    gap: 2rem;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 1rem 0;
}
.testimonial-card {
    min-width: 320px;
    flex: 0 0 auto;
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    scroll-snap-align: start;
    border: 1px solid var(--border-light);
}
.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}
.testimonial-header img {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
}
.testimonial-name {
    font-weight: 700;
}
.testimonial-role {
    font-size: 0.85rem;
    color: var(--text-light);
}
.testimonial-rating {
    color: var(--accent);
    margin-bottom: 0.8rem;
}
.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 1.5rem;
}
.dot {
    width: 12px;
    height: 12px;
    background: var(--border);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}
.dot.active {
    background: var(--accent);
    transform: scale(1.3);
}

/* ========== PARTNERS ========== */
.partners-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
}
.partner-logo {
    width: 140px;
    height: 60px;
    background: #fff;
    border-radius: var(--radius);
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.partner-logo:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow);
}
.partner-logo img {
    max-height: 100%;
    filter: grayscale(0.8);
    opacity: 0.7;
    transition: var(--transition);
}
.partner-logo:hover img {
    filter: grayscale(0);
    opacity: 1;
}

/* ========== NEWS ========== */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.8rem;
}
.news-card {
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--border-light);
}
.news-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}
.news-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}
.news-card-body {
    padding: 1.5rem;
}
.news-date {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 0.3rem;
}
.news-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}
.news-category {
    display: inline-block;
    background: var(--bg-light);
    color: var(--primary);
    font-size: 0.75rem;
    padding: 4px 10px;
    border-radius: 20px;
    font-weight: 600;
    margin-top: 0.8rem;
}

/* ========== CTA ========== */
.cta-title {
    font-size: 2.8rem;
    color: #fff;
    margin-bottom: 1rem;
}
.cta-subtitle {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 2rem;
}

/* ========== FOOTER ========== */
.footer {
    background: var(--primary-dark);
    color: rgba(255,255,255,0.8);
    padding: 60px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2.5rem;
    padding-bottom: 3rem;
}
.footer-logo {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 1rem;
}
.footer h4 {
    color: #fff;
    font-weight: 600;
    margin-bottom: 1.2rem;
}
.footer a {
    color: rgba(255,255,255,0.7);
    transition: color var(--transition);
}
.footer a:hover {
    color: #fff;
}
.footer ul li {
    margin-bottom: 0.5rem;
}
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.5);
}

/* ========== QUOTE PAGE ========== */
.quote-layout {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 2.5rem;
    align-items: start;
}

.quote-form {
    background: #fff;
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-light);
}

.quote-form h2 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 1.8rem;
    font-size: 1.8rem;
}

/* Fieldsets & legends */
.quote-form fieldset {
    border: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.quote-form legend {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.15rem;
    color: var(--primary);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--border);
    width: 100%;
}

/* Form rows */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
}

.form-group {
    margin-bottom: 1.2rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.4rem;
    color: var(--text);
    font-size: 0.9rem;
}

/* Inputs, selects, textareas */
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text);
    background: #fff;
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(245, 130, 32, 0.1);
}

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

/* Checkbox label (if used elsewhere) */
.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    cursor: pointer;
    font-size: 0.95rem;
    color: var(--text);
}

/* Sidebar */
.quote-sidebar {
    position: sticky;
    top: calc(var(--nav-height) + 30px);
}

.quote-summary {
    background: var(--primary);
    color: #fff;
    border-radius: var(--radius-xl);
    padding: 2rem;
    box-shadow: var(--shadow-lg);
}

.quote-summary h3 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 1.2rem;
    font-weight: 700;
}

.quote-summary ul {
    margin-bottom: 1.5rem;
}

.quote-summary ul li {
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
    color: rgba(255,255,255,0.9);
}

.quote-summary hr {
    border-color: rgba(255,255,255,0.2);
    margin: 1.5rem 0;
}

.phone-large {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: #fff;
    margin: 0.8rem 0;
}

.email-link {
    color: rgba(255,255,255,0.85);
    font-weight: 500;
    text-decoration: underline;
    transition: color var(--transition);
}
.email-link:hover {
    color: #fff;
}

/* Submit button spacing */
.quote-form .btn-large {
    width: 100%;
    margin-top: 1rem;
}

/* ========== PAGE HERO (subpages) ========== */
.page-hero {
    padding: 100px 0 60px;
    text-align: center;
    background: var(--primary);
}
.page-hero h1 {
    color: #fff;
    font-size: 2.8rem;
    margin-bottom: 0.5rem;
}
.page-hero p {
    color: rgba(255,255,255,0.85);
    font-size: 1.1rem;
}

/* ========== PRODUCT PAGE LAYOUT ========== */
.product-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 2.5rem;
    padding: 60px 0;
}
.sidebar-section {
    margin-bottom: 2rem;
}
.sidebar-section h3 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}
.filter-list li {
    margin-bottom: 0.6rem;
    cursor: pointer;
    color: var(--secondary);
    font-weight: 500;
    transition: var(--transition);
}
.filter-list li:hover,
.filter-list li.active {
    color: var(--accent);
}
.product-toolbar {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}
.sort-select {
    padding: 10px 16px;
    border-radius: 50px;
    border: 1px solid var(--border);
    background: #fff;
    font-family: var(--font-body);
}

/* ========== MODAL ========== */
.product-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 2000;
}
.product-modal.active {
    display: block;
}
.modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
}
.modal-content {
    position: relative;
    max-width: 700px;
    margin: 60px auto;
    background: #fff;
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    z-index: 1;
    box-shadow: var(--shadow-xl);
}
.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--secondary);
}

/* ========== CONTACT PAGE ========== */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-card {
    background: #fff;
    border-radius: var(--radius-xl);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

.contact-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1.2rem;
    color: var(--primary);
    font-weight: 700;
}

.contact-card p,
.contact-card li {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 0.7rem;
}

.branch-contacts {
    list-style: none;
    padding: 0;
}

.contact-form-wrapper {
    background: #fff;
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-light);
}

.contact-form h2 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 1.8rem;
    font-size: 1.8rem;
}

/* ========== BACK TO TOP ========== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    background: var(--accent);
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 1.4rem;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 900;
}
.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}
.back-to-top:hover {
    background: var(--accent-dark);
    transform: translateY(-3px);
}

/* ========== MISC ========== */
.mb-4 { margin-bottom: 2rem; }