/* ===================================
   ARCHITECTURA - Custom Styles
   =================================== */

/* CSS Variables */
:root {
    --primary-color: #B8860B;
    --primary-dark: #8B6914;
    --secondary-color: #2C2C2C;
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --text-muted: #999999;
    --bg-light: #FAFAFA;
    --bg-white: #FFFFFF;
    --border-color: #E5E5E5;
    --overlay-dark: rgba(0, 0, 0, 0.7);
    --overlay-light: rgba(0, 0, 0, 0.3);

    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;

    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
    background: var(--bg-white);
    overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    color: var(--text-dark);
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
}

h4 {
    font-size: clamp(1.25rem, 2.5vw, 2rem);
}

h5 {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
}

h6 {
    font-size: 1.1rem;
}

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

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

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

/* ===================================
   NAVIGATION
   =================================== */

.navbar {
    padding: 1rem 0;
    transition: var(--transition-smooth);
    z-index: 1000;
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.navbar .nav-link,
.navbar .brand-text {
    color: var(--text-dark) !important;
}

.navbar .navbar-toggler-icon {
    filter: invert(1) brightness(0.1);
}

/* Mobile Toggler Improvements */
.navbar-toggler {
    border: none;
    padding: 0.5rem;
    transition: var(--transition-smooth);
}

.navbar-toggler:focus {
    box-shadow: none;
}


@media (max-width: 991.98px) {
    .navbar-collapse {
        background: var(--bg-white);
        margin: 1rem -1rem -1rem;
        padding: 1rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    .navbar-collapse .nav-link {
        color: var(--text-dark) !important;
        padding: 0.75rem 1rem !important;
        border-bottom: 1px solid var(--border-color);
    }

    .navbar-collapse .nav-link:last-child {
        border-bottom: none;
    }
}

.brand-text {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--text-dark);
    transition: var(--transition-smooth);
}

.nav-link {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 0.5rem 1.25rem !important;
    position: relative;
    color: var(--text-dark) !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition-smooth);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 30px;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color) !important;
}

/* ===================================
   HERO SECTION
   =================================== */

.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    background-image: url('https://images.unsplash.com/photo-1600607687644-aac4c3eac7f4?w=1920&h=1080&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--bg-white);
}

.hero-title {
    font-weight: 700;
    color: var(--bg-white);
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    font-weight: 300;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-indicator span {
    display: block;
    width: 2px;
    height: 50px;
    background: rgba(255, 255, 255, 0.5);
    position: relative;
}

.scroll-indicator span::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 20px;
    background: var(--primary-color);
    animation: scrollDown 2s infinite;
}

@keyframes scrollDown {
    0% {
        top: 0;
        opacity: 1;
    }

    100% {
        top: 100%;
        opacity: 0;
    }
}

/* ===================================
   BUTTONS
   =================================== */

.btn-primary-custom {
    background: var(--primary-color);
    color: var(--bg-white);
    border: 2px solid var(--primary-color);
    padding: 0.875rem 2.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 0;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary-custom::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: var(--primary-dark);
    transition: width 0.6s, height 0.6s, top 0.6s, left 0.6s;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.btn-primary-custom:hover {
    color: var(--bg-white);
    border-color: var(--primary-dark);
}

.btn-primary-custom:hover::before {
    width: 300px;
    height: 300px;
}

.btn-outline-custom {
    background: transparent;
    color: var(--bg-white);
    border: 2px solid var(--bg-white);
    padding: 0.875rem 2.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 0;
    transition: var(--transition-smooth);
}

.btn-outline-custom:hover {
    background: var(--bg-white);
    color: var(--text-dark);
}

.btn-outline-custom-lg {
    background: transparent;
    color: var(--text-dark);
    border: 2px solid var(--text-dark);
    padding: 1rem 3rem;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 0;
    transition: var(--transition-smooth);
}

.btn-outline-custom-lg:hover {
    background: var(--text-dark);
    color: var(--bg-white);
}

/* ===================================
   SECTION STYLES
   =================================== */

.section-label {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.section-title {
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto 3rem;
}

.section-text {
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--text-light);
}

/* Link Arrows */
.link-arrow,
.link-arrow-lg {
    display: inline-flex;
    align-items: center;
    font-weight: 600;
    color: var(--text-dark);
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: var(--transition-smooth);
}

.link-arrow-lg {
    font-size: 1rem;
}

.link-arrow:hover,
.link-arrow-lg:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

/* ===================================
   ABOUT SECTION
   =================================== */

.about-intro {
    background: var(--bg-white);
}

.about-image-wrapper {
    position: relative;
    overflow: hidden;
}

.about-image-wrapper img {
    width: 100%;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-image-wrapper:hover img {
    transform: scale(1.05);
}

.about-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
    pointer-events: none;
}

/* ===================================
   STATISTICS SECTION
   =================================== */

.statistics-section {
    background: var(--bg-light);
}

.stat-item {
    padding: 2rem 1rem;
}

.stat-number {
    font-size: clamp(3rem, 5vw, 4.5rem);
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
}

.stat-label {
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-dark);
}

