* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Roboto, system-ui, sans-serif;
}

body {
    background-color: #f8fafc;
}

/* main container */
.landing {
    width: 100%;
    max-width: 100%;
    margin: 0;
    background: #ffffff;
    position: relative;
}

/* ========== MODERN HEADER WITH GLASS EFFECT ========== */
.top-bar {
    position: fixed !important;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 12px 30px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 100px);
    max-width: 1300px;
    z-index: 100;
    border-radius: 20px;
    box-shadow: 0 10px 30px -10px rgba(227, 32, 38, 0.2);
    border: 1px solid rgba(227, 32, 38, 0.1);
}

.logo-area {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
}

.logo-icon {
    color: #e32026;
    font-weight: 800;
    font-size: 28px;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, #e32026, #ff6b6b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    gap: 35px;
    font-weight: 500;
    align-items: center;
    flex-wrap: wrap;
    margin: 0 auto;
}

.nav-links a {
    text-decoration: none;
    color: #1e293b;
    font-size: 16px;
    transition: all 0.3s;
    font-weight: 600;
    position: relative;
    padding: 5px 0;
    white-space: nowrap;
}

.nav-links a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #e32026, transparent);
    transition: transform 0.3s;
}

.nav-links a:hover::before,
.nav-links a.active::before {
    transform: translateX(-50%) scaleX(1);
}

.nav-links a:hover,
.nav-links a.active {
    color: #e32026;
}

.phone-number {
    background: linear-gradient(135deg, #e3202610, #ff6b6b10);
    background: #e32026;
    color: white !important;
    font-weight: 600 !important;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: 40px;
    border: 1px solid rgba(227, 32, 38, 0.2);
    transition: all 0.3s;
    font-size: 16px !important;
    margin-left: auto;
    flex-shrink: 0;
    white-space: nowrap;
}

/*.phone-number:hover {*/
/*    background: #e32026;*/
/*    color: white !important;*/
/*    border-color: #e32026;*/
/*}*/

.phone-number i {
    font-size: 15px;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: 1px solid #e32026;
    color: #e32026;
    font-size: 20px;
    padding: 8px 12px;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s;
}

.mobile-menu-btn:hover {
    background: #e32026;
    color: white;
}

/* Mobile Call Icon */
.mobile-call-icon {
    display: none;
    background: linear-gradient(135deg, #e32026, #ff4d4d);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s;
}

.mobile-call-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(227, 32, 38, 0.3);
}

/* ========== NAVBAR RESPONSIVE FIXES ========== */
@media screen and (max-width: 1200px) {
    .nav-links {
        gap: 25px;
    }
    
    .nav-links a {
        font-size: 15px;
    }
    
    .phone-number {
        font-size: 15px !important;
        padding: 6px 15px;
    }
}

@media screen and (max-width: 1024px) {
    .top-bar {
        padding: 10px 20px;
        width: calc(100% - 60px);
    }
    
    .nav-links {
        gap: 15px;
    }
    
    .nav-links a {
        font-size: 14px;
    }
    
    .phone-number {
        font-size: 14px !important;
        padding: 5px 12px;
        gap: 5px;
    }
    
    .phone-number i {
        font-size: 13px;
    }
}

@media screen and (max-width: 900px) {
    .top-bar {
        flex-wrap: nowrap;
    }
    
    .nav-links {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding-bottom: 5px;
        gap: 20px;
    }
    
    .nav-links::-webkit-scrollbar {
        display: none;
    }
    
    .nav-links a {
        font-size: 13px;
    }
}

@media screen and (max-width: 768px) {
    .top-bar {
        padding: 10px 15px;
        width: calc(100% - 30px);
        border-radius: 15px;
        flex-wrap: wrap;
    }
    
    .logo-icon {
        font-size: 22px;
    }
    
    .logo-icon img {
        width: 60px !important;
    }
    
    .phone-number {
        display: none;
    }
    
    .mobile-call-icon {
        display: flex;
        order: 2;
        margin-left: auto;
        margin-right: 10px;
    }
    
    .mobile-menu-btn {
        display: flex;
        order: 3;
        padding: 6px 10px;
        font-size: 18px;
    }
    
    .nav-links {
        display: none;
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        padding: 20px 0;
        border-top: 1px solid rgba(227, 32, 38, 0.1);
        margin-top: 15px;
        order: 4;
        overflow-x: visible;
    }
    
    .nav-links.show {
        display: flex;
    }
    
    .nav-links a {
        width: 100%;
        padding: 10px 0;
        font-size: 15px;
        white-space: normal;
    }
}

@media screen and (max-width: 480px) {
    .top-bar {
        padding: 8px 12px;
    }
    
    .logo-icon {
        font-size: 20px;
    }
    
    .logo-icon img {
        width: 50px !important;
    }
    
    .mobile-call-icon {
        width: 32px;
        height: 32px;
        font-size: 14px;
        margin-right: 6px;
    }
    
    .mobile-menu-btn {
        padding: 5px 8px;
        font-size: 16px;
    }
}

/* ========== MODERN HERO SECTION ========== */
.hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    padding: 160px 80px 100px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    width: 100%;
    min-height: 650px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 70%;
    height: 150%;
    background: radial-gradient(circle, rgba(227, 32, 38, 0.12) 0%, transparent 60%);
    animation: float 12s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 60%;
    height: 120%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.03) 0%, transparent 60%);
    animation: floatReverse 15s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-2%, -2%) rotate(1deg); }
}

@keyframes floatReverse {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(2%, 2%) rotate(-1deg); }
}

.hero-text {
    flex: 1;
    min-width: 450px;
    position: relative;
    z-index: 2;
}

.hero-text .trusted {
    font-size: 16px;
    color: #e32026;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: rgba(227, 32, 38, 0.1);
    display: inline-block;
    padding: 8px 20px;
    border-radius: 40px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(227, 32, 38, 0.3);
    margin-bottom: 20px;
}

