/* ===== CSS VARIABLES & RESET ===== */
:root {
    --royal-blue: #1a3a6d;
    --royal-blue-dark: #0f2547;
    --accent-blue: #2563eb;
    --vibrant-red: #dc2626;
    --light-orange: #f97316;
    --light-orange-hover: #ea580c;
    --dark-bg: #0f172a;
    --light-bg: #f8fafc;
    --text-dark: #1e293b;
    --text-light: #64748b;
    --white: #ffffff;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
}
/* ===== MOBILE VIEW FIX - Remove Vertical Scroll ===== */
@media (max-width: 991.98px) {
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }
    
    html, body {
        overflow-x: hidden;
        width: 100%;
    }
    
    /* Hero Section - Remove full height constraint */
    #home {
        min-height: auto !important;
        height: auto !important;
        padding-top: 80px !important;
        padding-bottom: 40px !important;
        overflow: hidden;
    }
    
    #home .row {
        min-height: auto !important;
        height: auto !important;
    }
    
    #home .container {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    /* Hide hero image column completely on mobile */
    #home .col-lg-5 {
        display: none !important;
    }
    
    /* Make content column full width */
    #home .col-lg-7 {
        width: 100% !important;
        max-width: 100% !important;
        flex: 0 0 100% !important;
        padding-top: 0 !important;
    }
    
    /* Reduce text sizes */
    .hero-title {
        font-size: 1.6rem !important;
        line-height: 1.3 !important;
        margin-bottom: 0.8rem !important;
    }
    
    .hero-lead {
        font-size: 0.85rem !important;
        line-height: 1.5 !important;
        margin-bottom: 1rem !important;
    }
    
    .hero-badge {
        font-size: 0.7rem !important;
        padding: 5px 10px !important;
        margin-bottom: 0.8rem !important;
        display: inline-block;
    }
    
    
    /* Fix buttons */
    .hero-btns {
        display: flex !important;
        flex-direction: column !important;
        gap: 10px !important;
        margin-bottom: 1.2rem !important;
    }
    
    .hero-btns a {
        width: 100% !important;
        padding: 10px 15px !important;
        font-size: 0.85rem !important;
        text-align: center !important;
    }
    
    /* Fix stats */
    .hero-stats {
        display: flex !important;
        justify-content: space-between !important;
        gap: 5px !important;
        margin-top: 1rem !important;
    }
    
    .hero-stat-item {
        flex: 1 !important;
        text-align: center !important;
    }
    
    .hero-stat-item h4 {
        font-size: 1.1rem !important;
        margin-bottom: 0.1rem !important;
    }
    
    .hero-stat-item p {
        font-size: 0.65rem !important;
        margin: 0 !important;
    }
    
    /* Hide scroll down button on mobile */
    .scroll-down {
        display: none !important;
    }
    
    /* Navbar fixes */
    .navbar {
        padding: 10px 0 !important;
    }
    
    .navbar-brand {
        font-size: 0.9rem !important;
    }
    
    .navbar-brand i {
        font-size: 1rem !important;
    }
    
    /* Prevent horizontal scroll */
    .container {
        max-width: 100% !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
}

/* Very small screens */
@media (max-width: 575.98px) {
    .hero-title {
        font-size: 1.4rem !important;
    }
    
    .hero-lead {
        font-size: 0.8rem !important;
    }
    
    .hero-stat-item h4 {
        font-size: 1rem !important;
    }
    
    .hero-stat-item p {
        font-size: 0.6rem !important;
    }
}

html {
    scroll-behavior: smooth;
}



/* ===== UTILITIES ===== */
.text-orange {
    color: var(--light-orange) !important;
}

.text-blue {
    color: var(--royal-blue) !important;
}

.bg-orange {
    background-color: var(--light-orange) !important;
}

.bg-blue {
    background-color: var(--royal-blue) !important;
}

.fw-extra-bold {
    font-weight: 900 !important;
}

.section-padding {
    padding: 100px 0;
}

@media (max-width: 768px) {
    .section-padding {
        padding: 70px 0;
    }
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--royal-blue);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title h2 span {
    color: var(--light-orange);
}

.section-title::after {
    content: '';
    display: block;
    width: 70px;
    height: 4px;
    background: linear-gradient(90deg, var(--royal-blue), var(--light-orange));
    margin: 20px auto 0;
    border-radius: 2px;
}

