/* ===== CSS Variables ===== */
:root {
    --primary-orange: #ed7a15;
    --dark-brown: #251a18;
    --light-beige: #f8f6ef;
    --gold: #edc388;
    --gray-1: #787473;
    --gray-2: #adacab;
    --gray-3: #4d4543;
    --gray-4: #d9963a;
    --white: #ffffff;
    --black: #000000;
    --transition: all 0.3s ease;
}

/* ===== Reset & Base Styles ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', 'Poppins', sans-serif;
    color: var(--dark-brown);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== Navigation ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--white);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 0.5rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

/* Logo Styling - Doubled in size */
.logo {
    flex-shrink: 0;
}

.logo-img {
    height: 70px;
    width: auto;
    transition: var(--transition);
    display: block;
}

/* Navigation Menu - CHANGED TEXT TO BLACK */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-link {
    color: var(--black);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    white-space: nowrap;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-orange);
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--primary-orange);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link.active {
    color: var(--primary-orange);
}

.nav-link.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    flex-shrink: 0;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--black);
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ===== HERO SECTION - NO GAP FIX ===== */
.hero {
    height: 100vh;
    position: relative;
    color: var(--white);
    overflow: hidden;
    margin-top: 0;
    padding-top: 0;
    top: 0;
    left: 0;
    width: 100%;
}

.hero-slider {
    width: 100%;
    height: 100%;
    position: relative;
    margin: 0;
    padding: 0;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
}

.hero-slide.active {
    opacity: 1;
    z-index: 1;
}

.hero-slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin: 0;
    padding: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(237, 122, 21, 0.2), rgba(37, 26, 24, 0.8));
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 20px;
    text-align: center;
    margin-top: 0;
    padding-top: 120px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
    color: var(--light-beige);
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

/* ===== PAGE HERO SECTIONS - NO GAP FIX ===== */
.page-hero {
    height: 100vh;
    position: relative;
    color: var(--white);
    overflow: hidden;
    margin-top: 0;
    padding-top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.page-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover; /* ← FIX ADDED: This ensures full coverage */
    background-position: center center; /* ← FIX ADDED: More precise centering */
    background-repeat: no-repeat;
}

.page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(237, 122, 21, 0.2), rgba(37, 26, 24, 0.8));
    z-index: 2; /* ← FIX ADDED: Ensure overlay is above background */
}

.page-hero-content {
    position: relative;
    z-index: 3; /* ← FIX ADDED: Ensure content is above overlay */
    max-width: 800px;
    padding: 0 20px;
    margin-top: 0;
    padding-top: 80px;
}

.page-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-hero-subtitle {
    font-size: 1.3rem;
    font-weight: 300;
    color: var(--light-beige);
}

.btn {
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    display: inline-block;
}

.btn-primary {
    background-color: var(--primary-orange);
    color: var(--white);
}

.btn-primary:hover {
    background-color: #d66a0a;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(237, 122, 21, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--dark-brown);
    transform: translateY(-3px);
}

.slider-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
    z-index: 3;
}

.slider-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(237, 122, 21, 0.8);
    color: var(--white);
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    background-color: var(--primary-orange);
    transform: scale(1.1);
}

.slider-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 3;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
}

.indicator.active {
    background-color: var(--primary-orange);
    width: 30px;
    border-radius: 6px;
}

.scroll-indicator {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--white);
    border-radius: 20px;
    position: relative;
}

.mouse::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background-color: var(--white);
    border-radius: 2px;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% {
        opacity: 1;
        top: 8px;
    }
    100% {
        opacity: 0;
        top: 30px;
    }
}

/* ===== Breadcrumb ===== */
.breadcrumb {
    background-color: var(--light-beige);
    padding: 1rem 0;
    margin-top: 80px;
}