.hero-text h1 {
    font-size: 56px;
    font-weight: 800;
    color: #ffffff;
    margin: 15px 0 20px;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-text p {
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 35px;
    max-width: 550px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
}

.btn-primary {
    background: linear-gradient(135deg, #e32026, #ff4d4d);
    color: white;
    padding: 16px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: none;
    transition: all 0.3s;
    box-shadow: 0 10px 25px -5px rgba(227, 32, 38, 0.4);
    position: relative;
    overflow: hidden;
}

.btn-primary::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;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 30px -5px rgba(227, 32, 38, 0.5);
}

.btn-outline {
    border: 2px solid rgba(227, 32, 38, 0.5);
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 600;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(5px);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-outline:hover {
    background: #e32026;
    border-color: #e32026;
    transform: translateY(-3px);
    box-shadow: 0 15px 25px -5px rgba(227, 32, 38, 0.4);
}

/* ========== MODERN SLIDER STYLES ========== */
.hero-slider {
    flex: 1;
    max-width: 600px;
    position: relative;
    z-index: 2;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 450px;
    overflow: hidden;
    border-radius: 30px;
    box-shadow: 0 30px 50px -20px rgba(0, 0, 0, 0.5);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.5s;
}

.slider-container:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide.active {
    opacity: 1;
    visibility: visible;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.slide.active img {
    transform: scale(1.05);
}

.slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    color: white;
    padding: 30px 25px;
    font-weight: 600;
    font-size: 18px;
    transform: translateY(0);
    transition: transform 0.3s;
}

.slider-prev,
.slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: white;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    z-index: 10;
    opacity: 0;
}

.slider-container:hover .slider-prev,
.slider-container:hover .slider-next {
    opacity: 1;
}

.slider-prev:hover,
.slider-next:hover {
    background: #e32026;
    border-color: #e32026;
    transform: translateY(-50%) scale(1.1);
}

.slider-prev {
    left: 15px;
}

.slider-next {
    right: 15px;
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active {
    background: #e32026;
    transform: scale(1.3);
    box-shadow: 0 0 15px #e32026;
}

/* ========== MODERN WHY CHOOSE SECTION ========== */
.why-choose {
    padding: 100px 80px 70px;
    text-align: center;
    width: 100%;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.why-choose h2 {
    font-size: 42px;
    color: #0f172a;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.why-choose h2 span {
    color: #e32026;
}

.why-choose h2::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #e32026, #ff6b6b, #e32026, transparent);
    border-radius: 2px;
}

.why-choose > p {
    color: #475569;
    font-size: 18px;
    margin-bottom: 60px;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
}

/* ========== FEATURE CARDS WITH RED-BLACK GRADIENT ========== */
.features-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin: 40px 0;
}

.feature-card {
    background: linear-gradient(145deg, #1a1a1a, #0a0a0a);
    padding: 35px 20px;
    border-radius: 30px;
    flex: 1 1 180px;
    min-width: 180px;
    border: 1px solid rgba(227, 32, 38, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top right, rgba(227, 32, 38, 0.2), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s;
}

.feature-card::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #e32026, transparent 40%, transparent 60%, #e32026);
    border-radius: 32px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s;
}

.feature-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: #e32026;
    box-shadow: 0 20px 40px -10px rgba(227, 32, 38, 0.4);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover::after {
    opacity: 1;
}

.feature-icon {
    font-size: 48px;
    color: #e32026;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 0 10px rgba(227, 32, 38, 0.5));
    transition: all 0.3s;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(360deg);
    color: #ff4d4d;
}

.feature-card h4 {
    font-size: 32px;
    color: #ffffff;
    margin-bottom: 8px;
    font-weight: 700;
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.feature-card p {
    color: #cccccc;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 2;
    font-weight: 500;
}

/* ========== EXTRA FEATURES WITH RED-BLACK THEME ========== */
.extra-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 60px;
    gap: 25px;
}

.extra-item {
    flex: 1;
    background: linear-gradient(145deg, #1a1a1a, #0a0a0a);
    border-radius: 30px;
    padding: 25px;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 20px;
    border: 1px solid rgba(227, 32, 38, 0.2);
    transition: all 0.4s;
    min-width: 280px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
}

.extra-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #e32026, #ff6b6b);
    transition: width 0.3s;
}

.extra-item:hover {
    border-color: #e32026;
    transform: translateX(10px);
    box-shadow: 0 15px 35px -10px rgba(227, 32, 38, 0.3);
}

.extra-item:hover::before {
    width: 6px;
}

.extra-item i {
    font-size: 45px;
    color: #e32026;
    filter: drop-shadow(0 0 8px rgba(227, 32, 38, 0.5));
    transition: all 0.3s;
    background: transparent;
    padding: 0;
    border-radius: 0;
}

.extra-item:hover i {
    transform: scale(1.1);
    color: #ff4d4d;
    background: transparent;
}

.extra-item strong {
    font-size: 20px;
    color: #ffffff;
    margin-bottom: 5px;
    display: block;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.extra-item span {
    color: #cccccc;
    font-size: 14px;
}

.feature-card {
    animation: cardGlow 4s infinite;
}

@keyframes cardGlow {
    0%, 100% { box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5); }
    50% { box-shadow: 0 10px 30px -5px rgba(227, 32, 38, 0.2); }
}

/* ========== PARTNERSHIP SECTION ========== */
.partnership {
    background: linear-gradient(145deg, #ffffff, #f1f5f9);
    padding: 60px 80px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(227, 32, 38, 0.1);
    border-bottom: 1px solid rgba(227, 32, 38, 0.1);
    gap: 30px;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.partnership::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 70%;
    height: 200%;
    background: radial-gradient(circle, rgba(227, 32, 38, 0.03) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.partnership h3 {
    font-size: 32px;
    color: #0f172a;
    max-width: 700px;
    position: relative;
    z-index: 2;
    font-weight: 600;
}

.badge-group {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.badge-group span {
    background: linear-gradient(135deg, #e32026, #ff4d4d);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    color: white;
    box-shadow: 0 10px 25px -5px rgba(227, 32, 38, 0.3);
    border: none;
    font-size: 16px;
}

/* ========== PRODUCTS SECTION ========== */
.product-show {
    padding: 80px 80px;
    width: 100%;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
}

.product-show::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 70%;
    height: 150%;
    background: radial-gradient(circle, rgba(227, 32, 38, 0.1) 0%, transparent 70%);
    animation: floatRed 15s ease-in-out infinite;
}

.product-show::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 60%;
    height: 150%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.02) 0%, transparent 70%);
    animation: floatBlack 18s ease-in-out infinite reverse;
}

@keyframes floatRed {
    0%, 100% { transform: translate(0, 0) rotate(0deg); opacity: 0.1; }
    50% { transform: translate(-3%, -3%) rotate(3deg); opacity: 0.15; }
}

@keyframes floatBlack {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(3%, 3%) rotate(-3deg); }
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.section-subtitle {
    color: #e32026;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    display: inline-block;
    padding: 8px 20px;
    background: rgba(227, 32, 38, 0.1);
    border-radius: 40px;
    border: 1px solid rgba(227, 32, 38, 0.3);
    margin-bottom: 15px;
    animation: glow 2s infinite;
}

@keyframes glow {
    0%, 100% { box-shadow: 0 0 5px rgba(227, 32, 38, 0.3); }
    50% { box-shadow: 0 0 20px rgba(227, 32, 38, 0.5); }
}

.section-header h2 {
    font-size: 48px;
    color: #ffffff;
    margin-bottom: 15px;
    font-weight: 800;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.section-header .red-text {
    color: #e32026;
    position: relative;
    display: inline-block;
}

.section-header .red-text::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #e32026, #ff6b6b, #e32026, transparent);
    border-radius: 3px;
    animation: redLine 3s infinite;
}

@keyframes redLine {
    0%, 100% { opacity: 0.5; width: 80%; left: 10%; }
    50% { opacity: 1; width: 100%; left: 0; }
}

.section-header p {
    color: #a0a0a0;
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
}

.category-tabs {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
    margin: 40px 0 50px;
    position: relative;
    z-index: 2;
}

.category-tab {
    background: rgba(255, 255, 255, 0.05);
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 500;
    color: #cccccc;
    border: 1px solid rgba(227, 32, 38, 0.2);
    cursor: pointer;
    transition: all 0.3s;
    font-size: 14px;
    backdrop-filter: blur(5px);
}

.category-tab:hover,
.category-tab.active {
    background: #e32026;
    color: #ffffff;
    border-color: #e32026;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px -5px rgba(227, 32, 38, 0.4);
}

.product-showcase {
    position: relative;
    z-index: 2;
    margin: 30px 0 40px;
    overflow: hidden;
    padding: 30px 0;
}

.showcase-slider {
    overflow: hidden;
    margin: 0 -15px;
}

.showcase-track {
    display: flex;
    animation: slideTrack 30s linear infinite;
    gap: 25px;
    padding: 20px;
}

.showcase-track:hover {
    animation-play-state: paused;
}

@keyframes slideTrack {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-350px * 3 - 75px)); }
}