/* ===== NAVBAR ===== */
.navbar {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    padding: 12px 0;
    transition: var(--transition);
    z-index: 1000;
}

.navbar.scrolled {
    padding: 8px 0;
    box-shadow: var(--shadow-md);
}

.navbar-brand {
    font-weight: 900;
    font-size: 1.7rem;
    color: var(--royal-blue) !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.navbar-brand i {
    color: var(--light-orange);
    font-size: 1.4rem;
}

.navbar-brand span {
    color: var(--vibrant-red);
}

.nav-link {
    font-weight: 600;
    color: var(--text-dark) !important;
    margin: 0 8px;
    padding: 10px 5px !important;
    position: relative;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--royal-blue) !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--light-orange);
    transition: var(--transition);
    transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 80%;
}

.btn-login-group {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.btn-login {
    background: var(--royal-blue);
    color: white !important;
    border-radius: 4px;
    padding: 10px 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 2px solid var(--royal-blue);
}

.btn-login:hover {
    background: transparent;
    color: var(--royal-blue) !important;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-customer {
    background: var(--light-orange);
    border-color: var(--light-orange);
}

.btn-customer:hover {
    background: transparent;
    color: var(--light-orange) !important;
}

/* ===== LOGIN PANEL STYLING ===== */
.login-panel {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
}

.login-label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.7);
    padding: 4px 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.login-label i {
    color: var(--light-orange);
    font-size: 0.8rem;
}

.login-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

/* ===== LOGIN BUTTON BASE STYLES ===== */
.login-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    min-width: 110px;
    justify-content: center;
}

.login-btn i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.login-btn span {
    position: relative;
    z-index: 2;
}

/* Animated background overlay */
.login-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
    z-index: 1;
}

.login-btn:hover::before {
    left: 100%;
}

.login-btn:hover i {
    transform: scale(1.1);
}

/* ===== MEMBER LOGIN BUTTON (Blue Steel) ===== */
.btn-member {
    background: linear-gradient(135deg, var(--royal-blue), var(--accent-blue));
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 12px rgba(26, 58, 109, 0.3);
}

.btn-member:hover {
    background: linear-gradient(135deg, var(--accent-blue), var(--royal-blue));
    color: white;
    border-color: var(--accent-blue);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
}

.btn-member:active {
    transform: translateY(-1px);
}

/* ===== CUSTOMER LOGIN BUTTON (Safety Orange) ===== */
.btn-customer {
    background: linear-gradient(135deg, var(--light-orange), var(--light-orange-hover));
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
}

.btn-customer:hover {
    background: linear-gradient(135deg, var(--light-orange-hover), #c2410c);
    color: white;
    border-color: var(--light-orange);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.5);
}

.btn-customer:active {
    transform: translateY(-1px);
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 991px) {
    .login-panel {
        align-items: center;
        width: 100%;
        margin-top: 20px;
        padding-top: 15px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .login-label {
        background: rgba(255, 255, 255, 0.15);
    }

    .login-buttons {
        width: 100%;
        justify-content: center;
    }

    .login-btn {
        flex: 1;
        max-width: 200px;
        padding: 12px 20px;
        font-size: 0.85rem;
    }
}

@media (max-width: 576px) {
    .login-buttons {
        flex-direction: column;
    }

    .login-btn {
        width: 100%;
        max-width: none;
    }
}
/* ===== NAVBAR LAYOUT FIXES ===== */

/* Prevent Brand Text from Wrapping */
.brand-text-wrapper {
    display: flex;
    flex-direction: column; /* Stacks "Harsha" and "Industrial Works" slightly if needed */
    line-height: 1.1;
    font-weight: 700;
    white-space: nowrap; /* Forces text to stay in one line */
}

.brand-text-wrapper span {
    font-size: 0.75em;
    color: #ff6600; /* Your accent color */
    font-weight: 600;
}

/* Ensure Navbar Collapse doesn't wrap on Desktop */
@media (min-width: 992px) {
    .navbar-collapse {
        flex-wrap: nowrap !important; /* Force single row */
    }
    
    /* Adjust spacing between links and buttons */
    .login-panel {
        padding-left: 15px;
    }
    
    /* Make login buttons compact on desktop */
    .login-btn {
        padding: 6px 12px;
        font-size: 0.9rem;
    }
}

/* Mobile Adjustments (Stacked View) */
@media (max-width: 991.98px) {
    .brand-text-wrapper {
        font-size: 0.9rem; /* Smaller brand text on mobile */
    }
    
    /* Ensure login buttons take full width in mobile menu for better tapping */
    .login-buttons {
        width: 100%;
        margin-top: 10px;
        border-top: 1px solid #eee;
        padding-top: 10px;
    }
    
    .login-btn {
        width: 100%;
        justify-content: center;
        padding: 10px;
    }
}
/* ===== TOOLTIP STYLING (Bootstrap Override) ===== */
.tooltip-inner {
    background-color: var(--royal-blue);
    color: white;
    font-size: 0.75rem;
    font-weight: 500;
    padding: 6px 12px;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.tooltip .tooltip-arrow::before {
    border-top-color: var(--royal-blue);
}


/* ===== HERO SECTION ===== */
#home {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(26, 58, 109, 0.92), rgba(220, 38, 38, 0.75)),
        url('https://images.unsplash.com/photo-1581091226825-a6a2a5aee158?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    overflow: hidden;
}

/* Animated Grid Overlay */
#home::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 50px 50px;
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.3);
    margin-bottom: 25px;
    animation: fadeInDown 0.8s ease;
}