.breadcrumb-content {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.breadcrumb-link {
    color: var(--gray-1);
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumb-link:hover {
    color: var(--primary-orange);
}

.breadcrumb-separator {
    color: var(--gray-2);
}

.breadcrumb-current {
    color: var(--primary-orange);
    font-weight: 500;
}

/* ===== Animations ===== */
.fade-in {
    animation: fadeIn 1s ease-in;
}

.fade-in-delay {
    animation: fadeIn 1s ease-in 0.3s both;
}

.fade-in-delay-2 {
    animation: fadeIn 1s ease-in 0.6s both;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== Section Styles ===== */
section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-brown);
    margin-bottom: 1rem;
}

.title-underline {
    width: 80px;
    height: 4px;
    background-color: var(--primary-orange);
    margin: 0 auto 1rem;
}

.section-description {
    font-size: 1.1rem;
    color: var(--gray-1);
    max-width: 600px;
    margin: 0 auto;
}

/* ===== About Section ===== */
.about {
    background-color: var(--light-beige);
}

.about-content {
    display: grid;
    gap: 3rem;
}

.about-text {
    max-width: 900px;
    margin: 0 auto;
}

.about-description {
    font-size: 1.1rem;
    color: var(--gray-3);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.stat-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(237, 122, 21, 0.2);
}

.stat-icon {
    font-size: 2.5rem;
    color: var(--primary-orange);
    margin-bottom: 1rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-brown);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: var(--gray-1);
}

/* ===== Mission Section ===== */
.mission {
    background: linear-gradient(135deg, var(--primary-orange), var(--gray-4));
    color: var(--white);
    text-align: center;
    padding: 5rem 0;
}

.mission-content {
    max-width: 800px;
    margin: 0 auto;
}

.mission-icon {
    font-size: 4rem;
    margin-bottom: 2rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.mission-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.mission-subtitle {
    font-size: 1.3rem;
    font-weight: 300;
}

/* ===== Core Business Section with Product Images ===== */
.core-business {
    background-color: var(--white);
}

.business-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.business-card {
    background-color: var(--light-beige);
    border-radius: 15px;
    overflow: hidden;
    transition: var(--transition);
    border: 2px solid transparent;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}

.business-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-orange);
    box-shadow: 0 15px 30px rgba(237, 122, 21, 0.2);
}

.business-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    flex-shrink: 0;
}

.business-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.card-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dark-brown);
    margin-bottom: 1rem;
    text-align: center;
}

.card-description {
    font-size: 0.95rem;
    color: var(--gray-1);
    line-height: 1.6;
    text-align: center;
}

/* ===== Our Advantages Section ===== */
.advantages {
    background-color: var(--light-beige);
}

.advantage-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
    align-items: center;
}

.advantage-item.reverse {
    direction: rtl;
}

.advantage-item.reverse > * {
    direction: ltr;
}

.advantage-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.advantage-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-brown);
    margin-bottom: 1rem;
}

.advantage-description {
    font-size: 1.1rem;
    color: var(--gray-3);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.advantage-list {
    list-style: none;
}

.advantage-list li {
    font-size: 1rem;
    color: var(--gray-3);
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.advantage-list i {
    color: var(--primary-orange);
    font-size: 1.2rem;
}

/* ===== Quality Section ===== */
.quality {
    background-color: var(--white);
}

.quality-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.quality-card {
    background-color: var(--light-beige);
    padding: 3rem;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
}

.quality-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(237, 122, 21, 0.2);
}

.quality-icon {
    font-size: 3.5rem;
    color: var(--primary-orange);
    margin-bottom: 1.5rem;
}

.quality-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark-brown);
    margin-bottom: 1rem;
}

.quality-description {
    font-size: 1rem;
    color: var(--gray-1);
    line-height: 1.7;
}

/* ===== Sustainability Section ===== */
.sustainability {
    background-color: var(--light-beige);
}

.sustainability-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.sustainability-card {
    background-color: var(--white);
    padding: 3rem;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
}

.sustainability-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-orange);
    box-shadow: 0 15px 30px rgba(237, 122, 21, 0.2);
}

.sustainability-icon {
    font-size: 3.5rem;
    color: var(--primary-orange);
    margin-bottom: 1.5rem;
}

.sustainability-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark-brown);
    margin-bottom: 1rem;
}

.sustainability-description {
    font-size: 1rem;
    color: var(--gray-1);
    line-height: 1.7;
}

/* ===== Looking Ahead Section ===== */
.looking-ahead {
    background: linear-gradient(135deg, var(--dark-brown), var(--gray-3));
    color: var(--white);
    text-align: center;
}

.looking-ahead-content {
    max-width: 900px;
    margin: 0 auto;
}

.looking-ahead-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.looking-ahead-text {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 3rem;
}

.looking-ahead-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.ahead-stat {
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.ahead-stat h3 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-orange);
    margin-bottom: 0.5rem;
}

