/* === CSS Reset & Variables === */
:root {
    --bg-color: #F8FAFC;
    --surface-color: #FFFFFF;
    --surface-light: #F1F5F9;
    --accent-color: #153C77; /* Dark Blue */
    --accent-hover: #0F2B5A;
    --brand-light: #7BB6D8; /* Light Blue */
    --text-main: #0F172A;
    --text-muted: #475569;
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

/* === Typography === */
h1, h2, h3, h4, .logo {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    color: #0F172A;
}

h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); font-weight: 800; }
h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; margin-bottom: 1rem; }
h3 { font-size: 1.5rem; }
p { color: var(--text-muted); font-size: 1.1rem; }
.accent { color: var(--brand-light); }

/* === Layout & Containers === */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}
.text-center { text-align: center !important; }

section {
    padding: 6rem 0;
}

/* === Buttons === */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 4px;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--accent-color);
    color: #FFFFFF;
}
.btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(21, 60, 119, 0.2);
}

.btn-secondary {
    background: var(--surface-light);
    color: var(--text-main);
}
.btn-secondary:hover {
    background: #2D3748;
    transform: translateY(-2px);
}

.btn-outline {
    border: 1px solid var(--text-muted);
    color: var(--text-main);
    padding: 0.5rem 1.5rem;
}
.btn-outline:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
}

/* === Header === */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    transition: var(--transition);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    color: var(--text-main);
    text-decoration: none;
    font-weight: 800;
    letter-spacing: -0.5px;
}

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

.nav-links a {
    color: var(--text-main);
    text-decoration: none;
    font-family: var(--font-body);
    font-weight: 500;
    transition: var(--transition);
}

.nav-links a:not(.btn) {
    opacity: 0.6;
}

.nav-links a.active-link,
.nav-links a:not(.btn):hover {
    color: var(--accent-color) !important;
    opacity: 1 !important;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}
.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--text-main);
    transition: var(--transition);
}

/* === Hero Section === */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
}

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

.hero-bg img {
    width: 100%; height: 100%;
    object-fit: cover;
}

.overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to right, rgba(21, 60, 119, 0.95) 0%, rgba(21, 60, 119, 0.6) 100%);
}

.hero-content {
    max-width: 800px;
    color: #FFFFFF;
}

.hero .accent {
    color: var(--brand-light); /* Light blue for readability on dark backgrounds */
}

.hero h1, .hero h2 {
    color: #FFFFFF;
}

.hero p {
    font-size: 1.25rem;
    margin: 1.5rem 0 2.5rem;
    max-width: 600px;
    color: rgba(255, 255, 255, 0.9);
}

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

/* Hero Button Overrides for Contrast */
.hero .btn-primary {
    background: #FFFFFF;
    color: var(--accent-color);
    border: 2px solid #FFFFFF;
}
.hero .btn-primary:hover {
    background: var(--brand-light);
    border-color: var(--brand-light);
    color: #0F172A;
}

.hero .btn-secondary {
    background: transparent;
    color: #FFFFFF;
    border: 2px solid #FFFFFF;
}
.hero .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* === About Us === */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text p {
    margin-bottom: 1.5rem;
}

.stats {
    display: flex;
    gap: 2rem;
    list-style: none;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0,0,0,0.1);
}

.stats h3 {
    font-size: 2.5rem;
    font-weight: 800;
}
.stats span {
    color: var(--text-muted);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-image {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    display: block;
    border-radius: 8px;
    position: relative;
    z-index: 2;
}

.glow-box {
    position: absolute;
    top: 20px; left: -20px;
    width: 100%; height: 100%;
    background: var(--brand-light);
    z-index: 1;
    border-radius: 8px;
    opacity: 0.3;
    filter: blur(20px);
}

/* === Section Header === */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}
.section-header p {
    max-width: 600px;
    margin: 0 auto;
}

