/* ============================================
   Professional Header & Slider Design
   Modern, Clean, Professional
   ============================================ */

/* ========== HEADER STYLES ========== */
.professional-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.professional-header.scrolled {
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

/* Top Bar */
.top-bar {
    background: linear-gradient(135deg, #f36d38 0%, #e55a2b 100%);
    padding: 10px 0;
    font-size: 14px;
}

.top-bar-left .contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
}

.top-bar-left .contact-info li {
    color: #fff;
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-bar-left .contact-info li i {
    font-size: 14px;
}

.top-bar-left .contact-info li a {
    color: #fff;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.top-bar-left .contact-info li a:hover {
    opacity: 0.9;
}

.top-bar-right {
    text-align: right;
}

.top-bar-right .social-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: flex-end;
    gap: 12px;
}

.top-bar-right .social-links li a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: rgba(255,255,255,0.2);
    color: #fff;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
}

.top-bar-right .social-links li a:hover {
    background: rgba(255,255,255,0.3);
    transform: translateY(-2px);
}

/* Main Navigation */
.main-navigation {
    background: #fff;
    padding: 15px 0;
}

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

.navbar-brand {
    padding: 0;
    margin: 0;
}

.navbar-brand img {
    max-height: 65px;
    width: auto;
    transition: all 0.3s ease;
}

.professional-header.scrolled .navbar-brand img {
    max-height: 55px;
}

/* Mobile Menu Toggle - Only visible on mobile (handled by visible-xs visible-sm classes) */
/* The menu-toggle styling is in offcanvas-menu.css */

/* Navigation Menu */
.navbar-nav {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
    gap: 5px;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: #333 !important;
    font-weight: 600;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 12px 20px !important;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    display: block;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: #f36d38;
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-item.active .nav-link::after {
    width: 70%;
}

.nav-link:hover,
.nav-item.active .nav-link {
    color: #f36d38 !important;
}

/* Dropdown Menu */
.dropdown-menu {
    background: #fff;
    border: none;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    padding: 10px 0;
    min-width: 220px;
    border-radius: 8px;
    margin-top: 10px;
    animation: fadeInDown 0.3s ease;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown-item {
    padding: 12px 25px;
    color: #555;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-transform: none;
    letter-spacing: 0;
}

.dropdown-item:hover {
    background: #f36d38;
    color: #fff;
    padding-left: 30px;
}

/* ========== HERO SLIDER STYLES ========== */
.hero-slider {
    margin-top: 0;
    position: relative;
}

#heroCarousel {
    position: relative;
}

.carousel-fade .carousel-item {
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
}

.carousel-fade .carousel-item.active {
    opacity: 1;
}

.hero-slide {
    height: 650px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
}

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

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
    animation: fadeInUp 0.8s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 35px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    line-height: 1.6;
}

.btn-hero {
    display: inline-block;
    padding: 15px 45px;
    background: #f36d38;
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(243, 109, 56, 0.4);
    font-size: 16px;
}

.btn-hero:hover {
    background: #e55a2b;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(243, 109, 56, 0.5);
    text-decoration: none;
}

/* Carousel Indicators */
#heroCarousel .carousel-indicators {
    bottom: 30px;
    margin: 0;
    z-index: 3;
}

#heroCarousel .carousel-indicators li {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    border: 2px solid #fff;
    margin: 0 6px;
    transition: all 0.3s ease;
    cursor: pointer;
}

#heroCarousel .carousel-indicators li.active {
    background: #f36d38;
    border-color: #f36d38;
    width: 35px;
    border-radius: 6px;
}

/* Carousel Controls */
#heroCarousel .carousel-control-prev,
#heroCarousel .carousel-control-next {
    width: 60px;
    height: 60px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    opacity: 0.8;
}

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

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

#heroCarousel .carousel-control-prev:hover,
#heroCarousel .carousel-control-next:hover {
    background: rgba(243, 109, 56, 0.9);
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
}

#heroCarousel .carousel-control-prev-icon,
#heroCarousel .carousel-control-next-icon {
    width: 20px;
    height: 20px;
}

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 991px) {
    .navbar-toggler {
        display: flex;
    }

    .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        padding: 20px;
        margin-top: 10px;
        border-radius: 8px;
    }

    .navbar-nav {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
    }

    .nav-item {
        width: 100%;
    }

    .nav-link {
        padding: 15px 0 !important;
        border-bottom: 1px solid #f0f0f0;
    }

    .nav-link::after {
        display: none;
    }

    .dropdown-menu {
        position: static;
        float: none;
        width: 100%;
        margin-top: 0;
        box-shadow: none;
        border: none;
        background: #f8f8f8;
    }

    .top-bar-left .contact-info {
        gap: 15px;
        font-size: 13px;
    }

    .top-bar-right .social-links {
        gap: 8px;
    }

    .top-bar-right .social-links li a {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }

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

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

    .hero-slide {
        height: 550px;
    }

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

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

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

@media (max-width: 767px) {
    .top-bar {
        padding: 8px 0;
    }

    .top-bar-left .contact-info {
        flex-direction: column;
        gap: 8px;
        font-size: 12px;
    }

    .main-navigation {
        padding: 12px 0;
    }

    .navbar-brand img {
        max-height: 50px;
    }

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

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 25px;
    }

    .btn-hero {
        padding: 12px 35px;
        font-size: 14px;
    }

    .hero-slide {
        height: 450px;
    }

    .hero-content {
        padding: 20px 15px;
    }
}

/* Body padding to account for fixed header - handled by JS */