/* ===================================
   FEATURED PROJECTS
   =================================== */

.featured-projects {
    background: var(--bg-white);
    padding: 5rem 0;
}

.featured-carousel {
    position: relative;
}

.featured-carousel .carousel-item {
    min-height: 600px;
}

.project-image-wrapper {
    position: relative;
    height: 100%;
    overflow: hidden;
}

.project-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-item.active .project-image-wrapper img {
    transform: scale(1.05);
}

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

.project-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    min-height: 600px;
}

.project-category {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.project-title {
    font-size: clamp(2rem, 3vw, 3rem);
    font-weight: 700;
    margin-bottom: 1rem;
}

.project-location {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.project-description {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.project-meta {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.project-meta span {
    color: var(--text-light);
}

/* Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
    width: 60px;
    height: 60px;
    background: var(--bg-white);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
    transition: var(--transition-smooth);
}

.carousel-control-prev {
    left: 30px;
}

.carousel-control-next {
    right: 30px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: var(--primary-color);
}

.carousel-control-icon {
    color: var(--text-dark);
    font-size: 1.25rem;
}

.carousel-control-prev:hover .carousel-control-icon,
.carousel-control-next:hover .carousel-control-icon {
    color: var(--bg-white);
}

.carousel-indicators {
    bottom: -60px;
    margin-bottom: 0;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--border-color);
    border: none;
    margin: 0 6px;
    transition: var(--transition-smooth);
}

.carousel-indicators button.active {
    background: var(--primary-color);
    width: 40px;
    border-radius: 6px;
}

/* ===================================
   SERVICES SECTION
   =================================== */

.services-section {
    background: var(--bg-light);
}

.service-card {
    background: var(--bg-white);
    padding: 3rem 2rem;
    height: 100%;
    transition: var(--transition-smooth);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-color);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    background: rgba(184, 134, 11, 0.1);
    transition: var(--transition-smooth);
}

.service-card:hover .service-icon {
    background: var(--primary-color);
    color: var(--bg-white);
}

.service-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.service-description {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-light);
}

/* ===================================
   PHILOSOPHY SECTION
   =================================== */

.philosophy-section {
    background: var(--bg-white);
}

.philosophy-grid {
    display: grid;
    gap: 2rem;
}

.philosophy-item {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--bg-light);
    transition: var(--transition-smooth);
}

.philosophy-item:hover {
    background: var(--bg-white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.philosophy-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: var(--primary-color);
    background: var(--bg-white);
}

.philosophy-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.philosophy-text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 0;
}

/* ===================================
   AWARDS SECTION
   =================================== */

.awards-section {
    background: var(--bg-light);
}

.award-card {
    background: var(--bg-white);
    padding: 2.5rem 2rem;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: var(--transition-smooth);
    height: 100%;
}

.award-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.award-year {
    font-size: 3rem;
    font-weight: 700;
    font-family: var(--font-heading);
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.award-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.award-project {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 0;
}

/* ===================================
   TESTIMONIALS
   =================================== */

.testimonials-section {
    background: var(--bg-white);
}

.testimonials-carousel {
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-card {
    background: var(--bg-light);
    padding: 4rem 3rem;
    text-align: center;
}

.testimonial-quote {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    opacity: 0.3;
}

.testimonial-text {
    font-size: 1.25rem;
    line-height: 1.9;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 2.5rem;
}

.testimonial-author h5 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.testimonial-author p {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

.testimonial-indicators {
    position: static;
    margin-top: 2rem;
}

/* ===================================
   CONTACT SECTION
   =================================== */

.contact-section {
    background: var(--bg-light);
}

.contact-info {
    margin-top: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    color: var(--bg-white);
    font-size: 1.25rem;
}

.contact-item h6 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-item p {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 0;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--text-dark);
    color: var(--text-dark);
    font-size: 1.1rem;
    transition: var(--transition-smooth);
}

.social-link:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--bg-white);
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--bg-white);
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.form-control-custom {
    border: 2px solid var(--border-color);
    border-radius: 0;
    padding: 0.875rem 1.25rem;
    font-size: 1rem;
    color: var(--text-dark);
    transition: var(--transition-smooth);
}

.form-control-custom:focus {
    border-color: var(--primary-color);
    box-shadow: none;
    outline: none;
}

.form-select {
    cursor: pointer;
}

/* ===================================
   FOOTER
   =================================== */

.footer {
    background: var(--secondary-color);
    color: rgba(255, 255, 255, 0.7);
}

.footer-brand {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--bg-white);
}