/* === Services === */
.services {
    background: var(--surface-color);
}
.service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}
.card {
    background: var(--surface-light);
    border-radius: 8px;
    border: 1px solid rgba(0,0,0,0.05);
    transition: var(--transition);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-width: 0; /* Prevents grid blowout */
}
.card-image {
    width: 100%;
    max-width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}
.card-content {
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.card:hover {
    transform: translateY(-10px);
    border-color: rgba(21, 60, 119, 0.3);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}
.card-icon {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--accent-color);
}
.card h3 {
    margin-bottom: 1rem;
}

/* === What We Do Tags === */
.what-we-do {
    padding: 3rem 0;
    overflow: hidden;
    background: var(--brand-light);
    border-top: 1px solid rgba(0,0,0,0.05);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}
.marquee-container {
    overflow: hidden;
    display: flex;
    gap: 1.5rem;
}
.marquee-content {
    display: flex;
    align-items: center;
    animation: marquee 20s linear infinite;
    gap: 1.5rem;
}

.client-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 3rem;
    align-items: center;
    justify-items: center;
    padding: 2rem 0;
}

.client-logo {
    width: 140px;
    height: 65px;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.6);
    transition: all 0.3s ease;
}
.client-logo:hover {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.05);
}
.client-logo.scale-up {
    transform: scale(1.5);
}
.client-logo.scale-up:hover {
    transform: scale(1.55);
}
.client-logo.scale-up-lg {
    transform: scale(2.2);
}
.client-logo.scale-up-lg:hover {
    transform: scale(2.25);
}

.marquee-container:hover .marquee-content {
    animation-play-state: paused;
}
.tag {
    background: var(--surface-color);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--accent-color);
    border: 1px solid rgba(0,0,0,0.1);
    white-space: nowrap;
    flex-shrink: 0;
    display: inline-block;
}
@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-100% - 1.5rem)); }
}

/* === Portfolio === */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}
.gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    opacity: 0;
    transition: var(--transition);
}
.gallery-item:hover img {
    transform: scale(1.05);
}
.gallery-item:hover .item-overlay {
    opacity: 1;
}
.item-overlay h4 {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
    transform: translateY(20px);
    transition: var(--transition);
}
.item-overlay p {
    color: var(--accent-color);
    font-size: 0.9rem;
    transform: translateY(20px);
    transition: var(--transition);
    transition-delay: 0.1s;
}
.gallery-item:hover .item-overlay h4,
.gallery-item:hover .item-overlay p {
    transform: translateY(0);
}

/* === Features === */
.features {
    background: var(--bg-color);
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}
.feature-item {
    background: var(--surface-color);
    text-align: center;
    padding: 2.5rem 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02), 0 10px 20px rgba(0,0,0,0.03);
    border: 1px solid rgba(0,0,0,0.03);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.feature-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.06), 0 20px 40px rgba(21, 60, 119, 0.08);
    border-color: rgba(21, 60, 119, 0.1);
}
.feature-item::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 4px;
    background: linear-gradient(to right, var(--brand-light), var(--accent-color));
    opacity: 0;
    transition: var(--transition);
}
.feature-item:hover::before {
    opacity: 1;
}
.f-icon {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, rgba(123, 182, 216, 0.15) 0%, rgba(21, 60, 119, 0.05) 100%);
    border-radius: 16px;
    color: var(--accent-color);
    box-shadow: inset 0 0 0 1px rgba(21, 60, 119, 0.1);
    transition: var(--transition);
}
.feature-item:hover .f-icon {
    background: var(--accent-color);
    color: #FFF;
    transform: scale(1.05) rotate(-5deg);
}
.feature-item h4 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
    color: var(--text-main);
}
.feature-item p {
    font-size: 1rem;
    line-height: 1.6;
}

