/* ================================================
   RESPONSIVE & MODERN STYLES FOR ADROIT LABELS
   ================================================ */

* {
    box-sizing: border-box;
}

html, body {
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: #555;
    background-color: #f9f9f9;
    overflow-x: hidden;
    padding-top: 70px;
}

/* ================================================
   NAVIGATION & HEADER - DESKTOP FIRST
   ================================================ */

.navbar-wrapper {
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.navbar-default {
    background-color: #ffffff;
    border-bottom: 3px solid #a6cd3a;
    border-top: none;
    margin-bottom: 0;
}

.navbar-default .navbar-brand {
    padding: 8px 15px;
    height: auto;
    display: flex;
    align-items: center;
}

.logo-img {
    max-height: 50px;
    width: auto;
    display: block;
}

.navbar-default .navbar-nav > li > a {
    color: #333;
    font-weight: 600;
    font-size: 14px;
    padding: 15px 15px;
    transition: all 0.3s ease;
}

.navbar-default .navbar-nav > li > a:hover {
    color: #a6cd3a;
    background-color: transparent;
}

.navbar-default .navbar-nav > li.active > a,
.navbar-default .navbar-nav > li.active > a:focus,
.navbar-default .navbar-nav > li.active > a:hover {
    color: #a6cd3a;
    background-color: transparent;
    border-bottom: 3px solid #a6cd3a;
}

.navbar-default .navbar-toggle {
    border-color: #a6cd3a;
    margin-top: 12px;
}

.navbar-default .navbar-toggle:hover,
.navbar-default .navbar-toggle:focus {
    background-color: #f0f0f0;
}

.navbar-default .navbar-toggle .icon-bar {
    background-color: #a6cd3a;
}

/* ================================================
   BANNER / CAROUSEL
   ================================================ */

.banner-section {
    width: 100%;
    margin: 0;
    padding: 0;
}

#homebanner {
    width: 100%;
    display: block;
}

#homebanner .item {
    width: 100%;
    height: auto;
    display: block;
}

#homebanner .item img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.owl-carousel {
    display: block;
}

.owl-carousel .owl-stage-outer {
    overflow: visible;
}

.owl-carousel .owl-item {
    display: block;
}

.owl-carousel .owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    margin-top: -22px;
    z-index: 10;
}

.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next {
    background: rgba(0, 0, 0, 0.5) !important;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    transition: all 0.3s ease;
}

.owl-carousel .owl-nav .owl-prev:hover,
.owl-carousel .owl-nav .owl-next:hover {
    background: rgba(166, 205, 58, 0.8) !important;
}

.owl-carousel .owl-nav .owl-prev {
    position: absolute;
    left: 20px;
}

.owl-carousel .owl-nav .owl-next {
    position: absolute;
    right: 20px;
}

.owl-carousel .owl-dots {
    text-align: center;
    padding: 15px 0;
    background: rgba(0, 0, 0, 0.3);
}

.owl-carousel .owl-dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.owl-carousel .owl-dot.active,
.owl-carousel .owl-dot:hover {
    background: #a6cd3a;
}

/* ================================================
   MAIN CONTENT & SECTIONS
   ================================================ */

.main-content {
    min-height: calc(100vh - 70px);
}

.welcome-section,
.products-section,
.features-section {
    padding: 60px 0;
}

.welcome-section {
    background-color: #ffffff;
}

.features-section {
    background-color: #f5f5f5;
}

.welcome-section h2,
.products-section h2,
.features-section h2 {
    font-family: 'Bebas Neue', cursive;
    font-size: 36px;
    color: #333;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.welcome-section .lead {
    font-size: 18px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.welcome-section p {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}

/* ================================================
   PRODUCT CARDS
   ================================================ */

.product-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.product-card:hover {
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    transform: translateY(-5px);
}

.product-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: #f0f0f0;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.product-info {
    padding: 20px;
}