.showcase-card {
    flex: 0 0 320px;
    background: rgba(20, 20, 20, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    padding: 25px 20px 30px;
    border: 1px solid rgba(227, 32, 38, 0.2);
    position: relative;
    overflow: hidden;
    transition: all 0.4s;
    box-shadow: 0 15px 35px -10px rgba(0, 0, 0, 0.5);
}

.showcase-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(227, 32, 38, 0.1), transparent);
    transition: left 0.5s;
}

.showcase-card:hover::before {
    left: 100%;
}

.showcase-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: #e32026;
    box-shadow: 0 30px 50px -20px rgba(227, 32, 38, 0.4);
}

.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(227, 32, 38, 0.1) 0%, transparent 70%);
    animation: rotate 10s linear infinite;
    opacity: 0;
    transition: opacity 0.3s;
}

.showcase-card:hover .card-glow {
    opacity: 1;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #e32026;
    color: white;
    padding: 5px 15px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 700;
    z-index: 3;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(227, 32, 38, 0.3);
    animation: badgePulse 2s infinite;
}

.product-badge.red {
    background: #000000;
    border: 1px solid #e32026;
    color: #e32026;
}

@keyframes badgePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.product-image-wrapper {
    width: 200px;
    height: 200px;
    margin: 25px auto 20px;
    position: relative;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(227, 32, 38, 0.3);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.5);
    transition: all 0.4s;
}

.showcase-card:hover .product-image-wrapper {
    border-color: #e32026;
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(227, 32, 38, 0.4);
}

.image-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    z-index: 2;
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { left: -100%; }
    20% { left: 100%; }
    100% { left: 100%; }
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.showcase-card:hover .product-image {
    transform: scale(1.1);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 3;
}

.showcase-card:hover .image-overlay {
    opacity: 1;
}

.quick-view {
    background: #e32026;
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    transform: translateY(20px);
    transition: all 0.3s;
    border: 1px solid #e32026;
}

.showcase-card:hover .quick-view {
    transform: translateY(0);
}

.quick-view:hover {
    background: transparent;
    color: #e32026;
}

.product-info {
    text-align: center;
    position: relative;
    z-index: 2;
}

.product-name {
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
    margin: 15px 0 5px;
    letter-spacing: 0.5px;
}

.product-desc {
    color: #a0a0a0;
    font-size: 14px;
    margin-bottom: 15px;
}

.product-cat {
    background: rgba(227, 32, 38, 0.1);
    color: #e32026;
    padding: 6px 18px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
    display: inline-block;
    border: 1px solid rgba(227, 32, 38, 0.3);
    transition: all 0.3s;
}

.showcase-card:hover .product-cat {
    background: #e32026;
    color: #ffffff;
}

.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.slide-arrow {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid #e32026;
    color: #e32026;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.slide-arrow:hover {
    background: #e32026;
    color: #000000;
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(227, 32, 38, 0.4);
}

.slide-dots {
    display: flex;
    gap: 12px;
}

.slide-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.3s;
    border: 1px solid rgba(227, 32, 38, 0.3);
}

.slide-dots .dot.active {
    background: #e32026;
    transform: scale(1.3);
    box-shadow: 0 0 20px #e32026;
    border-color: #e32026;
}