/* === Testimonials === */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}
.testimonial-card {
    background: var(--surface-light);
    padding: 2.5rem;
    border-radius: 8px;
    position: relative;
    border-top: 3px solid var(--accent-color);
}
.quote-mark {
    font-family: serif;
    font-size: 4rem;
    color: rgba(21, 60, 119, 0.1);
    position: absolute;
    top: 10px;
    left: 20px;
    line-height: 1;
}
.testimonial-card p {
    position: relative;
    z-index: 1;
    font-style: italic;
    margin-bottom: 1.5rem;
}
.client-info strong {
    display: block;
    color: var(--text-main);
    font-family: var(--font-heading);
}
.client-info span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* === Contact === */
.contact {
    background: var(--surface-color);
    border-top: 1px solid rgba(0,0,0,0.05);
}
.contact-wrapper {
    display: grid;
    grid-template-areas: 
        "text form"
        "address form";
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto 1fr;
    gap: 0 4rem;
}
.contact-text {
    grid-area: text;
    margin-bottom: 3rem;
}
.contact-address {
    grid-area: address;
}
.contact-form {
    grid-area: form;
}
.info-items {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.info-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}
.i-icon {
    font-size: 1.25rem;
    background: rgba(21, 60, 119, 0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    color: var(--accent-color);
    flex-shrink: 0;
}
.contact-form {
    background: var(--surface-light);
    padding: 3rem;
    border-radius: 8px;
    border: 1px solid rgba(0,0,0,0.05);
}
#quoteForm {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}
#quoteForm .form-group {
    margin-bottom: 0;
}
.full-width {
    grid-column: 1 / -1;
}
@media (max-width: 768px) {
    #quoteForm {
        grid-template-columns: 1fr;
    }
}
.form-group {
    margin-bottom: 1.5rem;
}
input, select, textarea {
    width: 100%;
    padding: 1rem;
    background: #FFFFFF;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 4px;
    color: var(--text-main);
    font-family: var(--font-body);
    transition: var(--transition);
    resize: vertical;
}
input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--accent-color);
}
.btn-block {
    width: 100%;
}

/* === Footer === */
.footer {
    background: var(--accent-color);
    color: #FFFFFF;
    padding: 4rem 0 2rem;
}
.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 2rem;
    margin-bottom: 3rem;
}
.footer-brand p {
    margin-top: 1rem;
    max-width: 300px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 2rem;
}
.footer h4, .footer-contact-list h4 {
    color: #FFFFFF;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    font-size: 1rem;
    letter-spacing: 1px;
}
.footer-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.footer-links a,
.footer-links span {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: var(--transition);
}
.footer-links a:hover {
    color: #FFFFFF;
}
.social-icons {
    display: flex;
    gap: 0.8rem;
}
.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 8px;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: var(--transition);
}
.social-icons a:hover {
    background: #FFFFFF;
    color: var(--accent-color);
    border-color: #FFFFFF;
}
.fc-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.2rem;
    color: rgba(255,255,255,0.7);
    align-items: flex-start;
    line-height: 1.5;
}
.fc-item i {
    color: var(--brand-light);
    margin-top: 4px;
    font-size: 1.1rem;
}
@media (max-width: 900px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 600px) {
    .footer-content {
        grid-template-columns: 1fr;
    }
}
.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.9rem;
}
.footer-bottom p {
    color: rgba(255,255,255,0.8);
    margin: 0;
}

/* === Scroll Animations === */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}
.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }

/* === Responsive === */
@media (max-width: 900px) {
    .about-grid, .footer-content {
        grid-template-columns: 1fr;
    }
    .contact-wrapper {
        grid-template-areas: 
            "text"
            "form"
            "address";
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
        gap: 2rem 0;
    }
    .contact-text {
        margin-bottom: 0;
    }
    .hero p { font-size: 1.1rem; }
    .hero-btns { flex-direction: row; gap: 0.5rem; }
    .stats { flex-wrap: wrap; }
}

