/* =====================================================
   Gas Agency Website - Main Stylesheet
   ===================================================== */

:root {
    --primary-color: #E65100;
    --primary-dark: #d84700;
    --secondary-color: #1565C0;
    --secondary-dark: #0d47a1;
    --success-color: #2E7D32;
    --text-color: #333333;
    --text-muted: #666666;
    --bg-light: #f5f8fa;
    --white: #ffffff;
    --shadow: 0 2px 15px rgba(0,0,0,0.1);
    --shadow-lg: 0 5px 30px rgba(0,0,0,0.15);
    --border-radius: 10px;
    --transition: all 0.3s ease;
}

/* =====================================================
   Reset & Base Styles
   ===================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    line-height: 1.3;
}

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

a:hover {
    color: var(--primary-dark);
}

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

.section-padding {
    padding: 80px 0;
}

/* =====================================================
   Top Marquee
   ===================================================== */
.top-header {
    background: var(--secondary-color);
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

.marquee-container {
    overflow: hidden;
    position: relative;
}

.marquee {
    display: flex;
    animation: marquee 60s linear infinite;
    white-space: nowrap;
}

.marquee span {
    color: #fff;
    padding: 0 50px;
    font-size: 14px;
}

/* Marquee Mobile Responsive */

@media (max-width: 767px) {
    .top-header {
        padding: 5px 0;
    }
    
    .marquee span {
        font-size: 12px;
        padding: 0 30px;
    }
}


@keyframes marquee-mobile {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* =====================================================
   Header & Navigation
   ===================================================== */
.header {
    background: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 15px 0;
}

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

.navbar-nav .nav-link {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    color: var(--text-color);
    padding: 10px 15px;
    position: relative;
}

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

.navbar-nav .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 15px;
    right: 15px;
    height: 2px;
    background: var(--primary-color);
}

.dropdown-menu {
    border: none;
    box-shadow: var(--shadow);
    border-radius: var(--border-radius);
    padding: 10px 0;
}

.dropdown-item {
    padding: 10px 20px;
    font-weight: 500;
}

.dropdown-item:hover {
    background: var(--bg-light);
    color: var(--primary-color);
}

/* Dropdown Menu Z-Index Fix */
.navbar .dropdown-menu {
    z-index: 1050;
}

.nav-item.dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
}

/* Ensure dropdown works on hover for desktop */
@media (min-width: 992px) {
    .nav-item.dropdown:hover .dropdown-menu {
        display: block;
        animation: fadeIn 0.2s ease-in-out;
    }
    
    @keyframes fadeIn {
        from { opacity: 0; transform: translateY(10px); }
        to { opacity: 1; transform: translateY(0); }
    }
}
.nav-auth .btn {
    font-weight: 500;
}

.phone-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 15px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 25px;
    font-weight: 600;
}

.phone-link:hover {
    background: var(--primary-dark);
    color: var(--white);
}

/* Book Gas Cylinder Button - New Design */
.book-cylinder-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 6px 18px 6px 6px;
    background: #fff;
    border: 2px solid #E65100;
    border-radius: 30px;
    text-decoration: none;
    transition: var(--transition);
}

.book-cylinder-btn:hover {
    background: #fff9f5;
    border-color: #d84700;
    text-decoration: none;
}

.cylinder-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #2E7D32, #1B5E20);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cylinder-icon img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.cylinder-info {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
}

.cylinder-phone {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    font-family: 'Poppins', sans-serif;
}

.cylinder-text {
    font-size: 14px;
    color: #333;
    font-weight: 500;
}

.blink-text {
    color: #E65100;
    font-weight: 600;
    animation: blink-animation 1s steps(2, start) infinite;
}

@keyframes blink-animation {
    0% { opacity: 1; }
    50% { opacity: 0.3; }
    100% { opacity: 1; }
}

/* Responsive adjustment for book cylinder button */
@media (max-width: 1199px) {
    .book-cylinder-btn {
        display: none;
    }
}

.cylinder-phone {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-color);
    font-family: 'Poppins', sans-serif;
}

.cylinder-text {
    font-size: 13px;
    color: var(--primary-color);
    font-weight: 600;
}

.blink-text {
    animation: blink-animation 1s steps(2, start) infinite;
    color: var(--primary-color);
}