.hero-title {
    font-size: 4.2rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-title .outline {
    color: transparent;
    -webkit-text-stroke: 2px rgba(255, 255, 255, 0.4);
}

.hero-title .gradient {
    background: linear-gradient(135deg, var(--light-orange), #fb923c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-lead {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 35px;
    max-width: 650px;
    border-left: 4px solid var(--light-orange);
    padding-left: 20px;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-btns {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.btn-hero-primary {
    background: var(--light-orange);
    color: white;
    padding: 16px 40px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    border-radius: 4px;
    transition: var(--transition);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    clip-path: polygon(0 0, 100% 0, 96% 100%, 0% 100%);
}

.btn-hero-primary:hover {
    background: white;
    color: var(--light-orange);
    transform: translateX(5px);
    box-shadow: 0 10px 25px rgba(249, 115, 22, 0.4);
}

.btn-hero-outline {
    background: transparent;
    color: white;
    padding: 16px 40px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 4px;
    transition: var(--transition);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-hero-outline:hover {
    border-color: white;
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

.hero-stats {
    display: flex;
    gap: 30px;
    margin-top: 50px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    animation: fadeInUp 0.8s ease 0.8s both;
}

.hero-stat-item h4 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--light-orange);
    margin-bottom: 5px;
}

.hero-stat-item p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* Floating Image Animation */
.hero-image-wrapper {
    position: relative;
    animation: fadeInRight 1s ease 0.5s both;
}

.hero-image {
    border-radius: 12px;
    border: 5px solid rgba(255, 255, 255, 0.15);
    box-shadow: var(--shadow-lg);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

.floating-badge {
    position: absolute;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    padding: 12px 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 2;
    animation: float 7s ease-in-out infinite reverse;
}

.floating-badge i {
    font-size: 1.3rem;
    color: var(--light-orange);
}

.floating-badge .text {
    font-size: 0.85rem;
}

.floating-badge .text small {
    display: block;
    color: rgba(255, 255, 255, 0.6);
}

.floating-badge .text strong {
    color: white;
}

.badge-quality {
    top: 15%;
    left: -15px;
}

.badge-delivery {
    bottom: 20%;
    right: -15px;
    animation-delay: 1s;
}

/* Scroll Indicator */
.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    text-align: center;
    font-size: 0.85rem;
    opacity: 0.8;
    animation: bounce 2s infinite;
    cursor: pointer;
    z-index: 10;
}

.scroll-down i {
    display: block;
    font-size: 1.5rem;
    margin-top: 5px;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-12px);
    }

    60% {
        transform: translateX(-50%) translateY(-6px);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (max-width: 991px) {
    .hero-title {
        font-size: 2.8rem;
    }

    .hero-lead {
        font-size: 1.1rem;
        border-left: none;
        padding-left: 0;
    }

    .hero-stats {
        gap: 20px;
    }

    .hero-image-wrapper {
        margin-top: 40px;
    }

    .floating-badge {
        display: none;
    }

    #home {
        min-height: auto;
        padding: 120px 0 80px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .hero-btns {
        flex-direction: column;
    }

    .btn-hero-primary,
    .btn-hero-outline {
        width: 100%;
        justify-content: center;
        clip-path: none;
    }

    .hero-stats {
        flex-wrap: wrap;
    }
}

/* ===== STATS SECTION ENHANCEMENTS ===== */
#stats {
    background: var(--royal-blue);
    padding: 60px 0;
    color: white;
    position: relative;
    overflow: hidden;
}

/* Animated background pattern */
#stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 20% 80%, rgba(249, 115, 22, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(37, 99, 235, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.stat-card {
    text-align: center;
    padding: 30px 20px;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 2;
}

.stat-card:hover {
    transform: translateY(-8px);
}

.stat-card .icon {
    font-size: 2.8rem;
    color: var(--light-orange);
    margin-bottom: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    border: 2px solid rgba(249, 115, 22, 0.3);
    transition: all 0.3s ease;
}

.stat-card:hover .icon {
    background: rgba(249, 115, 22, 0.2);
    border-color: var(--light-orange);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.3);
}

.stat-card h3.counter {
    font-size: 3.2rem;
    font-weight: 900;
    color: white;
    margin-bottom: 8px;
    line-height: 1;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
}

/* Suffix styling for + and % */
.stat-card h3.counter::after {
    content: attr(data-suffix);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--light-orange);
    margin-left: 2px;
}