@media (max-width: 768px) {
    section {
        padding: 3rem 0;
    }
    .logo img {
        max-height: 35px !important;
    }
    .nav-links {
        position: fixed;
        top: 60px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 60px);
        background: var(--bg-color);
        flex-direction: column;
        justify-content: center;
        transition: var(--transition);
    }
    .nav-links.active {
        left: 0;
    }
    .hamburger {
        display: flex;
    }
    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.8rem; }
    .btn { 
        padding: 0.6rem 0.8rem;
        font-size: 0.85rem;
        white-space: nowrap;
    }
    .tag {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    .service-cards {
        grid-template-columns: 1fr;
    }
    .form-group.full-width {
        grid-column: 1;
    }
    .contact-form {
        padding: 1rem;
    }
    .client-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
    .client-logo {
        width: 80px;
        height: 40px;
    }
    .client-logo.scale-up {
        transform: scale(1.3);
    }
    .client-logo.scale-up-lg {
        transform: scale(1.7);
    }
}

/* === New Classes for Content Update === */
.eyebrow {
    display: inline-block;
    color: #FFFFFF;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1.5rem;
    font-size: 0.85rem;
    backdrop-filter: blur(5px);
}
.stats-strip {
    background: var(--surface-color);
    padding: 3rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}
.stats-horizontal {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
    list-style: none;
    text-align: center;
}
.stats-horizontal h3 {
    font-size: 2.5rem;
    font-weight: 800;
}
.stats-horizontal span {
    color: var(--text-muted);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}
.card-link {
    display: inline-flex;
    align-items: center;
    margin-top: 1.5rem;
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
}
.card-link:hover {
    color: var(--brand-light);
    transform: translateX(5px);
}
.portfolio-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 3rem;
}
.portfolio-header .section-header {
    margin-bottom: 0;
    text-align: left;
}
.section-label {
    color: var(--brand-light);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    display: block;
    font-size: 0.9rem;
}
@media (max-width: 768px) {
    .portfolio-header { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
}

/* === WhatsApp Floating Button === */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 35px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.15);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}
.whatsapp-float:hover {
    background-color: #128C7E;
    color: #FFF;
    transform: scale(1.1);
    box-shadow: 2px 2px 15px rgba(0,0,0,0.25);
}

/* === Back To Top Button === */
.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 40px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    z-index: 99;
    background: #e2e8f0;
    color: var(--accent-color);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}
.back-to-top.active-progress {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.back-to-top i {
    position: absolute;
    z-index: 2;
    font-size: 1.1rem;
}
.back-to-top svg.progress-circle {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
    z-index: 1;
}
.back-to-top svg.progress-circle path {
    fill: none;
    stroke: var(--accent-color);
    stroke-width: 6;
    stroke-dasharray: 307.919;
    stroke-dashoffset: 307.919;
    transition: stroke-dashoffset 20ms linear;
}
.back-to-top:hover {
    box-shadow: 0 6px 15px rgba(0,0,0,0.15);
    background: #d1d9e6;
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 28px;
        z-index: 9999;
    }
    .back-to-top {
        bottom: 85px !important;
        right: 20px !important;
        z-index: 9998 !important;
    }
}

/* === Inner Page Heros === */
.page-hero {
    padding: 7rem 0 3rem;
    position: relative;
    text-align: center;
    color: #FFFFFF;
    background: linear-gradient(135deg, var(--brand-dark), var(--accent-color));
}
.page-hero h1, .page-hero h2 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: #FFF;
}
.page-hero p {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
    line-height: 1.6;
}
.page-hero .eyebrow {
    color: var(--brand-light);
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 1rem;
}

/* === Load More Button === */
#loadMoreBtn {
    font-weight: 600;
    padding: 0.8rem 2.5rem;
    border-radius: 50px;
    background: transparent;
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
    transition: all 0.3s ease;
    cursor: pointer;
}
#loadMoreBtn:hover {
    background: var(--accent-color);
    color: #FFFFFF;
}
