/* ==================== CLIENTS SLIDER ==================== */
.clients-section {
    padding: 80px 0;
    background-color: #f8fafc;
    position: relative;
    overflow: hidden;
}

.clients-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(15, 23, 42, 0.1), transparent);
}

.clients-section .section-header-center {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

.clients-section .section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(249, 115, 22, 0.1));
    color: #2563eb;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.clients-section .section-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 16px;
    line-height: 1.2;
}

.clients-section .section-subtitle {
    color: #64748b;
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.clients-slider-container {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.clients-slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
    will-change: transform;
    width: max-content;
    gap: 30px;
    padding: 20px 0;
}

.client-slide {
    flex: 0 0 auto;
    width: 220px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.08);
    transition: all 0.3s ease;
    padding: 20px;
    position: relative;
    overflow: hidden;
}

.client-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #2563eb, #f97316);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.client-slide:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(15, 23, 42, 0.12);
}

.client-slide:hover::before {
    opacity: 1;
}

.client-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    height: 100%;
}

.client-logo i {
    font-size: 2.5rem;
    margin-bottom: 12px;
    color: #2563eb;
    transition: all 0.3s ease;
}

.client-slide:hover .client-logo i {
    transform: scale(1.1);
    color: #1d4ed8;
}

.client-logo span {
    font-size: 1rem;
    font-weight: 600;
    color: #0f172a;
    transition: color 0.3s ease;
}

.client-slide:hover .client-logo span {
    color: #2563eb;
}

/* Responsive styles */
@media (max-width: 1200px) {
    .client-slide {
        width: 200px;
        height: 110px;
    }
}

@media (max-width: 992px) {
    .clients-section {
        padding: 60px 0;
    }
    
    .clients-section .section-title {
        font-size: 2rem;
    }
    
    .client-slide {
        width: 180px;
        height: 100px;
    }
    
    .client-logo i {
        font-size: 2.2rem;
    }
    
    .client-logo span {
        font-size: 0.95rem;
    }
}

@media (max-width: 768px) {
    .clients-section .section-title {
        font-size: 1.75rem;
    }
    
    .client-slide {
        width: 160px;
        height: 90px;
        border-radius: 12px;
    }
    
    .client-logo i {
        font-size: 2rem;
        margin-bottom: 8px;
    }
    
    .client-logo span {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .clients-section {
        padding: 50px 0;
    }
    
    .clients-section .section-header-center {
        margin-bottom: 30px;
    }
    
    .clients-section .section-title {
        font-size: 1.5rem;
        margin-bottom: 12px;
    }
    
    .clients-section .section-subtitle {
        font-size: 1rem;
    }
    
    .client-slide {
        width: 140px;
        height: 80px;
        border-radius: 10px;
    }
    
    .client-logo i {
        font-size: 1.75rem;
        margin-bottom: 6px;
    }
    
    .client-logo span {
        font-size: 0.85rem;
    }
}

/* ========================================
   MODERN REDESIGN - ADDITIONAL STYLES
   Keep existing hero styles, modernize other sections
   ======================================== */

/* ==================== NAVBAR - ULTRA MODERN ==================== */
.navbar-modern {
    background: #ffffff !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 2px 20px rgba(15, 23, 42, 0.08);
    padding: 0;
    transition: all 0.3s ease;
    z-index: 1050;
}

.navbar-modern.scrolled {
    box-shadow: 0 4px 30px rgba(15, 23, 42, 0.12);
    background: #ffffff !important;
}

.navbar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
}

.brand-modern {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.brand-modern:hover {
    transform: translateY(-2px);
}

.brand-logo {
width: 150px;
    height: 80px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(249, 115, 22, 0.1));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
}

.brand-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.02em;
}

.brand-tagline {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1051;
}

.mobile-toggle span {
    width: 28px;
    height: 3px;
    background: var(--primary, #003d82);
    border-radius: 3px;
    transition: all 0.3s ease;
    display: block;
}

.mobile-toggle.active span:nth-child(1) {
       transform: rotate(45deg) translate(6px, 8px)
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
       transform: rotate(-45deg) translate(3px, -4px);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
    list-style: none;
    position: relative;
}

.nav-link-modern {
    color: var(--dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 10px 18px;
    border-radius: 10px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link-modern:hover,
.nav-link-modern.active {
    color: var(--primary);
    background: rgba(37, 99, 235, 0.08);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nav-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 10px 16px;
    border-radius: 10px;
    background: rgba(37, 99, 235, 0.05);
    transition: all 0.3s ease;
}

.nav-phone:hover {
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary);
}

.nav-phone i {
    color: var(--primary);
}

.btn-quote {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--gradient-primary);
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 12px 24px;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.btn-quote:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(37, 99, 235, 0.4);
    color: white;
}

.btn-quote i {
    transition: transform 0.3s ease;
}

.btn-quote:hover i {
    transform: translateX(4px);
}

@media (max-width: 991px) {
    .navbar-modern {
        padding: 0;
        background: #ffffff !important;
    }

    .navbar-content {
        padding: 10px 15px;
        flex-wrap: nowrap;
        min-height: 70px;
    }

    .brand-logo {
        width: 120px;
        height: 60px;
        padding: 5px;
    }

    .mobile-toggle {
        display: flex;
        z-index: 1051;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: #ffffff;
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        gap: 0;
        padding: 20px;
        box-shadow: 0 10px 30px rgba(15, 23, 42, 0.15);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease, opacity 0.3s ease;
        opacity: 0;
        z-index: 1049;
        border-top: 1px solid rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        max-height: 600px;
        opacity: 1;
        overflow-y: auto;
    }

    .nav-links {
        flex-direction: column;
        width: 100%;
        gap: 8px;
    }

    .nav-link-modern {
        width: 100%;
        text-align: center;
        padding: 12px 18px;
        color: #0f172a;
    }

    /* Mobile dropdown styles */
    .nav-links .dropdown {
        width: 100%;
    }

    .nav-links .dropdown-toggle {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
    }

    .nav-links .dropdown-toggle::after {
        margin-left: 8px;
    }

    .nav-links .dropdown-menu {
        position: static !important;
        transform: none !important;
        width: 100%;
        border: none;
        box-shadow: none;
        background: #f8fafc;
        border-radius: 8px;
        margin-top: 8px;
        padding: 8px 0;
    }

    .nav-links .dropdown-menu .dropdown-item {
        text-align: center;
        padding: 10px 16px;
        color: #475569;
    }

    .nav-links .dropdown-menu .dropdown-item:hover {
        background: rgba(37, 99, 235, 0.1);
        color: #2563eb;
    }

    .nav-actions {
        flex-direction: column;
        width: 100%;
        margin-top: 16px;
    }

    .nav-phone,
    .btn-quote {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .navbar-content {
        padding: 8px 10px;
        min-height: 60px;
    }

    .brand-logo {
        width: 90px;
        height: 45px;
        padding: 4px;
    }

    .nav-menu {
        top: 60px;
        padding: 15px;
    }

    .mobile-toggle {
        padding: 8px;
    }

    .mobile-toggle span {
        width: 24px;
        height: 2px;
    }
}

/* ==================== MODERN HERO SECTION ==================== */
.modern-hero {
    position: relative;
    padding: 120px 0 80px;
    overflow: hidden;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: white;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: url('../images/hero-bg-pattern.png') center/cover no-repeat;
    opacity: 0.15;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.9) 0%, rgba(30, 41, 59, 0.9) 100%);
    z-index: 1;
}

.floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
    animation: float 15s infinite ease-in-out;
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: -150px;
    right: -100px;
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    bottom: -50px;
    left: -50px;
    animation-delay: 2s;
    animation-duration: 12s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    top: 50%;
    right: 10%;
    animation-delay: 4s;
    animation-duration: 10s;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 600px;
}

.hero-content h6 {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: inline-block;
    position: relative;
    padding-left: 15px;
}

.hero-content h6::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 2px;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    background: linear-gradient(to right, #fff, rgba(255, 255, 255, 0.7));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content p.lead {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-gradient-primary {
    background: linear-gradient(45deg, var(--primary), #2563eb);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.btn-gradient-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.4);
    color: white;
}

.btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: white;
    background: transparent;
    padding: 10px 28px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    color: white;
}

.hero-image {
    position: relative;
    z-index: 3;
}

.image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    transition: transform 0.5s ease;
}

.hero-image:hover .image-wrapper {
    transform: perspective(1000px) rotateY(0) rotateX(0);
}

.image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.hero-image:hover .image-wrapper img {
    transform: scale(1.05);
}

.experience-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    padding: 15px 25px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.experience-badge .years {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(45deg, #3b82f6, #60a5fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin-bottom: 5px;
}

.experience-badge span:last-child {
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    display: block;
    letter-spacing: 1px;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.scroll-indicator span {
    display: block;
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    animation: bounce 2s infinite ease-in-out;
}

.scroll-indicator span:nth-child(2) {
    animation-delay: 0.2s;
}

.scroll-indicator span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); opacity: 0.5; }
    50% { transform: translateY(10px); opacity: 1; }
}

/* Stats Section */
.stats-section {
    position: relative;
    z-index: 2;
    margin-top: -50px;
}

.stat-card {
    background: white;
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(45deg, var(--primary), #2563eb);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.stat-card:hover::before {
    height: 6px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 10px;
    line-height: 1.2;
}

.stat-number .counter {
    display: inline-block;
    background: linear-gradient(45deg, var(--primary), #2563eb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 1rem;
    color: var(--secondary);
    font-weight: 600;
}

/* Responsive Adjustments */
@media (max-width: 1199px) {
    .hero-content h1 {
        font-size: 3rem;
    }
}

@media (max-width: 991px) {
    .modern-hero {
        padding: 100px 0 60px;
    }
    
    .hero-content {
        text-align: center;
        margin: 0 auto 50px;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-image {
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 767px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p.lead {
        font-size: 1.1rem;
    }
    
    .stats-section {
        margin-top: 0;
    }
}

@media (max-width: 575px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .stat-card {
        padding: 25px 15px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

/* ==================== ABOUT PAGE STYLES ==================== */
/* Hero Section */
.about-hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                url('../images/hero-bg.jpg') center/cover no-repeat;
    color: white;
    padding: 120px 0 100px;
    position: relative;
    text-align: center;
    margin-top: 80px;
}

.about-hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.about-hero-content p {
    font-size: 1.25rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.about-hero-content .btn {
    padding: 12px 32px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

/* Section Header */
.section-header {
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.section-badge i {
    margin-right: 8px;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 15px;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--secondary);
    max-width: 700px;
    margin: 0 auto 30px;
}

.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 20px 0;
}

.divider-line {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
}

.section-divider i {
    color: var(--primary);
    font-size: 1.2rem;
}

/* About Content */
.about-content {
    padding: 20px 0;
}

.about-subtitle {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 20px;
    line-height: 1.3;
}

.about-text {
    font-size: 1.1rem;
    color: var(--secondary);
    line-height: 1.8;
    margin-bottom: 25px;
}

/* About Image */
.about-image-wrapper {
    position: relative;
    padding: 15px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.about-main-image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 20px;
}

.about-main-image img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.about-main-image:hover img {
    transform: scale(1.03);
}

.experience-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: white;
    padding: 15px 25px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.experience-badge .years {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 5px;
}

.experience-badge span:last-child {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark);
}

/* Feature Cards */
.about-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 25px;
}

.feature-card {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.feature-card i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 15px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(255, 102, 0, 0.1));
    width: 70px;
    height: 70px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 20px;
}

.feature-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--dark);
}

.feature-card p {
    font-size: 0.95rem;
    color: var(--secondary);
    margin: 0;
    line-height: 1.6;
}

/* About Mission */
.about-mission {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: rgba(37, 99, 235, 0.03);
    padding: 25px;
    border-radius: 10px;
    margin: 30px 0;
    border-left: 4px solid var(--primary);
}

.about-mission i {
    font-size: 1.8rem;
    color: var(--primary);
    margin-top: 5px;
}

.about-mission h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
}

.about-mission p {
    font-size: 1rem;
    color: var(--secondary);
    margin: 0;
    line-height: 1.7;
}

/* About Features */
.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(37, 99, 235, 0.03);
    padding: 12px 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(37, 99, 235, 0.1);
    transform: translateX(5px);
}

.feature-item i {
    color: var(--primary);
    font-size: 1.1rem;
}

.feature-item span {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--dark);
}

/* Manufacture Section */
.manufacture-section {
    padding: 100px 0;
    background-color: #f9fafb;
    position: relative;
    overflow: hidden;
}