.stat-card p {
    font-size: 1rem;
    opacity: 0.9;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
}

/* Counter animation pulse effect when complete */
.stat-card h3.counter.complete {
    animation: pulse 0.5s ease;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .stat-card h3.counter {
        font-size: 2.5rem;
    }

    .stat-card h3.counter::after {
        font-size: 1.2rem;
    }

    .stat-card .icon {
        width: 65px;
        height: 65px;
        font-size: 2.2rem;
    }
}

@media (max-width: 576px) {
    .stat-card {
        padding: 25px 15px;
    }

    .stat-card h3.counter {
        font-size: 2.2rem;
    }
}

/* ===== ABOUT SECTION ===== */
#about {
    background: var(--white);
}

.about-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.about-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 3px solid var(--light-orange);
    border-radius: 12px;
    transform: translate(15px, 15px);
    z-index: -1;
    transition: var(--transition);
}

.about-image:hover::before {
    transform: translate(10px, 10px);
}

.about-image img {
    transition: var(--transition);
}

.about-image:hover img {
    transform: scale(1.03);
}

.about-content h5 {
    color: var(--light-orange);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.about-content h2 {
    font-size: 2.3rem;
    font-weight: 800;
    color: var(--royal-blue);
    margin-bottom: 25px;
    line-height: 1.3;
}

.about-content p {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    font-weight: 500;
}

.feature-list i {
    color: var(--light-orange);
    font-size: 1.2rem;
    width: 24px;
}

/* ===== SERVICES SECTION ===== */
#services {
    background: var(--light-bg);
}

.service-card {
    background: white;
    border-radius: 12px;
    padding: 35px 30px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
    border-bottom: 4px solid transparent;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--royal-blue), var(--light-orange));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-bottom-color: var(--light-orange);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(26, 58, 109, 0.1), rgba(249, 115, 22, 0.1));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--royal-blue), var(--light-orange));
    transform: scale(1.1) rotate(5deg);
}

.service-icon i {
    font-size: 1.8rem;
    color: var(--royal-blue);
    transition: var(--transition);
}

.service-card:hover .service-icon i {
    color: white;
}

.service-card h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--royal-blue);
    margin-bottom: 15px;
}

.service-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin: 0;
}

/* ===== PRODUCTS SECTION ===== */
#products {
    background: var(--white);
}

.product-card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    margin-bottom: 30px;
    position: relative;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.product-card .img-wrapper {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.product-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover img {
    transform: scale(1.1);
}

.product-overlay {
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(26, 58, 109, 0.95), transparent);
    transition: var(--transition);
}

.product-card:hover .product-overlay {
    bottom: 0;
}

.product-overlay h5 {
    color: white;
    font-weight: 700;
    margin: 0 0 5px;
    font-size: 1.1rem;
}

.product-overlay p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
    margin: 0;
}

/* ===== GALLERY SECTION ===== */
#gallery {
    background: var(--light-bg);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 240px;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.15);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(26, 58, 109, 0.9), rgba(249, 115, 22, 0.7));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    padding: 20px;
    text-align: center;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    font-size: 2rem;
    color: white;
    margin-bottom: 10px;
    transform: translateY(20px);
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay i {
    transform: translateY(0);
}