.ahead-stat p {
    font-size: 1rem;
    color: var(--light-beige);
}

/* ===== Partners Section ===== */
.partners {
    background-color: var(--white);
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.partner-card {
    background-color: var(--white);
    padding: 3rem 2rem;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    border: 2px solid var(--light-beige);
    min-height: 150px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.partner-card:hover {
    border-color: var(--primary-orange);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(237, 122, 21, 0.2);
}

.partner-logo-img {
    max-width: 100%;
    max-height: 100px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(0%);
    transition: var(--transition);
}

.partner-card:hover .partner-logo-img {
    transform: scale(1.05);
}

/* ===== Contact Section ===== */
.contact {
    background-color: var(--light-beige);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-card {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    border: 2px solid transparent;
}

.contact-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-orange);
    box-shadow: 0 10px 25px rgba(237, 122, 21, 0.15);
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: var(--primary-orange);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-details h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dark-brown);
    margin-bottom: 1rem;
    border-bottom: 2px solid var(--primary-orange);
    padding-bottom: 0.5rem;
}

.contact-details p {
    font-size: 1rem;
    color: var(--gray-1);
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.contact-details strong {
    color: var(--dark-brown);
}

.contact-form-wrapper {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-input {
    padding: 1rem;
    font-size: 1rem;
    border: 2px solid var(--gray-2);
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    transition: var(--transition);
}

.form-input:focus {
    outline: none;
    border-color: var(--primary-orange);
}

textarea.form-input {
    resize: vertical;
}

.map-wrapper {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* ===== Footer ===== */
.footer {
    background-color: var(--dark-brown);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--primary-orange);
}

.footer-description {
    font-size: 0.95rem;
    color: var(--gray-2);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background-color: var(--primary-orange);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition);
}

.social-link:hover {
    background-color: var(--gold);
    transform: translateY(-3px);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--gray-2);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-orange);
}

.footer-links i {
    margin-right: 0.5rem;
    color: var(--primary-orange);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--gray-3);
    color: var(--gray-2);
}

/* ===== HERO GAP FIXES ===== */
/* Force remove any gaps in hero sections */
.hero,
.page-hero {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

/* Ensure breadcrumb doesn't create gap with page hero */
.breadcrumb + .page-hero {
    margin-top: 0 !important;
}

/* Fix for pages without breadcrumb */
.page-hero:first-of-type {
    margin-top: 80px !important;
}

/* ===== Responsive Design ===== */
@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 90px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
        gap: 1.5rem;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .logo-img {
        height: 80px;
    }

    .hero-content {
        padding-top: 140px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .page-hero-content {
        padding-top: 100px;
    }

    .page-hero-title {
        font-size: 2.5rem;
    }

    .page-hero-subtitle {
        font-size: 1.1rem;
    }

    .page-hero {
        height: 70vh; /* ← ADDED: Shorter height on tablets */
        min-height: 500px; /* ← ADDED: Minimum height */
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .slider-controls {
        padding: 0 1rem;
    }

    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .advantage-item,
    .advantage-item.reverse {
        grid-template-columns: 1fr;
        direction: ltr;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .logo-img {
        height: 70px;
    }
    
    .nav-menu {
        top: 85px;
    }
    
    .hero-content {
        padding-top: 120px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .page-hero-content {
        padding-top: 80px;
    }

    .page-hero-title {
        font-size: 2rem;
    }

    .page-hero-subtitle {
        font-size: 0.9rem;
    }

    .page-hero {
        height: 60vh; /* ← ADDED: Even shorter on mobile */
        min-height: 400px; /* ← ADDED: Minimum height for mobile */
    }

    .btn {
        padding: 0.8rem 2rem;
        font-size: 0.9rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .mission-title {
        font-size: 1.8rem;
    }

    .looking-ahead-title {
        font-size: 2rem;
    }

    .ahead-stat h3 {
        font-size: 2rem;
    }

    .slider-indicators {
        bottom: 60px;
    }

    .contact-card {
        padding: 1.5rem;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
}

/* ===== FORCE HERO GAP FIX - NUCLEAR OPTION ===== */
/* Add these at the very end to override everything */
body > .hero:first-of-type,
body > .page-hero:first-of-type,
.navbar + .hero,
.navbar + .page-hero,
.breadcrumb + .page-hero {
    margin-top: 0 !important;
    padding-top: 0 !important;
}