.manufacture-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/pattern-dots.png') center/cover no-repeat;
    opacity: 0.1;
    pointer-events: none;
}

.manufacture-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.manufacture-card {
    background: white;
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.manufacture-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transition: all 0.3s ease;
}

.manufacture-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.manufacture-card:hover::before {
    height: 10px;
}

.manufacture-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(255, 102, 0, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: var(--primary);
    transition: all 0.3s ease;
}

.manufacture-card:hover .manufacture-icon {
    transform: rotateY(180deg);
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
}

.manufacture-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark);
}

.manufacture-card p {
    color: var(--secondary);
    margin: 0;
    line-height: 1.7;
}

/* Responsive Styles */
@media (max-width: 1199px) {
    .about-hero-content h1 {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .about-subtitle {
        font-size: 1.8rem;
    }
}

@media (max-width: 991px) {
    .about-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .about-image-wrapper {
        margin-bottom: 40px;
    }
}

@media (max-width: 767px) {
    .about-hero-section {
        padding: 100px 0 80px;
    }
    
    .about-hero-content h1 {
        font-size: 2.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .about-subtitle {
        font-size: 1.6rem;
    }
    
    .manufacture-grid {
        grid-template-columns: 1fr;
    }
    
    .about-features-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 575px) {
    .about-hero-content h1 {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
    }
    
    .about-mission {
        flex-direction: column;
        text-align: center;
    }
    
    .about-mission i {
        margin: 0 auto 15px;
    }
}

/* ==================== ABOUT SECTION - MODERN ==================== */
.about,
.company-overview,
.infrastructure,
.mission-vision,
.core-values,
.why-choose {
    background: radial-gradient(circle at 0 0, rgba(37, 99, 235, 0.04), transparent 55%),
                radial-gradient(circle at 100% 100%, rgba(249, 115, 22, 0.04), transparent 55%),
                #f9fafb;
    position: relative;
    overflow: hidden;
}

.about::before,
.company-overview::before,
.infrastructure::before,
.mission-vision::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.06), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.about::after,
.company-overview::after,
.infrastructure::after,
.mission-vision::after {
    content: '';
    position: absolute;
    bottom: -35%;
    left: -15%;
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(15, 23, 42, 0.04), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(249, 115, 22, 0.1));
    border: 2px solid rgba(37, 99, 235, 0.2);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--primary);
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.section-badge i {
    font-size: 1rem;
}

.about-title,
.section-title-about {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 20px;
    line-height: 1.2;
}

.about-lead,
.lead-paragraph {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 20px;
    line-height: 1.6;
}

.about-text,
.body-paragraph {
    font-size: 1.05rem;
    color: var(--secondary);
    margin-bottom: 14px;
    line-height: 1.8;
}

.about-stats,
.stats-section .stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 32px 0 0;
    padding: 30px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(148, 163, 184, 0.2);
    box-shadow: 0 10px 40px rgba(15, 23, 42, 0.08);
}

.stat-item,
.stats-section .stat-card {
    text-align: center;
}

.stat-number,
.stats-section .stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.stat-label,
.stats-section .stat-label {
    font-size: 0.9rem;
    color: var(--secondary);
    font-weight: 600;
}

.about-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.feature-card,
.infra-card,
.infra-side-card,
.mv-card,
.why-card-about,
.value-card {
    background: rgba(255, 255, 255, 0.9);
    padding: 24px;
    border-radius: 18px;
    border: 1px solid rgba(148, 163, 184, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-primary);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.feature-card:hover,
.infra-card:hover,
.infra-side-card:hover,
.mv-card:hover,
.why-card-about:hover,
.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(37, 99, 235, 0.15);
    border-color: var(--primary);
}

.feature-card:hover::before {
    transform: scaleY(1);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    color: white;
    font-size: 1.3rem;
}

.feature-card h4,
.infra-card h3,
.infra-side-card h3,
.mv-card h3,
.why-card-about h4,
.value-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

.feature-card p,
.infra-card p,
.infra-list li,
.mv-card p,
.why-card-about p,
.value-card p {
    font-size: 0.95rem;
    color: var(--secondary);
    margin: 0;
}

.about-visual {
    position: relative;
}

.about-img-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.2);
}

.about-img {
    width: 100%;
    display: block;
    transition: transform 0.5s ease;
}

.about-img-wrapper:hover .about-img {
    transform: scale(1.05);
}

.about-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(249, 115, 22, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.about-img-wrapper:hover .about-overlay {
    opacity: 1;
}

.floating-badge {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 16px 20px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.2);
    display: flex;
    align-items: center;
    gap: 12px;
    animation: float 3s ease-in-out infinite;
}

.floating-badge i {
    font-size: 1.8rem;
    color: var(--accent);
}

.iso-badge {
    top: 20px;
    right: 20px;
}

.year-badge {
    bottom: 20px;
    left: 20px;
}

.badge-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.2;
}

.badge-subtitle {
    font-size: 0.8rem;
    color: var(--secondary);
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* ==================== PRODUCTS SECTION - ULTRA MODERN ==================== */
.products-ultra {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 50%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.products-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(37, 99, 235, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(249, 115, 22, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.products-header {
    text-align: center;
    margin-bottom: 60px;
}

.products-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(249, 115, 22, 0.1));
    border: 2px solid rgba(37, 99, 235, 0.2);
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--primary);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.products-badge i {
    font-size: 1.1rem;
}

.products-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 16px;
    line-height: 1.2;
}

.products-subtitle {
    font-size: 1.15rem;
    color: var(--secondary);
    max-width: 750px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.product-categories {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.category-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: white;
    border: 2px solid rgba(148, 163, 184, 0.2);
    color: var(--dark);
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.category-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(37, 99, 235, 0.05);
}

.category-btn.active {
    background: var(--gradient-primary);
    color: white;
    border-color: var(--primary);
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.category-btn i {
    font-size: 1rem;
}

.products-grid-ultra {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 32px;
    margin-top: 50px;
}

.product-card-ultra {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.08);
    border: 1px solid rgba(148, 163, 184, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: flex;
    flex-direction: column;
}

.product-card-ultra:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 60px rgba(37, 99, 235, 0.15);
    border-color: var(--primary);
}

.product-card-ultra.featured {
    border: 2px solid var(--primary);
}

.product-badge-ultra {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 2;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    gap: 6px;
}

.featured-badge {
    background: linear-gradient(135deg, #f59e0b, #f97316);
    color: white;
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.4);
}

.product-image-wrapper {
    position: relative;
    height: 260px;
    overflow: hidden;
    background: var(--light);
}

.product-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card-ultra:hover .product-image-wrapper img {
    transform: scale(1.1);
}

.product-hover-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.95), rgba(249, 115, 22, 0.95));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.product-card-ultra:hover .product-hover-overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
    color: white;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.product-card-ultra:hover .overlay-content {
    transform: translateY(0);
}

.overlay-content h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.overlay-content p {
    font-size: 0.95rem;
    margin-bottom: 20px;
    opacity: 0.9;
}

.overlay-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: white;
    color: var(--primary);
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.overlay-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.product-info {
    padding: 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-category-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(37, 99, 235, 0.08);
    color: var(--primary);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 16px;
    width: fit-content;
}

.product-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
    line-height: 1.3;
}

.product-description {
    font-size: 0.95rem;
    color: var(--secondary);
    line-height: 1.7;
    margin-bottom: 20px;
    flex: 1;
}

.product-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(148, 163, 184, 0.15);
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: var(--dark);
    font-weight: 600;
}

.spec-item i {
    color: var(--primary);
    font-size: 1rem;
}

.product-actions {
    display: flex;
    gap: 12px;
}

.btn-primary-product {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--gradient-primary);
    color: white;
    padding: 14px 20px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.btn-primary-product:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(37, 99, 235, 0.4);
    color: white;
}

.btn-secondary-product {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(37, 99, 235, 0.08);
    color: var(--primary);
    border: 2px solid rgba(37, 99, 235, 0.2);
    border-radius: 12px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary-product:hover {
    background: var(--gradient-primary);
    color: white;
    border-color: var(--primary);
    transform: rotate(5deg);
}

@media (max-width: 991px) {
    .products-title {
        font-size: 2.2rem;
    }

    .products-grid-ultra {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .products-title {
        font-size: 1.9rem;
    }

    .products-subtitle {
        font-size: 1rem;
    }

    .product-categories {
        gap: 8px;
    }

    .category-btn {
        padding: 10px 18px;
        font-size: 0.85rem;
    }

    .products-grid-ultra {
        grid-template-columns: 1fr;
    }

    .product-actions {
        flex-direction: column;
    }

    .btn-secondary-product {
        width: 100%;
    }
}

/* Old products section styles (keep for compatibility) */
.products {
    background: #ffffff;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title-modern {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--secondary);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.product-card-modern {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(15, 23, 42, 0.08);
    border: 1px solid rgba(148, 163, 184, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.product-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(37, 99, 235, 0.15);
    border-color: var(--primary);
}

.product-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--gradient-accent);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.4);
}

.product-img-modern {
    position: relative;
    height: 240px;
    overflow: hidden;
    background: var(--light);
}

.product-img-modern img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card-modern:hover .product-img-modern img {
    transform: scale(1.1);
}

.product-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.9), rgba(249, 115, 22, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card-modern:hover .product-overlay {
    opacity: 1;
}

.btn-view-details {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.5rem;
    text-decoration: none;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.product-card-modern:hover .btn-view-details {
    transform: scale(1);
}

.product-content {
    padding: 28px;
}

.product-title-modern {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
    line-height: 1.3;
}

.product-desc {
    font-size: 0.95rem;
    color: var(--secondary);
    line-height: 1.7;
    margin-bottom: 20px;
}

.product-features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
}

.product-features li {
    font-size: 0.9rem;
    color: var(--secondary);
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.product-features i {
    color: var(--success);
    font-size: 1rem;
}

.product-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: gap 0.3s ease;
}

.product-link:hover {
    gap: 12px;
}

.product-link i {
    transition: transform 0.3s ease;
}

.product-link:hover i {
    transform: translateX(4px);
}

/* ==================== CONTACT SECTION - ULTRA MODERN ==================== */
.contact-ultra {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 50%, #e0f2fe 100%);
    position: relative;
    overflow: hidden;
}

.contact-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(37, 99, 235, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(249, 115, 22, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.contact-header {
    text-align: center;
    margin-bottom: 60px;
}

.contact-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(249, 115, 22, 0.1));
    border: 2px solid rgba(37, 99, 235, 0.2);
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--primary);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.contact-badge i {
    font-size: 1.1rem;
}

.contact-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 16px;
    line-height: 1.2;
}

.contact-subtitle {
    font-size: 1.15rem;
    color: var(--secondary);
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.7;
}

.contact-wrapper {
    max-width: 1100px;
    margin: 0 auto;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 50px;
}

.info-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 32px;
    border-radius: 20px;
    border: 1px solid rgba(148, 163, 184, 0.15);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(37, 99, 235, 0.15);
    border-color: var(--primary);
}

.info-icon-wrapper {
    margin-bottom: 20px;
}

.info-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
    transition: transform 0.3s ease;
}

.info-card:hover .info-icon {
    transform: scale(1.1) rotate(5deg);
}

.info-content h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

.info-content p {
    font-size: 0.9rem;
    color: var(--secondary);
    margin-bottom: 12px;
    line-height: 1.6;
}

.info-content a {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-content a:hover {
    color: var(--accent);
}

.contact-form-ultra {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 50px;
    border-radius: 30px;
    box-shadow: 0 25px 70px rgba(15, 23, 42, 0.12);
    border: 1px solid rgba(148, 163, 184, 0.15);
    margin-bottom: 40px;
}

.form-header {
    text-align: center;
    margin-bottom: 40px;
}

.form-header h3 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 12px;
}

.form-header p {
    font-size: 1rem;
    color: var(--secondary);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.input-group {
    position: relative;
}

.input-group.full-width {
    grid-column: 1 / -1;
}

.input-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary);
    font-size: 1.1rem;
    z-index: 1;
}

.input-icon.textarea-icon {
    top: 20px;
    transform: none;
}

.input-group input,
.input-group textarea {
    width: 100%;
    padding: 16px 20px 16px 50px;
    border: 2px solid rgba(148, 163, 184, 0.2);
    border-radius: 14px;
    font-size: 1rem;
    color: var(--dark);
    background: white;
    transition: all 0.3s ease;
    font-family: inherit;
}

.input-group input:focus,
.input-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

.input-group input::placeholder,
.input-group textarea::placeholder {
    color: #9ca3af;
}