.gallery-overlay h5 {
    color: white;
    font-weight: 700;
    margin: 0 0 5px;
    transform: translateY(20px);
    transition: var(--transition) 0.1s;
}

.gallery-item:hover .gallery-overlay h5 {
    transform: translateY(0);
    transition-delay: 0.1s;
}

.gallery-overlay p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    margin: 0;
    transform: translateY(20px);
    transition: var(--transition) 0.2s;
}

.gallery-item:hover .gallery-overlay p {
    transform: translateY(0);
    transition-delay: 0.2s;
}
/* ===== GALLERY GRID ===== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    aspect-ratio: 4/3;
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}
/* ===== LIGHTBOX STYLES ===== */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    animation: fadeIn 0.3s ease;
}

.lightbox.active {
    display: flex;
    justify-content: center;
    align-items: center;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-image {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.lightbox-caption {
    color: #fff;
    text-align: center;
    padding: 15px;
    font-size: 1.1rem;
    font-weight: 500;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 40px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10000;
    transition: color 0.3s ease;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.lightbox-close:hover {
    color: var(--light-orange);
    background-color: rgba(255, 255, 255, 0.1);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: none;
    font-size: 30px;
    padding: 15px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 5px;
    z-index: 10000;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background-color: rgba(255, 102, 0, 0.8);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

/* Disable body scroll when lightbox is open */
body.lightbox-open {
    overflow: hidden;
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .lightbox-prev,
    .lightbox-next {
        font-size: 24px;
        padding: 10px 15px;
    }
    
    .lightbox-prev {
        left: 10px;
    }
    
    .lightbox-next {
        right: 10px;
    }
    
    .lightbox-close {
        top: 10px;
        right: 20px;
        font-size: 30px;
    }
    
    .lightbox-caption {
        font-size: 0.9rem;
        padding: 10px;
    }
}
/* ===== GALLERY FILTERS WRAPPER ===== */
.gallery-filters-wrapper {
    padding: 0 0 40px;
    background: linear-gradient(to bottom, transparent, rgba(248, 250, 252, 0.5));
}

/* ===== FILTER BUTTONS CONTAINER ===== */
.gallery-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 12px;
    padding: 20px 15px;
    margin-bottom: 20px;
}

/* ===== INDIVIDUAL FILTER BUTTON ===== */
.filter-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 50px;
    color: var(--royal-blue);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
    min-width: 140px;
    justify-content: center;
}

/* Button hover effect */
.filter-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--royal-blue), var(--accent-blue));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.filter-btn:hover {
    border-color: var(--royal-blue);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(26, 58, 109, 0.25);
}

.filter-btn:hover::before {
    opacity: 1;
}

.filter-btn i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.filter-btn:hover i {
    transform: scale(1.1);
}

/* ===== ACTIVE STATE ===== */
.filter-btn.active {
    background: linear-gradient(135deg, var(--royal-blue), var(--accent-blue));
    border-color: var(--royal-blue);
    color: white;
    box-shadow: 0 8px 25px rgba(26, 58, 109, 0.35);
}

.filter-btn.active::before {
    opacity: 1;
}

.filter-btn.active i {
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.15); }
}

/* ===== FILTER INDICATOR ===== */
.filter-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px 20px;
    background: white;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    max-width: fit-content;
    margin: 0 auto;
    font-size: 0.9rem;
    color: var(--text-light);
}