.footer-text {
    font-size: 0.95rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.6);
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition-smooth);
}

.footer-social-link:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--bg-white);
}

.footer-heading {
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--bg-white);
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.newsletter-form .form-control-custom {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: var(--bg-white);
}

.newsletter-form .form-control-custom::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form .form-control-custom:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--primary-color);
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 3rem 0;
}

.footer-copyright {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-link {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    transition: var(--transition-smooth);
}

.footer-link:hover {
    color: var(--primary-color);
}

/* ===================================
   ANIMATIONS
   =================================== */

/* Fade In Up */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 1s ease-out forwards;
    opacity: 0;
}

.fade-in-up.delay-1 {
    animation-delay: 0.3s;
}

.fade-in-up.delay-2 {
    animation-delay: 0.6s;
}

/* Reveal Animations */
.reveal-left,
.reveal-right,
.reveal-bottom {
    opacity: 0;
    transition: var(--transition-slow);
}

.reveal-left {
    transform: translateX(-50px);
}

.reveal-right {
    transform: translateX(50px);
}

.reveal-bottom {
    transform: translateY(50px);
}

.reveal-left.active,
.reveal-right.active,
.reveal-bottom.active {
    opacity: 1;
    transform: translate(0, 0);
}

.reveal-bottom.delay-1 {
    transition-delay: 0.15s;
}

.reveal-bottom.delay-2 {
    transition-delay: 0.3s;
}

.reveal-bottom.delay-3 {
    transition-delay: 0.45s;
}

.reveal-bottom.delay-4 {
    transition-delay: 0.6s;
}

.reveal-bottom.delay-5 {
    transition-delay: 0.75s;
}

/* ===================================
   RESPONSIVE
   =================================== */

@media (max-width: 991px) {
    .navbar.scrolled {
        background: rgba(255, 255, 255, 0.98) !important;
    }

    .navbar-collapse {
        background: rgba(255, 255, 255, 0.98);
        padding: 1rem;
        margin-top: 1rem;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    .nav-link {
        color: var(--text-dark) !important;
    }

    .carousel-control-prev,
    .carousel-control-next {
        width: 45px;
        height: 45px;
    }

    .carousel-control-prev {
        left: 15px;
    }

    .carousel-control-next {
        right: 15px;
    }

    .project-info {
        min-height: auto;
        padding: 3rem 2rem !important;
    }

    .contact-form-wrapper {
        padding: 2rem;
    }
}

@media (max-width: 767px) {
    .hero-section {
        background-attachment: scroll;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary-custom,
    .btn-outline-custom {
        width: 100%;
        max-width: 300px;
    }

    .testimonial-card {
        padding: 2.5rem 1.5rem;
    }

    .testimonial-text {
        font-size: 1.1rem;
    }

    .project-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
}

@media (max-width: 575px) {
    .stat-number {
        font-size: 3rem;
    }

    .service-card {
        padding: 2rem 1.5rem;
    }

    .philosophy-item {
        flex-direction: column;
        padding: 1.5rem;
    }

    .award-year {
        font-size: 2.5rem;
    }
}

/* Custom Navbar Styles */
.navbar-dark-text .nav-link,
.navbar-dark-text .brand-text {
    color: var(--text-dark) !important;
}

.navbar-dark-text .nav-link::after {
    background: var(--primary-color);
}

.navbar-dark-text .navbar-toggler-icon {
    filter: invert(1);
    /* Make hamburger menu dark */
}

/* Ensure sticky behavior maintains readability */
.navbar.scrolled .nav-link,
.navbar.scrolled .brand-text {
    color: var(--text-dark) !important;
}

/* Page Header (Global) */
.page-header {
    position: relative;
    height: 50vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    background-size: cover;
    background-position: center;
    /* Ensure it starts below the fixed header */
    margin-top: 76px;
}

.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.page-title {
    position: relative;
    z-index: 2;
    color: var(--bg-white);
    font-weight: 700;
    margin-bottom: 1rem;
}

.page-subtitle {
    position: relative;
    z-index: 2;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    font-weight: 300;
    letter-spacing: 1px;
}