/* ========== THIRD PARTY MANUFACTURING SECTION ========== */
.third-party-showcase {
    padding: 100px 80px;
    background: linear-gradient(135deg, #f8fafc, #ffffff);
    position: relative;
    overflow: hidden;
}

.third-party-showcase::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 60%;
    height: 150%;
    background: radial-gradient(circle, rgba(227, 32, 38, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.section-header-center {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    padding: 8px 24px;
    background: rgba(227, 32, 38, 0.1);
    border: 1px solid rgba(227, 32, 38, 0.3);
    border-radius: 40px;
    color: #e32026;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.section-title-dark {
    font-size: 42px;
    color: #0f172a;
    margin-bottom: 15px;
    font-weight: 700;
}

.red-highlight {
    color: #e32026;
    position: relative;
}

.section-subtitle-dark {
    font-size: 18px;
    color: #64748b;
    max-width: 90%; 
    margin: 0 auto;
}

.tpm-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.tpm-feature-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
}

.tpm-feature-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.feature-icon-box {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #e32026, #ff6b6b);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    flex-shrink: 0;
    transition: all 0.3s;
}

.tpm-feature-item:hover .feature-icon-box {
    transform: rotate(10deg) scale(1.1);
}

.feature-text h4 {
    font-size: 20px;
    color: #0f172a;
    margin-bottom: 8px;
    font-weight: 600;
}

.feature-text p {
    color: #64748b;
    line-height: 1.6;
    font-size: 15px;
}

.tpm-cta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-outline-light {
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid #e32026;
    color: #e32026;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-outline-light:hover {
    background: #e32026;
    color: white;
    transform: translateY(-3px);
}

.tpm-stats {
    background: linear-gradient(135deg, #0f172a, #1e293b);
    border-radius: 40px;
    padding: 40px;
    position: relative;
    overflow: hidden;
}

.tpm-stats::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 70%;
    height: 200%;
    background: radial-gradient(circle, rgba(227, 32, 38, 0.1) 0%, transparent 70%);
    animation: floatSlow 10s ease-in-out infinite;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.stat-card-large {
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    color: #e32026;
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
    color: #cbd5e1;
    font-size: 14px;
    font-weight: 500;
}

.tpm-badge {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 30px;
    border: 1px solid rgba(227, 32, 38, 0.3);
    position: relative;
    z-index: 2;
}

.tpm-badge span {
    color: white;
    font-weight: 500;
}

/* ========== PCD PHARMA FRANCHISE SECTION ========== */
.pcd-franchise-section {
    padding: 100px 80px;
    background: linear-gradient(135deg, #0f172a, #1e293b);
    position: relative;
    overflow: hidden;
}

.pcd-franchise-section::before {
    content: '';
    position: absolute;
    top: -30%;
    left: -10%;
    width: 60%;
    height: 150%;
    background: radial-gradient(circle, rgba(227, 32, 38, 0.1) 0%, transparent 70%);
    animation: floatReverse 12s ease-in-out infinite;
}

.white-tag {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    color: white;
}

.section-title-light {
    font-size: 42px;
    color: white;
    margin-bottom: 15px;
    font-weight: 700;
}

.white-highlight {
    color: #e32026;
}

.section-subtitle-light {
    font-size: 18px;
    color: #cbd5e1;
    max-width: 90%;
    margin: 0 auto;
}

.pcd-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.pcd-stats-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(227, 32, 38, 0.2);
    border-radius: 40px;
    padding: 40px;
    margin-bottom: 30px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.pcd-stat-item {
    text-align: center;
}

.pcd-stat-icon {
    width: 60px;
    height: 60px;
    background: rgba(227, 32, 38, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #e32026;
    margin: 0 auto 15px;
    transition: all 0.3s;
}

.pcd-stat-item:hover .pcd-stat-icon {
    background: #e32026;
    color: white;
    transform: rotate(360deg);
}

.pcd-stat-value {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: white;
    margin-bottom: 5px;
}

.pcd-stat-label {
    color: #cbd5e1;
    font-size: 14px;
}

.pcd-testimonial-mini {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 30px;
    padding: 30px;
    border: 1px solid rgba(227, 32, 38, 0.2);
}

.pcd-testimonial-mini i {
    color: #e32026;
    font-size: 24px;
    margin-bottom: 15px;
    opacity: 0.5;
}

.pcd-testimonial-mini p {
    color: #e2e8f0;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    color: white;
}

.testimonial-author strong {
    display: block;
    font-size: 16px;
    margin-bottom: 5px;
}

.testimonial-author span {
    color: #94a3b8;
    font-size: 14px;
}

.pcd-content h3 {
    font-size: 32px;
    color: white;
    margin-bottom: 30px;
    font-weight: 600;
}

.pcd-benefits {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.benefit-row {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #e2e8f0;
    font-size: 16px;
}

.benefit-row i {
    color: #e32026;
    font-size: 20px;
    flex-shrink: 0;
}

.pcd-cta {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.pcd-contact {
    display: flex;
    flex-direction: column;
}

.pcd-contact small {
    color: #94a3b8;
    font-size: 12px;
}

.pcd-contact strong {
    color: #e32026;
    font-size: 20px;
}

.pcd-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.pcd-badges .badge {
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 20px;
    border-radius: 30px;
    border: 1px solid rgba(227, 32, 38, 0.3);
    color: #e2e8f0;
    font-size: 13px;
    font-weight: 500;
}

/* ========== BRAND SLIDER / DIVISION SECTION ========== */
.brand-slider-section {
    padding: 80px 80px;
    background: linear-gradient(135deg, #ffffff, #f8fafc);
    position: relative;
    overflow: hidden;
}

.brand-slider-section::before {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 60%;
    height: 150%;
    background: radial-gradient(circle, rgba(227, 32, 38, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.brand-slider-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 30px 0;
    margin-top: 20px;
}

.brand-slider-container::before,
.brand-slider-container::after {
    content: '';
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.brand-slider-container::before {
    left: 0;
    background: linear-gradient(90deg, #ffffff, transparent);
}

.brand-slider-container::after {
    right: 0;
    background: linear-gradient(270deg, #ffffff, transparent);
}

.brand-slider-track {
    display: flex;
    animation: brandScroll 25s linear infinite;
    gap: 30px;
    width: fit-content;
}

.brand-slider-track:hover {
    animation-play-state: paused;
}

@keyframes brandScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-230px * 6 - 30px * 6)); }
}

.brand-slide {
    flex: 0 0 200px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-logo-card {
    width: 100%;
    height: 100%;
    background: #ffffff;
    border-radius: 20px;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
    transition: all 0.3s;
}

.brand-logo-card:hover {
    border-color: #e32026;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 40px -10px rgba(227, 32, 38, 0.2);
}

.brand-logo-card img {
    max-width: 100%;
    max-height: 70px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: filter 0.3s;
}

.brand-logo-card:hover img {
    filter: grayscale(0%);
}

/* ========== FAQ & TESTIMONIALS SECTION ========== */
.faq-testi {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    padding: 80px 80px;
    width: 100%;
    background: #ffffff;
}

.faq-box {
    flex: 1.5;
    background: #f8fafc;
    border-radius: 40px;
    padding: 40px;
    border: 1px solid #e2e8f0;
    min-width: 350px;
    box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.05);
}

.faq-box h3 {
    color: #0f172a;
    margin-bottom: 30px;
    font-size: 28px;
    font-weight: 700;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-accordion-item {
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    overflow: hidden;
    background: #ffffff;
    transition: all 0.3s;
}

.faq-accordion-item:hover {
    border-color: #e32026;
    box-shadow: 0 5px 15px rgba(227, 32, 38, 0.1);
}

.faq-accordion-header {
    padding: 18px 22px;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    background: #ffffff;
    transition: background 0.3s;
    user-select: none;
}

.faq-accordion-header:hover {
    background: #f8fafc;
}

.faq-accordion-item.active .faq-accordion-header {
    background: #f8fafc;
    border-bottom: 1px solid #e32026;
}

.faq-icon {
    font-size: 18px;
    color: #e32026;
    flex-shrink: 0;
}

.faq-accordion-header span:not(.faq-icon) {
    flex: 1;
    font-weight: 600;
    color: #334155;
    font-size: 16px;
}

.faq-arrow {
    color: #e32026;
    font-size: 14px;
    transition: transform 0.3s;
    flex-shrink: 0;
}

.faq-accordion-item.active .faq-arrow {
    transform: rotate(180deg);
}

.faq-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    background: #f8fafc;
}

.faq-accordion-item.active .faq-accordion-content {
    max-height: 300px;
}

.faq-accordion-content p {
    padding: 20px 22px;
    margin: 0;
    color: #475569;
    line-height: 1.7;
    font-size: 15px;
}

.testi-box {
    flex: 2;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
}

.testimonial-card {
    background: #f8fafc;
    border-radius: 30px;
    padding: 30px;
    border: 1px solid #e2e8f0;
    transition: all 0.4s;
    position: relative;
    box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.05);
}

.testimonial-card:hover {
    border-color: #e32026;
    transform: translateY(-10px);
    box-shadow: 0 30px 40px -15px rgba(227, 32, 38, 0.15);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 60px;
    color: rgba(227, 32, 38, 0.1);
    font-family: serif;
    line-height: 1;
}

.testimonial-card strong {
    color: #0f172a;
    display: block;
    font-size: 18px;
    margin-bottom: 5px;
    font-weight: 700;
}

.stars {
    color: #e32026;
    margin: 10px 0 15px;
    font-size: 18px;
    letter-spacing: 2px;
}

.testimonial-card p {
    color: #475569;
    line-height: 1.6;
    font-size: 14px;
}

/* ========== CONTACT/ENQUIRY SECTION ========== */
.contact-enquiry {
    background: linear-gradient(135deg, #f8fafc, #ffffff);
    padding: 80px 80px;
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    border-top: 3px solid #e32026;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.contact-enquiry::before {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -10%;
    width: 60%;
    height: 150%;
    background: radial-gradient(circle, rgba(227, 32, 38, 0.05) 0%, transparent 70%);
    animation: float 12s ease-in-out infinite;
}

.contact-left {
    flex: 1.2;
    min-width: 350px;
    position: relative;
    z-index: 2;
}

.contact-left h2 {
    font-size: 42px;
    line-height: 1.2;
    color: #0f172a;
    margin-bottom: 20px;
    font-weight: 800;
}

.contact-left h2 span {
    color: #e32026;
}

.contact-left p {
    color: #475569;
    line-height: 1.8;
    font-size: 16px;
    max-width: 450px;
}

.contact-left .phone {
    font-size: 22px;
    margin: 25px 0;
    color: #0f172a;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(227, 32, 38, 0.05);
    padding: 15px 25px;
    border-radius: 50px;
    border: 1px solid rgba(227, 32, 38, 0.1);
}

.contact-left .phone i {
    color: #e32026;
    font-size: 24px;
}

.quick-links {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin: 25px 0;
}

.quick-links span {
    color: #e32026;
    border: 1px solid rgba(227, 32, 38, 0.2);
    padding: 8px 20px;
    border-radius: 50px;
    background: #ffffff;
    transition: all 0.3s;
    font-size: 13px;
    font-weight: 500;
    cursor: default;
}

.quick-links span:hover {
    background: linear-gradient(135deg, #e32026, #ff4d4d);
    color: white;
    border-color: #e32026;
    transform: scale(1.05);
    box-shadow: 0 10px 20px -5px rgba(227, 32, 38, 0.3);
}

.enquiry-form {
    flex: 1;
    background: #ffffff;
    border-radius: 40px;
    padding: 45px;
    border: 1px solid #e2e8f0;
    min-width: 350px;
    position: relative;
    z-index: 2;
    box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.1);
}

.enquiry-form h3 {
    color: #0f172a !important;
    margin-bottom: 8px;
    font-size: 28px;
    font-weight: 700;
}

.enquiry-form h3 span {
    color: #e32026;
}

.enquiry-form p {
    color: #64748b;
    margin-bottom: 25px;
    font-size: 15px;
}

.form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin: 15px 0;
}

.form-row input,
.form-row select,
.form-row textarea {
    flex: 1 1 200px;
    padding: 15px 22px;
    border-radius: 50px;
    border: 1px solid #e2e8f0;
    background: #f8fafc;
    color: #1e293b;
    transition: all 0.3s;
    outline: none;
    font-size: 14px;
}

.form-row textarea {
    border-radius: 25px;
    min-height: 100px;
    resize: vertical;
    font-family: 'Segoe UI', Roboto, system-ui, sans-serif;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
    border-color: #e32026;
    box-shadow: 0 0 0 4px rgba(227, 32, 38, 0.1);
    background: #ffffff;
}

.form-row input::placeholder,
.form-row textarea::placeholder {
    color: #94a3b8;
}

.submit-btn {
    background: linear-gradient(135deg, #e32026, #ff4d4d);
    color: white;
    border: none;
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 600;
    width: 100%;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 16px;
    box-shadow: 0 15px 30px -10px rgba(227, 32, 38, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}

.submit-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 40px -10px rgba(227, 32, 38, 0.5);
}

/* ========== CONTACT FORM MOBILE RESPONSIVE FIXES ========== */
@media screen and (max-width: 1024px) {
    .contact-enquiry {
        padding: 60px 40px !important;
        gap: 30px !important;
    }
    
    .contact-left h2 {
        font-size: 38px !important;
    }
    
    .enquiry-form {
        padding: 35px !important;
    }
}

@media screen and (max-width: 768px) {
    .contact-enquiry {
        padding: 50px 25px !important;
        flex-direction: column !important;
        gap: 35px !important;
    }

    .contact-left {
        min-width: 100% !important;
        width: 100% !important;
    }

    .contact-left h2 {
        font-size: 32px !important;
        line-height: 1.2 !important;
    }

    .contact-left p {
        font-size: 15px !important;
    }

    .contact-left .phone {
        font-size: 18px !important;
        flex-wrap: wrap !important;
        word-break: break-word !important;
        padding: 12px 18px !important;
        gap: 10px !important;
    }

    .contact-left .phone i {
        font-size: 20px !important;
    }

    .quick-links {
        justify-content: flex-start !important;
        gap: 8px !important;
    }

    .quick-links span {
        padding: 6px 14px !important;
        font-size: 12px !important;
    }

    .enquiry-form {
        min-width: 100% !important;
        padding: 30px 25px !important;
    }

    .enquiry-form h3 {
        font-size: 24px !important;
    }

    .enquiry-form p {
        font-size: 14px !important;
        margin-bottom: 20px !important;
    }

    .form-row {
        flex-direction: column !important;
        gap: 12px !important;
        margin: 12px 0 !important;
    }

    .form-row input,
    .form-row select,
    .form-row textarea {
        width: 100% !important;
        flex: none !important;
        padding: 14px 18px !important;
        font-size: 14px !important;
    }

    .form-row textarea {
        min-height: 100px !important;
        border-radius: 25px !important;
    }

    .submit-btn {
        padding: 16px 30px !important;
        font-size: 15px !important;
        margin-top: 10px !important;
    }
}

@media screen and (max-width: 480px) {
    .contact-enquiry {
        padding: 40px 20px !important;
    }

    .contact-left h2 {
        font-size: 28px !important;
    }

    .contact-left p {
        font-size: 14px !important;
    }

    .contact-left .phone {
        font-size: 16px !important;
        /*flex-direction: column !important;*/
        align-items: flex-start !important;
        gap: 8px !important;
        padding: 12px 15px !important;
    }

    .contact-left .phone i {
        font-size: 18px !important;
    }

    .quick-links {
        gap: 6px !important;
    }

    .quick-links span {
        padding: 5px 12px !important;
        font-size: 11px !important;
    }

    .enquiry-form {
        padding: 25px 20px !important;
    }

    .enquiry-form h3 {
        font-size: 22px !important;
    }

    .form-row input,
    .form-row select,
    .form-row textarea {
        padding: 12px 15px !important;
        font-size: 13px !important;
    }

    .submit-btn {
        padding: 14px 25px !important;
        font-size: 14px !important;
    }
}

/* ========== FOOTER STYLES ========== */
.footer-bottom {
    background: linear-gradient(135deg, #0f172a, #1e293b);
    color: #ffffff;
    padding: 25px 80px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    border-top: 3px solid #e32026;
    width: 100%;
}

.footer-bottom span {
    color: #cbd5e1;
    font-size: 14px;
}

.footer-note {
    text-align: right;
    padding: 15px 80px;
    background: #0f172a;
    font-size: 13px;
    color: #94a3b8;
    border-top: 1px solid rgba(227, 32, 38, 0.2);
    width: 100%;
}

.footer-note i {
    color: #e32026;
    margin-right: 5px;
}

/* ========== RESPONSIVE DESIGN ========== */
@media screen and (max-width: 1200px) {
    .hero-text h1 {
        font-size: 46px;
    }
    
    .hero, .why-choose, .partnership, .product-show, 
    .third-party-showcase, .pcd-franchise-section, 
    .faq-testi, .blog-section, .contact-enquiry, 
    .footer-bottom, .footer-note, .brand-slider-section {
        padding-left: 40px;
        padding-right: 40px;
    }
}

@media screen and (max-width: 1024px) {
    .hero {
        padding: 140px 40px 80px;
    }
    
    .tpm-grid, .pcd-grid {
        gap: 40px;
    }
}

@media screen and (max-width: 768px) {
    .hero {
        padding: 120px 20px 60px;
        flex-direction: column;
    }
    
    .hero-text {
        min-width: 100%;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 36px;
    }
    
    .hero-slider {
        max-width: 100%;
    }
    
    .slider-container {
        height: 350px;
        transform: none;
    }
    
    .why-choose {
        padding: 60px 20px;
    }
    
    .why-choose h2 {
        font-size: 32px;
    }
    
    .features-grid {
        gap: 15px;
    }
    
    .feature-card {
        min-width: 140px;
        padding: 25px 15px;
    }
    
    .extra-features {
        flex-direction: column;
    }
    
    .extra-item {
        width: 100%;
    }
    
    .tpm-grid, .pcd-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .section-title-dark,
    .section-title-light {
        font-size: 32px;
    }
    
    .stats-grid {
        gap: 20px;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .faq-testi {
        padding: 50px 20px;
        flex-direction: column;
    }
    
    .faq-box {
        min-width: 100%;
    }
    
    .testi-box {
        grid-template-columns: 1fr;
    }
    
    .blog-section {
        padding: 50px 20px;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .brand-slider-section {
        padding: 50px 20px;
    }
}

@media screen and (max-width: 480px) {
    .hero-text h1 {
        font-size: 28px;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-primary, .btn-outline {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
    
    .slider-container {
        height: 250px;
    }
    
    .feature-card {
        min-width: 100%;
    }
    
    .extra-item {
        flex-direction: column;
        text-align: center;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .pcd-stats-card {
        grid-template-columns: 1fr;
    }
    
    .tpm-feature-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .brand-slide {
        flex: 0 0 130px;
        height: 70px;
    }
}

/* WhatsApp Float */
/*.whatsapp-float {*/
/*    position: fixed;*/
   

.whatsapp-float {
    position: fixed;
    right: 10px;
    top: 90%;
    transform: translateY(-50%);
    width: 55px;
    height: 55px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.25);
    z-index: 9999;
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background: #1ebe5d;
    transform: translateY(-50%) scale(1.08);
}



.enquiry-form .form-row textarea {
    width: 100%;
    padding: 15px 22px;
    border-radius: 50px;
    border: 1px solid #e2e8f0;
    background: #f8fafc;
    color: #1e293b;
    font-size: 14px;
    transition: all 0.3s;
    outline: none;
    resize: vertical;
    min-height: 100px;
    max-height: 200px;
    font-family: 'Segoe UI', Roboto, system-ui, sans-serif;
}

.enquiry-form .form-row textarea:focus {
    border-color: #e32026;
    box-shadow: 0 0 0 4px rgba(227, 32, 38, 0.1);
    background: #ffffff;
}

.enquiry-form .form-row textarea::placeholder {
    color: #94a3b8;
}

/* For the contact section with gradient background */
.contact-enquiry .enquiry-form .form-row textarea {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
}

.contact-enquiry .enquiry-form .form-row textarea:focus {
    border-color: #e32026;
    background: #ffffff;
}

/* Mobile responsive */
@media screen and (max-width: 768px) {
    .enquiry-form .form-row textarea {
        padding: 12px 20px;
        min-height: 80px;
        border-radius: 40px;
    }
}






















/* ========== MODAL POPUP FORM - RED/BLACK THEME ========== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-container {
    width: 90%;
    max-width: 700px;
    background: linear-gradient(145deg, #1a1a1a, #0a0a0a);
    border-radius: 30px;
    border: 1px solid rgba(227, 32, 38, 0.3);
    box-shadow: 0 30px 60px -20px rgba(227, 32, 38, 0.5);
    transform: translateY(30px);
    transition: transform 0.4s ease;
    overflow: hidden;
    position: relative;
}

.modal-overlay.active .modal-container {
    transform: translateY(0);
}

.modal-container::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 70%;
    height: 200%;
    background: radial-gradient(circle, rgba(227, 32, 38, 0.1) 0%, transparent 70%);
    animation: modalGlow 15s ease-in-out infinite;
    pointer-events: none;
}

@keyframes modalGlow {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-5%, -5%) rotate(5deg); }
}

/* Modal Header */
.modal-header {
    padding: 25px 30px;
    background: rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(227, 32, 38, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
}

.modal-header h3 {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

.modal-header .red-text {
    color: #e32026;
}

.modal-close {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(227, 32, 38, 0.1);
    border: 1px solid rgba(227, 32, 38, 0.3);
    color: #e32026;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.modal-close:hover {
    background: #e32026;
    color: white;
    transform: rotate(90deg);
}

/* Modal Body */
.modal-body {
    padding: 30px;
    position: relative;
    z-index: 2;
}

.modal-subtitle {
    color: #a0a0a0;
    font-size: 14px;
    margin-bottom: 25px;
    line-height: 1.6;
}

/* Form Rows */
.modal-form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.modal-input-group {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
}

.modal-input-group i {
    position: absolute;
    left: 15px;
    color: #e32026;
    font-size: 16px;
    z-index: 3;
}

.modal-input-group input,
.modal-input-group select,
.modal-input-group textarea {
    width: 100%;
    padding: 14px 15px 14px 45px;
    border-radius: 50px;
    border: 1px solid rgba(227, 32, 38, 0.2);
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    font-size: 14px;
    transition: all 0.3s;
    outline: none;
}

.modal-input-group textarea {
    border-radius: 25px;
    padding: 14px 15px 14px 45px;
    resize: vertical;
    min-height: 80px;
    font-family: 'Segoe UI', Roboto, system-ui, sans-serif;
}

.modal-input-group.full-width {
    width: 100%;
    margin-bottom: 15px;
}

.modal-input-group select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23e32026' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 16px;
    cursor: pointer;
}

.modal-input-group select option {
    background: #1a1a1a;
    color: #ffffff;
}

.modal-input-group input:focus,
.modal-input-group select:focus,
.modal-input-group textarea:focus {
    border-color: #e32026;
    background: rgba(0, 0, 0, 0.5);
    box-shadow: 0 0 0 4px rgba(227, 32, 38, 0.1);
}

.modal-input-group input::placeholder,
.modal-input-group textarea::placeholder {
    color: #888888;
}

/* Checkbox */
.modal-checkbox {
    margin: 20px 0 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.modal-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #e32026;
    cursor: pointer;
}

.modal-checkbox label {
    color: #a0a0a0;
    font-size: 14px;
}

.modal-checkbox a {
    color: #e32026;
    text-decoration: none;
}

.modal-checkbox a:hover {
    text-decoration: underline;
}

/* Submit Button */
.modal-submit-btn {
    width: 100%;
    padding: 16px 30px;
    background: linear-gradient(135deg, #e32026, #ff4d4d);
    border: none;
    border-radius: 50px;
    color: white;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s;
    box-shadow: 0 10px 25px -5px rgba(227, 32, 38, 0.4);
    position: relative;
    overflow: hidden;
}

.modal-submit-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.5s, height 0.5s;
}

.modal-submit-btn:hover::before {
    width: 300px;
    height: 300px;
}

.modal-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 30px -10px rgba(227, 32, 38, 0.6);
}

/* Modal Footer */
.modal-footer {
    padding: 20px 30px;
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(227, 32, 38, 0.2);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
    position: relative;
    z-index: 2;
}

.modal-contact {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #a0a0a0;
    font-size: 14px;
}

.modal-contact i {
    color: #e32026;
    font-size: 16px;
}

/* Responsive */
@media screen and (max-width: 768px) {
    .modal-container {
        width: 95%;
        max-height: 90vh;
        overflow-y: auto;
    }
    
    .modal-header {
        padding: 20px;
    }
    
    .modal-header h3 {
        font-size: 20px;
    }
    
    .modal-body {
        padding: 20px;
    }
    
    .modal-form-row {
        flex-direction: column;
        gap: 12px;
    }
    
    .modal-footer {
        padding: 15px 20px;
        flex-direction: column;
        align-items: flex-start;
    }
}

@media screen and (max-width: 480px) {
    .modal-header h3 {
        font-size: 18px;
    }
    
    .modal-input-group input,
    .modal-input-group select,
    .modal-input-group textarea {
        padding: 12px 12px 12px 40px;
        font-size: 13px;
    }
    
    .modal-checkbox label {
        font-size: 12px;
    }
    
    .modal-submit-btn {
        padding: 14px 25px;
        font-size: 15px;
    }
}

/* ===== ABOUT SECTION ===== */
.about-section{
    padding: 90px 20px;
    background: linear-gradient(180deg,#ffffff,#f8f9fb);
}

.about-container{
    max-width: 1200px;
    margin: auto;
}

.about-grid{
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 50px;
}

/* left */
.about-heading{
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 6px;
}

.about-tagline{
    color: #e32026;
    font-weight: 600;
    margin-bottom: 18px;
}

.about-text p{
    color: #555;
    line-height: 1.7;
    margin-bottom: 14px;
}

/* highlights */
.about-highlights{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 14px;
    margin: 28px 0;
}

.highlight-item{
    background: #fff;
    border-radius: 12px;
    padding: 12px 14px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
    font-size: 14px;
    font-weight: 600;
    display: flex;
    gap: 10px;
    align-items: center;
}

.highlight-item i{
    color: #e32026;
}

/* video */
.video-wrapper{
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 25px 70px rgba(0,0,0,0.25);
}

.video-wrapper iframe{
    width: 100%;
    height: 320px;
    display: block;
}

.video-glow{
    position: absolute;
    inset: 0;
    border-radius: 18px;
    box-shadow: inset 0 0 60px rgba(227,32,38,0.25);
    pointer-events: none;
}

.video-caption{
    text-align: center;
    margin-top: 14px;
    font-weight: 600;
    color: #333;
}

/* responsive */
@media(max-width: 992px){
    .about-grid{
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .video-wrapper iframe{
        height: 240px;
    }
}

/* Hide hero slider on tablet & mobile */
@media (max-width: 991px) {
    .hero-slider {
        display: none !important;
    }
}

.email-link {
    color: #c1121f; /* match your theme */
    text-decoration: none;
    transition: all 0.3s ease;
}

.email-link:hover {
    text-decoration: underline;
}

























/* ========== PRODUCT RANGE SECTION ========== */
.product-range-section {
    padding: 100px 80px;
    background: linear-gradient(135deg, #ffffff, #f8fafc);
    position: relative;
    overflow: hidden;
}

.product-range-section::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 70%;
    height: 150%;
    background: radial-gradient(circle, rgba(227, 32, 38, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

/* Product Range Grid */
.product-range-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 50px 0;
    position: relative;
    z-index: 2;
}

/* Product Range Card - 3D Flip Effect */
.product-range-card {
    background: transparent;
    width: 100%;
    height: 280px;
    perspective: 1500px;
    cursor: pointer;
}

.card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

.product-range-card:hover .card-inner {
    transform: rotateY(180deg);
}

.card-front, .card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 30px;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.15);
}

/* Card Front */
.card-front {
    background: #ffffff;
    border: 1px solid #e2e8f0;
}

.card-front .range-icon {
    width: 80px;
    height: 80px;
    background: rgba(227, 32, 38, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 32px;
    color: #e32026;
    transition: all 0.3s;
}

.product-range-card:hover .card-front .range-icon {
    background: #e32026;
    color: white;
    transform: scale(1.1);
}

.card-front h3 {
    font-size: 22px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 8px;
}

.card-front p {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 15px;
}

.product-count {
    font-size: 13px;
    font-weight: 600;
    color: #e32026;
    background: rgba(227, 32, 38, 0.1);
    padding: 5px 15px;
    border-radius: 40px;
}

/* Card Back */
.card-back {
    background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
    color: white;
    transform: rotateY(180deg);
    border: 1px solid rgba(227, 32, 38, 0.3);
}

.card-back h4 {
    font-size: 20px;
    font-weight: 700;
    color: #e32026;
    margin-bottom: 15px;
}

.card-back ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    width: 100%;
}

.card-back ul li {
    font-size: 13px;
    color: #cccccc;
    padding: 5px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.card-back ul li:last-child {
    border-bottom: none;
}

.range-link {
    color: #e32026;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 8px 20px;
    border-radius: 40px;
    background: rgba(227, 32, 38, 0.1);
    border: 1px solid rgba(227, 32, 38, 0.3);
    transition: all 0.3s;
}

.range-link:hover {
    background: #e32026;
    color: white;
    gap: 10px;
}

/* View All Button */
.view-all-container {
    text-align: center;
    margin-top: 50px;
    position: relative;
    z-index: 2;
}

.view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: #e32026;
    font-weight: 600;
    padding: 14px 35px;
    border-radius: 50px;
    text-decoration: none;
    border: 2px solid #e32026;
    transition: all 0.3s;
}

.view-all-btn:hover {
    background: #e32026;
    color: white;
    gap: 15px;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px -5px rgba(227, 32, 38, 0.4);
}

/* Responsive */
@media screen and (max-width: 1024px) {
    .product-range-section {
        padding: 80px 40px;
    }
    
    .product-range-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .product-range-section {
        padding: 60px 20px;
    }
    
    .product-range-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .product-range-card {
        height: 260px;
    }
    
    .card-front h3 {
        font-size: 20px;
    }
}

@media screen and (max-width: 480px) {
    .product-range-card {
        height: 250px;
    }
    
    .view-all-btn {
        padding: 12px 25px;
        font-size: 14px;
    }
}