.indicator-dot {
    width: 10px;
    height: 10px;
    background: var(--light-orange);
    border-radius: 50%;
    animation: blink 2s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.filter-count {
    background: var(--light-orange);
    color: white;
    padding: 3px 12px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.85rem;
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 991px) {
    .gallery-filters {
        gap: 10px;
        padding: 15px 10px;
    }
    
    .filter-btn {
        padding: 10px 20px;
        font-size: 0.85rem;
        min-width: 130px;
    }
}

@media (max-width: 768px) {
    .gallery-filters {
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
    }
    
    .filter-btn {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
        justify-content: center;
        padding: 12px 20px;
    }
    
    .filter-indicator {
        width: 100%;
        max-width: 300px;
        margin: 15px auto 0;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .filter-btn {
        padding: 10px 16px;
        font-size: 0.8rem;
        min-width: auto;
    }
    
    .filter-btn i {
        font-size: 0.8rem;
    }
    
    .filter-indicator {
        flex-wrap: wrap;
        padding: 8px 15px;
        font-size: 0.85rem;
    }
    
    .filter-count {
        padding: 2px 10px;
        font-size: 0.8rem;
    }
}

/* ===== ANIMATION FOR FILTERING ===== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.gallery-item.filtered-in {
    animation: fadeIn 0.4s ease forwards;
}

.gallery-item.filtered-out {
    animation: fadeIn 0.3s ease reverse forwards;
}
/* Filter Buttons */
.gallery-filters { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-bottom: 20px; }
.filter-btn { padding: 12px 24px; border: 2px solid #e2e8f0; background: white; border-radius: 50px; cursor: pointer; transition: 0.3s; font-weight: 600; }
.filter-btn:hover, .filter-btn.active { background: var(--royal-blue); color: white; border-color: var(--royal-blue); }
.filter-indicator { display: flex; justify-content: center; gap: 10px; margin-top: 15px; font-size: 0.9rem; }
.filter-count { background: var(--light-orange); color: white; padding: 3px 12px; border-radius: 20px; }

/* Gallery Grid */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 20px; }
.gallery-item { position: relative; border-radius: 12px; overflow: hidden; cursor: pointer; aspect-ratio: 4/3; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
.gallery-item:hover img { transform: scale(1.1); }
.gallery-item.hidden { display: none; }

/* Overlay */
.gallery-overlay { position: absolute; inset: 0; background: rgba(26, 58, 109, 0.85); display: flex; flex-direction: column; align-items: center; justify-content: center; opacity: 0; transition: 0.3s; color: white; }
.gallery-item:hover .gallery-overlay { opacity: 1; }

/* Modal Nav & Zoom */
.nav-btn { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,0.2); color: white; border: none; width: 50px; height: 50px; border-radius: 50%; z-index: 10; }
.nav-btn:hover { background: var(--light-orange); }
.prev-btn { left: 20px; } .next-btn { right: 20px; }
.zoomable-image { transition: transform 0.3s ease; cursor: grab; }

/* ===== TESTIMONIALS ===== */
#testimonials {
    background: var(--white);
}

.testimonial-slider {
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-card {
    background: var(--light-bg);
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border-left: 5px solid var(--light-orange);
}

.client-avatar {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--light-orange);
    margin-bottom: 20px;
    box-shadow: var(--shadow-md);
}

.testimonial-card p {
    font-style: italic;
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 25px;
    line-height: 1.7;
}

.testimonial-card h5 {
    color: var(--royal-blue);
    font-weight: 700;
    margin: 0;
}

.testimonial-card .role {
    color: var(--light-orange);
    font-size: 0.9rem;
    font-weight: 500;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 25px;
}

.testimonial-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #cbd5e1;
    cursor: pointer;
    transition: var(--transition);
}

.testimonial-dots .dot.active {
    background: var(--light-orange);
    transform: scale(1.2);
}

/* ===== CONTACT SECTION ===== */
#contact {
    background: linear-gradient(135deg, var(--royal-blue-dark), var(--royal-blue)),
        url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

#contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.92);
}

#contact .container {
    position: relative;
    z-index: 2;
}

.contact-wrapper {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    display: grid;
    grid-template-columns: 1fr 1.2fr;
}

@media (max-width: 991px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}

.contact-info {
    background: var(--royal-blue);
    color: white;
    padding: 40px 35px;
}

.contact-info h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}
.contact-item a {
    text-decoration: none !important;
    color: inherit;
}
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-item i {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-item .text h6 {
    font-weight: 600;
    margin-bottom: 3px;
    font-size: 1rem;
}

.contact-item .text p {
    margin: 0;
    opacity: 0.9;
    font-size: 0.95rem;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 30px;
    padding-top: 25px;
    border-top: 2px solid rgba(255, 255, 255, 0.2);
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: var(--transition);
    text-decoration: none;
}

.social-links a:hover {
    background: var(--light-orange);
    transform: translateY(-3px);
}

.contact-form {
    padding: 40px 35px;
}

.contact-form h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--royal-blue);
    margin-bottom: 25px;
}

.form-control {
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    padding: 14px 18px;
    margin-bottom: 20px;
    font-size: 0.95rem;
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--light-orange);
    box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.15);
}

.form-control::placeholder {
    color: #94a3b8;
}

