:root {
    --font-display: 'Rajdhani', sans-serif;
    --font-body: 'Nunito Sans', sans-serif;

    --primary-dark: #1e1e1e;
    --secondary-dark: #2c2c2c;
    --accent-orange: #e05a1e;
    --accent-orange-light: #f07030;
    --accent-orange-dark: #c04010;
    --white: #ffffff;
    --light-gray: #f5f5f5;
    --text-gray: #888888;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    background-color: var(--white);
    color: var(--secondary-dark);
    overflow-x: hidden;
    font-size: 15px;
    line-height: 1.7;
}

h1,
h2,
h3,
h4,
h5,
h6,
.navbar-brand,
.section-title,
.hero-title,
.page-header h1,
.footer-brand .brand-name,
.detail-content h1,
.contact-form-card h4,
.contact-info-card h4,
.cta-section h2 {
    font-family: var(--font-display);
    letter-spacing: 0.5px;
}

::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--secondary-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--accent-orange);
    border-radius: 3px;
}

/* ===== TOP BAR ===== */
.top-bar {
    background-color: var(--primary-dark);
    color: var(--white);
    padding: 8px 0;
    font-size: 13px;
    font-family: var(--font-body);
}

.top-bar a {
    color: var(--accent-orange);
    text-decoration: none;
    transition: color 0.3s;
}

.top-bar a:hover {
    color: var(--white);
}

.top-bar .separator {
    color: var(--accent-orange);
    margin: 0 10px;
}