.input-group textarea {
    resize: vertical;
    min-height: 140px;
}

.submit-btn {
    width: 100%;
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 18px 32px;
    border-radius: 14px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
    margin-top: 10px;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(37, 99, 235, 0.4);
}

.btn-icon {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.submit-btn:hover .btn-icon {
    transform: translateX(4px);
}

.form-footer {
    text-align: center;
    margin-top: 20px;
    font-size: 0.9rem;
    color: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.form-footer i {
    color: var(--success);
}

.contact-social {
    text-align: center;
}

.contact-social p {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 20px;
}

.social-icons-ultra {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.social-icons-ultra a {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(249, 115, 22, 0.1));
    border: 2px solid rgba(37, 99, 235, 0.2);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icons-ultra a:hover {
    background: var(--gradient-primary);
    color: white;
    transform: translateY(-5px) rotate(5deg);
    border-color: var(--primary);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

@media (max-width: 768px) {
    .contact-title {
        font-size: 2rem;
    }

    .contact-subtitle {
        font-size: 1rem;
    }

    .contact-form-ultra {
        padding: 30px 24px;
    }

    .form-header h3 {
        font-size: 1.6rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

/* ==================== FOOTER - MODERN ==================== */
.footer-modern {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: #e5e7eb;
    position: relative;
    overflow: hidden;
}

.footer-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), var(--accent), transparent);
}

.footer-top {
    padding: 80px 0 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.footer-logo .logo-img {
    height: 50px;
    margin-right: 12px;
}

.footer-logo .logo-main {
    color: white;
    font-size: 1.8rem;
    font-weight: 700;
}

.footer-logo .logo-sub {
    color: #cbd5e1;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.footer-desc {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #94a3b8;
    margin-bottom: 20px;
}

.footer-badge-group {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.footer-mini-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(37, 99, 235, 0.1);
    border: 1px solid rgba(37, 99, 235, 0.3);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #60a5fa;
}

.footer-mini-badge i {
    font-size: 0.9rem;
}

.footer-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li {
    margin-bottom: 12px;
}

.footer-menu a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.footer-menu a i {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.footer-menu a:hover {
    color: white;
    transform: translateX(5px);
}

.footer-menu a:hover i {
    transform: translateX(3px);
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.footer-contact li {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 0.9rem;
    color: #94a3b8;
    line-height: 1.6;
}

.footer-contact i {
    color: var(--primary);
    font-size: 1rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.footer-contact a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: white;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(37, 99, 235, 0.1);
    border: 1px solid rgba(37, 99, 235, 0.3);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #60a5fa;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--gradient-primary);
    color: white;
    transform: translateY(-3px);
    border-color: var(--primary);
}

.footer-bottom {
    border-top: 1px solid rgba(148, 163, 184, 0.2);
    padding: 24px 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom-content p {
    margin: 0;
    font-size: 0.9rem;
    color: #64748b;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 0.9rem;
}

.footer-bottom-links a {
    color: #64748b;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: white;
}

.footer-bottom-links span {
    color: #475569;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 991px) {
    .about-title {
        font-size: 2.2rem;
    }

    .about-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
        padding: 24px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .about-features-grid {
        grid-template-columns: 1fr;
    }

    .section-title-modern {
        font-size: 2.2rem;
    }

    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .about-title {
        font-size: 1.9rem;
    }

    .about-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .section-title-modern {
        font-size: 1.9rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .contact-form-modern {
        padding: 28px;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .about-title {
        font-size: 1.6rem;
    }

    .about-lead {
        font-size: 1.1rem;
    }

    .floating-badge {
        padding: 12px 16px;
    }

    .iso-badge {
        top: 12px;
        right: 12px;
    }

    .year-badge {
        bottom: 12px;
        left: 12px;
    }

    .section-title-modern {
        font-size: 1.6rem;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .contact-form-modern {
        padding: 24px;
    }
}


/* ==================== FOOTER - PREMIUM MODERN ==================== */
.footer-premium {
    background: linear-gradient(180deg, #0a1628 0%, #0f1f3d 50%, #1a2942 100%);
    color: #e5e7eb;
    position: relative;
    overflow: hidden;
}

.footer-top-border {
    height: 4px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        var(--primary) 25%, 
        var(--accent) 50%, 
        var(--primary) 75%, 
        transparent 100%);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

.footer-content {
    padding: 80px 0 40px;
}

.footer-main-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-logo-wrapper {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.footer-logo-img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    filter: brightness(1.2);
}

.footer-brand-text h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    margin: 0 0 4px 0;
    line-height: 1.2;
}

.footer-tagline {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--accent);
    margin: 0;
    letter-spacing: 0.05em;
}

.footer-description {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #94a3b8;
    margin-bottom: 30px;
}

.footer-certifications {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cert-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(37, 99, 235, 0.1);
    border: 1px solid rgba(37, 99, 235, 0.3);
    padding: 12px 16px;
    border-radius: 12px;
}

.cert-badge i {
    font-size: 1.5rem;
    color: #60a5fa;
}

.cert-badge strong {
    display: block;
    color: white;
    font-size: 0.95rem;
    margin-bottom: 2px;
}

.cert-badge span {
    display: block;
    color: #94a3b8;
    font-size: 0.8rem;
}

.footer-section-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: white;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 12px;
}

.footer-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 2px;
}

.footer-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu-list li {
    margin-bottom: 14px;
}

.footer-menu-list a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-menu-list a i {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.footer-menu-list a:hover {
    color: white;
    padding-left: 5px;
}

.footer-menu-list a:hover i {
    transform: translateX(3px);
    color: var(--accent);
}

.footer-contact-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-contact-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.contact-item-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: white;
    flex-shrink: 0;
}

.contact-item-text {
    flex: 1;
}

.contact-item-text p,
.contact-item-text a {
    color: #94a3b8;
    font-size: 0.9rem;
    line-height: 1.6;
    text-decoration: none;
    transition: color 0.3s ease;
    margin: 0;
}

.contact-item-text a:hover {
    color: white;
}

/* Footer Bottom Section - Social & Newsletter */
.footer-bottom-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    padding-top: 50px;
    margin-top: 50px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-social-wrapper h5,
.footer-newsletter h5 {
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-social-wrapper h5::before {
    content: '';
    width: 4px;
    height: 24px;
    background: linear-gradient(180deg, var(--primary), var(--accent));
    border-radius: 2px;
}

.footer-newsletter h5::before {
    content: '';
    width: 4px;
    height: 24px;
    background: linear-gradient(180deg, var(--primary), var(--accent));
    border-radius: 2px;
}

.footer-social-links {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.social-link-item {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-link-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.social-link-item i {
    position: relative;
    z-index: 1;
}

.social-link-item:hover {
    color: white;
    transform: translateY(-5px);
    border-color: transparent;
    box-shadow: 0 10px 30px rgba(0, 61, 130, 0.5);
}

.social-link-item:hover::before {
    opacity: 1;
}

.footer-newsletter p {
    color: #94a3b8;
    font-size: 0.9rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    background: rgba(255, 255, 255, 0.05);
    padding: 6px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.newsletter-form input {
    flex: 1;
    padding: 12px 16px;
    background: transparent;
    border: none;
    color: white;
    font-size: 0.95rem;
    outline: none;
}

.newsletter-form input::placeholder {
    color: #64748b;
}

.newsletter-form button {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border: none;
    border-radius: 10px;
    color: white;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.newsletter-form button:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 61, 130, 0.5);
}

.footer-copyright {
    background: rgba(0, 0, 0, 0.3);
    padding: 24px 0;
    margin-top: 50px;
}

.copyright-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.copyright-content p {
    margin: 0;
    font-size: 0.9rem;
    color: #94a3b8;
}

.footer-legal-links {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
}

.footer-legal-links a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal-links a:hover {
    color: white;
}

.footer-legal-links .separator {
    color: #475569;
}

/* Footer Responsive */
@media (max-width: 991px) {
    .footer-main-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .footer-brand-section {
        grid-column: 1 / -1;
    }

    .footer-bottom-section {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .footer-main-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-content {
        padding: 60px 0 30px;
    }

    .footer-bottom-section {
        padding-top: 40px;
        margin-top: 40px;
    }

    .newsletter-form {
        flex-direction: column;
        gap: 12px;
    }

    .newsletter-form button {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .footer-content {
        padding: 50px 0 30px;
    }

    .copyright-content {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }

    .footer-badges {
        flex-direction: column;
    }

    .footer-badge-item {
        flex-direction: row;
    }

    .footer-social-links {
        justify-content: center;
    }

    .footer-logo-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .footer-brand-text h3 {
        font-size: 1.3rem;
    }
}


/* Additional Footer Styles */
.footer-badges {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 24px;
}

.footer-badge-item {
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 14px 18px;
    border-radius: 14px;
    transition: all 0.3s ease;
}

.footer-badge-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary);
    transform: translateX(5px);
}

.badge-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: white;
    flex-shrink: 0;
}

.badge-text strong {
    display: block;
    color: white;
    font-size: 0.95rem;
    margin-bottom: 2px;
    font-weight: 700;
}

.badge-text span {
    display: block;
    color: #94a3b8;
    font-size: 0.8rem;
}


/* ==================== PRODUCTS SECTION - PREMIUM REDESIGN ==================== */
.products-premium {
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 50%, #f8fafc 100%);
    position: relative;
    overflow: hidden;
    padding: 100px 0;
}

.products-background {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.bg-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
}

.circle-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--primary), transparent);
    top: -100px;
    right: -100px;
}

.circle-2 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, var(--accent), transparent);
    bottom: -80px;
    left: -80px;
}

.circle-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--primary), transparent);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Section Header */
.products-section-header {
    text-align: center;
    margin-bottom: 60px;
}

.header-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(0, 61, 130, 0.1), rgba(255, 102, 0, 0.1));
    border: 2px solid rgba(0, 61, 130, 0.2);
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--primary);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.products-main-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 16px;
    line-height: 1.2;
}

.products-main-subtitle {
    font-size: 1.15rem;
    color: var(--secondary);
    max-width: 750px;
    margin: 0 auto 50px;
    line-height: 1.7;
}

/* Category Filter Tabs */
.category-filter-tabs {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.filter-tab {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    background: white;
    border: 2px solid rgba(0, 61, 130, 0.1);
    padding: 20px 32px;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 140px;
}

.filter-tab:hover {
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 61, 130, 0.15);
}

.filter-tab.active {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-color: transparent;
    color: white;
    box-shadow: 0 10px 30px rgba(0, 61, 130, 0.3);
}

.tab-icon {
    width: 50px;
    height: 50px;
    background: rgba(0, 61, 130, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
    transition: all 0.3s ease;
}

.filter-tab.active .tab-icon {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.filter-tab span {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--dark);
    transition: color 0.3s ease;
}

.filter-tab.active span {
    color: white;
}

.tab-indicator {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 2px 2px 0 0;
    transition: width 0.3s ease;
}

.filter-tab.active .tab-indicator {
    width: 60%;
}

/* Products Showcase Grid */
.products-showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 35px;
}

.product-showcase-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 61, 130, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.product-showcase-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 61, 130, 0.2);
    border-color: var(--primary);
}

.product-featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 3;
    background: linear-gradient(135deg, #fbbf24, var(--accent));
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.4);
}

.product-visual {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.product-image-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.product-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-showcase-card:hover .product-image-container img {
    transform: scale(1.1);
}

.image-gradient-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
}

.quick-view-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 61, 130, 0.95), rgba(255, 102, 0, 0.95));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-showcase-card:hover .quick-view-overlay {
    opacity: 1;
}

.quick-view-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: white;
    color: var(--primary);
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    transform: scale(0.9);
}

.product-showcase-card:hover .quick-view-btn {
    transform: scale(1);
}

.quick-view-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

/* Product Details */
.product-details {
    padding: 30px;
}

.product-header-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.product-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, rgba(0, 61, 130, 0.1), rgba(255, 102, 0, 0.1));
    color: var(--primary);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.product-rating {
    display: flex;
    gap: 3px;
    color: #fbbf24;
    font-size: 0.9rem;
}

.product-title-new {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 14px;
    line-height: 1.3;
}

.product-excerpt {
    font-size: 0.95rem;
    color: var(--secondary);
    line-height: 1.7;
    margin-bottom: 20px;
}

.product-features-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(0, 61, 130, 0.1);
}

.feature-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(0, 61, 130, 0.05);
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--dark);
}

.feature-badge i {
    color: var(--primary);
    font-size: 1rem;
}

.product-cta-buttons {
    display: flex;
    gap: 12px;
}

.btn-product-primary {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    padding: 14px 24px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 61, 130, 0.3);
}