textarea.form-control {
    min-height: 140px;
    resize: vertical;
}

.btn-submit {
    background: linear-gradient(135deg, var(--royal-blue), var(--accent-blue));
    color: white;
    border: none;
    padding: 16px 35px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 8px;
    transition: var(--transition);
    width: 100%;
    cursor: pointer;
}

.btn-submit:hover {
    background: linear-gradient(135deg, var(--accent-blue), var(--royal-blue));
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

/* ===== FOOTER ===== */
footer {
    background: var(--dark-bg);
    color: rgba(255, 255, 255, 0.85);
    padding-top: 70px;
}

.footer-top {
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
    font-size: 1.8rem;
    font-weight: 900;
    color: white !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    display: inline-block;
    text-decoration: none !important;
}

.footer-brand span {
    color: var(--light-orange);
}

.footer-brand i {
    color: var(--light-orange);
    margin-right: 8px;
}

.footer-about p {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 25px;
    opacity: 0.9;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.footer-contact-item i {
    color: var(--light-orange);
    width: 20px;
}

.footer-contact-item a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

.footer-contact-item a:hover {
    color: var(--light-orange);
}

.footer-links h5 {
    color: white;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
}

.footer-links h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--light-orange);
    border-radius: 2px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: inherit;
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a:hover {
    color: var(--light-orange);
    transform: translateX(5px);
}

.footer-links i {
    font-size: 0.8rem;
    opacity: 0.7;
}

.footer-bottom {
    padding: 25px 0;
    text-align: center;
    font-size: 0.9rem;
}

.footer-bottom p {
    margin: 0;
    opacity: 0.8;
}

.footer-bottom a {
    color: var(--light-orange);
    text-decoration: none;
    font-weight: 500;
}

@media (max-width: 768px) {
    .footer-top {
        text-align: center;
    }

    .footer-about,
    .footer-links {
        margin-bottom: 30px;
    }

    .footer-contact-item {
        justify-content: center;
    }

    .footer-links ul {
        text-align: left;
        display: inline-block;
    }
}
/* COMMON FLOAT STYLE */
.chatbot-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
}

/* TOGGLE BUTTON */
.chat-toggle {
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    animation: pulse 2s infinite;
}

/* CHATBOX */
.chatbox {
    width: 280px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
    position: absolute;
    bottom: 80px;
    right: 0;
    overflow: hidden;

    opacity: 0;
    transform: translateY(20px) scale(0.95);
    pointer-events: none;
    transition: all 0.3s ease;
}

.chatbox.active {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

/* HEADER */
.chat-header {
    background: #25D366;
    color: white;
    padding: 12px;
    display: flex;
    gap: 10px;
    align-items: center;
}

.chat-header i {
    font-size: 24px;
}

/* BODY */
.chat-body {
    padding: 15px;
}

/* BOT MESSAGE */
.bot-message {
    background: #f1f1f1;
    padding: 10px;
    border-radius: 10px;
    margin-bottom: 10px;
    font-size: 14px;
    animation: fadeIn 0.5s ease;
}

/* OPTIONS */
.chat-options a {
    display: block;
    padding: 10px;
    margin-bottom: 8px;
    background: #f9f9f9;
    border-radius: 8px;
    text-decoration: none;
    color: #333;
    transition: 0.3s;
    font-size: 14px;
}

.chat-options a i {
    margin-right: 8px;
}

.chat-options a:hover {
    background: #25D366;
    color: white;
}

/* ANIMATIONS */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.08); }
    100% { transform: scale(1); }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px);}
    to { opacity: 1; transform: translateY(0);}
}
.back-to-top,
.whatsapp-float {
    position: fixed;
    right: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    z-index: 999;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* BACK TO TOP */
.back-to-top {
    bottom: 90px;
    background: #007bff;
    opacity: 0;
    visibility: hidden;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

/* WHATSAPP */
.whatsapp-float {
    bottom: 20px;
    background: #25D366;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

/* HOVER EFFECT */
.back-to-top:hover,
.whatsapp-float:hover {
    transform: translateY(-5px) scale(1.1);
}

/* PULSE ANIMATION (WhatsApp) */
.whatsapp-float::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.5);
    animation: pulse 1.8s infinite;
    z-index: -1;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }
    70% {
        transform: scale(1.6);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 0;
    }
}
/* ===== LOADING ANIMATION ===== */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-content {
    text-align: center;
}