@keyframes blink-animation {
    0% { opacity: 1; }
    50% { opacity: 0; }
    100% { opacity: 1; }
}

/* Book Gas Cylinder Button - Mobile Version */
.book-cylinder-btn-mobile {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 5px 10px 5px 5px;
    background: #fff;
    border: 2px solid #E65100;
    border-radius: 25px;
    text-decoration: none;
    margin-right: 10px;
}

.book-cylinder-btn-mobile:hover {
    text-decoration: none;
}

.cylinder-icon-mobile {
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #2E7D32, #1B5E20);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cylinder-icon-mobile img {
    width: 16px;
    height: 16px;
    object-fit: contain;
}

.cylinder-info-mobile {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.blink-text-mobile {
    font-size: 11px;
    color: #E65100;
    font-weight: 600;
    animation: blink-animation 1s steps(2, start) infinite;
    white-space: nowrap;
}

/* Hide mobile button on desktop */
@media (min-width: 1200px) {
    .book-cylinder-btn-mobile {
        display: none !important;
    }
}

/* Adjust for very small screens */
@media (max-width: 360px) {
    .book-cylinder-btn-mobile {
        padding: 4px 8px 4px 4px;
    }
    
    .cylinder-icon-mobile {
        width: 24px;
        height: 24px;
    }
    
    .cylinder-icon-mobile img {
        width: 14px;
        height: 14px;
    }
    
    .blink-text-mobile {
        font-size: 10px;
    }
}

/* =====================================================
   Hero Section
   ===================================================== */
.hero-section {
    position: relative;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    color: var(--white);
}

.hero-subtitle {
    display: inline-block;
    background: var(--primary-color);
    padding: 5px 20px;
    border-radius: 25px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.3);
}

.hero-description {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-buttons .btn {
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 25px;
}

.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    background: var(--white);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
}

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

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

.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: invert(1) grayscale(100);
}

/* Hero Slider Responsive Fix */
.hero-section {
    overflow: hidden;
}

.hero-section .carousel-item img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Hero Slider Responsive Fix */
.hero-section {
    overflow: hidden;
}

.hero-section .carousel-item img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Desktop View */
@media (min-width: 992px) {
    .hero-section .carousel-item img,
    .hero-slide {
        height: 600px;
        object-fit: cover;
        object-position: center;
    }
}

/* Tablet View */
@media (min-width: 768px) and (max-width: 991px) {
    .hero-section .carousel-item img,
    .hero-slide {
        height: 400px;
        object-fit: cover;
        object-position: center;
    }
}

/* Mobile View - Maintain aspect ratio, no cropping */
@media (max-width: 767px) {
    .hero-section .carousel-item {
        width: 100%;
    }
    
    .hero-section .carousel-item img,
    .hero-slide {
        width: 100%;
        height: auto !important;
        min-height: 180px;
        max-height: 300px;
        object-fit: contain;
        object-position: center;
        background-color: #f5f5f5;
    }
    
    .hero-slide {
        height: auto !important;
        background-size: contain !important;
        background-repeat: no-repeat !important;
        background-position: center !important;
    }
    
    /* Adjust carousel controls for mobile */
    .hero-section .carousel-control-prev,
    .hero-section .carousel-control-next {
        width: 35px;
        height: 35px;
    }
    
    .hero-section .carousel-control-prev {
        left: 5px;
    }
    
    .hero-section .carousel-control-next {
        right: 5px;
    }
}

/* Very small screens */
@media (max-width: 480px) {
    .hero-section .carousel-item img,
    .hero-slide {
        min-height: 150px;
        max-height: 250px;
    }
}
/* =====================================================
   Section Headers
   ===================================================== */
.section-subtitle {
    display: inline-block;
    color: var(--primary-color);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 10px;
}

.section-title {
    font-size: 36px;
    color: var(--text-color);
    margin-bottom: 15px;
}

.title-underline {
    width: 80px;
    height: 3px;
    background: var(--primary-color);
    margin: 0 auto;
}

.section-description {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* =====================================================
   Stats Section
   ===================================================== */
.stats-section {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-dark) 100%);
    padding: 60px 0;
}

.stat-item {
    color: var(--white);
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
}