.btn-product-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 61, 130, 0.4);
    color: white;
}

.btn-product-secondary {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 61, 130, 0.1), rgba(255, 102, 0, 0.1));
    color: var(--primary);
    border: 2px solid rgba(0, 61, 130, 0.2);
    border-radius: 12px;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-product-secondary:hover {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    border-color: transparent;
    transform: rotate(5deg);
}

/* Responsive */
@media (max-width: 991px) {
    .products-main-title {
        font-size: 2.2rem;
    }

    .products-showcase-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 28px;
    }

    .category-filter-tabs {
        gap: 12px;
    }

    .filter-tab {
        min-width: 120px;
        padding: 16px 24px;
    }
}

@media (max-width: 768px) {
    .products-main-title {
        font-size: 1.9rem;
    }

    .products-main-subtitle {
        font-size: 1rem;
    }

    .products-showcase-grid {
        grid-template-columns: 1fr;
    }

    .category-filter-tabs {
        gap: 10px;
    }

    .filter-tab {
        flex-direction: row;
        min-width: auto;
        padding: 12px 20px;
    }

    .tab-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .product-cta-buttons {
        flex-direction: column;
    }

    .btn-product-secondary {
        width: 100%;
    }
}


/* ==================== ABOUT SECTION - ULTRA PREMIUM REDESIGN ==================== */
.about-ultra {
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 50%, #f8fafc 100%);
    position: relative;
    overflow: hidden;
    padding: 100px 0;
}

.about-bg-decoration {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.decoration-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.2;
}

.circle-left {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--primary), transparent);
    top: -150px;
    left: -150px;
}

.circle-right {
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, var(--accent), transparent);
    bottom: -100px;
    right: -100px;
}

/* Section Header */
.about-section-header {
    text-align: center;
    margin-bottom: 70px;
}

.about-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(0, 61, 130, 0.1), rgba(255, 102, 0, 0.1));
    border: 2px solid rgba(0, 61, 130, 0.2);
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--primary);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.about-main-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 16px;
    line-height: 1.2;
}

.about-main-subtitle {
    font-size: 1.2rem;
    color: var(--secondary);
    max-width: 650px;
    margin: 0 auto;
}

/* Image Section */
.about-image-section {
    position: relative;
}

.about-main-image {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15);
}

.about-main-image img {
    width: 100%;
    display: block;
    transition: transform 0.5s ease;
}

.about-main-image:hover img {
    transform: scale(1.05);
}

.image-frame {
    position: absolute;
    inset: -15px;
    border: 3px solid var(--primary);
    border-radius: 30px;
    z-index: -1;
    opacity: 0.3;
}

/* Floating Badges */
.about-floating-badges {
    position: absolute;
    top: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    z-index: 2;
}

.floating-badge-item {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    padding: 16px 20px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 12px;
    animation: float 3s ease-in-out infinite;
}

.badge-iso {
    animation-delay: 0s;
}

.badge-year {
    animation-delay: 0.5s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.badge-icon-wrapper {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.badge-content strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 2px;
}

.badge-content span {
    display: block;
    font-size: 0.8rem;
    color: var(--secondary);
}

/* Experience Badge */
.experience-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    padding: 24px 28px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 61, 130, 0.4);
    display: flex;
    align-items: center;
    gap: 16px;
    z-index: 2;
}

.exp-number {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    line-height: 1;
}

.exp-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: white;
    line-height: 1.3;
}

/* Content Section */
.about-content-section {
    padding-left: 20px;
}

.about-description {
    margin-bottom: 40px;
}

.lead-text {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark);
    line-height: 1.7;
    margin-bottom: 20px;
}

.body-text {
    font-size: 1rem;
    color: var(--secondary);
    line-height: 1.8;
}

/* Stats Row */
.about-stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.stat-box {
    background: white;
    padding: 24px;
    border-radius: 16px;
    border: 1px solid rgba(0, 61, 130, 0.1);
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 61, 130, 0.15);
    border-color: var(--primary);
}

.stat-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, rgba(0, 61, 130, 0.1), rgba(255, 102, 0, 0.1));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
    flex-shrink: 0;
}

.stat-value {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 4px;
}

.stat-title {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--secondary);
}

/* Core Values */
.about-values {
    margin-bottom: 40px;
}

.values-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 24px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.value-item {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: white;
    border-radius: 16px;
    border: 1px solid rgba(0, 61, 130, 0.1);
    transition: all 0.3s ease;
}

.value-item:hover {
    transform: translateX(5px);
    box-shadow: 0 10px 30px rgba(0, 61, 130, 0.1);
    border-color: var(--primary);
}

.value-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: white;
    flex-shrink: 0;
}

.value-content h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 6px;
}

.value-content p {
    font-size: 0.9rem;
    color: var(--secondary);
    margin: 0;
    line-height: 1.5;
}

/* CTA Buttons */
.about-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-about-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    padding: 16px 32px;
    border-radius: 14px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 61, 130, 0.3);
}

.btn-about-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 61, 130, 0.4);
    color: white;
}

.btn-about-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: white;
    color: var(--primary);
    padding: 16px 32px;
    border-radius: 14px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    border: 2px solid var(--primary);
    transition: all 0.3s ease;
}

.btn-about-secondary:hover {
    background: linear-gradient(135deg, rgba(0, 61, 130, 0.1), rgba(255, 102, 0, 0.1));
    transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 991px) {
    .about-main-title {
        font-size: 2.2rem;
    }

    .about-stats-row {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .about-content-section {
        padding-left: 0;
        margin-top: 40px;
    }

    .about-floating-badges {
        top: 20px;
        right: 20px;
    }

    .experience-badge {
        bottom: 20px;
        left: 20px;
        padding: 20px 24px;
    }

    .exp-number {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .about-main-title {
        font-size: 1.9rem;
    }

    .about-main-subtitle {
        font-size: 1rem;
    }

    .about-stats-row {
        gap: 16px;
    }

    .stat-box {
        padding: 20px;
    }

    .about-cta {
        flex-direction: column;
    }

    .btn-about-primary,
    .btn-about-secondary {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .about-floating-badges {
        position: static;
        flex-direction: row;
        margin-top: 20px;
    }

    .experience-badge {
        position: static;
        margin-top: 20px;
        justify-content: center;
    }

    .floating-badge-item {
        flex: 1;
    }
}


/* About Content Wrapper */
.about-content-wrapper {
    padding-right: 30px;
}

.about-top-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(0, 61, 130, 0.1), rgba(255, 102, 0, 0.1));
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--primary);
    margin-bottom: 24px;
    border: 2px solid rgba(0, 61, 130, 0.15);
}

.about-heading {
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--dark);
    line-height: 1.2;
    margin-bottom: 24px;
}

.heading-highlight {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-intro {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--dark);
    line-height: 1.7;
    margin-bottom: 16px;
}

.about-description {
    font-size: 1rem;
    color: var(--secondary);
    line-height: 1.8;
    margin-bottom: 32px;
}

/* Features List */
.about-features-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 36px;
}

.feature-item-inline {
    display: flex;
    align-items: center;
    gap: 14px;
}

.feature-check {
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.feature-item-inline span {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark);
}

/* Action Buttons */
.about-action-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-about-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 14px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-about-cta.primary {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    box-shadow: 0 8px 25px rgba(0, 61, 130, 0.3);
}

.btn-about-cta.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 61, 130, 0.4);
    color: white;
}

.btn-about-cta.secondary {
    background: white;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-about-cta.secondary:hover {
    background: linear-gradient(135deg, rgba(0, 61, 130, 0.1), rgba(255, 102, 0, 0.1));
    transform: translateY(-3px);
}

/* Visual Wrapper */
.about-visual-wrapper {
    position: relative;
}

.about-image-box {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.about-image-box img {
    width: 100%;
    display: block;
}

.image-overlay-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 61, 130, 0.3) 100%);
}

/* Stats Cards */
.about-stats-cards {
    position: absolute;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.stats-card {
    background: white;
    padding: 20px 24px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 16px;
    min-width: 180px;
    animation: float 3s ease-in-out infinite;
}

.card-1 {
    top: 30px;
    right: -30px;
    animation-delay: 0s;
}

.card-2 {
    top: 140px;
    right: -30px;
    animation-delay: 0.5s;
}

.card-3 {
    bottom: 30px;
    left: -30px;
    animation-delay: 1s;
}

.stats-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.stats-number {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.stats-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--secondary);
}

/* Decorative Dots */
.about-decoration-dots {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100px;
    height: 100px;
    background-image: radial-gradient(circle, var(--primary) 2px, transparent 2px);
    background-size: 20px 20px;
    opacity: 0.2;
    z-index: -1;
}

/* Why Choose Us Section */
.about-why-section {
    margin-top: 80px;
    padding-top: 60px;
    border-top: 1px solid rgba(0, 61, 130, 0.1);
}

.why-title {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 50px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.why-card {
    background: white;
    padding: 32px 24px;
    border-radius: 20px;
    border: 1px solid rgba(0, 61, 130, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.why-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 61, 130, 0.15);
    border-color: var(--primary);
}

.why-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    margin: 0 auto 20px;
}

.why-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
}

.why-card p {
    font-size: 0.95rem;
    color: var(--secondary);
    line-height: 1.6;
    margin: 0;
}

/* Responsive */
@media (max-width: 991px) {
    .about-heading {
        font-size: 2.5rem;
    }

    .about-content-wrapper {
        padding-right: 0;
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .stats-card {
        min-width: 160px;
    }

    .card-1, .card-2 {
        right: 0;
    }

    .card-3 {
        left: 0;
    }
}

@media (max-width: 768px) {
    .about-heading {
        font-size: 2rem;
    }

    .about-intro {
        font-size: 1.05rem;
    }

    .why-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .about-action-buttons {
        flex-direction: column;
    }

    .btn-about-cta {
        width: 100%;
        justify-content: center;
    }

    .about-stats-cards {
        position: static;
        flex-direction: row;
        margin-top: 20px;
        overflow-x: auto;
    }

    .stats-card {
        min-width: 150px;
    }

    .card-1, .card-2, .card-3 {
        position: static;
    }
}

@media (max-width: 576px) {
    .about-why-section {
        margin-top: 60px;
        padding-top: 40px;
    }

    .why-title {
        font-size: 1.8rem;
    }
}


/* ==================== ABOUT PAGE SPECIFIC STYLES ==================== */

/* Page Header */
.page-header {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    position: relative;
    overflow: hidden;
}

.header-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
}

.breadcrumb {
    justify-content: center;
    margin-bottom: 20px;
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.breadcrumb-item.active {
    color: white;
}

.page-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 16px;
    color: white;
}

.page-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
}

.header-decoration {
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    /* height: 80px; */
    background: white;
    /* clip-path: polygon(0 50%, 100% 0, 100% 100%, 0 100%); */
}

/* Company Overview */
.company-overview {
    padding: 80px 0;
}

.section-badge-about {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(0, 61, 130, 0.1), rgba(255, 102, 0, 0.1));
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--primary);
    margin-bottom: 20px;
    border: 2px solid rgba(0, 61, 130, 0.15);
}

.section-title-about {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 24px;
}

.lead-paragraph {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--dark);
    line-height: 1.7;
    margin-bottom: 16px;
}

.body-paragraph {
    font-size: 1rem;
    color: var(--secondary);
    line-height: 1.8;
    margin-bottom: 24px;
}

.company-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    color: var(--dark);
}

.highlight-item i {
    color: var(--primary);
    font-size: 1.2rem;
}

.overview-image {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.overview-image img {
    width: 100%;
    display: block;
}

.image-badge {
    position: absolute;
    background: white;
    padding: 16px 20px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 12px;
}

.badge-1 {
    top: 30px;
    right: 30px;
}

.badge-2 {
    bottom: 30px;
    left: 30px;
}

.image-badge i {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.image-badge strong {
    display: block;
    font-size: 0.95rem;
    color: var(--dark);
}

.image-badge span {
    display: block;
    font-size: 0.8rem;
    color: var(--secondary);
}

/* Stats Section */
.stats-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(0, 61, 130, 0.05), rgba(255, 102, 0, 0.05));
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 61, 130, 0.15);
}

.stat-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    margin: 0 auto 20px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--secondary);
}

/* Mission & Vision */
.mission-vision {
    padding: 80px 0;
}

.mv-card {
    background: white;
    padding: 40px;
    border-radius: 24px;
    border: 1px solid rgba(0, 61, 130, 0.1);
    height: 100%;
    transition: all 0.3s ease;
}

.mv-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 61, 130, 0.15);
}