.loader-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(26, 58, 109, 0.1);
    border-top-color: var(--light-orange);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.loader-text {
    font-weight: 700;
    color: var(--royal-blue);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
}
/* ===== FILTERS DIVISION WRAPPER ===== */
.gallery-filters-wrapper {
    padding: 0 0 50px;
}

.filters-division {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    border: 1px solid #e2e8f0;
}

/* ===== FILTER LABEL ===== */
.filter-label {
    background: linear-gradient(135deg, var(--royal-blue), var(--accent-blue));
    color: white;
    padding: 15px 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.filter-label i {
    font-size: 1.1rem;
    color: var(--light-orange);
}

/* ===== FILTER BUTTONS DIVISION ===== */
.filter-buttons-division {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    padding: 20px 15px;
    background: #f8fafc;
    border-bottom: 2px solid #e2e8f0;
    gap: 0;
}

.filter-div-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 15px 25px;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    min-width: 100px;
}

.filter-div-btn i {
    font-size: 1.5rem;
    color: var(--text-light);
    transition: all 0.3s ease;
}

.filter-div-btn span {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

/* Active State */
.filter-div-btn.active {
    background: rgba(249, 115, 22, 0.1);
    border-radius: 8px;
}

.filter-div-btn.active i {
    color: var(--light-orange);
    transform: scale(1.1);
}

.filter-div-btn.active span {
    color: var(--royal-blue);
    font-weight: 700;
}

/* Hover State */
.filter-div-btn:hover {
    background: rgba(26, 58, 109, 0.05);
    border-radius: 8px;
}

.filter-div-btn:hover i {
    color: var(--royal-blue);
}

/* Vertical Divider Between Buttons */
.filter-divider {
    width: 1px;
    height: 40px;
    background: #cbd5e1;
    margin: 0 5px;
    align-self: center;
}

/* ===== FILTER INFO BAR ===== */
.filter-info-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 25px;
    background: white;
}

.filter-status {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-light);
}

.status-dot {
    width: 10px;
    height: 10px;
    background: var(--light-orange);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

.filter-count-box {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--royal-blue), var(--accent-blue));
    color: white;
    padding: 8px 20px;
    border-radius: 8px;
}

.count-number {
    font-size: 1.3rem;
    font-weight: 800;
}

.count-label {
    font-size: 0.85rem;
    opacity: 0.9;
    text-transform: uppercase;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
    .filter-buttons-division {
        gap: 10px;
    }
    
    .filter-divider {
        display: none; /* Hide dividers on tablet */
    }
    
    .filter-div-btn {
        padding: 12px 20px;
        min-width: 80px;
    }
    
    .filter-div-btn i {
        font-size: 1.3rem;
    }
    
    .filter-div-btn span {
        font-size: 0.8rem;
    }
}

@media (max-width: 768px) {
    .filter-buttons-division {
        flex-direction: column;
        align-items: stretch;
    }
    
    .filter-div-btn {
        flex-direction: row;
        justify-content: flex-start;
        padding: 15px 20px;
        gap: 15px;
        border-bottom: 1px solid #e2e8f0;
        border-radius: 0;
    }
    
    .filter-div-btn:last-child {
        border-bottom: none;
    }
    
    .filter-divider {
        display: none;
    }
    
    .filter-info-bar {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .filter-status {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .filter-label {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .filter-div-btn i {
        font-size: 1.2rem;
    }
    
    .filter-div-btn span {
        font-size: 0.75rem;
    }
    
    .count-number {
        font-size: 1.1rem;
    }
}
.gallery-grid {
    column-count: 4;
    column-gap: 15px;
}

.gallery-item {
    display: inline-block;
    width: 100%;
    margin-bottom: 15px;
    break-inside: avoid;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    cursor: pointer;
    transition: transform 0.3s ease;
}

/* Hover zoom */
.gallery-item:hover img {
    transform: scale(1.05);
}

/* Overlay */
.gallery-overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 10px;
    background: rgba(0,0,0,0.6);
    color: white;
    text-align: center;
    opacity: 0;
    transition: 0.3s;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* Responsive */
@media (max-width: 992px) {
    .gallery-grid { column-count: 3; }
}
@media (max-width: 768px) {
    .gallery-grid { column-count: 2; }
}
@media (max-width: 480px) {
    .gallery-grid { column-count: 1; }
}