.stat-label {
    font-size: 14px;
    opacity: 0.9;
}

/* =====================================================
   Products Section
   ===================================================== */
.product-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
}

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

.product-image {
    height: 200px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-info {
    padding: 20px;
}

.product-name {
    font-size: 18px;
    margin-bottom: 5px;
}

.product-size {
    display: inline-block;
    background: var(--bg-light);
    padding: 3px 10px;
    border-radius: 15px;
    font-size: 12px;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 10px;
}

.product-desc {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 15px;
}

/* Products Page - Full Width Layout for 2 Products */
.products-page .product-card {
    max-width: 100%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 30px rgba(0,0,0,0.1);
}

.products-page .product-card .card-body {
    padding: 30px;
}

.products-page .product-image {
    height: 350px;
    background: #f8f9fa;
}

.products-page .product-image img {
    object-fit: contain;
    padding: 20px;
}

.products-page .product-card .card-title {
    font-size: 22px;
    font-weight: 600;
}

.products-page .product-card .card-text {
    font-size: 15px;
}

/* Make products container wider */
.products-page .products-container {
    max-width: 1400px;
    margin: 0 auto;
}

/* Product grid - 2 large cards */
.products-page .product-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.products-page .product-grid > div {
    flex: 0 0 45%;
    max-width: 550px;
}

@media (max-width: 991px) {
    .products-page .product-grid > div {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .products-page .product-image {
        height: 280px;
    }
}
/* =====================================================
   Enquiry Section
   ===================================================== */
.enquiry-section {
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e8ec 100%);
}

.enquiry-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.feature-item i {
    font-size: 20px;
}

.enquiry-form-wrapper {
    background: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.form-title {
    font-size: 24px;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--bg-light);
}

/* =====================================================
   Legacy (Videos) Section
   ===================================================== */
.legacy-section {
    background: #e8f4f8;
}

.video-card {
    background: #000;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.video-thumbnail {
    position: relative;
    cursor: pointer;
    aspect-ratio: 16/9;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: #ff0000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--white);
    transition: var(--transition);
}

.video-thumbnail:hover .play-button {
    transform: translate(-50%, -50%) scale(1.1);
}

.video-info-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 15px;
    background: linear-gradient(to bottom, rgba(0,0,0,0.7), transparent);
}

.channel-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.channel-name {
    color: var(--white);
    font-size: 13px;
    font-weight: 500;
}

.video-footer {
    background: #212121;
    padding: 12px 15px;
}

.video-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.action-btn {
    background: none;
    border: none;
    color: #aaa;
    font-size: 18px;
    cursor: pointer;
}

.watch-youtube {
    color: #aaa;
    font-size: 13px;
    margin-left: auto;
}

.watch-youtube i {
    color: #ff0000;
}

/* =====================================================
   Video Logo Overlays
   ===================================================== */
/* Channel Logo (small logo at top) */
.channel-logo,
.yt-channel-logo {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    overflow: hidden;
    background: #fff;
    flex-shrink: 0;
}

.channel-logo img,
.yt-channel-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 2px;
}

/* Video Header Overlay */
.video-header,
.yt-card-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 10px;
    background: linear-gradient(to bottom, rgba(0,0,0,0.7), transparent);
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 2;
}

.channel-info,
.yt-channel-info {
    display: flex;
    flex-direction: column;
}

.video-title-text,
.yt-video-title {
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.2;
}

.channel-name,
.yt-channel-name {
    color: rgba(255,255,255,0.8);
    font-size: 11px;
}

/* Logo Overlay (watermark at bottom-right) */
.logo-overlay,
.yt-logo-overlay {
    position: absolute;
    bottom: 10px;
    right: 10px;
    z-index: 2;
    opacity: 0.7;
}

.logo-overlay img,
.yt-logo-overlay img {
    max-width: 80px;
    max-height: 40px;
    object-fit: contain;
}

/* Play Button styling for video pages */
.yt-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: #ff0000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #fff;
    transition: all 0.3s ease;
    z-index: 2;
    cursor: pointer;
}

.yt-video-thumbnail:hover .yt-play-btn,
.video-thumbnail:hover .play-button {
    transform: translate(-50%, -50%) scale(1.1);
}