.mv-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.5rem;
    margin-bottom: 24px;
}

.mv-card h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 16px;
}

.mv-card p {
    font-size: 1rem;
    color: var(--secondary);
    line-height: 1.8;
    margin: 0;
}

/* Core Values */
.core-values {
    padding: 80px 0;
    background: #f8fafc;
}

.section-header-center {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle-about {
    font-size: 1.1rem;
    color: var(--secondary);
    max-width: 650px;
    margin: 0 auto;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.value-card {
    background: white;
    padding: 36px 28px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(0, 61, 130, 0.1);
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 61, 130, 0.15);
    border-color: var(--primary);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    margin: 0 auto 20px;
}

.value-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
}

.value-card p {
    font-size: 0.95rem;
    color: var(--secondary);
    line-height: 1.6;
    margin: 0;
}

/* Why Choose Us */
.why-choose {
    padding: 80px 0;
}

.why-card-about {
    background: white;
    padding: 36px 28px;
    border-radius: 20px;
    border: 1px solid rgba(0, 61, 130, 0.1);
    position: relative;
    transition: all 0.3s ease;
    height: 100%;
}

.why-card-about:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 61, 130, 0.15);
    border-color: var(--primary);
}

.why-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 3rem;
    font-weight: 800;
    color: rgba(0, 61, 130, 0.05);
}

.why-icon-about {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.why-card-about h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
}

.why-card-about p {
    font-size: 0.95rem;
    color: var(--secondary);
    line-height: 1.6;
    margin: 0;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary), var(--accent));
}

.cta-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 12px;
}

.cta-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.cta-actions {
    display: flex;
    gap: 16px;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 14px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-cta.primary {
    background: white;
    color: var(--primary);
}

.btn-cta.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 255, 255, 0.3);
}

.btn-cta.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid white;
}

.btn-cta.secondary:hover {
    background: white;
    color: var(--primary);
}

/* Responsive */
@media (max-width: 991px) {
    .page-title {
        font-size: 2.5rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .company-highlights {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-title {
        font-size: 2rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .cta-box {
        flex-direction: column;
        text-align: center;
    }

    .cta-actions {
        flex-direction: column;
        width: 100%;
    }

    .btn-cta {
        width: 100%;
        justify-content: center;
    }

    .image-badge {
        padding: 12px 16px;
    }

    .badge-1 {
        top: 20px;
        right: 20px;
    }

    .badge-2 {
        bottom: 20px;
        left: 20px;
    }
}


/* ===== GALLERY PAGE STYLES ===== */

/* Gallery Hero Section */
.gallery-hero {
    position: relative;
    height: 50vh;
    min-height: 400px;
    margin-top: 80px;
    background: linear-gradient(135deg, #003d82 0%, #0056b3 50%, #ff6600 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.gallery-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('images/bg2.jpg') center/cover;
    opacity: 0.2;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 61, 130, 0.8), rgba(255, 102, 0, 0.6));
    z-index: 1;
}

.gallery-hero .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    padding: 2rem;
}

.gallery-hero .hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    animation: fadeInUp 0.8s ease;
}

.gallery-hero .hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    opacity: 0.95;
    animation: fadeInUp 1s ease;
}

/* Gallery Section */
.gallery-section {
    padding: 5rem 2rem;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.gallery-container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

/* Gallery Filters */
.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.8rem 2rem;
    border: 2px solid #003d82;
    background: white;
    color: #003d82;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.filter-btn:hover {
    background: linear-gradient(135deg, #003d82, #0056b3);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 61, 130, 0.3);
}

.filter-btn.active {
    background: linear-gradient(135deg, #003d82, #ff6600);
    color: white;
    border-color: transparent;
    box-shadow: 0 5px 20px rgba(255, 102, 0, 0.4);
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
    width: 100%;
}

.gallery-item {
    opacity: 1;
    transform: scale(1);
    transition: all 0.5s ease;
}

.gallery-item.hide {
    opacity: 0;
    transform: scale(0.8);
    position: absolute;
    pointer-events: none;
}

.gallery-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    background: white;
    height: 350px;
}

.gallery-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 61, 130, 0.2);
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-card:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 61, 130, 0.95), rgba(255, 102, 0, 0.7));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
    padding: 2rem;
    text-align: center;
}

.gallery-card:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay h3 {
    color: white;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    transform: translateY(20px);
    transition: transform 0.4s ease 0.1s;
}

.gallery-card:hover .gallery-overlay h3 {
    transform: translateY(0);
}

.gallery-overlay p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    margin-bottom: 1.5rem;
    transform: translateY(20px);
    transition: transform 0.4s ease 0.2s;
}

.gallery-card:hover .gallery-overlay p {
    transform: translateY(0);
}

.view-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid white;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    transform: translateY(20px);
    transition: all 0.4s ease 0.3s;
}

.gallery-card:hover .view-btn {
    transform: translateY(0);
}

.view-btn:hover {
    background: white;
    color: #003d82;
    transform: scale(1.1) translateY(0);
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 10000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    animation: fadeIn 0.3s ease;
}

.lightbox.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content {
    max-width: 90%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: zoomIn 0.3s ease;
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 50px;
    font-size: 50px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10001;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    backdrop-filter: blur(10px);
}

.lightbox-close:hover {
    transform: rotate(90deg);
    background: rgba(255, 102, 0, 0.8);
}

.lightbox-caption {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 1.2rem;
    text-align: center;
    background: rgba(0, 61, 130, 0.8);
    padding: 1rem 2rem;
    border-radius: 50px;
    backdrop-filter: blur(10px);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    color: white;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-prev {
    left: 30px;
}

.lightbox-next {
    right: 30px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: linear-gradient(135deg, #003d82, #ff6600);
    border-color: transparent;
    transform: translateY(-50%) scale(1.1);
}

/* Animations */
@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .gallery-hero {
        margin-top: 70px;
        height: 40vh;
        min-height: 300px;
    }

    .gallery-hero .hero-title {
        font-size: 2.5rem;
    }

    .gallery-hero .hero-subtitle {
        font-size: 1.2rem;
    }

    .gallery-section {
        padding: 3rem 1rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1.5rem;
    }

    .gallery-card {
        height: 300px;
    }

    .gallery-filters {
        gap: 0.5rem;
    }

    .filter-btn {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }

    .lightbox-close {
        top: 20px;
        right: 20px;
        font-size: 40px;
        width: 40px;
        height: 40px;
    }

    .lightbox-prev,
    .lightbox-next {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }

    .lightbox-caption {
        font-size: 1rem;
        padding: 0.8rem 1.5rem;
        bottom: 20px;
    }
}

@media (max-width: 480px) {
    .gallery-hero {
        margin-top: 60px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .gallery-hero .hero-title {
        font-size: 2rem;
        letter-spacing: 1px;
    }

    .gallery-hero .hero-subtitle {
        font-size: 1rem;
    }

    .gallery-section {
        padding: 2rem 1rem;
    }

    .gallery-overlay h3 {
        font-size: 1.5rem;
    }

    .gallery-overlay p {
        font-size: 0.9rem;
    }
}


/* ==================== GALLERY PAGE - MODERN STYLES ==================== */

/* Gallery Showcase Section */
.gallery-showcase {
    padding: 80px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 50%, #f8fafc 100%);
}

/* Gallery Filter Tabs */
.gallery-filter-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.gallery-tab {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.9rem 1.8rem;
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: #475569;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.gallery-tab i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.gallery-tab:hover {
    transform: translateY(-3px);
    border-color: var(--primary);
    color: var(--primary);
    box-shadow: 0 8px 25px rgba(0, 61, 130, 0.12);
}

.gallery-tab:hover i {
    transform: scale(1.1);
}

.gallery-tab.active {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: white;
    border-color: transparent;
    box-shadow: 0 8px 30px rgba(255, 102, 0, 0.35);
}

.gallery-tab.active i {
    color: white;
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
}

.gallery-item {
    opacity: 1;
    transform: scale(1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item.hidden {
    opacity: 0;
    transform: scale(0.8);
    position: absolute;
    pointer-events: none;
}

/* Gallery Card */
.gallery-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: white;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.gallery-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 60px rgba(0, 61, 130, 0.2);
}

.gallery-image {
    position: relative;
    height: 380px;
    overflow: hidden;
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-card:hover .gallery-image img {
    transform: scale(1.12);
}

/* Gallery Overlay */
.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to top,
        rgba(0, 61, 130, 0.95) 0%,
        rgba(0, 61, 130, 0.7) 40%,
        rgba(255, 102, 0, 0.6) 100%
    );
    display: flex;
    align-items: flex-end;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-card:hover .gallery-overlay {
    opacity: 1;
}

.overlay-content {
    width: 100%;
    transform: translateY(30px);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.1s;
}

.gallery-card:hover .overlay-content {
    transform: translateY(0);
}

.gallery-category {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 0.8rem;
}

.gallery-title {
    font-family: 'Sora', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.gallery-desc {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.2rem;
    line-height: 1.5;
}

.gallery-zoom-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: white;
    color: var(--primary);
    border: none;
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-zoom-btn:hover {
    background: var(--accent);
    color: white;
    transform: scale(1.05);
}

/* Gallery Lightbox Modal */
.gallery-lightbox-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
}

.gallery-lightbox-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.lightbox-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
}

.lightbox-container {
    position: relative;
    z-index: 1;
    max-width: 90%;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: zoomIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.lightbox-image {
    max-width: 100%;
    max-height: 70vh;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.lightbox-info {
    background: linear-gradient(135deg, rgba(0, 61, 130, 0.95), rgba(255, 102, 0, 0.9));
    backdrop-filter: blur(20px);
    padding: 1.5rem 2.5rem;
    border-radius: 15px;
    margin-top: 1.5rem;
    text-align: center;
    max-width: 600px;
}

.lightbox-info h3 {
    font-family: 'Sora', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.lightbox-info p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.lightbox-close {
    position: absolute;
    top: -60px;
    right: 0;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: white;
    font-size: 1.3rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-close:hover {
    background: var(--accent);
    border-color: var(--accent);
    transform: rotate(90deg) scale(1.1);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 55px;
    height: 55px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: white;
    font-size: 1.3rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-prev {
    left: -80px;
}

.lightbox-next {
    right: -80px;
}

.lightbox-nav:hover {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-color: transparent;
    transform: translateY(-50%) scale(1.1);
}

.lightbox-counter {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 61, 130, 0.9);
    backdrop-filter: blur(10px);
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    color: white;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.85);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Gallery Responsive */
@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 1.5rem;
    }
    
    .lightbox-prev {
        left: -60px;
    }
    
    .lightbox-next {
        right: -60px;
    }
}

@media (max-width: 768px) {
    .gallery-showcase {
        padding: 60px 0;
    }
    
    .gallery-filter-tabs {
        gap: 0.5rem;
    }
    
    .gallery-tab {
        padding: 0.7rem 1.2rem;
        font-size: 0.85rem;
    }
    
    .gallery-tab span {
        display: none;
    }
    
    .gallery-tab i {
        margin: 0;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .gallery-image {
        height: 320px;
    }
    
    .lightbox-nav {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .lightbox-prev {
        left: 10px;
    }
    
    .lightbox-next {
        right: 10px;
    }
    
    .lightbox-close {
        top: 10px;
        right: 10px;
        width: 45px;
        height: 45px;
    }
    
    .lightbox-info {
        padding: 1rem 1.5rem;
        margin: 1rem;
    }
    
    .lightbox-info h3 {
        font-size: 1.3rem;
    }
    
    .lightbox-counter {
        bottom: 20px;
    }
}

@media (max-width: 480px) {
    .gallery-tab {
        padding: 0.6rem 1rem;
    }
    
    .gallery-image {
        height: 280px;
    }
    
    .gallery-title {
        font-size: 1.3rem;
    }
    
    .gallery-desc {
        font-size: 0.9rem;
    }
}


/* ==================== CONTACT PAGE - MODERN STYLES ==================== */

/* Contact Cards Section */
.contact-cards-section {
    padding: 80px 0 40px;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    margin-top: -40px;
    position: relative;
    z-index: 10;
}

.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.contact-info-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 61, 130, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.contact-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.contact-info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 61, 130, 0.15);
}

.contact-info-card:hover::before {
    transform: scaleX(1);
}

.card-icon-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.contact-info-card:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
}

.icon-ring {
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 2px dashed rgba(0, 61, 130, 0.2);
    border-radius: 25px;
    animation: spin 20s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.contact-info-card h3 {
    font-family: 'Sora', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.contact-info-card > p {
    font-size: 0.9rem;
    color: #64748b;
    margin-bottom: 1rem;
}

.contact-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.6rem 1rem;
    background: linear-gradient(135deg, rgba(0, 61, 130, 0.08), rgba(255, 102, 0, 0.08));
    border-radius: 10px;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-link:hover {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    transform: scale(1.02);
}

.contact-link i {
    font-size: 0.85rem;
}

.contact-address p {
    font-size: 0.9rem;
    color: #475569;
    line-height: 1.7;
    margin: 0;
}

.working-hours {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px dashed #e2e8f0;
    font-size: 0.85rem;
}

.hours-row:last-child {
    border-bottom: none;
}

.hours-row span:first-child {
    color: #64748b;
}

.hours-row span:last-child {
    color: var(--primary);
    font-weight: 600;
}

/* Contact Main Section */
.contact-main-section {
    padding: 60px 0 80px;
    background: #ffffff;
}

/* Contact Form Wrapper */
.contact-form-wrapper {
    background: white;
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 61, 130, 0.08);
}

.form-header {
    margin-bottom: 2rem;
}

.form-title {
    font-family: 'Sora', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0.8rem 0 0.5rem;
}

.form-subtitle {
    font-size: 1rem;
    color: #64748b;
    margin: 0;
}

/* Modern Form Styles */
.contact-form-modern .form-group-modern {
    margin-bottom: 0.5rem;
}

.contact-form-modern label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.5rem;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrapper i {
    position: absolute;
    left: 1rem;
    color: #94a3b8;
    font-size: 1rem;
    transition: color 0.3s ease;
    z-index: 1;
}

.input-wrapper input,
.input-wrapper select,
.input-wrapper textarea {
    width: 100%;
    padding: 0.9rem 1rem 0.9rem 3rem;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: #1e293b;
    background: #f8fafc;
    transition: all 0.3s ease;
}

.input-wrapper input:focus,
.input-wrapper select:focus,
.input-wrapper textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: white;
    box-shadow: 0 0 0 4px rgba(0, 61, 130, 0.1);
}

.input-wrapper input:focus + i,
.input-wrapper:focus-within i {
    color: var(--primary);
}

.input-wrapper input::placeholder,
.input-wrapper textarea::placeholder {
    color: #94a3b8;
}

.textarea-wrapper {
    align-items: flex-start;
}

.textarea-wrapper i {
    top: 1rem;
}

.textarea-wrapper textarea {
    min-height: 120px;
    resize: vertical;
}

.input-wrapper select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2394a3b8' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
}

.btn-submit-modern {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    border: none;
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.btn-submit-modern:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 102, 0, 0.4);
}

.btn-submit-modern i {
    transition: transform 0.3s ease;
}

.btn-submit-modern:hover i {
    transform: translateX(5px);
}

/* Map Wrapper */
.contact-map-wrapper {
    height: 100%;
}

.map-header {
    margin-bottom: 1.5rem;
}

.map-title {
    font-family: 'Sora', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0.8rem 0 0.5rem;
}

.map-subtitle {
    font-size: 1rem;
    color: #64748b;
    margin: 0;
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    margin-bottom: 1.5rem;
}

.map-container iframe {
    display: block;
}

/* Quick Contact Box */
.quick-contact-box {
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    border-radius: 20px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.quick-contact-box h4 {
    font-family: 'Sora', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.quick-contact-items {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.quick-contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem 1rem;
    background: white;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.quick-contact-item:hover {
    border-color: var(--primary);
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(0, 61, 130, 0.1);
}

.qc-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    flex-shrink: 0;
}

.qc-info {
    display: flex;
    flex-direction: column;
}

.qc-info span {
    font-size: 0.8rem;
    color: #64748b;
}

.qc-info strong {
    font-size: 0.95rem;
    color: #1e293b;
    font-weight: 600;
}

/* Contact Social Box */
.contact-social-box {
    background: linear-gradient(135deg, var(--primary), #0056b3);
    border-radius: 20px;
    padding: 1.5rem;
    text-align: center;
}

.contact-social-box h4 {
    font-family: 'Sora', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.contact-social-links {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
}

.social-btn {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-btn:hover {
    background: var(--accent);
    transform: translateY(-5px);
    color: white;
}

/* Why Contact Section */
.why-contact-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.why-contact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.why-contact-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 61, 130, 0.08);
    transition: all 0.4s ease;
}

.why-contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 61, 130, 0.12);
}

.wc-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(0, 61, 130, 0.1), rgba(255, 102, 0, 0.1));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--primary);
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.why-contact-card:hover .wc-icon {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    transform: scale(1.1);
}