.product-info h4 {
    color: #a6cd3a;
    font-family: 'Bebas Neue', cursive;
    font-size: 18px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.product-info p {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.6;
}

.btn-primary {
    background-color: #a6cd3a;
    border: none;
    color: white;
    padding: 8px 20px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
}

.btn-primary:hover {
    background-color: #8bb028;
    color: white;
    text-decoration: none;
}

/* ================================================
   FEATURE BOXES
   ================================================ */

.feature-box {
    background: white;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    margin-bottom: 30px;
}

.feature-box:hover {
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    transform: translateY(-5px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: #f5f5f5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.feature-box h4 {
    font-family: 'Bebas Neue', cursive;
    font-size: 20px;
    color: #333;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.feature-box p {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* ================================================
   PRODUCTS CAROUSEL
   ================================================ */

.products-carousel {
    margin-top: 40px;
}

#reporter-owl {
    width: 100%;
}

#reporter-owl .item {
    padding: 15px;
}

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

.footer-section {
    background-color: #333;
    color: #fff;
    padding: 50px 0;
}

.footer-column {
    margin-bottom: 30px;
}

.footer-column h4 {
    font-family: 'Bebas Neue', cursive;
    font-size: 18px;
    color: #a6cd3a;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links a,
.social-links a {
    color: #ccc;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover,
.social-links a:hover {
    color: #a6cd3a;
}

.footer-logo img {
    margin-bottom: 15px;
}

.footer-column p {
    font-size: 14px;
    line-height: 1.8;
    color: #ccc;
}

.contact-info a {
    color: #a6cd3a;
}

.copyright-section {
    background-color: #1a1a1a;
    color: #999;
    padding: 30px 0;
    font-size: 13px;
    text-align: center;
}

.copyright-section p {
    margin: 0;
}

.copyright-section a {
    color: #a6cd3a;
    text-decoration: none;
}

.copyright-section a:hover {
    text-decoration: underline;
}

/* ================================================
   BUTTONS & COMMON ELEMENTS
   ================================================ */

.btn {
    display: inline-block;
    padding: 10px 25px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    border: none;
}

/* ================================================
   RESPONSIVE DESIGN - TABLET (768px - 991px)
   ================================================ */

@media (max-width: 991px) {
    body {
        padding-top: 60px;
    }
    
    .navbar-default .navbar-nav > li > a {
        padding: 12px 10px;
        font-size: 13px;
    }
    
    .welcome-section h2,
    .products-section h2,
    .features-section h2 {
        font-size: 28px;
    }
    
    .feature-box {
        padding: 25px;
    }
    
    #reporter-owl .item {
        padding: 10px;
    }
}

/* ================================================
   RESPONSIVE DESIGN - MOBILE (480px - 767px)
   ================================================ */

@media (max-width: 767px) {
    body {
        padding-top: 55px;
    }
    
    .navbar-default {
        border-bottom: 2px solid #a6cd3a;
    }
    
    .navbar-default .navbar-brand {
        padding: 5px 0;
    }
    
    .logo-img {
        max-height: 40px;
    }
    
    .navbar-default .navbar-nav > li > a {
        padding: 10px 15px;
        font-size: 13px;
    }
    
    .navbar-collapse {
        background: white;
        border-top: 1px solid #eee;
        padding: 10px 0;
    }
    
    .welcome-section,
    .products-section,
    .features-section {
        padding: 40px 0;
    }
    
    .welcome-section h2,
    .products-section h2,
    .features-section h2 {
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    .welcome-section .lead {
        font-size: 15px;
    }
    
    .product-card {
        margin-bottom: 20px;
    }
    
    .feature-box {
        padding: 20px;
        margin-bottom: 20px;
    }
    
    .feature-icon {
        width: 70px;
        height: 70px;
    }
    
    .feature-box h4 {
        font-size: 16px;
    }
    
    .owl-carousel .owl-nav .owl-prev,
    .owl-carousel .owl-nav .owl-next {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
    
    .owl-carousel .owl-nav .owl-prev {
        left: 10px;
    }
    
    .owl-carousel .owl-nav .owl-next {
        right: 10px;
    }
    
    .footer-column {
        margin-bottom: 25px;
    }
    
    .footer-column h4 {
        font-size: 16px;
    }
}

/* ================================================
   RESPONSIVE DESIGN - SMALL MOBILE (Below 480px)
   ================================================ */

@media (max-width: 479px) {
    body {
        padding-top: 50px;
    }
    
    .navbar-default .navbar-brand {
        padding: 3px 0;
    }
    
    .logo-img {
        max-height: 35px;
    }
    
    .navbar-default .navbar-nav > li > a {
        padding: 8px 12px;
        font-size: 12px;
    }
    
    .welcome-section,
    .products-section,
    .features-section {
        padding: 30px 15px;
    }
    
    .welcome-section h2,
    .products-section h2,
    .features-section h2 {
        font-size: 20px;
        margin-bottom: 15px;
    }
    
    .welcome-section .lead {
        font-size: 14px;
    }
    
    .product-image {
        height: 180px;
    }
    
    .product-info {
        padding: 15px;
    }
    
    .product-info h4 {
        font-size: 16px;
    }
    
    .feature-box {
        padding: 15px;
        margin-bottom: 15px;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
    }
    
    .feature-box h4 {
        font-size: 14px;
        margin-bottom: 10px;
    }
    
    .feature-box p {
        font-size: 13px;
    }
    
    .owl-carousel .owl-nav .owl-prev,
    .owl-carousel .owl-nav .owl-next {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }
    
    .footer-section {
        padding: 30px 0;
    }
    
    .footer-column {
        margin-bottom: 20px;
    }
    
    .footer-column p {
        font-size: 12px;
    }
    
    .copyright-section {
        padding: 20px 0;
        font-size: 12px;
    }
}

/* ================================================
   UTILITY CLASSES
   ================================================ */

.container {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 15px;
}

.clearfix::after {
    content: "";
    display: table;
    clear: both;
}

.text-center {
    text-align: center;
}

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

/* ================================================
   SCROLL TO TOP
   ================================================ */

#scrollToTop {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #a6cd3a;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

#scrollToTop.show {
    opacity: 1;
    visibility: visible;
}

#scrollToTop:hover {
    background: #8bb028;
}