/* Ensure video thumbnail is positioned relatively */
.video-thumbnail,
.yt-video-thumbnail {
    position: relative;
    overflow: hidden;
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: var(--secondary-color);
    color: var(--white);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    z-index: 10;
}

.slider-prev {
    left: -20px;
}

.slider-next {
    right: -20px;
}

/* =====================================================
   Testimonials Section
   ===================================================== */
.testimonial-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow);
    height: 100%;
}

.quote-icon {
    color: var(--primary-color);
    font-size: 30px;
    margin-bottom: 15px;
    opacity: 0.5;
}

.testimonial-content p {
    font-style: italic;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h5 {
    margin: 0;
    font-size: 16px;
}

.author-info span {
    color: var(--primary-color);
    font-size: 13px;
}

.author-info small {
    display: block;
    color: var(--text-muted);
    font-size: 12px;
}

.testimonial-rating {
    font-size: 14px;
}

/* =====================================================
   Blog Section
   ===================================================== */
.blog-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    height: 100%;
    transition: var(--transition);
}

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

.blog-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary-color);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.blog-content {
    padding: 20px;
}

.blog-meta {
    color: var(--text-muted);
    font-size: 13px;
    margin-bottom: 10px;
}

.blog-title {
    font-size: 18px;
    margin-bottom: 10px;
}

.blog-title a {
    color: var(--text-color);
}

.blog-title a:hover {
    color: var(--primary-color);
}

.blog-excerpt {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 15px;
}

.read-more {
    font-weight: 600;
    font-size: 14px;
}

/* =====================================================
   Footer
   ===================================================== */
.footer {
    background: #1a1a2e;
    color: rgba(255,255,255,0.8);
}

.footer-main {
    padding: 60px 0 40px;
}

.footer-title {
    color: var(--white);
    font-size: 18px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary-color);
}

.footer-text {
    font-size: 14px;
    line-height: 1.8;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

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

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

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    transition: var(--transition);
}

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

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

.footer-contact li {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 14px;
}

.footer-contact i {
    color: var(--primary-color);
    width: 20px;
    flex-shrink: 0;
    margin-top: 3px;
}

.footer-contact a {
    color: rgba(255,255,255,0.7);
}

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

.footer-bottom {
    background: rgba(0,0,0,0.2);
    padding: 20px 0;
    font-size: 14px;
}

/* =====================================================
   Scroll to Top Button
   ===================================================== */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    box-shadow: var(--shadow);
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-5px);
}

/* =====================================================
   Buttons
   ===================================================== */
.btn-primary {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
}


/* Fix for white/invisible status badges */
.badge.bg-light {
    background-color: #e9ecef !important;
    color: #212529 !important;
}

.badge.bg-info {
    background-color: #0dcaf0 !important;
    color: #000 !important;
}

.badge.bg-warning {
    background-color: #ffc107 !important;
    color: #000 !important;
}

/* =====================================================
   Forms
   ===================================================== */
.form-control:focus,
.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(230, 81, 0, 0.25);
}


/* =====================================================
   Page Banner
   ===================================================== */
.page-banner {
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-dark));
    padding: 60px 0;
    text-align: center;
    color: var(--white);
}

.page-banner h1 {
    font-size: 36px;
    margin-bottom: 10px;
}

.page-banner .breadcrumb {
    justify-content: center;
    margin: 0;
}

.page-banner .breadcrumb-item,
.page-banner .breadcrumb-item a {
    color: rgba(255,255,255,0.8);
}

.page-banner .breadcrumb-item.active {
    color: var(--white);
}

/* =====================================================
   Responsive Styles
   ===================================================== */
@media (max-width: 991px) {
    .hero-slide {
        height: 450px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .stat-number {
        font-size: 36px;
    }
}

@media (max-width: 767px) {
    .hero-slide {
        height: 400px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .section-padding {
        padding: 50px 0;
    }
    
    .nav-auth {
        margin-top: 15px;
        padding-top: 15px;
        border-top: 1px solid #eee;
    }
    
    .phone-link {
        margin-top: 10px;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        width: 40px;
        height: 40px;
    }
    
    .carousel-control-prev {
        left: 10px;
    }
    
    .carousel-control-next {
        right: 10px;
    }
}