.why-contact-card h4 {
    font-family: 'Sora', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.8rem;
}

.why-contact-card p {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* Contact Page Responsive */
@media (max-width: 1200px) {
    .contact-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .why-contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .contact-form-wrapper {
        margin-bottom: 2rem;
    }
}

@media (max-width: 768px) {
    .contact-cards-section {
        padding: 60px 0 30px;
    }
    
    .contact-cards-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .contact-info-card {
        padding: 1.5rem;
    }
    
    .contact-form-wrapper {
        padding: 1.5rem;
    }
    
    .form-title,
    .map-title {
        font-size: 1.6rem;
    }
    
    .why-contact-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .why-contact-card {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .contact-link {
        font-size: 0.8rem;
        padding: 0.5rem 0.8rem;
    }
    
    .qc-info strong {
        font-size: 0.85rem;
    }
    
    .social-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}


/* ==================== PRODUCTS PAGE - MODERN STYLES ==================== */

/* Product Stats Section */
.product-stats-section {
    padding: 60px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    margin-top: -40px;
    position: relative;
    z-index: 10;
}

.product-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.product-stat-card {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    background: white;
    padding: 1.5rem 2rem;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 61, 130, 0.08);
    transition: all 0.3s ease;
}

.product-stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 61, 130, 0.12);
}

.stat-icon-box {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    flex-shrink: 0;
}

.stat-content .stat-number {
    font-family: 'Sora', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: #1e293b;
    line-height: 1;
}

.stat-content .stat-label {
    font-size: 0.9rem;
    color: #64748b;
    margin-top: 0.3rem;
}

/* Featured Product Section */
.featured-product-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.featured-product-image {
    position: relative;
}

.featured-product-image img {
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.featured-product-image .featured-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.2rem;
    background: linear-gradient(135deg, var(--accent), #ff8c00);
    color: white;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: 0 8px 25px rgba(255, 102, 0, 0.4);
}

.featured-product-image .image-decoration {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, rgba(0, 61, 130, 0.1), rgba(255, 102, 0, 0.1));
    border-radius: 24px;
    z-index: -1;
}

.featured-product-content {
    padding-left: 2rem;
}

.featured-title {
    font-family: 'Sora', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: #1e293b;
    margin: 1rem 0;
    line-height: 1.2;
}

.featured-description {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.featured-features {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.feature-item .feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(0, 61, 130, 0.1), rgba(255, 102, 0, 0.1));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--primary);
    flex-shrink: 0;
}

.feature-item .feature-text h4 {
    font-family: 'Sora', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.2rem;
}

.feature-item .feature-text p {
    font-size: 0.9rem;
    color: #64748b;
    margin: 0;
}

.featured-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-featured-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-featured-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 102, 0, 0.4);
    color: white;
}

.btn-featured-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 1rem 2rem;
    background: white;
    color: var(--primary);
    border: 2px solid var(--primary);
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-featured-secondary:hover {
    background: var(--primary);
    color: white;
}

/* All Products Section */
.all-products-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 50%, #f8fafc 100%);
}

/* Product Filter Tabs */
.product-filter-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.product-tab {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.9rem 1.8rem;
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: #475569;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.product-tab:hover {
    transform: translateY(-3px);
    border-color: var(--primary);
    color: var(--primary);
}

.product-tab.active {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    border-color: transparent;
    box-shadow: 0 8px 30px rgba(255, 102, 0, 0.35);
}

/* Products Grid Modern */
.products-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 2rem;
}

.product-card-modern {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 61, 130, 0.06);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.product-card-modern:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 60px rgba(0, 61, 130, 0.15);
}

.product-card-modern.hidden {
    display: none;
}

.product-image-wrapper {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.product-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card-modern:hover .product-image-wrapper img {
    transform: scale(1.1);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 61, 130, 0.9), transparent 60%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card-modern:hover .product-overlay {
    opacity: 1;
}

.overlay-btn {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.3rem;
    text-decoration: none;
    transform: scale(0);
    transition: all 0.3s ease 0.1s;
}

.product-card-modern:hover .overlay-btn {
    transform: scale(1);
}

.overlay-btn:hover {
    background: var(--accent);
    color: white;
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-badge.featured {
    background: linear-gradient(135deg, var(--accent), #ff8c00);
    color: white;
}

.product-badge.custom {
    background: linear-gradient(135deg, var(--primary), #0056b3);
    color: white;
}

.product-info {
    padding: 1.5rem;
}

.product-category {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    background: linear-gradient(135deg, rgba(0, 61, 130, 0.1), rgba(255, 102, 0, 0.1));
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.8rem;
}

.product-name {
    font-family: 'Sora', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.product-desc {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.product-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.2rem;
}

.product-tags span {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.3rem 0.7rem;
    background: #f1f5f9;
    border-radius: 6px;
    font-size: 0.8rem;
    color: #475569;
}

.product-tags span i {
    color: var(--accent);
    font-size: 0.7rem;
}

.product-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    width: 100%;
    justify-content: center;
}

.product-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 102, 0, 0.35);
    color: white;
}

/* Industries Section */
.industries-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary) 0%, #0056b3 100%);
}

.industries-section .section-badge-about {
    background: rgba(255, 255, 255, 0.15);
    color: white;
}

.industries-section .section-title-about {
    color: white;
}

.industries-section .section-subtitle-about {
    color: rgba(255, 255, 255, 0.85);
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.industry-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.industry-card:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-8px);
}

.industry-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent), #ff8c00);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    margin: 0 auto 1rem;
}

.industry-card h4 {
    font-family: 'Sora', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.industry-card p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* Why Products Section - Premium Design */
.why-products-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 50%, #f8fafc 100%);
    position: relative;
    overflow: hidden;
}

.why-products-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 61, 130, 0.03), rgba(255, 102, 0, 0.03));
    border-radius: 0 0 0 100px;
    z-index: 0;
}

.why-products-content {
    padding-right: 3rem;
    position: relative;
    z-index: 1;
}

.why-products-content .section-title-about {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.why-intro {
    font-size: 1.15rem;
    color: #64748b;
    line-height: 1.9;
    margin-bottom: 2.5rem;
}

.why-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.why-item {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    padding: 1.5rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 61, 130, 0.06);
    transition: all 0.3s ease;
}

.why-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 40px rgba(0, 61, 130, 0.1);
    border-color: rgba(255, 102, 0, 0.2);
}

.why-item .why-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.why-item .why-icon i {
    font-size: 1.3rem;
    color: white;
}

.why-item .why-text h4 {
    font-family: 'Sora', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.4rem;
}

.why-item .why-text p {
    font-size: 0.95rem;
    color: #64748b;
    margin: 0;
    line-height: 1.6;
}

.why-products-image {
    position: relative;
    z-index: 1;
}

.why-products-image img {
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 30px 80px rgba(0, 61, 130, 0.2);
}

.why-products-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 20px;
    z-index: -1;
    opacity: 0.3;
}

.why-products-image::after {
    content: '';
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, var(--accent), #ff8c00);
    border-radius: 30px;
    z-index: -1;
    opacity: 0.2;
}

.floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1.2rem 1.8rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    font-weight: 700;
    font-size: 0.95rem;
    color: #1e293b;
    z-index: 10;
    border: 1px solid rgba(0, 61, 130, 0.08);
}

.floating-card i {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: white;
}

.floating-card.card-1 {
    top: 30px;
    right: -30px;
    animation: floatCard 4s ease-in-out infinite;
}

.floating-card.card-2 {
    bottom: 50px;
    left: -30px;
    animation: floatCard 4s ease-in-out infinite 1.5s;
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(2deg); }
}

/* Products Page Responsive */
@media (max-width: 1200px) {
    .product-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .industries-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .featured-product-content {
        padding-left: 0;
        margin-top: 2rem;
    }
    
    .featured-title {
        font-size: 2rem;
    }
    
    .products-grid-modern {
        grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    }
    
    .why-products-content {
        padding-right: 0;
        margin-bottom: 3rem;
    }
    
    .why-products-content .section-title-about {
        font-size: 2rem;
    }
    
    .why-products-image::before,
    .why-products-image::after {
        display: none;
    }
}