/* ===== NAVBAR ===== */
.navbar {
    background-color: var(--secondary-dark) !important;
    padding: 12px 0;
    box-shadow: 0 2px 20px rgba(224, 90, 30, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s;
   
}




.navbar .container {
    height: 100%;
}

.navbar-brand {
    display: flex !important;
    align-items: center;
}

.navbar.scrolled {
    padding: 8px 0;
}

.brand-logo-svg {
    width: 46px;
    height: 46px;
    transition: filter 0.3s ease;
}

.logo-wrapper {
    position: relative;
    width: 150px;
    height: 52px;
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.brand-logo-img {
    position: absolute;
    width: 150px;
    height: 150px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    object-fit: contain;
    transition: all 0.3s ease;
    filter: drop-shadow(0 0 4px rgba(224, 90, 30, 0.3));
    flex-shrink: 0;
    pointer-events: none;
    z-index: 10;
}

.navbar.scrolled .logo-wrapper {
    height: 44px;
}

.navbar.scrolled .brand-logo-img {
    width: 150px;
    height: 150px;
}

.navbar-brand:hover .brand-logo-img {
    filter: drop-shadow(0 0 10px rgba(224, 90, 30, 0.7));
    transform: translateY(-50%) scale(1.02);
}

@media (max-width: 576px) {
    .logo-wrapper {
        width: 100px;
        height: 44px;
    }
    .brand-logo-img {
        width: 100px;
        height: 100px;
    }
    .navbar.scrolled .brand-logo-img {
        width: 100px;
        height: 100px;
    }
}

.brand-logo-svg:hover {
    filter: drop-shadow(0 0 8px rgba(224, 90, 30, 0.6));
}

.brand-logo-svg:hover .logo-grid-outer {
    transform-origin: 25px 25px;
    animation: logo-spin-clockwise 15s linear infinite;
}

.brand-logo-svg:hover .logo-grid-inner {
    transform-origin: 25px 25px;
    animation: logo-spin-counter 10s linear infinite;
}

.brand-logo-svg:hover .logo-knurled-wheel {
    transform-origin: 25px 26.5px;
    animation: logo-wheel-wiggle 2s ease-in-out infinite alternate;
}

.brand-logo-svg:hover .logo-joint-outer {
    animation: logo-pulse-glow 1.5s ease-in-out infinite alternate;
}

@keyframes logo-spin-clockwise {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes logo-spin-counter {
    from {
        transform: rotate(360deg);
    }

    to {
        transform: rotate(0deg);
    }
}

@keyframes logo-wheel-wiggle {
    0% {
        transform: rotate(-20deg);
    }

    100% {
        transform: rotate(20deg);
    }
}

@keyframes logo-pulse-glow {
    0% {
        filter: drop-shadow(0 0 1px rgba(224, 90, 30, 0.4));
        opacity: 0.8;
    }

    100% {
        filter: drop-shadow(0 0 5px rgba(224, 90, 30, 1));
        opacity: 1;
    }
}

.brand-text .brand-name {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.brand-text .brand-sub {
    font-family: var(--font-body);
    font-size: 9.5px;
    color: var(--accent-orange);
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    margin-top: 2px;
}

.navbar-brand:hover .brand-text .brand-sub {
    color: var(--accent-orange-light);
    letter-spacing: 1.6px;
}

.navbar-nav .nav-link {
    font-family: var(--font-display);
    color: var(--white) !important;
    font-weight: 600;
    font-size: 15px;
    padding: 8px 15px !important;
    position: relative;
    transition: color 0.3s;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--accent-orange);
    transition: width 0.3s;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 80%;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--accent-orange) !important;
}

.navbar-toggler {
    border-color: var(--accent-orange);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(224,90,30,1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.btn-quote {
    background: var(--accent-orange) !important;
    color: var(--white) !important;
    border-radius: 4px;
    padding: 8px 22px !important;
    font-weight: 700 !important;
    font-family: var(--font-display) !important;
    font-size: 15px !important;
    letter-spacing: 1px;
    transition: all 0.3s;
}

.btn-quote:hover,
.btn-quote.active {
    background: rgba(224, 90, 30, 0.4) !important;
    color: var(--white) !important;
    box-shadow: 0 6px 20px rgba(224, 90, 30, 0.4);
}

/* ===== PAGE SECTIONS ===== */
.page-section {
    display: none;
}

.page-section.active {
    display: block;
}

/* ===== COMMON SECTION STYLES ===== */
.section-padding {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 55px;
}

.section-badge {
    display: inline-block;
    background: rgba(224, 90, 30, 0.1);
    color: var(--accent-orange);
    padding: 5px 18px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 12px;
    border: 1px solid rgba(224, 90, 30, 0.3);
    font-family: var(--font-body);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 700;
    color: var(--secondary-dark);
    margin-bottom: 15px;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

.section-title span {
    color: var(--accent-orange);
}

.section-divider {
    width: 60px;
    height: 3px;
    background: var(--accent-orange);
    margin: 0 auto 18px;
}

.section-text {
    font-family: var(--font-body);
    color: var(--text-gray);
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.8;
    font-size: 15px;
}

/* ===== PAGE HEADER ===== */
.page-header {
    background: linear-gradient(135deg, var(--primary-dark), var(--secondary-dark));
    padding: 75px 0 55px;
    position: relative;
    overflow: hidden;
}

.page-header::after {
    content: '';
    position: absolute;
    right: -100px;
    top: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(224, 90, 30, 0.15), transparent);
    border-radius: 50%;
}

.page-header h1 {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.page-header h1 span {
    color: var(--accent-orange);
}

.breadcrumb-custom {
    display: flex;
    align-items: center;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.breadcrumb-custom li {
    font-family: var(--font-body);
    color: #888;
    font-size: 14px;
}

.breadcrumb-custom li a {
    color: var(--accent-orange);
    text-decoration: none;
}

.breadcrumb-custom li.active {
    color: var(--white);
}

.breadcrumb-custom .separator {
    color: var(--accent-orange);
}

/* ===== HERO ===== */
.hero-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-dark) 60%, #3a2010 100%);
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(224, 90, 30, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-badge {
    display: inline-block;
    background: rgba(224, 90, 30, 0.2);
    border: 1px solid var(--accent-orange);
    color: var(--accent-orange);
    padding: 6px 20px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
    margin-top: 20px;
    font-family: var(--font-body);
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 5.5vw, 4.5rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero-title span {
    color: var(--accent-orange);
}

.hero-text {
    font-family: var(--font-body);
    color: #aaa;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 35px;
}

.btn-primary-custom {
    background: var(--accent-orange);
    color: var(--white);
    border: 2px solid var(--accent-orange);
    padding: 13px 32px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 15px;
    font-family: var(--font-display);
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.btn-primary-custom:hover {
    background: transparent;
    color: var(--accent-orange);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(224, 90, 30, 0.4);
}

.btn-secondary-custom {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.35);
    padding: 13px 32px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 15px;
    font-family: var(--font-display);
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.btn-secondary-custom:hover {
    border-color: var(--white);
    color: var(--white);
    transform: translateY(-3px);
}

.hero-stats {
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item .stat-number {
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--accent-orange);
    line-height: 1;
    letter-spacing: 1px;
}

.stat-item .stat-label {
    font-family: var(--font-body);
    font-size: 12px;
    color: #aaa;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
}

.gear-icon {
    font-size: 120px;
    color: var(--accent-orange);
    opacity: 0.8;
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.hero-image-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(224, 90, 30, 0.3);
    border-radius: 14px;
    padding: 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-image-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-orange), transparent);
}

.floating-badge {
    position: absolute;
    background: var(--accent-orange);
    color: white;
    padding: 7px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    font-family: var(--font-body);
    animation: float 3s ease-in-out infinite;
}

.floating-badge:nth-child(2) {
    top: 20px;
    right: 20px;
    animation-delay: 0s;
}

.floating-badge:nth-child(3) {
    bottom: 20px;
    left: 20px;
    animation-delay: 1s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* ===== COUNTER ===== */
.counter-section {
    background: linear-gradient(135deg, var(--primary-dark), var(--secondary-dark));
    padding: 65px 0;
}

.counter-item {
    text-align: center;
    padding: 20px;
}

.counter-number {
    font-family: var(--font-display);
    font-size: 3.2rem;
    font-weight: 700;
    color: var(--accent-orange);
    line-height: 1;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.counter-label {
    font-family: var(--font-body);
    color: #aaa;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

/* ===== FEATURES ===== */
.features-section {
    background: var(--light-gray);
}

.feature-card {
    background: var(--white);
    border-radius: 12px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.4s;
    height: 100%;
    border-bottom: 3px solid transparent;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.07);
}

.feature-card:hover {
    transform: translateY(-8px);
    border-bottom-color: var(--accent-orange);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.13);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent-orange), var(--accent-orange-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: white;
}

.feature-card h5 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--secondary-dark);
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.feature-card p {
    font-family: var(--font-body);
    color: var(--text-gray);
    font-size: 14px;
    line-height: 1.7;
}

/* ===== PRODUCT CARDS ===== */
.product-card {
    background: var(--white);
    border-radius: 14px;
    overflow: hidden;
    transition: all 0.4s;
    height: 100%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #eee;
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
    border-color: rgba(224, 90, 30, 0.3);
}

.product-img-wrapper {
    position: relative;
    height: 240px;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a1a, #2c2c2c);
}

.product-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-img-wrapper img {
    transform: scale(1.08);
}

.product-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 20px;
}

.product-card:hover .product-img-overlay {
    opacity: 1;
}

.overlay-btn {
    background: var(--accent-orange);
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 700;
    font-family: var(--font-display);
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.overlay-btn:hover {
    background: var(--accent-orange-dark);
}

.product-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--accent-orange);
    color: white;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 700;
    padding: 5px 13px;
    border-radius: 20px;
    letter-spacing: 0.5px;
    z-index: 2;
}

.product-badge-new {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #22c55e;
    color: white;
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    z-index: 2;
}

.product-body {
    padding: 22px 20px 20px;
}

.product-body h5 {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--secondary-dark);
    margin-bottom: 8px;
    font-size: 1.1rem;
    letter-spacing: 0.3px;
    line-height: 1.3;
}

.product-body p {
    font-family: var(--font-body);
    color: var(--text-gray);
    font-size: 13px;
    line-height: 1.65;
    margin-bottom: 15px;
}

.product-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 15px;
    border-top: 1px solid #f0f0f0;
}

.product-category-badge {
    background: rgba(224, 90, 30, 0.1);
    color: var(--accent-orange);
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 15px;
    letter-spacing: 0.5px;
}

.view-detail-btn {
    background: none;
    border: none;
    color: var(--accent-orange);
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: gap 0.3s;
    padding: 0;
}

.view-detail-btn:hover {
    gap: 10px;
}

/* ===== PRODUCT DETAIL ===== */
.product-detail-section {
    padding: 60px 0;
}

.detail-img-main {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    height: 420px;
    background: linear-gradient(135deg, #1a1a1a, #2c2c2c);
}

.detail-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s;
}

.detail-img-thumbnails {
    display: flex;
    gap: 12px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.thumb-img {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s;
    background: #1a1a1a;
}

.thumb-img:hover,
.thumb-img.active {
    border-color: var(--accent-orange);
    transform: scale(1.05);
}

.thumb-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.detail-content h1 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 700;
    color: var(--secondary-dark);
    margin-bottom: 8px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.detail-category {
    display: inline-block;
    background: rgba(224, 90, 30, 0.1);
    color: var(--accent-orange);
    padding: 5px 16px;
    border-radius: 20px;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.detail-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}

.stars {
    color: #f59e0b;
    font-size: 15px;
}

.rating-text {
    font-family: var(--font-body);
    color: var(--text-gray);
    font-size: 13px;
}

.detail-description {
    font-family: var(--font-body);
    color: #555;
    font-size: 15px;
    line-height: 1.9;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #eee;
}

.spec-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 25px;
}

.spec-item {
    background: var(--light-gray);
    border-radius: 8px;
    padding: 12px 15px;
    border-left: 3px solid var(--accent-orange);
}

.spec-item .spec-label {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 700;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.spec-item .spec-value {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 600;
    color: var(--secondary-dark);
    letter-spacing: 0.3px;
}

.detail-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 25px;
}

.btn-inquire {
    background: var(--accent-orange);
    color: white;
    border: 2px solid var(--accent-orange);
    padding: 13px 32px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 15px;
    font-family: var(--font-display);
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.btn-inquire:hover {
    background: var(--accent-orange-dark);
    border-color: var(--accent-orange-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(224, 90, 30, 0.4);
}

.btn-whatsapp-detail {
    background: #25d366;
    color: white;
    border: 2px solid #25d366;
    padding: 13px 22px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 15px;
    font-family: var(--font-display);
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.btn-whatsapp-detail:hover {
    background: #1ebe57;
    border-color: #1ebe57;
    color: white;
    transform: translateY(-2px);
}

.btn-back {
    background: transparent;
    color: var(--secondary-dark);
    border: 2px solid #ddd;
    padding: 12px 22px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    font-family: var(--font-display);
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-back:hover {
    border-color: var(--accent-orange);
    color: var(--accent-orange);
}

.detail-info-badges {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    padding: 20px;
    background: var(--light-gray);
    border-radius: 10px;
}

.info-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 700;
    color: var(--secondary-dark);
}

.info-badge i {
    color: var(--accent-orange);
    font-size: 18px;
}

/* TABS */
.detail-tabs {
    margin-top: 50px;
}

.nav-tabs-custom {
    border: none;
    display: flex;
    gap: 5px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.nav-tabs-custom .nav-link {
    border: 2px solid #eee;
    border-radius: 8px;
    color: var(--secondary-dark);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.5px;
    padding: 10px 22px;
    transition: all 0.3s;
    background: white;
    text-transform: uppercase;
}

.nav-tabs-custom .nav-link:hover,
.nav-tabs-custom .nav-link.active {
    background: var(--accent-orange);
    border-color: var(--accent-orange);
    color: white;
}

.tab-content-custom {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 3px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid #eee;
}

.tab-pane-custom {
    display: none;
}

.tab-pane-custom.active {
    display: block;
}

.tab-content-custom h5 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--secondary-dark);
    margin-bottom: 20px;
    letter-spacing: 0.3px;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding: 10px 0;
    border-bottom: 1px solid #f5f5f5;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-family: var(--font-body);
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

.feature-list li:last-child {
    border-bottom: none;
}

.feature-list li i {
    color: var(--accent-orange);
    margin-top: 2px;
    flex-shrink: 0;
}

.spec-table {
    width: 100%;
    border-collapse: collapse;
}

.spec-table tr:nth-child(even) {
    background: var(--light-gray);
}

.spec-table td {
    padding: 12px 15px;
    font-size: 14px;
    border: 1px solid #eee;
}

.spec-table td:first-child {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 15px;
    color: var(--secondary-dark);
    width: 40%;
    background: rgba(224, 90, 30, 0.05);
}

.spec-table td:last-child {
    font-family: var(--font-body);
    color: #555;
}

/* RELATED PRODUCTS */
.related-products {
    padding: 60px 0;
    background: var(--light-gray);
}

/* ===== SERVICES ===== */
.services-section {
    background: var(--secondary-dark);
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 35px 25px;
    transition: all 0.4s;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--accent-orange);
    transition: width 0.4s;
}

.service-card:hover::before {
    width: 100%;
}

.service-card:hover {
    background: rgba(224, 90, 30, 0.1);
    border-color: rgba(224, 90, 30, 0.4);
    transform: translateY(-5px);
}

.service-icon {
    font-size: 45px;
    color: var(--accent-orange);
    margin-bottom: 20px;
}

.service-card h5 {
    font-family: var(--font-display);
    color: var(--white);
    font-weight: 700;
    font-size: 1.15rem;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.service-card p {
    font-family: var(--font-body);
    color: #aaa;
    font-size: 14px;
    line-height: 1.7;
}

.service-card ul {
    font-family: var(--font-body);
}

/* ===== PARTNERS ===== */
.partners-section {
    background: var(--light-gray);
}

.partner-card {
    background: var(--white);
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s;
    height: 100%;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
    border: 1px solid #eee;
}

.partner-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    border-color: var(--accent-orange);
}

.partner-logo {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-dark), var(--secondary-dark));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 30px;
    color: var(--accent-orange);
}

.partner-card h5 {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--secondary-dark);
    margin-bottom: 8px;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

.partner-card p {
    font-family: var(--font-body);
    color: var(--text-gray);
    font-size: 13px;
}

.partner-badge {
    display: inline-block;
    background: rgba(224, 90, 30, 0.1);
    color: var(--accent-orange);
    padding: 3px 12px;
    border-radius: 15px;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 700;
    margin-top: 8px;
}

/* ===== ABOUT ===== */
.about-image-box {
    background: linear-gradient(135deg, var(--primary-dark), var(--secondary-dark));
    border-radius: 14px;
    height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(224, 90, 30, 0.3);
}

.about-image-box i {
    font-size: 100px;
    color: var(--accent-orange);
    opacity: 0.7;
}

.about-exp-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: var(--accent-orange);
    color: white;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
}

.about-exp-badge .number {
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 1px;
}

.about-exp-badge .text {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.about-content h6 {
    font-family: var(--font-body);
    color: var(--accent-orange);
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 8px;
    font-size: 12px;
}

.about-list {
    list-style: none;
    padding: 0;
}

.about-list li {
    font-family: var(--font-body);
    padding: 10px 0;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    border-bottom: 1px solid #eee;
    font-size: 14px;
    color: #555;
}

.about-list li:last-child {
    border-bottom: none;
}

.about-list li i {
    color: var(--accent-orange);
    font-size: 16px;
    margin-top: 2px;
    flex-shrink: 0;
}

/* TEAM */
.team-card {
    text-align: center;
    padding: 30px 20px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 3px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    border-bottom: 3px solid transparent;
}

.team-card:hover {
    transform: translateY(-5px);
    border-bottom-color: var(--accent-orange);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.team-avatar {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--accent-orange), var(--accent-orange-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-family: var(--font-display);
    font-size: 32px;
    color: white;
    font-weight: 700;
    letter-spacing: 1px;
}

.team-card h5 {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--secondary-dark);
    margin-bottom: 5px;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

.team-card .role {
    font-family: var(--font-body);
    color: var(--accent-orange);
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.team-card .phone {
    font-family: var(--font-body);
    color: var(--text-gray);
    font-size: 13px;
}

/* ===== CTA ===== */
.cta-section {
    background: linear-gradient(135deg, var(--accent-orange) 0%, var(--accent-orange-dark) 100%);
    padding: 70px 0;
}

.cta-section h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    color: var(--white);
    margin-bottom: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.cta-section p {
    font-family: var(--font-body);
    color: rgba(255, 255, 255, 0.88);
    font-size: 16px;
    margin-bottom: 30px;
}

.btn-cta {
    background: var(--white);
    color: var(--accent-orange);
    border: 2px solid var(--white);
    padding: 13px 35px;
    border-radius: 4px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
}

.btn-cta:hover {
    background: transparent;
    color: var(--white);
    transform: translateY(-3px);
}

/* ===== TESTIMONIAL ===== */
.testimonial-card {
    background: var(--white);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    height: 100%;
    border-left: 4px solid var(--accent-orange);
}

.testimonial-stars {
    color: var(--accent-orange);
    margin-bottom: 12px;
}

.testimonial-text {
    font-family: var(--font-body);
    color: #555;
    font-size: 14px;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 45px;
    height: 45px;
    background: var(--accent-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    color: white;
    font-weight: 700;
    font-size: 16px;
}

.author-name {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 15px;
    color: var(--secondary-dark);
    letter-spacing: 0.3px;
}

.author-company {
    font-family: var(--font-body);
    font-size: 12px;
    color: var(--text-gray);
}

/* ===== CONTACT ===== */
.contact-section {
    background: var(--light-gray);
}

.contact-info-card {
    background: var(--secondary-dark);
    color: var(--white);
    border-radius: 14px;
    padding: 40px 30px;
    height: 100%;
}

.contact-info-card h4 {
    font-family: var(--font-display);
    font-size: 2rem;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.contact-info-card p {
    font-family: var(--font-body);
    color: #aaa;
    margin-bottom: 30px;
    font-size: 14px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-item-icon {
    width: 45px;
    height: 45px;
    background: var(--accent-orange);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: white;
    flex-shrink: 0;
}

.contact-item-text .label {
    font-family: var(--font-body);
    font-size: 11px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 700;
}

.contact-item-text .value {
    font-family: var(--font-body);
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
}

.contact-item-text a {
    color: var(--accent-orange);
    text-decoration: none;
}

.contact-form-card {
    background: var(--white);
    border-radius: 14px;
    padding: 40px 30px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
}

.contact-form-card h4 {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--secondary-dark);
    margin-bottom: 25px;
    letter-spacing: 0.5px;
}

.form-control,
.form-select {
    font-family: var(--font-body);
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 12px 15px;
    font-size: 14px;
    transition: all 0.3s;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--accent-orange);
    box-shadow: 0 0 0 3px rgba(224, 90, 30, 0.15);
}

.form-label {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 13px;
    color: var(--secondary-dark);
    margin-bottom: 6px;
}

.btn-submit {
    background: var(--accent-orange);
    color: var(--white);
    border: none;
    padding: 14px 40px;
    border-radius: 6px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 1px;
    text-transform: uppercase;
    width: 100%;
    transition: all 0.3s;
    cursor: pointer;
}

.btn-submit:hover {
    background: var(--accent-orange-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(224, 90, 30, 0.4);
}

/* MAP */
.map-container {
    border-radius: 14px;
    overflow: hidden;
    height: 350px;
    background: linear-gradient(135deg, var(--primary-dark), var(--secondary-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(224, 90, 30, 0.3);
}

.map-placeholder {
    text-align: center;
    color: var(--white);
}

.map-placeholder i {
    font-size: 60px;
    color: var(--accent-orange);
    margin-bottom: 15px;
}

.map-placeholder h5 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    letter-spacing: 0.5px;
}

.map-placeholder p {
    font-family: var(--font-body);
    color: #888;
    font-size: 14px;
}

/* FAQ */
.accordion-item {
    border: 1px solid #eee;
    border-radius: 8px !important;
    margin-bottom: 10px;
    overflow: hidden;
}

.accordion-button {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 16px;
    color: var(--secondary-dark);
    letter-spacing: 0.3px;
}

.accordion-button:not(.collapsed) {
    background: rgba(224, 90, 30, 0.08);
    color: var(--accent-orange);
    box-shadow: none;
}

.accordion-body {
    font-family: var(--font-body);
    font-size: 14px;
    color: #555;
    line-height: 1.8;
}

/* ===== FILTER BTNS ===== */
.filter-btn {
    background: transparent;
    border: 2px solid #ddd;
    color: var(--secondary-dark);
    padding: 8px 22px;
    border-radius: 25px;
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s;
    margin: 4px;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--accent-orange);
    border-color: var(--accent-orange);
    color: var(--white);
}

/* ===== FOOTER ===== */
footer {
    background: var(--primary-dark);
    color: var(--white);
    padding: 65px 0 0;
}

.footer-brand .brand-name {
    font-family: var(--font-display);
    font-size: 30px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.footer-brand .brand-sub {
    font-family: var(--font-body);
    color: var(--accent-orange);
    font-size: 11px;
    letter-spacing: 2.5px;
    font-weight: 700;
    text-transform: uppercase;
}

.footer-desc {
    font-family: var(--font-body);
    color: #888;
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 25px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s;
    margin-right: 8px;
}

.footer-social a:hover {
    background: var(--accent-orange);
    transform: translateY(-3px);
}

.footer-heading {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--accent-orange);
    display: inline-block;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links li a {
    font-family: var(--font-body);
    color: #888;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links li a:hover {
    color: var(--accent-orange);
    padding-left: 5px;
}

.footer-links li a i {
    font-size: 10px;
    color: var(--accent-orange);
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
}

.footer-contact-item i {
    color: var(--accent-orange);
    font-size: 16px;
    margin-top: 2px;
}

.footer-contact-item span {
    font-family: var(--font-body);
    color: #888;
    font-size: 13px;
    line-height: 1.6;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    margin-top: 50px;
}

.footer-bottom p {
    font-family: var(--font-body);
    color: #666;
    font-size: 13px;
    margin: 0;
}

.footer-bottom span {
    color: var(--accent-orange);
}

/* ===== MISC ===== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: var(--accent-orange);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 999;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(224, 90, 30, 0.4);
}

.back-to-top:hover {
    background: var(--accent-orange-dark);
    transform: translateY(-3px);
}

.back-to-top.show {
    display: flex;
}

.whatsapp-float {
    position: fixed;
    bottom: 85px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: #25d366;
    color: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    text-decoration: none;
    z-index: 999;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    transition: all 0.3s;
}

.whatsapp-float:hover {
    background: #1ebe57;
    transform: translateY(-3px);
    color: white;
}

.toast-custom {
    position: fixed;
    top: 100px;
    right: 20px;
    z-index: 9999;
    background: var(--secondary-dark);
    color: white;
    padding: 15px 25px;
    border-radius: 8px;
    border-left: 4px solid var(--accent-orange);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transform: translateX(150%);
    transition: transform 0.4s;
    display: flex;
    align-items: center;
    gap: 12px;
}

.toast-custom.show {
    transform: translateX(0);
}

.toast-custom i {
    color: var(--accent-orange);
    font-size: 20px;
}

.toast-custom span {
    font-family: var(--font-body);
}

.loading-overlay {
    position: fixed;
    inset: 0;
    background: var(--primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s;
}

.spinner-gear {
    font-size: 60px;
    color: var(--accent-orange);
    animation: rotate 2s linear infinite;
    margin-bottom: 20px;
}

.loading-text {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.loading-text span {
    color: var(--accent-orange);
}

.loading-sub {
    font-family: var(--font-body);
    color: #888;
    font-size: 13px;
    margin-top: 8px;
    letter-spacing: 1px;
}

.img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a1a1a, #2c2c2c);
    color: var(--accent-orange);
}

.img-placeholder i {
    font-size: 60px;
    margin-bottom: 10px;
}

.img-placeholder span {
    font-family: var(--font-body);
    font-size: 12px;
    color: #666;
}

/* Process steps */
.process-num {
    width: 70px;
    height: 70px;
    background: var(--accent-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-family: var(--font-display);
    font-size: 26px;
    color: white;
    font-weight: 700;
    letter-spacing: 1px;
}

.process-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--secondary-dark);
    margin-bottom: 8px;
    letter-spacing: 0.3px;
}

.process-desc {
    font-family: var(--font-body);
    color: var(--text-gray);
    font-size: 14px;
    line-height: 1.7;
}

/* Infrastructure cards */
.infra-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(224, 90, 30, 0.3);
    border-radius: 12px;
    padding: 25px;
    text-align: center;
}

.infra-card h6 {
    font-family: var(--font-display);
    color: var(--white);
    font-weight: 700;
    font-size: 1.05rem;
    letter-spacing: 0.5px;
}

.infra-card p {
    font-family: var(--font-body);
    color: #888;
    font-size: 13px;
}

/* Vision/Mission cards */
.vm-card {
    text-align: center;
    padding: 35px 25px;
    background: var(--white);
    border-radius: 14px;
    box-shadow: 0 3px 20px rgba(0, 0, 0, 0.07);
    border-top: 4px solid var(--accent-orange);
    height: 100%;
}

.vm-card h4 {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--secondary-dark);
    margin-bottom: 12px;
    font-size: 1.4rem;
    letter-spacing: 0.5px;
}

.vm-card p {
    font-family: var(--font-body);
    color: #666;
    font-size: 14px;
    line-height: 1.8;
}

@media (max-width: 768px) {
    .spec-grid {
        grid-template-columns: 1fr;
    }

    .detail-actions {
        flex-direction: column;
    }

    .detail-img-main {
        height: 280px;
    }
}

/* ===== HERO CAROUSEL CARD ===== */
.hero-carousel-card {
    background: #252525;
    border: 1px solid rgba(224, 90, 30, 0.25);
    border-radius: 14px;
    height: 480px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

.hero-carousel-card:hover {
    border-color: rgba(224, 90, 30, 0.45);
    box-shadow: 0 16px 50px rgba(224, 90, 30, 0.15);
}

.hero-carousel-card .carousel-inner,
.hero-carousel-card .carousel-item {
    height: 100%;
}

.hero-carousel-card .slide-content-left {
    background: linear-gradient(135deg, #1c1c1c 0%, #252525 100%);
    position: relative;
    z-index: 2;
}

.hero-carousel-card .slide-content-left::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(224, 90, 30, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(224, 90, 30, 0.03) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.8;
    pointer-events: none;
    z-index: -1;
}

.hero-carousel-card .slide-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(224, 90, 30, 0.15);
    border: 1px solid rgba(224, 90, 30, 0.4);
    color: var(--accent-orange-light);
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-family: var(--font-body);
}

.hero-carousel-card .slide-title {
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 2.5vw, 1.8rem);
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
    line-height: 1.25;
}

.hero-carousel-card .slide-text {
    font-family: var(--font-body);
    color: #b0b0b8;
    font-size: 13.5px;
    line-height: 1.7;
    margin-bottom: 0;
    font-weight: 400;
}

.hero-carousel-card .slide-image-right {
    background-size: cover;
    background-position: center;
    position: relative;
    transition: transform 6s ease-in-out;
}

.hero-carousel-card:hover .slide-image-right {
    transform: scale(1.03);
}

.hero-carousel-card .slide-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, #252525 0%, rgba(37, 37, 37, 0.4) 30%, transparent 100%);
    z-index: 1;
}

/* Custom styles for indicators & controls */
.hero-carousel-card .carousel-indicators {
    margin-bottom: 25px;
    justify-content: flex-start;
    padding-left: 45px;
    z-index: 3;
}

.hero-carousel-card .carousel-indicators [data-bs-target] {
    width: 25px;
    height: 3px;
    background-color: var(--white);
    opacity: 0.25;
    border: none;
    margin-right: 6px;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hero-carousel-card .carousel-indicators .active {
    opacity: 1;
    background-color: var(--accent-orange);
    width: 35px;
}

.hero-carousel-card .carousel-control-prev,
.hero-carousel-card .carousel-control-next {
    width: 36px;
    height: 36px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.15);
    z-index: 3;
}

.hero-carousel-card .carousel-control-prev {
    left: 15px;
}

.hero-carousel-card .carousel-control-next {
    right: 15px;
}

.hero-carousel-card:hover .carousel-control-prev,
.hero-carousel-card:hover .carousel-control-next {
    opacity: 0.85;
}

.hero-carousel-card .carousel-control-prev:hover,
.hero-carousel-card .carousel-control-next:hover {
    background: var(--accent-orange);
    border-color: var(--accent-orange);
    opacity: 1;
    box-shadow: 0 0 10px rgba(224, 90, 30, 0.5);
}

.hero-carousel-card .carousel-control-prev-icon,
.hero-carousel-card .carousel-control-next-icon {
    width: 14px;
    height: 14px;
}

/* Responsiveness */
@media (max-width: 991px) {
    .hero-carousel-card {
        height: auto;
    }

    .hero-carousel-card .carousel-item {
        height: auto;
    }

    .hero-carousel-card .slide-image-right {
        height: 250px;
    }

    .hero-carousel-card .slide-image-overlay {
        background: linear-gradient(to top, #252525 0%, transparent 100%);
    }
}

/* ===== CATEGORY MANAGER CONTACT CARD ===== */
.manager-contact-card {
    background: var(--light-gray);
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 25px;
    border-left: 4px solid var(--accent-orange);
    transition: all 0.3s ease;
}

.manager-contact-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
    transform: translateY(-2px);
}

.manager-card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    border-bottom: 1px solid #e5e5e5;
    padding-bottom: 15px;
}

.manager-icon-wrapper {
    background: rgba(224, 90, 30, 0.1);
    color: var(--accent-orange);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.manager-title-info {
    display: flex;
    flex-direction: column;
}

.manager-badge {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 700;
    color: var(--accent-orange);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2px;
}

.manager-name {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    color: var(--secondary-dark);
    margin: 0;
}

.manager-designation {
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--text-gray);
    margin: 0;
}

.manager-card-body {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.manager-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-body);
    font-size: 14px;
}

.manager-contact-item i {
    color: var(--accent-orange);
    font-size: 16px;
    width: 20px;
    text-align: center;
}

.manager-contact-link {
    color: var(--secondary-dark);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.manager-contact-link:hover {
    color: var(--accent-orange);
}

/* ===== PARTNER LOGO CARDS REDESIGN ===== */
.homepage-partners-section {
    background-color: #fcfcfc;
    border-top: 1px solid rgba(0, 0, 0, 0.02);
}

.partner-logo-card {
    background: #1f2125;
    /* Premium charcoal/dark slate background */
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 14px;
    padding: 28px 20px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    min-height: 140px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    height: 100%;
}

/* Hover background radial glow */
.partner-logo-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(224, 90, 30, 0.12) 0%, rgba(31, 33, 37, 0) 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.partner-logo-card:hover {
    transform: translateY(-6px);
    border-color: rgba(224, 90, 30, 0.4);
    box-shadow: 0 15px 35px rgba(224, 90, 30, 0.2);
}

.partner-logo-card:hover::before {
    opacity: 1;
}

.partner-logo-card * {
    position: relative;
    z-index: 2;
}

.partner-img {
    max-height: 70px;
    width: auto;
    object-fit: contain;
    filter: grayscale(1) brightness(0.9);
    opacity: 0.8;
    transition: all 0.4s ease;
}

.partner-logo-card:hover .partner-img {
    filter: grayscale(0) brightness(1);
    opacity: 1;
}

.partner-text-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    text-align: center;
    width: 100%;
}

.partner-logo-icon {
    width: 52px;
    height: 52px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-orange);
    font-size: 22px;
    transition: all 0.4s ease;
    box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.2);
}

.partner-logo-card:hover .partner-logo-icon {
    background: rgba(224, 90, 30, 0.15);
    border-color: rgba(224, 90, 30, 0.4);
    color: #ffffff;
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 0 15px rgba(224, 90, 30, 0.3);
}

.partner-name-text {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    line-height: 1.3;
}

.partner-name-primary {
    color: #ffffff;
    font-weight: 700;
}

.partner-name-secondary {
    color: var(--accent-orange);
    font-weight: 600;
    transition: color 0.3s ease;
}

.partner-logo-card:hover .partner-name-secondary {
    color: #ffffff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}