@media (max-width: 768px) {
    .product-stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .product-stat-card {
        padding: 1.2rem 1.5rem;
    }
    
    .product-filter-tabs {
        gap: 0.5rem;
    }
    
    .product-tab {
        padding: 0.7rem 1.2rem;
        font-size: 0.85rem;
    }
    
    .product-tab span {
        display: none;
    }
    
    .products-grid-modern {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .industry-card {
        padding: 1.5rem 1rem;
    }
    
    .floating-card {
        padding: 0.8rem 1.2rem;
        font-size: 0.85rem;
    }
    
    .floating-card i {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .floating-card.card-1 {
        top: 15px;
        right: 10px;
    }
    
    .floating-card.card-2 {
        bottom: 15px;
        left: 10px;
    }
    
    .why-item {
        padding: 1.2rem;
    }
    
    .why-item .why-icon {
        width: 45px;
        height: 45px;
    }
    
    .why-item .why-icon i {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .featured-title {
        font-size: 1.6rem;
    }
    
    .featured-actions {
        flex-direction: column;
    }
    
    .btn-featured-primary,
    .btn-featured-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .industries-grid {
        grid-template-columns: 1fr;
    }
}


/* ==================== PRODUCT DETAIL PAGE STYLES ==================== */

/* Breadcrumb Section */
.product-detail-breadcrumb {
    padding: 120px 0 20px;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.product-detail-breadcrumb .breadcrumb {
    margin: 0;
    padding: 0;
    background: none;
}

.product-detail-breadcrumb .breadcrumb-item a {
    color: var(--primary);
    text-decoration: none;
}

.product-detail-breadcrumb .breadcrumb-item.active {
    color: #64748b;
}

/* Product Hero Section */
.product-detail-hero {
    padding: 40px 0 80px;
    background: #ffffff;
}

/* Product Gallery */
.product-gallery {
    position: sticky;
    top: 100px;
}

.main-image-container {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    margin-bottom: 1rem;
}

.main-product-image {
    width: 100%;
    height: 450px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.main-image-container:hover .main-product-image {
    transform: scale(1.05);
}

.main-image-container .image-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1.2rem;
    background: linear-gradient(135deg, var(--accent), #ff8c00);
    color: white;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: 0 8px 25px rgba(255, 102, 0, 0.4);
}

.zoom-btn {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--primary);
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.zoom-btn:hover {
    background: var(--primary);
    color: white;
    transform: scale(1.1);
}

.thumbnail-gallery {
    display: flex;
    gap: 1rem;
}

.thumbnail {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.3s ease;
    opacity: 0.7;
}

.thumbnail:hover,
.thumbnail.active {
    border-color: var(--primary);
    opacity: 1;
    transform: translateY(-3px);
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Product Detail Info */
.product-detail-info {
    padding-left: 2rem;
}

.product-badges {
    display: flex;
    gap: 0.8rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.badge-category,
.badge-stock {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

.badge-category {
    background: linear-gradient(135deg, rgba(0, 61, 130, 0.1), rgba(255, 102, 0, 0.1));
    color: var(--primary);
}

.badge-stock {
    background: rgba(34, 197, 94, 0.1);
    color: #16a34a;
}

.product-detail-title {
    font-family: 'Sora', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: #1e293b;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.product-rating-box {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.product-rating-box .stars {
    display: flex;
    gap: 0.2rem;
}

.product-rating-box .stars i {
    color: #fbbf24;
    font-size: 1rem;
}

.rating-text {
    font-size: 0.9rem;
    color: #64748b;
}

.product-detail-desc {
    font-size: 1.05rem;
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.product-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1rem;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.highlight-item i {
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.9rem;
}

.highlight-item span {
    font-size: 0.9rem;
    font-weight: 600;
    color: #1e293b;
}

.product-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.btn-get-quote,
.btn-call-now,
.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 1rem 1.8rem;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-get-quote {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    flex: 1;
    justify-content: center;
}

.btn-get-quote:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 102, 0, 0.4);
    color: white;
}

.btn-call-now {
    background: white;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-call-now:hover {
    background: var(--primary);
    color: white;
}

.btn-whatsapp {
    background: #25d366;
    color: white;
    padding: 1rem;
}

.btn-whatsapp:hover {
    background: #128c7e;
    color: white;
    transform: translateY(-3px);
}

.product-meta {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    border-radius: 16px;
    flex-wrap: wrap;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    flex: 1;
    min-width: 150px;
}

.meta-item i {
    width: 45px;
    height: 45px;
    background: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.1rem;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.meta-item div strong {
    display: block;
    font-size: 0.9rem;
    color: #1e293b;
}

.meta-item div span {
    font-size: 0.8rem;
    color: #64748b;
}

/* Product Tabs Section */
.product-tabs-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.product-tabs-wrapper {
    background: white;
    border-radius: 24px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

.product-tabs-nav {
    display: flex;
    background: linear-gradient(135deg, var(--primary), #0056b3);
    padding: 0;
    overflow-x: auto;
}

.tab-btn {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 1.2rem 2rem;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    position: relative;
}

.tab-btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--accent);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.tab-btn:hover {
    color: white;
    background: rgba(255, 255, 255, 0.1);
}

.tab-btn.active {
    color: white;
    background: rgba(255, 255, 255, 0.15);
}

.tab-btn.active::after {
    transform: scaleX(1);
}

.product-tabs-content {
    padding: 2.5rem;
}

.tab-pane {
    display: none;
    animation: fadeIn 0.4s ease;
}

.tab-pane.active {
    display: block;
}

.tab-pane h3 {
    font-family: 'Sora', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1.5rem;
}

.tab-pane p {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 1rem;
}

/* Overview Features */
.overview-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.overview-feature {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.overview-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.overview-feature .feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.overview-feature .feature-content h4 {
    font-family: 'Sora', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.3rem;
}

.overview-feature .feature-content p {
    font-size: 0.9rem;
    color: #64748b;
    margin: 0;
}

/* Specifications Table */
.specs-table-wrapper {
    overflow-x: auto;
    margin-bottom: 1.5rem;
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
}

.specs-table tr {
    border-bottom: 1px solid #e2e8f0;
}

.specs-table tr:last-child {
    border-bottom: none;
}

.specs-table td {
    padding: 1rem 1.5rem;
}

.specs-table .spec-label {
    font-weight: 600;
    color: #1e293b;
    background: #f8fafc;
    width: 40%;
}

.specs-table .spec-value {
    color: #64748b;
}

.specs-note {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, rgba(0, 61, 130, 0.05), rgba(255, 102, 0, 0.05));
    border-radius: 12px;
    border-left: 4px solid var(--accent);
}

.specs-note i {
    color: var(--accent);
    margin-top: 0.2rem;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.feature-card {
    padding: 2rem;
    background: #f8fafc;
    border-radius: 16px;
    text-align: center;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--primary);
}

.feature-icon-box {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    margin: 0 auto 1.5rem;
}

.feature-card h4 {
    font-family: 'Sora', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.8rem;
}

.feature-card p {
    font-size: 0.9rem;
    color: #64748b;
    margin: 0;
    line-height: 1.6;
}

/* Applications Grid */
.applications-intro {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.applications-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.application-card {
    padding: 2rem;
    background: linear-gradient(135deg, #f8fafc, #ffffff);
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.application-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.app-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    margin-bottom: 1.2rem;
}

.application-card h4 {
    font-family: 'Sora', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.application-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.application-card ul li {
    padding: 0.4rem 0;
    font-size: 0.9rem;
    color: #64748b;
    position: relative;
    padding-left: 1.2rem;
}

.application-card ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
}

/* Related Products */
.related-products-section {
    padding: 80px 0;
    background: #ffffff;
}

.related-products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.related-product-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.06);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.related-product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.related-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.related-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.related-product-card:hover .related-image img {
    transform: scale(1.1);
}

.quick-view {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    text-decoration: none;
    transition: all 0.3s ease;
    opacity: 0;
}

.related-product-card:hover .quick-view {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

.related-info {
    padding: 1.5rem;
}

.related-category {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.related-info h4 {
    font-family: 'Sora', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0.5rem 0 1rem;
}

.related-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.related-btn:hover {
    color: var(--accent);
    gap: 0.8rem;
}

/* Product Lightbox */
.product-lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
}

.product-lightbox.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-lightbox .lightbox-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
}

.product-lightbox .lightbox-container {
    position: relative;
    z-index: 1;
    max-width: 90%;
    max-height: 90vh;
}

.product-lightbox .lightbox-image {
    max-width: 100%;
    max-height: 85vh;
    border-radius: 16px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.product-lightbox .lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-lightbox .lightbox-close:hover {
    background: var(--accent);
    border-color: var(--accent);
}

/* Product Detail Responsive */
@media (max-width: 1200px) {
    .applications-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .related-products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .product-detail-info {
        padding-left: 0;
        margin-top: 2rem;
    }
    
    .product-detail-title {
        font-size: 2rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .product-gallery {
        position: static;
    }
}

@media (max-width: 768px) {
    .product-detail-breadcrumb {
        padding: 100px 0 15px;
    }
    
    .main-product-image {
        height: 350px;
    }
    
    .thumbnail-gallery {
        justify-content: center;
    }
    
    .product-highlights {
        grid-template-columns: 1fr;
    }
    
    .product-actions {
        flex-direction: column;
    }
    
    .btn-get-quote,
    .btn-call-now {
        width: 100%;
        justify-content: center;
    }
    
    .btn-whatsapp {
        width: 100%;
        justify-content: center;
    }
    
    .product-meta {
        flex-direction: column;
        gap: 1rem;
    }
    
    .product-tabs-nav {
        flex-wrap: nowrap;
        overflow-x: auto;
    }
    
    .tab-btn {
        padding: 1rem 1.5rem;
        font-size: 0.85rem;
    }
    
    .tab-btn span {
        display: none;
    }
    
    .overview-features {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .applications-grid {
        grid-template-columns: 1fr;
    }
    
    .related-products-grid {
        grid-template-columns: 1fr;
    }
}


/* Product Name Link */
.product-name a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.product-name a:hover {
    color: var(--primary);
}
/* ==================== BLENDER PRODUCT DETAIL STYLES ==================== */
.blender-types-overview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 24px;
    margin: 32px 0;
}

.blender-type-card {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border: 1px solid rgba(0, 61, 130, 0.1);
    border-radius: 16px;
    padding: 24px;
    transition: all 0.3s ease;
}

.blender-type-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--accent);
}

.type-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.type-header i {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.type-header h4 {
    color: var(--primary);
    margin: 0;
    font-size: 1.2rem;
}

.type-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}

.benefit-tag {
    background: rgba(0, 61, 130, 0.1);
    color: var(--primary);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.spec-sections {
    space-y: 32px;
}

.spec-section {
    margin-bottom: 32px;
    background: white;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.spec-section h4 {
    color: var(--primary);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.3rem;
}

.spec-section h4 i {
    color: var(--accent);
}

.spec-section h5 {
    color: var(--secondary);
    margin-bottom: 16px;
    font-size: 1.1rem;
    border-bottom: 2px solid var(--accent);
    padding-bottom: 8px;
}

.specs-table thead th {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    font-weight: 600;
    text-align: center;
    padding: 12px;
}

.additional-features-section {
    margin-top: 40px;
    padding: 24px;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    border-radius: 16px;
}

.additional-features-section h4 {
    color: var(--primary);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.additional-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 16px;
}

.additional-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    background: white;
    padding: 12px 16px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.additional-feature:hover {
    transform: translateX(4px);
}

.additional-feature i {
    color: var(--accent);
    font-size: 16px;
    width: 20px;
}

.additional-feature span {
    color: var(--secondary);
    font-weight: 500;
    font-size: 14px;
}

.material-types-section {
    margin-top: 40px;
    padding: 24px;
    background: linear-gradient(135deg, rgba(0, 61, 130, 0.05), rgba(255, 102, 0, 0.05));
    border-radius: 16px;
}

.material-types-section h4 {
    color: var(--primary);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.material-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
}

.material-type {
    display: flex;
    align-items: center;
    gap: 12px;
    background: white;
    padding: 12px 16px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.material-type:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.material-type i {
    color: var(--accent);
    font-size: 12px;
}

.material-type span {
    color: var(--secondary);
    font-weight: 600;
    font-size: 14px;
}

/* ==================== RESPONSIVE DESIGN FOR BLENDER DETAILS ==================== */
@media (max-width: 768px) {
    .blender-types-overview {
        grid-template-columns: 1fr;
    }
    
    .spec-section .row {
        flex-direction: column;
    }
    
    .additional-features-grid {
        grid-template-columns: 1fr;
    }
    
    .material-types-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .type-benefits {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .material-types-grid {
        grid-template-columns: 1fr;
    }
    
    .blender-type-card {
        padding: 16px;
    }
    
    .spec-section {
        padding: 16px;
    }
    
    .type-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}/* =========
=========== COMPLETE ABOUT PAGE REDESIGN - HOME PAGE STYLE ==================== */

/* Hero Section Styles - Matching Home Page */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    overflow: hidden;
}

.hero-bg-shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 61, 130, 0.08), rgba(255, 102, 0, 0.05));
    animation: float 20s ease-in-out infinite;
}

.hero-bg-1 {
    width: 400px;
    height: 400px;
    top: -200px;
    right: -200px;
    animation-delay: 0s;
}

.hero-bg-2 {
    width: 300px;
    height: 300px;
    bottom: -150px;
    left: -150px;
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(180deg); }
}

.hero-row {
    min-height: 80vh;
}

.hero-copy {
    padding-right: 2rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 61, 130, 0.1);
    color: var(--primary);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgba(0, 61, 130, 0.2);
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 2.8rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--dark);
}

.hero-title .highlight {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--secondary);
    margin-bottom: 32px;
    max-width: 600px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    box-shadow: 0 4px 15px rgba(0, 61, 130, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 61, 130, 0.4);
    color: white;
}

.btn-outline-primary {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

.btn-outline-primary:hover {
    background: var(--primary);
    color: white;
}

.hero-visual {
    position: relative;
}

.hero-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.hero-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.hero-image-wrapper:hover .hero-image {
    transform: scale(1.05);
}

.hero-image-pill {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 12px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--primary);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.hero-strip {
    margin-top: 60px;
    padding: 20px;
    border-top: 1px solid rgba(0, 61, 130, 0.1);
    display: flex;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
}

.strip-label {
    font-weight: 700;
    color: var(--primary);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.strip-items {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.strip-items span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--secondary);
    font-weight: 600;
    font-size: 14px;
}

.strip-items i {
    color: var(--accent);
}

/* About Ultra Section - Matching Home Page */
.about-ultra {
    background: white;
    position: relative;
}

.about-content-wrapper {
    padding-right: 2rem;
}

.about-top-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 102, 0, 0.1);
    color: var(--accent);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.about-heading {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--dark);
}

.heading-highlight {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-intro {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 16px;
    line-height: 1.6;
}

.about-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--secondary);
    margin-bottom: 32px;
}

.about-features-list {
    margin-bottom: 32px;
}

.feature-item-inline {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.feature-check {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, var(--success), #34d399);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 12px;
    flex-shrink: 0;
}

.feature-item-inline span {
    color: var(--secondary);
    font-weight: 500;
}

.about-action-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-about-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 24px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-about-cta.primary {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    box-shadow: 0 4px 15px rgba(0, 61, 130, 0.3);
}

.btn-about-cta.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 61, 130, 0.4);
    color: white;
}

.btn-about-cta.secondary {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

.btn-about-cta.secondary:hover {
    background: var(--primary);
    color: white;
}

.about-visual-wrapper {
    position: relative;
}

.about-image-box {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 24px;
}

.about-image-box img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.image-overlay-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 61, 130, 0.1), rgba(255, 102, 0, 0.1));
    pointer-events: none;
}

.about-stats-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.stats-card {
    background: white;
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 12px;
    transition: transform 0.3s ease;
}

.stats-card:hover {
    transform: translateY(-4px);
}

.stats-card.card-1 .stats-icon {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
}

.stats-card.card-2 .stats-icon {
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
}

.stats-card.card-3 .stats-icon {
    background: linear-gradient(135deg, var(--success), #34d399);
}

.stats-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
}

.stats-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--dark);
    line-height: 1;
}

.stats-label {
    font-size: 0.8rem;
    color: var(--secondary);
    font-weight: 600;
}

.about-decoration-dots {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, var(--accent) 2px, transparent 2px);
    background-size: 15px 15px;
    opacity: 0.3;
}

.about-why-section {
    margin-top: 80px;
    padding-top: 60px;
    border-top: 1px solid rgba(0, 61, 130, 0.1);
}

.why-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 40px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.why-card {
    background: white;
    padding: 32px 24px;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease;
    border: 1px solid rgba(0, 61, 130, 0.1);
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.why-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 24px;
}

.why-card h4 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--primary);
}

.why-card p {
    color: var(--secondary);
    line-height: 1.6;
}

/* Products Premium Section - Matching Home Page */
.products-premium {
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.products-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.bg-circle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 61, 130, 0.05), rgba(255, 102, 0, 0.03));
    animation: float 25s ease-in-out infinite;
}

.circle-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.circle-2 {
    width: 200px;
    height: 200px;
    bottom: 20%;
    left: 5%;
    animation-delay: 8s;
}

.circle-3 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 30%;
    animation-delay: 16s;
}

.products-section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.header-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 61, 130, 0.1);
    color: var(--primary);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.products-main-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
    color: var(--dark);
}

.products-main-subtitle {
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--secondary);
    max-width: 800px;
    margin: 0 auto;
}

/* Products Grid Home Style */
.products-grid-home {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.product-card-home {
    background: white;
    border-radius: 20px;
    padding: 32px 24px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 61, 130, 0.1);
    text-align: center;
}

.product-card-home:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border-color: var(--accent);
}

.product-card-home.featured {
    background: linear-gradient(135deg, rgba(0, 61, 130, 0.05), rgba(255, 102, 0, 0.05));
    border-color: var(--accent);
}

.product-icon-home {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
    color: white;
    transition: transform 0.3s ease;
}

.product-card-home:hover .product-icon-home {
    transform: scale(1.1) rotate(5deg);
}

.product-card-home h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--primary);
}

.product-card-home p {
    color: var(--secondary);
    line-height: 1.6;
    margin-bottom: 16px;
}

.product-features-home {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
}

.feature-tag-home {
    background: rgba(0, 61, 130, 0.1);
    color: var(--primary);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.products-footer-home {
    text-align: center;
    position: relative;
    z-index: 2;
}

/* CTA Home Style */
.cta-home-style {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-home-style::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 70%, rgba(255, 102, 0, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.cta-content-home {
    position: relative;
    z-index: 2;
}

.cta-badge-home {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 102, 0, 0.2);
    color: var(--accent);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 102, 0, 0.3);
}

.cta-title-home {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
}

.cta-title-home .highlight {
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-subtitle-home {
    font-size: 1.2rem;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 0;
    max-width: 600px;
}

.cta-actions-home {
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
    z-index: 2;
}

.cta-actions-home .btn {
    justify-content: center;
    width: 100%;
}

.cta-actions-home .btn-outline-primary {
    background: transparent;
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
}

.cta-actions-home .btn-outline-primary:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-color: var(--accent);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-copy {
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .about-content-wrapper {
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .hero-actions,
    .about-action-buttons {
        flex-direction: column;
    }
    
    .hero-strip {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    
    .strip-items {
        flex-direction: column;
        gap: 12px;
    }
    
    .about-stats-cards {
        grid-template-columns: 1fr;
    }
    
    .why-grid {
        grid-template-columns: 1fr;
    }
    
    .products-grid-home {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .product-card-home {
        padding: 24px 16px;
    }
    
    .product-icon-home {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .cta-home-style .row {
        text-align: center;
    }
    
    .cta-content-home {
        margin-bottom: 32px;
    }
    
    .cta-title-home {
        font-size: 2rem;
    }
    
    .cta-subtitle-home {
        font-size: 1rem;
    }
    
    .cta-actions-home {
        align-items: center;
    }
    
    .cta-actions-home .btn {
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .hero-image {
        height: 300px;
    }
    
    .about-image-box img {
        height: 250px;
    }
    
    .stats-card {
        padding: 16px;
    }
    
    .why-card {
        padding: 24px 16px;
    }
    
    .products-grid-home {
        grid-template-columns: 1fr;
    }
    
    .product-card-home h3 {
        font-size: 1.1rem;
    }
}/* ===
================= MANUFACTURING STRENGTH MODERN SECTION ==================== */
.manufacturing-strength-modern {
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.manufacturing-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.manufacturing-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.manufacturing-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
    color: var(--dark);
}

.manufacturing-subtitle {
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--secondary);
    max-width: 800px;
    margin: 0 auto;
}

/* Capabilities Grid */
.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.capability-card {
    background: white;
    border-radius: 20px;
    padding: 40px 32px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 61, 130, 0.1);
    position: relative;
    overflow: hidden;
}

.capability-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border-color: var(--accent);
}

.capability-card.featured {
    background: linear-gradient(135deg, rgba(0, 61, 130, 0.05), rgba(255, 102, 0, 0.05));
    border-color: var(--accent);
}

.capability-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.capability-card:hover::before {
    left: 100%;
}

.capability-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-size: 28px;
    color: white;
    transition: transform 0.3s ease;
}

.capability-card:hover .capability-icon {
    transform: scale(1.1) rotate(5deg);
}

.capability-card h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: var(--primary);
}

.capability-desc {
    color: var(--secondary);
    margin-bottom: 24px;
    font-size: 1.1rem;
    line-height: 1.6;
}

.capability-features {
    space-y: 12px;
}

.feature-item-modern {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    padding: 8px 0;
}

.feature-item-modern i {
    color: var(--success);
    font-size: 16px;
    width: 20px;
}

.feature-item-modern span {
    color: var(--secondary);
    font-weight: 500;
    font-size: 15px;
}

/* Facilities Overview */
.facilities-overview {
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.facilities-content {
    padding-right: 2rem;
}

.facilities-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 20px;
}

.facilities-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--secondary);
    margin-bottom: 32px;
}

.location-cards {
    margin-bottom: 32px;
}

.location-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: white;
    padding: 20px;
    border-radius: 16px;
    margin-bottom: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.location-card:hover {
    transform: translateX(8px);
}

.location-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    flex-shrink: 0;
}

.location-info h4 {
    font-size: 1.2rem;
    margin-bottom: 4px;
    color: var(--primary);
}

.location-info p {
    color: var(--secondary);
    margin: 0;
    font-weight: 500;
}

.core-strengths {
    margin-bottom: 32px;
}

.core-strengths h4 {
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 16px;
}

.strength-items {
    space-y: 12px;
}

.strength-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.strength-item i {
    color: var(--accent);
    font-size: 18px;
    width: 24px;
}

.strength-item span {
    color: var(--secondary);
    font-weight: 600;
    font-size: 15px;
}

.quality-commitment p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--secondary);
    font-style: italic;
    border-left: 4px solid var(--accent);
    padding-left: 20px;
    margin: 0;
}

/* Facilities Visual */
.facilities-visual {
    position: relative;
}

.facilities-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.facility-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.facilities-image:hover .facility-img {
    transform: scale(1.05);
}

.facility-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 12px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--primary);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.focus-areas-card {
    background: white;
    padding: 32px 24px;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 61, 130, 0.1);
}

.focus-areas-card h4 {
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 20px;
    text-align: center;
}

.focus-items {
    space-y: 16px;
}

.focus-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.focus-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    flex-shrink: 0;
}

.focus-item span {
    color: var(--secondary);
    font-weight: 500;
    font-size: 14px;
}

/* Visit Invitation */
.visit-invitation {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 24px;
    padding: 60px 40px;
    text-align: center;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.visit-invitation::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 70%, rgba(255, 102, 0, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.invitation-content {
    position: relative;
    z-index: 2;
}

.invitation-content h3 {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    margin-bottom: 16px;
}

.invitation-content p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.invitation-content .btn {
    background: var(--accent);
    border-color: var(--accent);
    color: white;
    box-shadow: 0 8px 25px rgba(255, 102, 0, 0.3);
}

.invitation-content .btn:hover {
    background: var(--accent-light);
    border-color: var(--accent-light);
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(255, 102, 0, 0.4);
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .capabilities-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .capability-card {
        padding: 32px 24px;
    }
    
    .facilities-content {
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .location-card {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    
    .visit-invitation {
        padding: 40px 24px;
    }
    
    .manufacturing-title {
        font-size: 2rem;
    }
    
    .facilities-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .capability-card {
        padding: 24px 16px;
    }
    
    .capability-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    .facility-img {
        height: 200px;
    }
    
    .focus-areas-card {
        padding: 24px 16px;
    }
    
    .visit-invitation {
        padding: 32px 16px;
    }
    
    .invitation-content h3 {
        font-size: 1.5rem;
    }
    
    .invitation-content p {
        font-size: 1rem;
    }
}