/* Passero Pharmaceuticals - Frontend Styles */

/* Root Variables */
:root {
    --primary-color: #73aeb6;
    --secondary-color: #a2d5dc;
    --dark-color: #2c3e50;
    --light-color: #f8f9fa;
    --success-color: #28a745;
    --gradient-primary: linear-gradient(135deg, #73aeb6, #a2d5dc);
}

/* Global Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--dark-color);
    overflow-x: hidden;
}

/* Text Utilities */
.text-passero {
    color: var(--primary-color) !important;
}

.bg-passero {
    background: var(--gradient-primary) !important;
}

.hover-passero:hover {
    color: var(--primary-color) !important;
    transition: color 0.3s ease;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Section Spacing */
section {
    padding: 0;
}

@media (max-width: 768px) {
    section {
        padding: 0;
    }
}

/* Animation Utilities */
.fade-in {
    animation: fadeIn 0.6s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Card Hover Effects */
.card {
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

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

/* Button Styles */
.btn-passero {
    background: var(--gradient-primary);
    border: none;
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-passero:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(115, 174, 182, 0.4);
    color: white;
}

/* Hero Section Enhancements */
.hero-slide {
    position: relative;
    overflow: hidden;
}

.hero-bg {
    background-repeat: no-repeat;
    transition: transform 0.5s ease;
}

.hero-slide:hover .hero-bg {
    transform: scale(1.05);
}


.stat-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: var(--dark-color);
    margin: 0;
}

.stat-label {
    font-size: 1rem;
    color: #6c757d;
    margin: 0;
}

/* Feature Cards */
.feature-card {
    padding: 40px 30px;
    background: white;
    border-radius: 15px;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: white;
}

/* Product Category Cards */
.category-card {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    height: 350px;
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.category-card:hover img {
    transform: scale(1.1);
}

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    color: white;
}

/* Service Cards */
.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    height: 100%;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.service-card:hover {
    border-color: var(--primary-color);
    background: rgba(115, 174, 182, 0.05);
}

.service-icon {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

/* Testimonial Cards */
.testimonial-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    height: 100%;
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 20px;
    border: 4px solid var(--primary-color);
    overflow: hidden;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-stars {
    color: #ffc107;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

/* Footer Styles */
.footer-main {
    background: linear-gradient(135deg, #1a252f 0%, #2c3e50 100%);
    margin-top: 0;
}

.footer-top {
    padding: 80px 0 60px;
    position: relative;
}

.footer-top::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #73aeb6 0%, #a2d5dc 50%, #73aeb6 100%);
}

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

.footer-tagline {
    color: #73aeb6;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 15px;
}

.footer-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 25px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(115, 174, 182, 0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #73aeb6;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: linear-gradient(135deg, #73aeb6 0%, #a2d5dc 100%);
    color: white;
    transform: translateY(-3px);
}

.footer-title {
    color: white;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #73aeb6 0%, #a2d5dc 100%);
    border-radius: 2px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-links ul li a i {
    font-size: 0.7rem;
    color: #73aeb6;
    transition: transform 0.3s ease;
}

.footer-links ul li a:hover {
    color: #73aeb6;
    padding-left: 5px;
}

.footer-links ul li a:hover i {
    transform: translateX(3px);
}

.footer-contact .contact-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-contact .contact-row {
    display: flex;
    gap: 30px;
}

.footer-contact .contact-item {
    display: flex;
    gap: 15px;
}

.footer-contact .contact-icon {
    width: 45px;
    height: 45px;
    min-width: 45px;
    background: rgba(115, 174, 182, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-contact .contact-icon i {
    color: #73aeb6;
    font-size: 1.1rem;
}

.footer-contact .contact-text {
    flex: 1;
}

.footer-contact .contact-label {
    display: block;
    color: #73aeb6;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 5px;
}

.footer-contact .contact-text p,
.footer-contact .contact-text a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact .contact-text a:hover {
    color: #73aeb6;
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 20px 0;
}

.footer-bottom .copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin: 0;
}

.footer-certs {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.footer-certs .cert-badge {
    background: rgba(115, 174, 182, 0.15);
    color: #a2d5dc;
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Footer Responsive */
@media (max-width: 992px) {
    .footer-top {
        padding: 60px 0 40px;
    }

    .footer-contact .contact-row {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .footer-top {
        padding: 50px 0 30px;
    }

    .footer-title {
        margin-bottom: 20px;
    }

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

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

    .footer-bottom .copyright {
        margin-bottom: 15px;
    }

    .footer-certs {
        justify-content: center;
    }
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Responsive Utilities */
@media (max-width: 768px) {
    .stat-number {
        font-size: 2rem;
    }

    .stat-icon {
        font-size: 2rem;
    }

    .feature-card {
        padding: 30px 20px;
        margin-bottom: 20px;
    }

    .category-card {
        height: 250px;
        margin-bottom: 20px;
    }
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(115, 174, 182, 0.4);
}

/* Certification Badges */
.cert-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 25px;
    background: white;
    border-radius: 50px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

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

.cert-badge img {
    height: 40px;
    width: auto;
}

/* Contact Form Styles */
.contact-form .form-control,
.contact-form .form-select {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 12px 20px;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(115, 174, 182, 0.25);
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.product-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.product-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.product-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.product-info {
    padding: 25px;
}

.product-category {
    display: inline-block;
    padding: 5px 15px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 20px;
    font-size: 0.85rem;
    margin-bottom: 10px;
}

/* Breadcrumb Styling */
.breadcrumb {
    background: transparent;
    padding: 0;
    margin-bottom: 30px;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: "›";
    color: var(--primary-color);
}

.breadcrumb-item.active {
    color: var(--primary-color);
}

/* Page Header */
.page-header {
    background: var(--gradient-primary);
    color: white;
    padding: 80px 0 60px;
    margin-bottom: 60px;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2rem;
    }

    .page-header p {
        font-size: 1rem;
    }
}

/* ============================================
   HOME PAGE SPECIFIC STYLES
   ============================================ */

/* Hero Section Modern Styling */
.hero-slider {
    position: relative;
    height: 100vh;
    min-height: 600px;
}

.hero-slide {
    position: relative;
    height: 100vh;
    min-height: 600px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(115, 174, 182, 0.4) 0%, rgba(90, 143, 151, 0.5) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    color: white;
}

.hero-badge {
    display: inline-block;
    padding: 10px 24px;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.hero-tagline {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #ffffff 0%, #a2d5dc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
}

.hero-subtagline {
    font-size: 1.1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
    letter-spacing: 0.5px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3), 0 0 25px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 30px;
    opacity: 1;
    line-height: 1.6;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-hero-primary {
    padding: 15px 35px;
    background: white;
    color: #73aeb6;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: 2px solid white;
}

.btn-hero-primary:hover {
    background: transparent;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-hero-secondary {
    padding: 15px 35px;
    background: transparent;
    color: white;
    font-weight: 600;
    border-radius: 50px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    color: white;
}

.hero-nav-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.hero-nav-button:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-50%) scale(1.1);
}

.hero-button-prev {
    left: 30px;
}

.hero-button-next {
    right: 30px;
}

.hero-pagination {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 10px;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    text-align: center;
    animation: bounce 2s infinite;
}

.mouse-icon {
    width: 25px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 15px;
    position: relative;
    margin: 0 auto 10px;
}

.mouse-wheel {
    width: 3px;
    height: 8px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: wheel 2s infinite;
}

@keyframes wheel {
    0%, 100% { top: 8px; opacity: 1; }
    50% { top: 20px; opacity: 0.5; }
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

.scroll-indicator p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 12px;
    margin: 0;
}

/* Partner Section */
.partner-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fbfc 0%, #e8f4f6 100%);
    position: relative;
    overflow: hidden;
}

.partner-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.partner-bg-shapes .shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
}

.partner-bg-shapes .shape-1 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #73aeb6 0%, #5a8f97 100%);
    top: -100px;
    left: -100px;
}

.partner-bg-shapes .shape-2 {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #a2d5dc 0%, #73aeb6 100%);
    bottom: -50px;
    right: 10%;
}

.partner-bg-shapes .shape-3 {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, #73aeb6 0%, #a2d5dc 100%);
    top: 50%;
    right: -50px;
}

.partner-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(115, 174, 182, 0.25);
}

.partner-img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    transition: transform 0.5s ease;
}

.partner-image-wrapper:hover .partner-img {
    transform: scale(1.05);
}

.partner-img-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(115, 174, 182, 0.2) 0%, rgba(90, 143, 151, 0.1) 100%);
    pointer-events: none;
}

.partner-content {
    padding-left: 30px;
}

.partner-subtitle {
    display: inline-block;
    background: linear-gradient(135deg, #73aeb6 0%, #5a8f97 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.partner-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 25px;
    line-height: 1.3;
}

.partner-description {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}

.partner-description strong {
    color: #73aeb6;
    font-weight: 600;
}

.partner-features {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 25px;
}

.partner-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    background: white;
    padding: 12px 20px;
    border-radius: 50px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.partner-feature:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(115, 174, 182, 0.2);
}

.partner-feature i {
    color: #73aeb6;
    font-size: 1.1rem;
}

.partner-feature span {
    font-weight: 600;
    color: #333;
}

/* Stats Section */
.stats-section {
    margin-top: -100px;
    position: relative;
    z-index: 100;
    padding: 0;
    background: transparent;
}

.stats-wrapper {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.stat-item {
    padding: 40px 20px;
    text-align: center;
    border-right: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.stat-item:last-child {
    border-right: none;
}

.stat-item:hover {
    background: linear-gradient(135deg, #73aeb6 0%, #5a8f97 100%);
    color: white;
}

.stat-item:hover .stat-icon {
    color: white;
}

.stat-icon {
    font-size: 3rem;
    color: #73aeb6;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    margin: 0;
    color: #73aeb6;
}

.stat-item:hover .stat-number {
    color: white;
}

.stat-label {
    margin: 5px 0 0;
    font-size: 0.95rem;
    color: #666;
}

.stat-item:hover .stat-label {
    color: rgba(255, 255, 255, 0.9);
}

/* Section Styling */
.why-choose-section,
.products-section,
.testimonials-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fbfc 0%, #e8f4f6 50%, #f0f9fa 100%);
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(115, 174, 182, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.testimonials-section::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(162, 213, 220, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.section-header {
    margin-bottom: 60px;
}

.section-subtitle {
    display: inline-block;
    padding: 6px 20px;
    background: linear-gradient(135deg, #73aeb6 0%, #a2d5dc 100%);
    color: white;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.section-title {
    font-size: 2.75rem;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 20px;
}

.section-description {
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Product Categories Grid Section */
.product-categories-grid {
    padding: 80px 0;
    background: #f5f8fa;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.category-card {
    background: white;
    border-radius: 15px;
    text-align: center;
    text-decoration: none;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    height: 265px;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(115, 174, 182, 0.3);
}

.category-icon {
    width: 100%;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #f0f4f6 0%, #e8eef1 100%);
}

.category-card:hover .category-icon {
    background: linear-gradient(135deg, #e8f4f6 0%, #d5eaed 100%);
}

.category-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.category-card:hover .category-icon img {
    transform: scale(1.1);
}

.category-name {
    font-size: 1.05rem;
    font-weight: 600;
    color: #333;
    margin: 0;
    padding: 20px 15px;
    line-height: 1.4;
    transition: all 0.3s ease;
    background: white;
}

.category-card:hover .category-name {
    color: white;
    background: linear-gradient(135deg, #73aeb6 0%, #5a9da5 100%);
}

@media (max-width: 1200px) {
    .categories-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 25px;
    }

    .category-icon {
        height: 180px;
    }
}

@media (max-width: 991px) {
    .categories-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .category-icon {
        height: 160px;
    }

    .category-name {
        font-size: 1rem;
        padding: 15px 12px;
    }
}

@media (max-width: 768px) {
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .category-icon {
        height: 140px;
    }

    .category-name {
        font-size: 0.95rem;
        padding: 12px 10px;
    }
}

@media (max-width: 480px) {
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .category-card {
        border-radius: 12px;
    }

    .category-icon {
        height: 120px;
    }

    .category-name {
        font-size: 0.85rem;
        padding: 10px 8px;
    }
}

/* What We Manufacture Section */
.manufacture-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fbfc 0%, #ffffff 100%);
}

.manufacture-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    height: 100%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.manufacture-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    transition: all 0.3s ease;
}

.manufacture-card.pharmaceutical::before {
    background: linear-gradient(180deg, #73aeb6 0%, #5a9da5 100%);
}

.manufacture-card.nutraceutical::before {
    background: linear-gradient(180deg, #6abf69 0%, #4a9f49 100%);
}

.manufacture-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

.manufacture-card.pharmaceutical:hover {
    border-color: rgba(115, 174, 182, 0.3);
}

.manufacture-card.nutraceutical:hover {
    border-color: rgba(106, 191, 105, 0.3);
}

.manufacture-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.4s ease;
}

.manufacture-card.pharmaceutical .manufacture-icon {
    background: linear-gradient(135deg, rgba(115, 174, 182, 0.15) 0%, rgba(90, 157, 165, 0.1) 100%);
}

.manufacture-card.nutraceutical .manufacture-icon {
    background: linear-gradient(135deg, rgba(106, 191, 105, 0.15) 0%, rgba(74, 159, 73, 0.1) 100%);
}

.manufacture-icon i {
    font-size: 2.5rem;
    transition: all 0.4s ease;
}

.manufacture-card.pharmaceutical .manufacture-icon i {
    color: #73aeb6;
}

.manufacture-card.nutraceutical .manufacture-icon i {
    color: #6abf69;
}

.manufacture-card:hover .manufacture-icon {
    transform: scale(1.1);
}

.manufacture-card.pharmaceutical:hover .manufacture-icon {
    background: linear-gradient(135deg, #73aeb6 0%, #5a9da5 100%);
}

.manufacture-card.nutraceutical:hover .manufacture-icon {
    background: linear-gradient(135deg, #6abf69 0%, #4a9f49 100%);
}

.manufacture-card:hover .manufacture-icon i {
    color: white;
}

.manufacture-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.manufacture-description {
    font-size: 1rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 20px;
}

.manufacture-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.manufacture-tags span {
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.manufacture-card.pharmaceutical .manufacture-tags span {
    background: rgba(115, 174, 182, 0.1);
    color: #5a9da5;
}

.manufacture-card.nutraceutical .manufacture-tags span {
    background: rgba(106, 191, 105, 0.1);
    color: #4a9f49;
}

.manufacture-card:hover .manufacture-tags span {
    background: rgba(255, 255, 255, 0.9);
}

@media (max-width: 991px) {
    .manufacture-card {
        padding: 30px;
    }

    .manufacture-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .manufacture-section {
        padding: 60px 0;
    }

    .manufacture-card {
        padding: 25px;
    }

    .manufacture-icon {
        width: 70px;
        height: 70px;
    }

    .manufacture-icon i {
        font-size: 2rem;
    }

    .manufacture-title {
        font-size: 1.35rem;
    }

    .manufacture-tags span {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
}

/* Dosage Form Expertise Section */
.dosage-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f0f7f8 100%);
}

.dosage-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 25px;
    margin-top: 50px;
}

.dosage-item {
    background: white;
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.dosage-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(115, 174, 182, 0.1) 0%, rgba(162, 213, 220, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.dosage-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(115, 174, 182, 0.2);
}

.dosage-item:hover::before {
    opacity: 1;
}

.dosage-icon {
    width: 55px;
    height: 55px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.dosage-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all 0.4s ease;
}

.dosage-item:hover .dosage-icon {
    transform: scale(1.1);
}

.dosage-name {
    font-size: 1rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
    position: relative;
    z-index: 1;
}

.dosage-item:hover .dosage-name {
    color: #73aeb6;
}

/* Dosage Section Responsive */
@media (max-width: 1200px) {
    .dosage-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 20px;
    }
}

@media (max-width: 992px) {
    .dosage-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 18px;
    }

    .dosage-item {
        padding: 25px 15px;
    }

    .dosage-icon {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 768px) {
    .dosage-section {
        padding: 60px 0;
    }

    .dosage-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }

    .dosage-item {
        padding: 20px 12px;
    }

    .dosage-icon {
        width: 45px;
        height: 45px;
    }

    .dosage-name {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .dosage-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .dosage-item {
        padding: 18px 10px;
    }

    .dosage-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 10px;
    }

    .dosage-name {
        font-size: 0.85rem;
    }
}

/* What Sets Us Apart Section */
.sets-apart-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8fbfc 0%, #e8f4f6 50%, #f0f9fa 100%);
    position: relative;
    overflow: hidden;
}

.sets-apart-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(115, 174, 182, 0.12) 0%, transparent 40%),
        radial-gradient(circle at 80% 80%, rgba(162, 213, 220, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(115, 174, 182, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.sets-apart-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-top: 60px;
    position: relative;
    z-index: 1;
}

.apart-card {
    background: transparent;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.5s ease;
    position: relative;
    border-right: 1px solid rgba(115, 174, 182, 0.15);
    border-bottom: 1px solid rgba(115, 174, 182, 0.15);
}

.apart-card:nth-child(4n) {
    border-right: none;
}

.apart-card:nth-child(n+5) {
    border-bottom: none;
}

.apart-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(115, 174, 182, 0.08) 0%, rgba(162, 213, 220, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.apart-card:hover::before {
    opacity: 1;
}

.apart-card-number {
    position: absolute;
    top: 15px;
    left: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    color: rgba(115, 174, 182, 0.4);
    letter-spacing: 1px;
}

.apart-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 25px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.apart-icon::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(115, 174, 182, 0.25) 0%, rgba(162, 213, 220, 0.15) 100%);
    border-radius: 20px;
    transform: rotate(45deg);
    transition: all 0.5s ease;
}

.apart-icon::after {
    content: '';
    position: absolute;
    inset: 5px;
    background: white;
    border-radius: 15px;
    transform: rotate(45deg);
    transition: all 0.5s ease;
    box-shadow: 0 5px 20px rgba(115, 174, 182, 0.15);
}

.apart-icon i {
    font-size: 2rem;
    color: #73aeb6;
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
}

.apart-card:hover .apart-icon::before {
    transform: rotate(45deg) scale(1.1);
    background: linear-gradient(135deg, #73aeb6 0%, #a2d5dc 100%);
}

.apart-card:hover .apart-icon::after {
    transform: rotate(45deg) scale(0.9);
    background: linear-gradient(135deg, #73aeb6 0%, #5a9da5 100%);
}

.apart-card:hover .apart-icon i {
    color: white;
    transform: scale(1.15);
}

.apart-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
    line-height: 1.4;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.apart-card:hover .apart-title {
    color: #73aeb6;
}

.apart-desc {
    font-size: 0.9rem;
    color: #6c757d;
    line-height: 1.7;
    margin: 0;
    position: relative;
    z-index: 1;
}

.apart-card:hover .apart-desc {
    color: #5a6268;
}

/* Sets Apart Responsive */
@media (max-width: 1200px) {
    .sets-apart-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .apart-card:nth-child(4n) {
        border-right: 1px solid rgba(115, 174, 182, 0.15);
    }

    .apart-card:nth-child(3n) {
        border-right: none;
    }

    .apart-card:nth-child(n+5) {
        border-bottom: 1px solid rgba(115, 174, 182, 0.15);
    }

    .apart-card:nth-child(n+7) {
        border-bottom: none;
    }
}

@media (max-width: 992px) {
    .sets-apart-section {
        padding: 80px 0;
    }

    .sets-apart-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .apart-card {
        padding: 35px 25px;
    }

    .apart-card:nth-child(3n) {
        border-right: 1px solid rgba(115, 174, 182, 0.15);
    }

    .apart-card:nth-child(2n) {
        border-right: none;
    }

    .apart-card:nth-child(n+7) {
        border-bottom: 1px solid rgba(115, 174, 182, 0.15);
    }

    .apart-card:last-child {
        border-bottom: none;
        grid-column: span 2;
    }

    .apart-icon {
        width: 80px;
        height: 80px;
    }

    .apart-icon i {
        font-size: 1.75rem;
    }
}

@media (max-width: 768px) {
    .sets-apart-section {
        padding: 60px 0;
    }

    .sets-apart-grid {
        grid-template-columns: 1fr;
    }

    .apart-card {
        padding: 30px 20px;
        border-right: none !important;
        border-bottom: 1px solid rgba(115, 174, 182, 0.15) !important;
    }

    .apart-card:last-child {
        grid-column: auto;
        border-bottom: none !important;
    }

    .apart-icon {
        width: 70px;
        height: 70px;
    }

    .apart-icon::before {
        border-radius: 16px;
    }

    .apart-icon::after {
        border-radius: 12px;
    }

    .apart-icon i {
        font-size: 1.5rem;
    }

    .apart-title {
        font-size: 1.05rem;
    }

    .apart-desc {
        font-size: 0.85rem;
    }

    .apart-card-number {
        display: none;
    }
}

/* Feature Cards */
.feature-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #73aeb6 0%, #a2d5dc 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(115, 174, 182, 0.2);
}

.feature-card.featured {
    background: linear-gradient(135deg, #73aeb6 0%, #5a8f97 100%);
    color: white;
    transform: scale(1.05);
}

.feature-card.featured .feature-card-title,
.feature-card.featured .feature-card-text {
    color: white;
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: -30px;
    background: #fff;
    color: #73aeb6;
    padding: 5px 40px;
    font-size: 12px;
    font-weight: 700;
    transform: rotate(45deg);
    text-transform: uppercase;
}

.feature-card-icon {
    position: relative;
    margin-bottom: 25px;
}

.icon-circle {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #73aeb6 0%, #a2d5dc 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    position: relative;
    z-index: 2;
}

.feature-card.featured .icon-circle {
    background: white;
    color: #73aeb6;
}

.icon-bg {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 80px;
    height: 80px;
    background: rgba(115, 174, 182, 0.1);
    border-radius: 50%;
    z-index: 1;
}

.feature-card-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
}

.feature-card-text {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

.feature-card-link {
    color: #73aeb6;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.feature-card.featured .feature-card-link {
    color: white;
}

.feature-card-link:hover {
    gap: 10px;
}

/* Product Category Cards */
.product-category-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    height: 100%;
}

.product-category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(115, 174, 182, 0.2);
}

.product-category-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

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

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

.product-category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(115, 174, 182, 0.9) 0%, rgba(90, 143, 151, 0.9) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.product-category-card:hover .product-category-overlay {
    opacity: 1;
}

.category-products-count {
    text-align: center;
    color: white;
}

.count-number {
    display: block;
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
}

.count-label {
    display: block;
    font-size: 1.2rem;
    margin-top: 5px;
}

.product-category-content {
    padding: 35px 30px;
}

.product-category-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
}

.product-category-description {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.7;
}

.product-category-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 25px;
}

.feature-badge {
    padding: 6px 15px;
    background: rgba(115, 174, 182, 0.1);
    color: #73aeb6;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
}

.btn-explore-category {
    display: inline-flex;
    align-items: center;
    padding: 12px 30px;
    background: linear-gradient(135deg, #73aeb6 0%, #5a8f97 100%);
    color: white;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-explore-category:hover {
    transform: translateX(5px);
    box-shadow: 0 10px 30px rgba(115, 174, 182, 0.3);
    color: white;
}

/* Services Showcase */
.services-showcase {
    padding: 100px 0;
    background: linear-gradient(135deg, #73aeb6 0%, #5a8f97 100%);
    position: relative;
    overflow: hidden;
}

.services-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.05) 2px, transparent 2px),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.05) 2px, transparent 2px);
    background-size: 50px 50px;
    opacity: 0.5;
}

.service-showcase-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 40px 25px;
    text-align: center;
    transition: all 0.4s ease;
    height: 100%;
}

.service-showcase-card:hover {
    background: white;
    transform: translateY(-10px);
}

.service-icon-wrapper {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: white;
    transition: all 0.4s ease;
}

.service-showcase-card:hover .service-icon-wrapper {
    background: linear-gradient(135deg, #73aeb6 0%, #a2d5dc 100%);
}

.service-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
    transition: color 0.4s ease;
}

.service-showcase-card:hover .service-title {
    color: #2c3e50;
}

.service-description {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    transition: color 0.4s ease;
}

.service-showcase-card:hover .service-description {
    color: #666;
}

/* Testimonials */
.testimonials-slider-wrapper {
    position: relative;
    z-index: 1;
}

.testimonial-card-modern {
    background: white;
    border-radius: 24px;
    padding: 45px 40px 40px;
    box-shadow: none;
    position: relative;
    border: 1px solid rgba(115, 174, 182, 0.15);
    transition: all 0.4s ease;
    overflow: hidden;
}

.testimonial-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #73aeb6 0%, #a2d5dc 50%, #73aeb6 100%);
}

.testimonial-card-modern:hover {
    transform: translateY(-5px);
    border-color: rgba(115, 174, 182, 0.3);
}

.quote-icon {
    position: absolute;
    top: 25px;
    right: 35px;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(115, 174, 182, 0.1) 0%, rgba(162, 213, 220, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quote-icon i {
    font-size: 1.8rem;
    background: linear-gradient(135deg, #73aeb6 0%, #a2d5dc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.testimonial-rating {
    margin-bottom: 20px;
    display: flex;
    gap: 4px;
}

.testimonial-rating i {
    color: #ffc107;
    font-size: 1.1rem;
    filter: drop-shadow(0 2px 4px rgba(255, 193, 7, 0.3));
}

.testimonial-text {
    font-size: 1.05rem;
    font-style: italic;
    color: #4a5568;
    line-height: 1.9;
    margin-bottom: 30px;
    position: relative;
    padding-right: 60px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 18px;
    padding-top: 25px;
    border-top: 1px solid rgba(115, 174, 182, 0.15);
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 8px 25px rgba(115, 174, 182, 0.25);
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.avatar-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #73aeb6 0%, #5a9da5 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.author-name {
    font-size: 1.15rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 4px;
}

.author-company {
    color: #73aeb6;
    margin: 0;
    font-weight: 600;
    font-size: 0.95rem;
}

/* Testimonials Swiper Customization */
.testimonialsSwiper {
    padding: 20px 10px 60px;
}

.testimonialsSwiper .swiper-slide {
    height: auto;
}

.testimonials-pagination {
    bottom: 0 !important;
}

.testimonials-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #73aeb6;
    opacity: 0.3;
    transition: all 0.3s ease;
}

.testimonials-pagination .swiper-pagination-bullet-active {
    opacity: 1;
    width: 35px;
    border-radius: 6px;
    background: linear-gradient(90deg, #73aeb6 0%, #a2d5dc 100%);
}

/* Certifications */
.certifications-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #f0f7f8 0%, #e8f4f5 100%);
    position: relative;
}

.certifications-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
}

.cert-card {
    background: linear-gradient(135deg, #f8fbfc 0%, #ffffff 100%);
    border-radius: 20px;
    padding: 30px 25px;
    text-align: center;
    width: calc(14.28% - 26px);
    min-width: 140px;
    max-width: 160px;
    border: 1px solid rgba(115, 174, 182, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.cert-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #73aeb6 0%, #a2d5dc 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.cert-card:hover {
    transform: translateY(-8px);
    border-color: rgba(115, 174, 182, 0.3);
    box-shadow: 0 15px 40px rgba(115, 174, 182, 0.15);
}

.cert-card:hover::before {
    transform: scaleX(1);
}

.cert-image {
    width: 80px;
    height: 80px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cert-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.cert-card:hover .cert-image img {
    transform: scale(1.1);
}

.cert-name {
    font-weight: 700;
    color: #2c3e50;
    margin: 0;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.cert-card:hover .cert-name {
    color: #73aeb6;
}

/* Certifications Responsive */
@media (max-width: 1200px) {
    .cert-card {
        width: calc(20% - 24px);
    }
}

@media (max-width: 992px) {
    .certifications-section {
        padding: 80px 0;
    }

    .cert-card {
        width: calc(25% - 23px);
    }
}

@media (max-width: 768px) {
    .certifications-section {
        padding: 60px 0;
    }

    .certifications-grid {
        gap: 20px;
    }

    .cert-card {
        width: calc(33.33% - 14px);
        padding: 25px 20px;
    }

    .cert-image {
        width: 65px;
        height: 65px;
    }

    .cert-name {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .cert-card {
        width: calc(50% - 10px);
        min-width: 120px;
    }
}

/* Why Choose Passero Section */
.why-passero-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fbfc 0%, #e8f4f6 50%, #f0f9fa 100%);
    position: relative;
    overflow: hidden;
}

.why-passero-section::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(115, 174, 182, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.why-passero-content .section-title {
    font-size: 2.5rem;
    margin-bottom: 25px;
}

.why-passero-intro {
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.9;
    margin-bottom: 20px;
}

.why-passero-intro strong {
    color: #73aeb6;
    font-weight: 700;
}

.why-passero-outro {
    font-size: 1.05rem;
    color: #5a6268;
    line-height: 1.8;
    padding: 20px;
    background: white;
    border-left: 4px solid #73aeb6;
    border-radius: 0 12px 12px 0;
    margin-top: 25px;
}

.why-passero-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.wp-feature {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: white;
    border-radius: 16px;
    border: 1px solid rgba(115, 174, 182, 0.1);
    transition: all 0.4s ease;
}

.wp-feature:hover {
    transform: translateX(10px);
    border-color: rgba(115, 174, 182, 0.3);
    box-shadow: 0 10px 30px rgba(115, 174, 182, 0.1);
}

.wp-feature-icon {
    width: 55px;
    height: 55px;
    min-width: 55px;
    background: linear-gradient(135deg, rgba(115, 174, 182, 0.15) 0%, rgba(162, 213, 220, 0.15) 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.wp-feature-icon i {
    font-size: 1.4rem;
    color: #73aeb6;
    transition: all 0.3s ease;
}

.wp-feature:hover .wp-feature-icon {
    background: linear-gradient(135deg, #73aeb6 0%, #a2d5dc 100%);
}

.wp-feature:hover .wp-feature-icon i {
    color: white;
}

.wp-feature-content h5 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.wp-feature:hover .wp-feature-content h5 {
    color: #73aeb6;
}

.wp-feature-content p {
    font-size: 0.92rem;
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
}

/* Why Passero Responsive */
@media (max-width: 992px) {
    .why-passero-section {
        padding: 80px 0;
    }

    .why-passero-content {
        margin-bottom: 40px;
    }

    .why-passero-content .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .why-passero-section {
        padding: 60px 0;
    }

    .why-passero-content .section-title {
        font-size: 1.75rem;
    }

    .why-passero-intro {
        font-size: 1rem;
    }

    .wp-feature {
        padding: 20px;
        gap: 15px;
    }

    .wp-feature-icon {
        width: 50px;
        height: 50px;
        min-width: 50px;
    }

    .wp-feature-icon i {
        font-size: 1.2rem;
    }

    .wp-feature-content h5 {
        font-size: 1rem;
    }

    .wp-feature-content p {
        font-size: 0.85rem;
    }
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    position: relative;
    overflow: hidden;
}

.cta-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 30% 30%, rgba(115, 174, 182, 0.1) 2px, transparent 2px),
        radial-gradient(circle at 70% 70%, rgba(115, 174, 182, 0.1) 2px, transparent 2px);
    background-size: 60px 60px;
}

.cta-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(115, 174, 182, 0.2);
    color: #73aeb6;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
    line-height: 1.3;
}

.cta-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 30px;
    line-height: 1.7;
}

.cta-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    display: flex;
    gap: 25px;
}

.cta-features li {
    color: white;
    font-weight: 500;
}

.cta-features i {
    color: #73aeb6;
    margin-right: 10px;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.btn-cta-primary {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 40px;
    background: linear-gradient(135deg, #73aeb6 0%, #5a8f97 100%);
    color: white;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(115, 174, 182, 0.3);
}

.btn-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(115, 174, 182, 0.4);
    color: white;
}

.btn-cta-secondary {
    padding: 18px 40px;
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
}

.btn-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    color: white;
}

.cta-contact-info {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.contact-item i {
    width: 45px;
    height: 45px;
    background: rgba(115, 174, 182, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #73aeb6;
    font-size: 1.2rem;
}

.contact-item small {
    display: block;
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
    margin-bottom: 3px;
}

.contact-item p {
    margin: 0;
    color: white;
    font-weight: 600;
}

/* Responsive - Home Page */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-tagline {
        font-size: 1.25rem;
        letter-spacing: 1.5px;
    }

    .hero-subtagline {
        font-size: 1rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .stat-item {
        border-right: none;
        border-bottom: 1px solid #f0f0f0;
    }

    .stat-item:last-child {
        border-bottom: none;
    }

    .cta-title {
        font-size: 2rem;
    }

    .partner-title {
        font-size: 2rem;
    }

    .partner-section {
        padding: 70px 0;
    }


    .partner-content {
        padding-left: 20px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-tagline {
        font-size: 1rem;
        letter-spacing: 1px;
    }

    .hero-subtagline {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }

    .partner-section {
        padding: 50px 0;
    }

    .partner-image-wrapper {
        margin-bottom: 30px;
    }

    .partner-content {
        padding-left: 0;
        text-align: center;
    }

    .partner-title {
        font-size: 1.5rem;
    }

    .partner-description {
        font-size: 1rem;
    }

    .partner-features {
        justify-content: center;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        text-align: center;
    }

    .stats-section {
        margin-top: 0;
    }

    .feature-card.featured {
        transform: scale(1);
    }

    .cta-features {
        flex-direction: column;
        gap: 10px;
    }
}

/* ========================================
   OUR CLIENTS SECTION
   ======================================== */
.clients-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #f8fbfc 0%, #fff 100%);
}

.clients-logo-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 30px;
    align-items: center;
    justify-items: center;
    margin-top: 40px;
}

.client-logo-item {
    background: #fff;
    border-radius: 16px;
    padding: 25px 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 25px rgba(115, 174, 182, 0.1);
    border: 1px solid rgba(115, 174, 182, 0.1);
    transition: all 0.4s ease;
    width: 100%;
    height: 120px;
}

.client-logo-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(115, 174, 182, 0.2);
    border-color: #73aeb6;
}

.client-logo-item img {
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
    filter: grayscale(30%);
    opacity: 0.85;
    transition: all 0.4s ease;
}

.client-logo-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

/* Clients Section Responsive */
@media (max-width: 1199px) {
    .clients-logo-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
}

@media (max-width: 767px) {
    .clients-section {
        padding: 60px 0;
    }

    .clients-logo-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .client-logo-item {
        padding: 20px;
        height: 100px;
    }

    .client-logo-item img {
        max-height: 60px;
    }
}

@media (max-width: 480px) {
    .clients-logo-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .client-logo-item {
        padding: 15px;
        height: 90px;
    }

    .client-logo-item img {
        max-height: 50px;
    }
}

/* ========================================
   ABOUT US PAGE STYLES
   ======================================== */

/* About Hero Section */
.about-hero {
    position: relative;
    min-height: 450px;
    display: flex;
    align-items: center;
    background: url('/storage/images/about-hero.jpg') center center / cover no-repeat;
    overflow: hidden;
}

.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(90, 154, 163, 0.85) 0%, rgba(115, 174, 182, 0.8) 50%, rgba(143, 197, 204, 0.75) 100%);
    z-index: 1;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(90, 154, 163, 0.9) 0%, rgba(115, 174, 182, 0.85) 100%);
}

.about-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 80px 0;
    max-width: 800px;
    margin: 0 auto;
}

.about-breadcrumb {
    margin-bottom: 25px;
}

.about-breadcrumb .breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
    justify-content: center;
}

.about-breadcrumb .breadcrumb-item {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.about-breadcrumb .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
}

.about-breadcrumb .breadcrumb-item a:hover {
    color: #fff;
}

.about-breadcrumb .breadcrumb-item.active {
    color: #fff;
}

.about-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.6);
    content: "›";
    font-size: 1.2rem;
}

.about-hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.about-hero-subtitle {
    font-size: 1.5rem;
    color: #fff;
    font-weight: 500;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.about-hero-desc {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* About Partner Section */
.about-partner-section {
    padding: 100px 0;
    background: #fff;
}

.about-partner-section .partner-image-wrapper {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(115, 174, 182, 0.2);
}

.about-partner-section .partner-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.about-partner-section .partner-image-wrapper:hover .partner-image {
    transform: scale(1.03);
}

.partner-experience-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(135deg, #73aeb6, #5a9aa3);
    color: #fff;
    padding: 20px 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(115, 174, 182, 0.4);
}

.partner-experience-badge .exp-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.partner-experience-badge .exp-text {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    margin-top: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-partner-section .partner-content {
    padding-left: 30px;
}

.about-partner-section .section-subtitle {
    display: inline-block;
    color: #5a9aa3;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
    position: relative;
    padding-left: 50px;
    background: linear-gradient(135deg, #5a9aa3, #73aeb6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-partner-section .section-subtitle::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #73aeb6, #a2d5dc);
    border-radius: 2px;
}

.about-partner-section .section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 25px;
    line-height: 1.3;
}

.about-partner-section .partner-text {
    color: #666;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.partner-highlight {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: linear-gradient(135deg, #f8fbfc 0%, #eef7f8 100%);
    padding: 25px;
    border-radius: 12px;
    margin-top: 30px;
    border-left: 4px solid #73aeb6;
}

.partner-highlight .highlight-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #73aeb6, #5a9aa3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.3rem;
}

.partner-highlight .highlight-content p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

/* About Stats Section */
.about-stats-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #73aeb6 0%, #5a9aa3 100%);
    position: relative;
    overflow: hidden;
}

.about-stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
}

.about-stats-section .stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
}

.about-stats-section .stat-item {
    text-align: center;
    padding: 40px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.about-stats-section .stat-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.about-stats-section .stat-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    color: #fff;
}

.about-stats-section .stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
    line-height: 1;
}

.about-stats-section .stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Mission & Vision Section */
.mission-vision-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8fbfc 0%, #fff 100%);
    position: relative;
    overflow: hidden;
}

.mission-vision-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(115, 174, 182, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.mission-vision-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(162, 213, 220, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.mv-section-label {
    display: inline-block;
    color: #73aeb6;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
    position: relative;
    padding: 8px 20px;
    background: rgba(115, 174, 182, 0.1);
    border-radius: 30px;
}

.mv-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0;
}

.mv-card {
    position: relative;
    background: #fff;
    border-radius: 20px;
    padding: 50px 40px;
    height: 100%;
    box-shadow: 0 15px 50px rgba(115, 174, 182, 0.15);
    transition: all 0.4s ease;
    overflow: hidden;
    border: 1px solid rgba(115, 174, 182, 0.1);
}

.mv-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(115, 174, 182, 0.25);
}

.mv-card .mv-decoration {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #73aeb6, #a2d5dc);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.mv-card:hover .mv-decoration {
    transform: scaleX(1);
}

.mv-icon-wrapper {
    margin-bottom: 25px;
}

.mv-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #73aeb6 0%, #5a9aa3 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #fff;
    box-shadow: 0 10px 30px rgba(115, 174, 182, 0.3);
    transition: all 0.3s ease;
}

.mv-card:hover .mv-icon {
    transform: scale(1.1) rotate(5deg);
}

.mv-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.mv-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #73aeb6, #a2d5dc);
    border-radius: 2px;
}

.mv-text {
    color: #666;
    font-size: 1.05rem;
    line-height: 1.8;
    margin: 0;
}

.mission-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle at top right, rgba(115, 174, 182, 0.08) 0%, transparent 70%);
}

.vision-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle at top right, rgba(162, 213, 220, 0.1) 0%, transparent 70%);
}

/* Core Values Section with Flip Cards */
.core-values-section {
    padding: 100px 0;
    background: #fff;
}

.cv-section-label {
    display: inline-block;
    color: #73aeb6;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
    position: relative;
    padding: 8px 20px;
    background: rgba(115, 174, 182, 0.1);
    border-radius: 30px;
}

.cv-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
}

.cv-section-desc {
    color: #666;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Flip Card Styles */
.flip-card {
    perspective: 1000px;
    height: 280px;
    cursor: pointer;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px;
    text-align: center;
}

.flip-card-front {
    background: linear-gradient(145deg, #fff 0%, #f8fbfc 100%);
    border: 1px solid rgba(115, 174, 182, 0.15);
    box-shadow: 0 10px 40px rgba(115, 174, 182, 0.12);
}

.flip-card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #73aeb6 0%, #5a9aa3 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 10px 30px rgba(115, 174, 182, 0.3);
    transition: all 0.3s ease;
}

.flip-card:hover .flip-card-icon {
    transform: scale(1.1);
}

.flip-card-icon i {
    font-size: 2rem;
    color: #fff;
}

.flip-card-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
}

.flip-hint {
    font-size: 0.8rem;
    color: #999;
    margin-top: auto;
}

.flip-hint i {
    margin-right: 5px;
    animation: rotate 2s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.flip-card-back {
    background: linear-gradient(135deg, #73aeb6 0%, #5a9aa3 100%);
    transform: rotateY(180deg);
    color: #fff;
}

.flip-card-back-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 15px;
}

.flip-card-back-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 2px;
}

.flip-card-desc {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
}

/* Manufacturing Capabilities Section */
.manufacturing-capabilities-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #5a9aa3 0%, #73aeb6 50%, #8fc5cc 100%);
    position: relative;
    overflow: hidden;
}

.manufacturing-capabilities-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.mc-section-label {
    display: inline-block;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
    position: relative;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 30px;
    backdrop-filter: blur(5px);
}

.mc-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.mc-capability-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 40px 25px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.mc-capability-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.mc-capability-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.mc-capability-card:hover::before {
    opacity: 1;
}

.mc-capability-icon {
    width: 80px;
    height: 80px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.mc-capability-card:hover .mc-capability-icon {
    transform: scale(1.1) rotate(10deg);
}

.mc-capability-icon i {
    font-size: 2rem;
    background: linear-gradient(135deg, #73aeb6, #5a9aa3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mc-capability-icon img {
    width: 45px;
    height: 45px;
    object-fit: contain;
}

.mc-capability-number {
    font-size: 2.8rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    margin-bottom: 10px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.mc-capability-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 5px;
}

.mc-capability-unit {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
}

/* Journey Section */
.journey-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8fbfc 0%, #fff 100%);
    position: relative;
}

.journey-section-label {
    display: inline-block;
    color: #73aeb6;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
    position: relative;
    padding: 8px 20px;
    background: rgba(115, 174, 182, 0.1);
    border-radius: 30px;
}

.journey-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
}

.journey-section-desc {
    color: #666;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Timeline Styles */
.timeline-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 0;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #73aeb6, #a2d5dc);
    transform: translateX(-50%);
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    width: 50%;
    padding: 20px 50px;
    box-sizing: border-box;
}

.timeline-left {
    left: 0;
    padding-right: 60px;
}

.timeline-right {
    left: 50%;
    padding-left: 60px;
}

.timeline-dot {
    position: absolute;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #73aeb6 0%, #5a9aa3 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 30px;
    z-index: 2;
    box-shadow: 0 5px 25px rgba(115, 174, 182, 0.4);
    transition: all 0.3s ease;
}

.timeline-left .timeline-dot {
    right: -30px;
}

.timeline-right .timeline-dot {
    left: -30px;
}

.timeline-item:hover .timeline-dot {
    transform: scale(1.15);
    box-shadow: 0 8px 35px rgba(115, 174, 182, 0.5);
}

.timeline-dot i {
    font-size: 1.4rem;
    color: #fff;
}

.timeline-content {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(115, 174, 182, 0.12);
    border: 1px solid rgba(115, 174, 182, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.timeline-item:hover .timeline-content {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(115, 174, 182, 0.2);
}

.timeline-left .timeline-content {
    text-align: right;
}

.timeline-left .timeline-content::after {
    content: '';
    position: absolute;
    right: -15px;
    top: 35px;
    border-width: 10px;
    border-style: solid;
    border-color: transparent transparent transparent #fff;
}

.timeline-right .timeline-content::after {
    content: '';
    position: absolute;
    left: -15px;
    top: 35px;
    border-width: 10px;
    border-style: solid;
    border-color: transparent #fff transparent transparent;
}

.timeline-step {
    display: inline-block;
    background: linear-gradient(135deg, rgba(115, 174, 182, 0.15), rgba(162, 213, 220, 0.15));
    color: #5a9aa3;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 5px 15px;
    border-radius: 20px;
    margin-bottom: 15px;
}

.timeline-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 12px;
}

.timeline-desc {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* Leadership Section */
.leadership-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #73aeb6 0%, #5a9aa3 100%);
    position: relative;
    overflow: hidden;
}

.leadership-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.leadership-section-label {
    display: inline-block;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
    position: relative;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 30px;
}

.leadership-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}

.leadership-section-desc {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.leader-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    height: 100%;
    position: relative;
    transition: all 0.4s ease;
}

.leader-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
}

.leader-card-header {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 30px;
    background: linear-gradient(135deg, #f8fbfc 0%, #eef7f8 100%);
    border-bottom: 1px solid rgba(115, 174, 182, 0.1);
}

.leader-avatar {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #73aeb6 0%, #5a9aa3 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 10px 30px rgba(115, 174, 182, 0.3);
}

.leader-avatar i {
    font-size: 2.5rem;
    color: #fff;
}

.leader-avatar .leader-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.leader-info {
    flex: 1;
}

.leader-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 5px;
}

.leader-position {
    display: block;
    color: #73aeb6;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.leader-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(115, 174, 182, 0.15), rgba(162, 213, 220, 0.15));
    color: #5a9aa3;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 6px 15px;
    border-radius: 20px;
}

.leader-badge i {
    color: #73aeb6;
}

.leader-card-body {
    padding: 30px;
}

.leader-bio {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 15px;
}

.leader-bio:last-of-type {
    margin-bottom: 25px;
}

.leader-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.highlight-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #f8fbfc;
    padding: 8px 15px;
    border-radius: 25px;
    font-size: 0.85rem;
    color: #2c3e50;
    font-weight: 500;
    border: 1px solid rgba(115, 174, 182, 0.15);
}

.highlight-item i {
    color: #73aeb6;
    font-size: 0.9rem;
}

/* Leadership Responsive */
@media (max-width: 991px) {
    .leadership-section {
        padding: 70px 0;
    }

    .leadership-section-title {
        font-size: 2rem;
    }

    .leader-card-header {
        flex-direction: column;
        text-align: center;
    }

    .leader-avatar {
        width: 80px;
        height: 80px;
    }

    .leader-avatar i {
        font-size: 2rem;
    }
}

@media (max-width: 767px) {
    .leadership-section {
        padding: 60px 0;
    }

    .leadership-section-label {
        font-size: 0.8rem;
        padding: 6px 15px;
    }

    .leadership-section-title {
        font-size: 1.75rem;
    }

    .leader-card-header {
        padding: 25px 20px;
    }

    .leader-card-body {
        padding: 25px 20px;
    }

    .leader-name {
        font-size: 1.3rem;
    }

    .leader-bio {
        font-size: 0.9rem;
    }

    .leader-highlights {
        justify-content: center;
    }

    .highlight-item {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
}

/* Timeline Responsive */
@media (max-width: 991px) {
    .timeline-container {
        padding: 20px 0;
    }

    .timeline-line {
        left: 30px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 80px;
        padding-right: 20px;
    }

    .timeline-left,
    .timeline-right {
        left: 0;
        padding-left: 80px;
    }

    .timeline-left .timeline-dot,
    .timeline-right .timeline-dot {
        left: 0;
        right: auto;
    }

    .timeline-left .timeline-content,
    .timeline-right .timeline-content {
        text-align: left;
    }

    .timeline-left .timeline-content::after,
    .timeline-right .timeline-content::after {
        left: -15px;
        right: auto;
        border-color: transparent #fff transparent transparent;
    }
}

@media (max-width: 767px) {
    .timeline-dot {
        width: 50px;
        height: 50px;
    }

    .timeline-dot i {
        font-size: 1.2rem;
    }

    .timeline-item {
        padding-left: 70px;
    }

    .timeline-left,
    .timeline-right {
        padding-left: 70px;
    }

    .timeline-content {
        padding: 20px;
    }

    .timeline-title {
        font-size: 1.1rem;
    }

    .timeline-desc {
        font-size: 0.9rem;
    }
}

/* About Page Responsive Styles */
@media (max-width: 991px) {
    .about-hero {
        min-height: 400px;
    }

    .about-hero-title {
        font-size: 2.5rem;
    }

    .about-hero-subtitle {
        font-size: 1.3rem;
    }

    .about-partner-section {
        padding: 70px 0;
    }

    .about-partner-section .partner-content {
        padding-left: 0;
        margin-top: 40px;
    }

    .about-partner-section .section-title {
        font-size: 1.8rem;
    }

    .about-stats-section .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .mission-vision-section {
        padding: 70px 0;
    }

    .mv-section-title {
        font-size: 2rem;
    }

    .mv-card {
        padding: 40px 30px;
    }

    .core-values-section {
        padding: 70px 0;
    }

    .cv-section-title {
        font-size: 2rem;
    }

    .flip-card {
        height: 260px;
    }

    .manufacturing-capabilities-section {
        padding: 70px 0;
    }

    .mc-section-title {
        font-size: 2rem;
    }

    .mc-capability-card {
        padding: 30px 20px;
    }

    .mc-capability-number {
        font-size: 2.2rem;
    }

    .journey-section {
        padding: 70px 0;
    }

    .journey-section-title {
        font-size: 2rem;
    }
}

@media (max-width: 767px) {
    .about-hero {
        min-height: 350px;
    }

    .about-hero-content {
        padding: 60px 20px;
    }

    .about-hero-title {
        font-size: 2rem;
    }

    .about-hero-subtitle {
        font-size: 1.1rem;
    }

    .about-hero-desc {
        font-size: 1rem;
    }

    .partner-experience-badge {
        padding: 15px 20px;
    }

    .partner-experience-badge .exp-number {
        font-size: 2rem;
    }

    .partner-highlight {
        flex-direction: column;
        text-align: center;
    }

    .about-stats-section {
        padding: 60px 0;
    }

    .about-stats-section .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .about-stats-section .stat-item {
        padding: 30px 20px;
    }

    .about-stats-section .stat-number {
        font-size: 2.5rem;
    }

    .mission-vision-section {
        padding: 60px 0;
    }

    .mv-section-label {
        font-size: 0.8rem;
        padding: 6px 15px;
    }

    .mv-section-title {
        font-size: 1.75rem;
    }

    .mv-card {
        padding: 30px 25px;
    }

    .mv-icon {
        width: 65px;
        height: 65px;
        font-size: 1.5rem;
    }

    .mv-title {
        font-size: 1.4rem;
    }

    .mv-text {
        font-size: 1rem;
    }

    .core-values-section {
        padding: 60px 0;
    }

    .cv-section-label {
        font-size: 0.8rem;
        padding: 6px 15px;
    }

    .cv-section-title {
        font-size: 1.75rem;
    }

    .cv-section-desc {
        font-size: 1rem;
    }

    .flip-card {
        height: 300px;
    }

    .flip-card-front,
    .flip-card-back {
        padding: 25px 20px;
    }

    .flip-card-icon {
        width: 65px;
        height: 65px;
    }

    .flip-card-icon i {
        font-size: 1.5rem;
    }

    .flip-card-title {
        font-size: 1.1rem;
    }

    .flip-card-back-title {
        font-size: 1.1rem;
    }

    .flip-card-desc {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .manufacturing-capabilities-section {
        padding: 60px 0;
    }

    .mc-section-label {
        font-size: 0.8rem;
        padding: 6px 15px;
    }

    .mc-section-title {
        font-size: 1.75rem;
    }

    .mc-capability-card {
        padding: 30px 20px;
    }

    .mc-capability-icon {
        width: 65px;
        height: 65px;
    }

    .mc-capability-icon i {
        font-size: 1.5rem;
    }

    .mc-capability-icon img {
        width: 38px;
        height: 38px;
    }

    .mc-capability-number {
        font-size: 2rem;
    }

    .mc-capability-label {
        font-size: 1rem;
    }

    .journey-section {
        padding: 60px 0;
    }

    .journey-section-label {
        font-size: 0.8rem;
        padding: 6px 15px;
    }

    .journey-section-title {
        font-size: 1.75rem;
    }

    .journey-section-desc {
        font-size: 1rem;
    }
}

/* ========================================
   SERVICES PAGE STYLES
   ======================================== */

/* Services Hero Section */
.services-hero {
    position: relative;
    min-height: 450px;
    display: flex;
    align-items: center;
    background: url('/storage/images/services-hero.jpg') center center / cover no-repeat;
    overflow: hidden;
}

.services-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(90, 154, 163, 0.85) 0%, rgba(115, 174, 182, 0.8) 50%, rgba(143, 197, 204, 0.75) 100%);
    z-index: 1;
}

.services-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.services-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(90, 154, 163, 0.9) 0%, rgba(115, 174, 182, 0.85) 100%);
}

.services-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 80px 0;
    max-width: 800px;
    margin: 0 auto;
}

.services-breadcrumb {
    margin-bottom: 25px;
}

.services-breadcrumb .breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
    justify-content: center;
}

.services-breadcrumb .breadcrumb-item {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.services-breadcrumb .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
}

.services-breadcrumb .breadcrumb-item a:hover {
    color: #fff;
}

.services-breadcrumb .breadcrumb-item.active {
    color: #fff;
}

.services-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.6);
    content: "›";
    font-size: 1.2rem;
}

.services-hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.services-hero-subtitle {
    font-size: 1.5rem;
    color: #fff;
    font-weight: 500;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.services-hero-desc {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Services Hero Responsive */
@media (max-width: 991px) {
    .services-hero {
        min-height: 400px;
    }

    .services-hero-title {
        font-size: 2.5rem;
    }

    .services-hero-subtitle {
        font-size: 1.3rem;
    }
}

@media (max-width: 767px) {
    .services-hero {
        min-height: 350px;
    }

    .services-hero-content {
        padding: 60px 20px;
    }

    .services-hero-title {
        font-size: 2rem;
    }

    .services-hero-subtitle {
        font-size: 1.1rem;
    }

    .services-hero-desc {
        font-size: 1rem;
    }
}

/* Services Overview Section */
.services-overview-section {
    padding: 100px 0;
    background: #fff;
}

.services-section-label {
    display: inline-block;
    color: #73aeb6;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
    position: relative;
    padding: 8px 20px;
    background: rgba(115, 174, 182, 0.1);
    border-radius: 30px;
}

.services-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
}

.services-section-desc {
    color: #666;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Service Cards */
.service-card {
    background: #fff;
    border-radius: 20px;
    padding: 35px 30px;
    height: 100%;
    box-shadow: 0 10px 40px rgba(115, 174, 182, 0.12);
    border: 1px solid rgba(115, 174, 182, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #73aeb6, #a2d5dc);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(115, 174, 182, 0.2);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #73aeb6 0%, #5a9aa3 100%);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    box-shadow: 0 10px 30px rgba(115, 174, 182, 0.3);
    transition: all 0.3s ease;
}

.service-card:hover .service-card-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-card-icon i {
    font-size: 1.8rem;
    color: #fff;
}

.service-card-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 8px;
}

.service-card-subtitle {
    display: inline-block;
    color: #73aeb6;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.service-card-desc {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-card-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-card-features li {
    color: #555;
    font-size: 0.9rem;
    padding: 6px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-card-features li i {
    color: #73aeb6;
    font-size: 0.85rem;
}

/* Services Process Section */
.services-process-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8fbfc 0%, #eef7f8 100%);
}

.process-card-new {
    background: #fff;
    border-radius: 15px;
    padding: 30px 25px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(115, 174, 182, 0.1);
    border: 1px solid rgba(115, 174, 182, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
}

.process-card-new:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(115, 174, 182, 0.15);
}

.process-number-new {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #73aeb6, #5a9aa3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
}

.process-card-new h5 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 10px;
}

.process-card-new p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.6;
}

/* Services Responsive */
@media (max-width: 991px) {
    .services-overview-section {
        padding: 70px 0;
    }

    .services-section-title {
        font-size: 2rem;
    }

    .service-card {
        padding: 30px 25px;
    }
}

@media (max-width: 767px) {
    .services-overview-section {
        padding: 60px 0;
    }

    .services-section-label {
        font-size: 0.8rem;
        padding: 6px 15px;
    }

    .services-section-title {
        font-size: 1.75rem;
    }

    .service-card {
        padding: 25px 20px;
    }

    .service-card-icon {
        width: 60px;
        height: 60px;
    }

    .service-card-icon i {
        font-size: 1.5rem;
    }

    .service-card-title {
        font-size: 1.2rem;
    }
}

/* Manufacturing Process Flow */
.manufacturing-process-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8fbfc 0%, #eef7f8 100%);
}

.process-flow-wrapper {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.process-flow-timeline {
    position: relative;
    padding: 20px 0;
}

/* Center vertical line */
.process-flow-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #73aeb6, #a2d5dc, #73aeb6, #a2d5dc);
    transform: translateX(-50%);
    border-radius: 2px;
}

.process-flow-item {
    position: relative;
    width: 50%;
    padding: 20px 40px;
    box-sizing: border-box;
}

.process-flow-item.left {
    left: 0;
    padding-right: 60px;
    text-align: right;
}

.process-flow-item.right {
    left: 50%;
    padding-left: 60px;
    text-align: left;
}

.process-flow-content {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(115, 174, 182, 0.12);
    border: 1px solid rgba(115, 174, 182, 0.1);
    position: relative;
    transition: all 0.3s ease;
}

.process-flow-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(115, 174, 182, 0.18);
    border-color: rgba(115, 174, 182, 0.3);
}

/* Arrow pointers */
.process-flow-item.left .process-flow-content::after {
    content: '';
    position: absolute;
    right: -15px;
    top: 50%;
    transform: translateY(-50%);
    border: 15px solid transparent;
    border-left-color: #fff;
}

.process-flow-item.right .process-flow-content::after {
    content: '';
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    border: 15px solid transparent;
    border-right-color: #fff;
}

.process-flow-number {
    position: absolute;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #73aeb6, #5a9aa3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 700;
    color: #fff;
    box-shadow: 0 5px 15px rgba(115, 174, 182, 0.3);
}

.process-flow-item.left .process-flow-number {
    top: 30px;
    left: 20px;
}

.process-flow-item.right .process-flow-number {
    top: 30px;
    right: 20px;
}

.process-flow-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(115, 174, 182, 0.1), rgba(162, 213, 220, 0.15));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.process-flow-item.left .process-flow-icon {
    margin-left: auto;
}

.process-flow-content:hover .process-flow-icon {
    background: linear-gradient(135deg, #73aeb6, #5a9aa3);
}

.process-flow-icon i {
    font-size: 1.75rem;
    color: #73aeb6;
    transition: all 0.3s ease;
}

.process-flow-content:hover .process-flow-icon i {
    color: #fff;
}

.process-flow-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 12px;
}

.process-flow-desc {
    color: #666;
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.7;
}

/* Connector dot on timeline */
.process-flow-connector {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
}

.process-flow-item.left .process-flow-connector {
    right: -8px;
}

.process-flow-item.right .process-flow-connector {
    left: -8px;
}

.connector-dot {
    width: 16px;
    height: 16px;
    background: #fff;
    border: 4px solid #73aeb6;
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(115, 174, 182, 0.2);
}

/* Manufacturing Process Responsive */
@media (max-width: 991px) {
    .manufacturing-process-section {
        padding: 70px 0;
    }

    .process-flow-timeline::before {
        left: 30px;
    }

    .process-flow-item {
        width: 100%;
        padding: 15px 20px 15px 80px;
        text-align: left;
    }

    .process-flow-item.left,
    .process-flow-item.right {
        left: 0;
        padding-left: 80px;
        padding-right: 20px;
        text-align: left;
    }

    .process-flow-item.left .process-flow-icon,
    .process-flow-item.right .process-flow-icon {
        margin-left: 0;
    }

    .process-flow-item.left .process-flow-content::after,
    .process-flow-item.right .process-flow-content::after {
        left: -15px;
        right: auto;
        border: 15px solid transparent;
        border-right-color: #fff;
        border-left-color: transparent;
    }

    .process-flow-item.left .process-flow-number,
    .process-flow-item.right .process-flow-number {
        left: auto;
        right: auto;
        top: 50%;
        transform: translateY(-50%);
    }

    .process-flow-connector {
        left: 22px !important;
        right: auto !important;
    }

    .process-flow-content {
        padding: 25px;
    }

    .process-flow-number {
        position: absolute;
        left: -65px !important;
        right: auto !important;
        top: 50% !important;
        transform: translateY(-50%);
    }
}

@media (max-width: 767px) {
    .manufacturing-process-section {
        padding: 60px 0;
    }

    .process-flow-timeline::before {
        left: 20px;
    }

    .process-flow-item.left,
    .process-flow-item.right {
        padding-left: 60px;
        padding-right: 10px;
    }

    .process-flow-connector {
        left: 12px !important;
    }

    .process-flow-number {
        width: 35px;
        height: 35px;
        font-size: 0.8rem;
        left: -48px !important;
    }

    .process-flow-content {
        padding: 20px;
    }

    .process-flow-icon {
        width: 55px;
        height: 55px;
    }

    .process-flow-icon i {
        font-size: 1.4rem;
    }

    .process-flow-title {
        font-size: 1.1rem;
    }

    .process-flow-desc {
        font-size: 0.9rem;
    }
}

/* Services - Capabilities */
.services-capabilities-section {
    padding: 100px 0;
    background: #fff;
}

.capability-card {
    background: linear-gradient(180deg, #f8fbfc 0%, #fff 100%);
    border-radius: 15px;
    padding: 30px 25px;
    text-align: center;
    border: 1px solid rgba(115, 174, 182, 0.15);
    transition: all 0.3s ease;
    height: 100%;
}

.capability-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(115, 174, 182, 0.12);
    border-color: rgba(115, 174, 182, 0.3);
}

.capability-card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #73aeb6, #5a9aa3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.capability-card-icon i {
    font-size: 1.75rem;
    color: #fff;
}

.capability-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 10px;
}

.capability-card-capacity {
    background: linear-gradient(135deg, rgba(115, 174, 182, 0.1), rgba(162, 213, 220, 0.15));
    color: #73aeb6;
    font-weight: 700;
    padding: 6px 15px;
    border-radius: 20px;
    display: inline-block;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.capability-card-desc {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.5;
}

/* Services - Equipment */
.services-equipment-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8fbfc 0%, #eef7f8 100%);
}

.equipment-category {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(115, 174, 182, 0.1);
    border: 1px solid rgba(115, 174, 182, 0.1);
    height: 100%;
}

.equipment-category-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #73aeb6;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(115, 174, 182, 0.2);
}

.equipment-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.equipment-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(115, 174, 182, 0.1);
}

.equipment-list li:last-child {
    border-bottom: none;
}

.equipment-item {
    font-weight: 600;
    color: #2c3e50;
    font-size: 0.95rem;
}

.equipment-spec {
    color: #73aeb6;
    font-size: 0.85rem;
    font-weight: 500;
    background: rgba(115, 174, 182, 0.1);
    padding: 4px 10px;
    border-radius: 15px;
}

/* Services - Why Choose Us */
.services-why-section {
    padding: 100px 0;
    background: #fff;
}

.why-card {
    background: #fff;
    border-radius: 15px;
    padding: 30px 25px;
    text-align: center;
    border: 1px solid rgba(115, 174, 182, 0.15);
    transition: all 0.3s ease;
    height: 100%;
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(115, 174, 182, 0.12);
    border-color: #73aeb6;
}

.why-card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(115, 174, 182, 0.1), rgba(162, 213, 220, 0.15));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.why-card:hover .why-card-icon {
    background: linear-gradient(135deg, #73aeb6, #5a9aa3);
}

.why-card-icon i {
    font-size: 1.75rem;
    color: #73aeb6;
    transition: all 0.3s ease;
}

.why-card:hover .why-card-icon i {
    color: #fff;
}

.why-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 10px;
}

.why-card-desc {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.6;
}

/* Services - CTA Section */
.services-cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #73aeb6 0%, #5a9aa3 50%, #4d8a93 100%);
    position: relative;
    overflow: hidden;
}

.services-cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.services-cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}

.services-cta-desc {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto 30px;
    line-height: 1.7;
}

.services-cta-buttons .btn {
    padding: 15px 35px;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.services-cta-buttons .btn-light {
    background: #fff;
    color: #73aeb6;
    border: 2px solid #fff;
}

.services-cta-buttons .btn-light:hover {
    background: transparent;
    color: #fff;
}

.services-cta-buttons .btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.8);
    color: #fff;
}

.services-cta-buttons .btn-outline-light:hover {
    background: #fff;
    color: #73aeb6;
    border-color: #fff;
}

/* Services Responsive - Additional */
@media (max-width: 1199px) {
    .process-steps {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }

    .process-steps::before {
        display: none;
    }
}

@media (max-width: 991px) {
    .services-capabilities-section,
    .services-equipment-section,
    .services-why-section,
    .services-cta-section {
        padding: 70px 0;
    }

    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-cta-title {
        font-size: 2rem;
    }
}

@media (max-width: 767px) {
    .services-capabilities-section,
    .services-equipment-section,
    .services-why-section,
    .services-cta-section {
        padding: 60px 0;
    }

    .process-steps {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .process-step {
        padding: 25px 20px;
    }

    .capability-card,
    .why-card {
        padding: 25px 20px;
    }

    .equipment-category {
        padding: 25px 20px;
    }

    .equipment-list li {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }

    .equipment-spec {
        margin-top: 5px;
    }

    .services-cta-title {
        font-size: 1.75rem;
    }

    .services-cta-desc {
        font-size: 1rem;
    }

    .services-cta-buttons .btn {
        padding: 12px 25px;
        display: block;
        width: 100%;
        margin-bottom: 15px;
    }

    .services-cta-buttons .btn-lg.me-3 {
        margin-right: 0 !important;
    }
}

/* ========================================
   FAQ PAGE STYLES
   ======================================== */

/* FAQ Hero Section */
.faq-hero {
    position: relative;
    min-height: 450px;
    display: flex;
    align-items: center;
    background: url('/storage/images/faq-hero.jpg') center center / cover no-repeat;
    overflow: hidden;
}

.faq-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(90, 154, 163, 0.9) 0%, rgba(115, 174, 182, 0.85) 50%, rgba(143, 197, 204, 0.8) 100%);
    z-index: 1;
}

.faq-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    z-index: 1;
    opacity: 0.5;
}

.faq-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 80px 0;
    max-width: 800px;
    margin: 0 auto;
}

.faq-breadcrumb {
    margin-bottom: 25px;
}

.faq-breadcrumb .breadcrumb {
    justify-content: center;
    background: transparent;
    margin: 0;
    padding: 0;
}

.faq-breadcrumb .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.faq-breadcrumb .breadcrumb-item a:hover {
    color: #fff;
}

.faq-breadcrumb .breadcrumb-item.active {
    color: #fff;
}

.faq-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.6);
}

.faq-hero-title {
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 15px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.faq-hero-subtitle {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
    margin-bottom: 15px;
}

.faq-hero-desc {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #f8fbfc 0%, #fff 100%);
}

/* FAQ Search */
.faq-search-wrapper {
    position: relative;
    margin-bottom: 50px;
}

.faq-search-icon {
    position: absolute;
    left: 25px;
    top: 50%;
    transform: translateY(-50%);
    color: #73aeb6;
    font-size: 1.2rem;
}

.faq-search-input {
    width: 100%;
    padding: 20px 25px 20px 60px;
    border: 2px solid rgba(115, 174, 182, 0.2);
    border-radius: 50px;
    font-size: 1.1rem;
    background: #fff;
    box-shadow: 0 10px 40px rgba(115, 174, 182, 0.1);
    transition: all 0.3s ease;
}

.faq-search-input:focus {
    outline: none;
    border-color: #73aeb6;
    box-shadow: 0 10px 40px rgba(115, 174, 182, 0.2);
}

.faq-search-input::placeholder {
    color: #aaa;
}

/* FAQ Accordion */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.faq-category {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(115, 174, 182, 0.1);
    overflow: hidden;
    border: 1px solid rgba(115, 174, 182, 0.1);
}

.faq-category-header {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 25px 30px;
    background: linear-gradient(135deg, rgba(115, 174, 182, 0.08) 0%, rgba(162, 213, 220, 0.05) 100%);
    border-bottom: 1px solid rgba(115, 174, 182, 0.1);
}

.faq-category-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #73aeb6, #5a9aa3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.faq-category-icon i {
    font-size: 1.3rem;
    color: #fff;
}

.faq-category-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 0;
    flex-grow: 1;
}

.faq-category-count {
    background: rgba(115, 174, 182, 0.15);
    color: #73aeb6;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 20px;
}

.faq-questions {
    padding: 10px 0;
}

.faq-item {
    border-bottom: 1px solid rgba(115, 174, 182, 0.08);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(115, 174, 182, 0.05);
}

.faq-question-text {
    font-size: 1.05rem;
    font-weight: 600;
    color: #2c3e50;
    flex-grow: 1;
    padding-right: 20px;
}

.faq-question-icon {
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, rgba(115, 174, 182, 0.1), rgba(162, 213, 220, 0.15));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.faq-question-icon i {
    font-size: 0.85rem;
    color: #73aeb6;
    transition: all 0.3s ease;
}

.faq-question[aria-expanded="true"] .faq-question-icon {
    background: linear-gradient(135deg, #73aeb6, #5a9aa3);
}

.faq-question[aria-expanded="true"] .faq-question-icon i {
    color: #fff;
}

.faq-answer {
    background: rgba(115, 174, 182, 0.03);
}

.faq-answer-content {
    padding: 0 30px 25px 30px;
}

.faq-answer-content p {
    color: #666;
    font-size: 1rem;
    line-height: 1.8;
    margin: 0;
    padding-left: 20px;
    border-left: 3px solid #73aeb6;
}

/* FAQ CTA Section */
.faq-cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #73aeb6 0%, #5a9aa3 50%, #4d8a93 100%);
    position: relative;
    overflow: hidden;
}

.faq-cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.faq-cta-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.faq-cta-icon i {
    font-size: 2.5rem;
    color: #fff;
}

.faq-cta-title {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}

.faq-cta-desc {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 500px;
    margin: 0 auto 30px;
    line-height: 1.7;
}

.faq-cta-btn {
    padding: 15px 40px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.faq-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* FAQ Responsive */
@media (max-width: 991px) {
    .faq-hero {
        min-height: 400px;
    }

    .faq-hero-title {
        font-size: 2.5rem;
    }

    .faq-hero-subtitle {
        font-size: 1.2rem;
    }

    .faq-section {
        padding: 60px 0;
    }

    .faq-category-header {
        padding: 20px 25px;
    }

    .faq-question {
        padding: 18px 25px;
    }
}

@media (max-width: 767px) {
    .faq-hero {
        min-height: 350px;
    }

    .faq-hero-content {
        padding: 60px 20px;
    }

    .faq-hero-title {
        font-size: 2rem;
    }

    .faq-hero-subtitle {
        font-size: 1.1rem;
    }

    .faq-hero-desc {
        font-size: 1rem;
    }

    .faq-section {
        padding: 50px 0;
    }

    .faq-search-wrapper {
        margin-bottom: 40px;
    }

    .faq-search-input {
        padding: 15px 20px 15px 50px;
        font-size: 1rem;
    }

    .faq-search-icon {
        left: 20px;
        font-size: 1rem;
    }

    .faq-category-header {
        padding: 18px 20px;
        flex-wrap: wrap;
    }

    .faq-category-icon {
        width: 45px;
        height: 45px;
    }

    .faq-category-title {
        font-size: 1.1rem;
    }

    .faq-category-count {
        margin-top: 10px;
        margin-left: 60px;
    }

    .faq-question {
        padding: 15px 20px;
    }

    .faq-question-text {
        font-size: 0.95rem;
    }

    .faq-question-icon {
        width: 30px;
        height: 30px;
    }

    .faq-answer-content {
        padding: 0 20px 20px 20px;
    }

    .faq-answer-content p {
        font-size: 0.95rem;
        padding-left: 15px;
    }

    .faq-cta-section {
        padding: 60px 0;
    }

    .faq-cta-icon {
        width: 70px;
        height: 70px;
    }

    .faq-cta-icon i {
        font-size: 2rem;
    }

    .faq-cta-title {
        font-size: 1.75rem;
    }

    .faq-cta-desc {
        font-size: 1rem;
    }
}

/* ========================================
   CONTACT PAGE STYLES
======================================== */

/* Contact Hero Section */
.contact-hero {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #73aeb6 0%, #a2d5dc 100%);
    background-image: url('/storage/images/contact-hero.jpg');
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.contact-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(115, 174, 182, 0.9) 0%, rgba(162, 213, 220, 0.85) 100%);
}

.contact-hero .container-lg {
    position: relative;
    z-index: 2;
}

.contact-hero-content {
    padding: 80px 0 60px;
    max-width: 700px;
}

.contact-breadcrumb .breadcrumb {
    background: transparent;
    padding: 0;
    margin-bottom: 1rem;
}

.contact-breadcrumb .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-breadcrumb .breadcrumb-item a:hover {
    color: #fff;
}

.contact-breadcrumb .breadcrumb-item.active {
    color: #fff;
}

.contact-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.6);
}

.contact-hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.contact-hero-subtitle {
    font-size: 1.5rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 1rem;
}

.contact-hero-desc {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    max-width: 600px;
}

/* Contact Info Cards Section */
.contact-info-section {
    padding: 60px 0;
    background: #f8f9fa;
    margin-top: -30px;
    position: relative;
    z-index: 3;
}

.contact-info-card {
    background: #fff;
    border-radius: 16px;
    padding: 35px 30px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(115, 174, 182, 0.1);
}

.contact-info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(115, 174, 182, 0.2);
}

.contact-info-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #73aeb6 0%, #a2d5dc 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.contact-info-icon i {
    font-size: 2rem;
    color: #fff;
}

.contact-info-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.contact-info-text {
    color: #666;
    line-height: 1.7;
    margin-bottom: 15px;
}

.contact-info-text a {
    color: #73aeb6;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.contact-info-text a:hover {
    color: #5a9ba3;
}

.contact-info-link {
    display: inline-block;
    color: #73aeb6;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-info-link:hover {
    color: #5a9ba3;
}

.contact-info-link i {
    margin-right: 5px;
}

.contact-info-hours,
.contact-info-response {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 0;
}

.contact-info-hours i,
.contact-info-response i {
    margin-right: 5px;
    color: #73aeb6;
}

/* Contact Form Section */
.contact-form-section {
    padding: 80px 0;
    background: #fff;
}

.contact-form-wrapper,
.contact-map-wrapper {
    height: 100%;
}

.contact-form-label {
    display: inline-block;
    background: linear-gradient(135deg, #73aeb6 0%, #a2d5dc 100%);
    color: #fff;
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.contact-form-title {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.contact-form-desc {
    color: #666;
    margin-bottom: 30px;
    line-height: 1.7;
}

.contact-form .form-control,
.contact-form .form-select {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 12px 15px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-form .form-floating > .form-select {
    padding-top: 1.625rem;
    padding-bottom: 0.625rem;
    height: calc(3.5rem + 4px);
}

.contact-form .form-floating > label {
    color: #666;
    padding: 1rem 0.95rem;
}

.contact-form .form-floating > .form-select ~ label {
    opacity: 0.65;
    transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: #73aeb6;
    box-shadow: 0 0 0 0.2rem rgba(115, 174, 182, 0.15);
}

.contact-form .form-control.is-valid,
.contact-form .form-select.is-valid {
    border-color: #28a745;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right calc(0.375em + 0.1875rem) center;
    background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
    padding-right: calc(1.5em + 0.75rem);
}

.contact-form .form-control.is-invalid,
.contact-form .form-select.is-invalid {
    border-color: #dc3545;
}

.contact-form .form-floating > label {
    color: #666;
}

.contact-form .form-check-input:checked {
    background-color: #73aeb6;
    border-color: #73aeb6;
}

.contact-form .form-check-label a {
    color: #73aeb6;
    text-decoration: none;
}

.contact-form .form-check-label a:hover {
    text-decoration: underline;
}

.contact-form .btn-passero {
    background: linear-gradient(135deg, #73aeb6 0%, #5a9ba3 100%);
    border: none;
    border-radius: 10px;
    padding: 15px 30px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.contact-form .btn-passero:hover {
    background: linear-gradient(135deg, #5a9ba3 0%, #4a8a91 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(115, 174, 182, 0.3);
}

.contact-form .btn-passero:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Contact Map Container */
.contact-map-container {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.contact-map-container iframe {
    display: block;
    border-radius: 16px;
}

.contact-map-address {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 20px;
}

.map-address-item {
    display: flex;
    align-items: center;
    color: #666;
    font-size: 0.95rem;
}

.map-address-item i {
    color: #73aeb6;
    font-size: 1.1rem;
    margin-right: 10px;
    width: 20px;
}

/* Quick Resources Section */
.quick-resources-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.qr-section-label {
    display: inline-block;
    background: linear-gradient(135deg, #73aeb6 0%, #a2d5dc 100%);
    color: #fff;
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.qr-section-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.qr-section-desc {
    color: #666;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.qr-card {
    display: block;
    background: #fff;
    border-radius: 16px;
    padding: 35px 25px;
    text-align: center;
    text-decoration: none;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    height: 100%;
    border: 2px solid transparent;
}

.qr-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(115, 174, 182, 0.2);
    border-color: #73aeb6;
}

.qr-card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(115, 174, 182, 0.1) 0%, rgba(162, 213, 220, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.qr-card:hover .qr-card-icon {
    background: linear-gradient(135deg, #73aeb6 0%, #a2d5dc 100%);
}

.qr-card-icon i {
    font-size: 1.75rem;
    color: #73aeb6;
    transition: all 0.3s ease;
}

.qr-card:hover .qr-card-icon i {
    color: #fff;
}

.qr-card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 12px;
}

.qr-card-desc {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.6;
}

.qr-card-link {
    font-weight: 600;
    color: #73aeb6;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.qr-card-link i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.qr-card:hover .qr-card-link i {
    transform: translateX(5px);
}

/* Contact CTA Section */
.contact-cta-section {
    position: relative;
    padding: 80px 0;
    background: linear-gradient(135deg, #73aeb6 0%, #a2d5dc 100%);
    background-image: url('/storage/images/contact-hero.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.contact-cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(115, 174, 182, 0.95) 0%, rgba(90, 155, 163, 0.9) 100%);
}

.contact-cta-section .container-lg {
    position: relative;
    z-index: 2;
}

.contact-cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.contact-cta-desc {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 35px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.contact-cta-buttons .btn-light {
    background: #fff;
    color: #73aeb6;
    border: none;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.contact-cta-buttons .btn-light:hover {
    background: #f8f9fa;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.contact-cta-buttons .btn-outline-light {
    border: 2px solid #fff;
    color: #fff;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.contact-cta-buttons .btn-outline-light:hover {
    background: #fff;
    color: #73aeb6;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Contact Page Responsive */
@media (max-width: 991.98px) {
    .contact-hero-content {
        padding: 60px 0 50px;
    }

    .contact-hero-title {
        font-size: 2.5rem;
    }

    .contact-hero-subtitle {
        font-size: 1.25rem;
    }

    .contact-info-section {
        margin-top: 0;
        padding: 50px 0;
    }

    .contact-form-section {
        padding: 60px 0;
    }

    .contact-map-wrapper {
        margin-top: 40px;
    }

    .qr-section-title {
        font-size: 2rem;
    }

    .contact-cta-title {
        font-size: 2rem;
    }
}

@media (max-width: 767.98px) {
    .contact-hero {
        min-height: 350px;
    }

    .contact-hero-content {
        padding: 50px 0 40px;
    }

    .contact-hero-title {
        font-size: 2rem;
    }

    .contact-hero-subtitle {
        font-size: 1.1rem;
    }

    .contact-hero-desc {
        font-size: 1rem;
    }

    .contact-info-card {
        padding: 25px 20px;
    }

    .contact-info-icon {
        width: 65px;
        height: 65px;
    }

    .contact-info-icon i {
        font-size: 1.5rem;
    }

    .contact-form-title {
        font-size: 1.75rem;
    }

    .qr-section-title {
        font-size: 1.75rem;
    }

    .qr-card {
        padding: 25px 20px;
    }

    .contact-cta-section {
        padding: 60px 0;
        background-attachment: scroll;
    }

    .contact-cta-title {
        font-size: 1.75rem;
    }

    .contact-cta-desc {
        font-size: 1rem;
    }

    .contact-cta-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 15px;
    }

    .contact-cta-buttons .btn:last-child {
        margin-bottom: 0;
    }

    .map-address-item {
        margin-bottom: 10px;
    }
}

/* Contact Form Messages */
.contact-message {
    display: flex;
    align-items: flex-start;
    padding: 20px 25px;
    border-radius: 12px;
    position: relative;
    animation: slideIn 0.4s ease-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.contact-message-success {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    border: 1px solid #28a745;
    border-left: 5px solid #28a745;
}

.contact-message-error {
    background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%);
    border: 1px solid #dc3545;
    border-left: 5px solid #dc3545;
}

.contact-message-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
}

.contact-message-success .contact-message-icon {
    background: #28a745;
    color: #fff;
}

.contact-message-error .contact-message-icon {
    background: #dc3545;
    color: #fff;
}

.contact-message-icon i {
    font-size: 1.5rem;
}

.contact-message-content {
    flex: 1;
}

.contact-message-content h5 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.contact-message-success .contact-message-content h5 {
    color: #155724;
}

.contact-message-error .contact-message-content h5 {
    color: #721c24;
}

.contact-message-content p {
    margin-bottom: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

.contact-message-success .contact-message-content p {
    color: #155724;
}

.contact-message-error .contact-message-content p {
    color: #721c24;
}

.contact-message-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: transparent;
    border: none;
    font-size: 1.1rem;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.3s ease;
    padding: 5px;
}

.contact-message-success .contact-message-close {
    color: #155724;
}

.contact-message-error .contact-message-close {
    color: #721c24;
}

.contact-message-close:hover {
    opacity: 1;
}

@media (max-width: 575.98px) {
    .contact-message {
        flex-direction: column;
        text-align: center;
        padding: 20px 15px;
    }

    .contact-message-icon {
        margin: 0 auto 15px;
    }

    .contact-message-close {
        top: 10px;
        right: 10px;
    }
}

/* ========================================
   CAREER PAGE STYLES
   ======================================== */

/* Career Hero Section */
.career-hero {
    position: relative;
    min-height: 450px;
    display: flex;
    align-items: center;
    background: url('/storage/images/career-hero-bg.jpg') center center / cover no-repeat;
    overflow: hidden;
}

.career-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(90, 154, 163, 0.9) 0%, rgba(115, 174, 182, 0.85) 50%, rgba(143, 197, 204, 0.8) 100%);
    z-index: 1;
}

.career-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    z-index: 1;
    opacity: 0.5;
}

.career-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 80px 0;
    max-width: 800px;
    margin: 0 auto;
}

.career-breadcrumb {
    margin-bottom: 25px;
}

.career-breadcrumb .breadcrumb {
    justify-content: center;
    background: transparent;
    margin: 0;
    padding: 0;
}

.career-breadcrumb .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.career-breadcrumb .breadcrumb-item a:hover {
    color: #fff;
}

.career-breadcrumb .breadcrumb-item.active {
    color: #fff;
}

.career-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.6);
}

.career-hero-title {
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 15px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.career-hero-subtitle {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
    margin-bottom: 15px;
}

.career-hero-desc {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto;
}

/* Career Why Section */
.career-why-section {
    padding: 100px 0;
    background: #fff;
}

.career-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(115, 174, 182, 0.25);
}

.career-image {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
}

.career-badge {
    position: absolute;
    bottom: 25px;
    left: 25px;
    background: linear-gradient(135deg, #73aeb6, #5a9aa3);
    color: #fff;
    padding: 15px 25px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.career-badge .badge-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.career-badge .badge-icon i {
    font-size: 1.25rem;
}

.career-badge .badge-text {
    font-weight: 700;
    font-size: 1rem;
}

.career-content .section-subtitle {
    display: inline-block;
    color: #73aeb6;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
    position: relative;
    padding: 8px 20px;
    background: linear-gradient(135deg, rgba(115, 174, 182, 0.1), rgba(162, 213, 220, 0.15));
    border-radius: 30px;
}

.career-content .section-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
}

.career-text {
    color: #666;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 15px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 25px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    background: linear-gradient(135deg, rgba(115, 174, 182, 0.08), rgba(162, 213, 220, 0.05));
    border-radius: 10px;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: linear-gradient(135deg, rgba(115, 174, 182, 0.15), rgba(162, 213, 220, 0.1));
    transform: translateX(5px);
}

.benefit-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #73aeb6, #5a9aa3);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-icon i {
    color: #fff;
    font-size: 1rem;
}

.benefit-text {
    color: #2c3e50;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Career Positions Section */
.career-positions-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8fbfc 0%, #fff 100%);
}

.positions-section-label {
    display: inline-block;
    color: #73aeb6;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
    position: relative;
    padding: 8px 20px;
    background: linear-gradient(135deg, rgba(115, 174, 182, 0.1), rgba(162, 213, 220, 0.15));
    border-radius: 30px;
}

.positions-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
}

.positions-section-desc {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Job Cards */
.job-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(115, 174, 182, 0.1);
    margin-bottom: 20px;
    overflow: hidden;
    display: flex;
    transition: all 0.3s ease;
    border: 1px solid rgba(115, 174, 182, 0.1);
}

.job-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(115, 174, 182, 0.2);
}

.job-card-accent {
    width: 6px;
    flex-shrink: 0;
}

.job-card-content {
    padding: 25px 30px;
    flex-grow: 1;
}

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 15px;
}

.job-info {
    flex-grow: 1;
}

.job-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 10px;
}

.job-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.job-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #666;
    font-size: 0.85rem;
}

.job-meta-item i {
    color: #73aeb6;
    font-size: 0.9rem;
}

.job-action {
    flex-shrink: 0;
}

.job-description {
    color: #666;
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.6;
}

/* Career Culture Section */
.career-culture-section {
    padding: 100px 0;
    background: #fff;
}

.culture-section-label {
    display: inline-block;
    color: #73aeb6;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
    position: relative;
    padding: 8px 20px;
    background: linear-gradient(135deg, rgba(115, 174, 182, 0.1), rgba(162, 213, 220, 0.15));
    border-radius: 30px;
}

.culture-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
}

.culture-section-desc {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.culture-card {
    background: linear-gradient(135deg, rgba(115, 174, 182, 0.05), rgba(162, 213, 220, 0.08));
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    height: 100%;
    transition: all 0.4s ease;
    border: 1px solid rgba(115, 174, 182, 0.1);
}

.culture-card:hover {
    background: linear-gradient(135deg, #73aeb6, #5a9aa3);
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(115, 174, 182, 0.3);
}

.culture-card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #73aeb6, #5a9aa3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.4s ease;
}

.culture-card:hover .culture-card-icon {
    background: rgba(255, 255, 255, 0.2);
}

.culture-card-icon i {
    font-size: 2rem;
    color: #fff;
}

.culture-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.culture-card:hover .culture-card-title {
    color: #fff;
}

.culture-card-desc {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
    transition: all 0.3s ease;
}

.culture-card:hover .culture-card-desc {
    color: rgba(255, 255, 255, 0.9);
}

/* Career CTA Section */
.career-cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #73aeb6 0%, #5a9aa3 50%, #4d8a93 100%);
    position: relative;
    overflow: hidden;
}

.career-cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.career-cta-section .container-lg {
    position: relative;
    z-index: 2;
}

.career-cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.career-cta-desc {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto 30px;
    line-height: 1.7;
}

.career-cta-section .btn-light {
    background: #fff;
    color: #73aeb6;
    border: 2px solid #fff;
    padding: 15px 35px;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.career-cta-section .btn-light:hover {
    background: transparent;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Career Page Responsive */
@media (max-width: 991px) {
    .career-hero {
        min-height: 400px;
    }

    .career-hero-title {
        font-size: 2.5rem;
    }

    .career-hero-subtitle {
        font-size: 1.2rem;
    }

    .career-why-section,
    .career-positions-section,
    .career-culture-section,
    .career-cta-section {
        padding: 70px 0;
    }

    .career-image {
        height: 350px;
    }

    .career-content .section-title {
        font-size: 2rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .positions-section-title,
    .culture-section-title {
        font-size: 2rem;
    }

    .job-header {
        flex-direction: column;
    }

    .job-action {
        width: 100%;
    }

    .job-action .btn {
        width: 100%;
    }

    .career-cta-title {
        font-size: 2rem;
    }
}

@media (max-width: 767px) {
    .career-hero {
        min-height: 350px;
    }

    .career-hero-content {
        padding: 60px 20px;
    }

    .career-hero-title {
        font-size: 2rem;
    }

    .career-hero-subtitle {
        font-size: 1.1rem;
    }

    .career-hero-desc {
        font-size: 1rem;
    }

    .career-why-section,
    .career-positions-section,
    .career-culture-section,
    .career-cta-section {
        padding: 60px 0;
    }

    .career-image {
        height: 280px;
    }

    .career-badge {
        padding: 12px 18px;
    }

    .career-badge .badge-icon {
        width: 38px;
        height: 38px;
    }

    .career-content {
        margin-top: 30px;
    }

    .career-content .section-title {
        font-size: 1.75rem;
    }

    .career-text {
        font-size: 1rem;
    }

    .job-card-content {
        padding: 20px;
    }

    .job-title {
        font-size: 1.1rem;
    }

    .job-meta {
        gap: 10px;
    }

    .job-meta-item {
        font-size: 0.8rem;
    }

    .positions-section-title,
    .culture-section-title {
        font-size: 1.75rem;
    }

    .culture-card {
        padding: 30px 20px;
    }

    .culture-card-icon {
        width: 65px;
        height: 65px;
    }

    .culture-card-icon i {
        font-size: 1.5rem;
    }

    .career-cta-title {
        font-size: 1.75rem;
    }

    .career-cta-desc {
        font-size: 1rem;
    }

    .career-cta-section .btn-light {
        padding: 12px 25px;
    }
}

/* ========================================
   PHARMACEUTICAL & DERMA PAGE STYLES
   ======================================== */

/* Pharmaceutical Hero Section */
.pharma-hero {
    position: relative;
    min-height: 450px;
    display: flex;
    align-items: center;
    background: url('/storage/images/pharma-hero.jpg') center center / cover no-repeat;
    overflow: hidden;
}

.pharma-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(90, 154, 163, 0.9) 0%, rgba(115, 174, 182, 0.85) 100%);
    z-index: 1;
}

.pharma-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
    z-index: 0;
}

.pharma-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 80px 0;
    max-width: 800px;
    margin: 0 auto;
}

.pharma-breadcrumb {
    margin-bottom: 25px;
}

.pharma-breadcrumb .breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
    justify-content: center;
}

.pharma-breadcrumb .breadcrumb-item {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.pharma-breadcrumb .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
}

.pharma-breadcrumb .breadcrumb-item a:hover {
    color: #fff;
}

.pharma-breadcrumb .breadcrumb-item.active {
    color: #fff;
}

.pharma-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.6);
    content: "›";
    font-size: 1.2rem;
}

.pharma-hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.pharma-hero-subtitle {
    font-size: 1.5rem;
    color: #fff;
    font-weight: 500;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.pharma-hero-desc {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Pharmaceutical Hero Responsive */
@media (max-width: 991px) {
    .pharma-hero {
        min-height: 400px;
    }

    .pharma-hero-title {
        font-size: 2.5rem;
    }

    .pharma-hero-subtitle {
        font-size: 1.3rem;
    }
}

@media (max-width: 767px) {
    .pharma-hero {
        min-height: 350px;
    }

    .pharma-hero-content {
        padding: 60px 20px;
    }

    .pharma-hero-title {
        font-size: 2rem;
    }

    .pharma-hero-subtitle {
        font-size: 1.1rem;
    }

    .pharma-hero-desc {
        font-size: 1rem;
    }
}

/* Category Navigation */
.pharma-category-nav {
    background: #fff;
    padding: 20px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0px;
    z-index: 100;
}

.category-nav-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.category-nav-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: #f8f9fa;
    border-radius: 50px;
    color: #646263;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.category-nav-item:hover,
.category-nav-item.active {
    background: linear-gradient(135deg, #73aeb6 0%, #5a9aa3 100%);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(115, 174, 182, 0.4);
}

.category-nav-item i {
    font-size: 1rem;
}

/* Product Sections */
.pharma-product-section {
    padding: 80px 0;
    background: #fff;
}

.pharma-product-section.alt-bg {
    background: linear-gradient(180deg, #f8fafb 0%, #ffffff 100%);
}

.pharma-product-section .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.pharma-product-section .section-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #73aeb6 0%, #5a9aa3 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 15px 40px rgba(115, 174, 182, 0.35);
    position: relative;
}

.pharma-product-section .section-icon::before {
    content: '';
    position: absolute;
    width: 110px;
    height: 110px;
    border: 2px dashed rgba(115, 174, 182, 0.3);
    border-radius: 50%;
    animation: spin 20s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.pharma-product-section .section-icon i {
    font-size: 2.2rem;
    color: #fff;
}

.pharma-product-section .section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 10px;
}

.pharma-product-section .section-subtitle {
    font-size: 1.1rem;
    color: #73aeb6;
    font-weight: 600;
    display: inline-block;
    padding: 5px 20px;
    background: rgba(115, 174, 182, 0.1);
    border-radius: 20px;
}

/* Product Table */
.product-table-wrapper {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    border: 1px solid rgba(115, 174, 182, 0.1);
}

.pharma-product-table {
    width: 100%;
    border-collapse: collapse;
}

.pharma-product-table thead {
    background: linear-gradient(135deg, #73aeb6 0%, #5a9aa3 100%);
}

.pharma-product-table thead th {
    padding: 20px 25px;
    color: #fff;
    font-weight: 600;
    text-align: left;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pharma-product-table thead th.col-no {
    width: 80px;
    text-align: center;
}

.pharma-product-table thead th.col-size {
    width: 220px;
    text-align: center;
}

.pharma-product-table tbody tr {
    border-bottom: 1px solid #eef2f5;
    transition: all 0.3s ease;
}

.pharma-product-table tbody tr:hover {
    background: linear-gradient(90deg, rgba(115, 174, 182, 0.05) 0%, rgba(115, 174, 182, 0.02) 100%);
}

.pharma-product-table tbody tr:last-child {
    border-bottom: none;
}

.pharma-product-table tbody td {
    padding: 18px 25px;
    color: #4a5568;
    font-size: 0.95rem;
    vertical-align: middle;
}

.pharma-product-table tbody td:first-child {
    text-align: center;
    font-weight: 700;
    color: #73aeb6;
    background: rgba(115, 174, 182, 0.05);
    font-size: 1rem;
}

.pharma-product-table tbody td:last-child {
    text-align: center;
    color: #718096;
    font-size: 0.9rem;
    font-weight: 500;
}

/* CTA Section */
.pharma-cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #73aeb6 0%, #5a9aa3 100%);
    position: relative;
    overflow: hidden;
}

.pharma-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.pharma-cta-section .cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 650px;
    margin: 0 auto;
}

.pharma-cta-section .cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}

.pharma-cta-section .cta-content p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 35px;
    line-height: 1.8;
}

.pharma-cta-section .btn-cta {
    display: inline-flex;
    align-items: center;
    padding: 16px 40px;
    background: #fff;
    color: #73aeb6;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.pharma-cta-section .btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    color: #5a9aa3;
}

/* Pharmaceutical Page Responsive */
@media (max-width: 991px) {
    .pharma-product-section {
        padding: 60px 0;
    }

    .pharma-product-section .section-title {
        font-size: 1.8rem;
    }

    .pharma-product-section .section-icon {
        width: 70px;
        height: 70px;
    }

    .pharma-product-section .section-icon i {
        font-size: 1.8rem;
    }

    .pharma-product-section .section-icon::before {
        width: 90px;
        height: 90px;
    }

    .pharma-cta-section .cta-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 767px) {
    .category-nav-wrapper {
        gap: 8px;
        padding: 0 10px;
    }

    .category-nav-item {
        padding: 10px 15px;
        font-size: 0.85rem;
    }

    .category-nav-item span {
        display: none;
    }

    .category-nav-item i {
        font-size: 1.2rem;
    }

    .pharma-product-section {
        padding: 50px 0;
    }

    .pharma-product-section .section-header {
        margin-bottom: 30px;
    }

    .pharma-product-section .section-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }

    .pharma-product-section .section-icon i {
        font-size: 1.5rem;
    }

    .pharma-product-section .section-icon::before {
        width: 80px;
        height: 80px;
    }

    .pharma-product-section .section-title {
        font-size: 1.5rem;
    }

    .pharma-product-table thead th {
        padding: 14px 12px;
        font-size: 0.75rem;
        letter-spacing: 0.5px;
    }

    .pharma-product-table tbody td {
        padding: 14px 12px;
        font-size: 0.85rem;
    }

    .pharma-product-table thead th.col-no,
    .pharma-product-table tbody td:first-child {
        width: 50px;
        padding: 14px 8px;
    }

    .pharma-product-table thead th.col-size,
    .pharma-product-table tbody td:last-child {
        width: 90px;
        font-size: 0.7rem;
        padding: 14px 8px;
    }

    .pharma-cta-section {
        padding: 60px 0;
    }

    .pharma-cta-section .cta-content h2 {
        font-size: 1.75rem;
    }

    .pharma-cta-section .cta-content p {
        font-size: 1rem;
    }

    .pharma-cta-section .btn-cta {
        padding: 14px 30px;
    }
}

/* ========================================================
   NUTRACEUTICAL PAGE STYLES
   Color scheme: Emerald Green (#2d8a6e) / Mint (#44c89a)
   ======================================================== */

/* Nutra Hero Section */
.nutra-hero {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #1a5c45 0%, #2d8a6e 40%, #44c89a 100%);
    overflow: hidden;
}

.nutra-hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M50 50c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10s-10-4.477-10-10 4.477-10 10-10zM10 10c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10S0 25.523 0 20s4.477-10 10-10z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    z-index: 1;
}

.nutra-hero-particles {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 1;
    overflow: hidden;
}

.nutra-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 70px 0;
    max-width: 850px;
    margin: 0 auto;
}

.nutra-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 8px 24px;
    border-radius: 50px;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.nutra-breadcrumb { margin-bottom: 20px; }
.nutra-breadcrumb .breadcrumb { background: transparent; padding: 0; margin: 0; justify-content: center; }
.nutra-breadcrumb .breadcrumb-item { color: rgba(255,255,255,0.8); font-size: 0.95rem; }
.nutra-breadcrumb .breadcrumb-item a { color: rgba(255,255,255,0.9); text-decoration: none; transition: color 0.3s; }
.nutra-breadcrumb .breadcrumb-item a:hover { color: #fff; }
.nutra-breadcrumb .breadcrumb-item.active { color: #fff; }
.nutra-breadcrumb .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.6); content: "\203A"; font-size: 1.2rem; }

.nutra-hero-title {
    font-size: 3.2rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 15px;
    text-shadow: 0 2px 15px rgba(0,0,0,0.15);
    letter-spacing: -0.5px;
}

.nutra-hero-subtitle {
    font-size: 1.5rem;
    color: rgba(255,255,255,0.95);
    font-weight: 500;
    margin-bottom: 15px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.nutra-hero-desc {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.85);
    max-width: 650px;
    margin: 0 auto 35px;
    line-height: 1.8;
}

.nutra-hero-stats {
    display: inline-flex;
    align-items: center;
    gap: 30px;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(10px);
    padding: 20px 40px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.2);
}

.stat-item { text-align: center; }
.stat-number { display: block; font-size: 2rem; font-weight: 800; color: #fff; line-height: 1; }
.stat-label { font-size: 0.85rem; color: rgba(255,255,255,0.8); font-weight: 500; letter-spacing: 1px; text-transform: uppercase; }
.stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.3); }

/* Main Category Navigation */
.nutra-main-nav {
    background: #fff;
    padding: 25px 0;
    box-shadow: 0 4px 25px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 100;
}

.main-nav-wrapper {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
}

.main-nav-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px 12px;
    background: #f8faf9;
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.main-nav-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, #2d8a6e, #44c89a);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.main-nav-card:hover::before,
.main-nav-card.active::before {
    transform: scaleX(1);
}

.nav-card-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(45,138,110,0.1), rgba(68,200,154,0.1));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.nav-card-icon i {
    font-size: 1.3rem;
    color: #2d8a6e;
    transition: all 0.3s ease;
}

.nav-card-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 4px;
    display: block;
}

.nav-card-count {
    font-size: 0.72rem;
    color: #888;
    font-weight: 500;
}

.main-nav-card:hover,
.main-nav-card.active {
    background: linear-gradient(135deg, #2d8a6e, #44c89a);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(45,138,110,0.3);
    border-color: transparent;
}

.main-nav-card:hover .nav-card-icon,
.main-nav-card.active .nav-card-icon {
    background: rgba(255,255,255,0.2);
}

.main-nav-card:hover .nav-card-icon i,
.main-nav-card.active .nav-card-icon i {
    color: #fff;
}

.main-nav-card:hover .nav-card-title,
.main-nav-card.active .nav-card-title {
    color: #fff;
}

.main-nav-card:hover .nav-card-count,
.main-nav-card.active .nav-card-count {
    color: rgba(255,255,255,0.8);
}

/* Category Banner */
.category-banner {
    padding: 40px 0;
    position: relative;
    overflow: hidden;
}

.skincare-banner { background: linear-gradient(135deg, #f0faf5 0%, #d4f5e5 100%); }
.womencare-banner { background: linear-gradient(135deg, #fef0f5 0%, #fdd5e4 100%); }
.mencare-banner { background: linear-gradient(135deg, #eef3fe 0%, #d4dffa 100%); }
.kidscare-banner { background: linear-gradient(135deg, #fef7ee 0%, #fde8cc 100%); }
.weightmgmt-banner { background: linear-gradient(135deg, #f5eefe 0%, #e4d4fd 100%); }
.sports-banner { background: linear-gradient(135deg, #eefbfe 0%, #cdf0f7 100%); }

.category-banner-content {
    display: flex;
    align-items: center;
    gap: 25px;
}

.category-icon-lg {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2d8a6e, #44c89a);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 10px 30px rgba(45,138,110,0.3);
}

.category-icon-lg i {
    font-size: 2rem;
    color: #fff;
}

.category-banner-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #1a3a2d;
    margin: 0 0 8px;
    letter-spacing: -0.5px;
}

.category-banner-desc {
    font-size: 1.05rem;
    color: #5a7a6a;
    margin: 0;
    line-height: 1.5;
}

/* Sub Section */
.nutra-sub-section {
    padding: 70px 0;
    background: #fff;
}

.nutra-sub-section.alt-bg {
    background: linear-gradient(180deg, #f7faf8 0%, #ffffff 100%);
}

.sub-section-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
}

.sub-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2d8a6e, #38a57e);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 25px rgba(45,138,110,0.25);
    position: relative;
}

.sub-icon::after {
    content: '';
    position: absolute;
    inset: -5px;
    border: 2px dashed rgba(45,138,110,0.2);
    border-radius: 20px;
    animation: spin 25s linear infinite;
}

.sub-icon i {
    font-size: 1.4rem;
    color: #fff;
}

.sub-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: #1a3a2d;
    margin: 0 0 5px;
}

.sub-count {
    font-size: 0.9rem;
    color: #2d8a6e;
    font-weight: 600;
    background: rgba(45,138,110,0.1);
    padding: 3px 14px;
    border-radius: 20px;
    display: inline-block;
}

/* Nutra Product Table */
.nutra-table-wrapper {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.06);
    overflow: hidden;
    border: 1px solid rgba(45,138,110,0.1);
    overflow-x: auto;
}

.nutra-product-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 900px;
}

.nutra-product-table thead {
    background: linear-gradient(135deg, #2d8a6e 0%, #38a57e 100%);
}

.nutra-product-table thead th {
    padding: 18px 20px;
    color: #fff;
    font-weight: 600;
    text-align: left;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
}

.nutra-product-table thead th.col-sno { width: 60px; text-align: center; }
.nutra-product-table thead th.col-name { width: 200px; }
.nutra-product-table thead th.col-composition { }
.nutra-product-table thead th.col-serve { width: 130px; text-align: center; }
.nutra-product-table thead th.col-form { width: 170px; text-align: center; }

.nutra-product-table tbody tr {
    border-bottom: 1px solid #eef5f0;
    transition: all 0.3s ease;
}

.nutra-product-table tbody tr:hover {
    background: linear-gradient(90deg, rgba(45,138,110,0.04), rgba(68,200,154,0.02));
}

.nutra-product-table tbody tr:last-child { border-bottom: none; }

.nutra-product-table tbody td {
    padding: 16px 20px;
    color: #4a5a52;
    font-size: 0.9rem;
    vertical-align: top;
    line-height: 1.6;
}

.nutra-product-table tbody td:first-child {
    text-align: center;
    font-weight: 700;
    color: #2d8a6e;
    background: rgba(45,138,110,0.04);
    font-size: 0.95rem;
    vertical-align: middle;
}

.nutra-product-table tbody td:nth-child(2) {
    font-weight: 600;
    color: #1a3a2d;
}

.nutra-product-table tbody td:nth-child(4),
.nutra-product-table tbody td:nth-child(5) {
    text-align: center;
    font-size: 0.85rem;
    font-weight: 500;
    color: #5a7a6a;
    vertical-align: middle;
}

/* Nutra CTA Section */
.nutra-cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a5c45 0%, #2d8a6e 50%, #44c89a 100%);
    position: relative;
    overflow: hidden;
}

.nutra-cta-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M50 50c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10s-10-4.477-10-10 4.477-10 10-10zM10 10c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10S0 25.523 0 20s4.477-10 10-10z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.nutra-cta-section .cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    padding: 8px 24px;
    border-radius: 50px;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 25px;
    border: 1px solid rgba(255,255,255,0.2);
}

.nutra-cta-section .cta-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
}

.nutra-cta-section .cta-content p {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 35px;
    line-height: 1.8;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta-primary {
    display: inline-flex;
    align-items: center;
    padding: 16px 40px;
    background: #fff;
    color: #2d8a6e;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.btn-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
    color: #1a5c45;
}

.btn-cta-secondary {
    display: inline-flex;
    align-items: center;
    padding: 16px 40px;
    background: transparent;
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid rgba(255,255,255,0.5);
}

.btn-cta-secondary:hover {
    background: rgba(255,255,255,0.1);
    border-color: #fff;
    color: #fff;
    transform: translateY(-3px);
}

/* Nutra Page Responsive */
@media (max-width: 1199px) {
    .main-nav-wrapper {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 991px) {
    .nutra-hero { min-height: 420px; }
    .nutra-hero-title { font-size: 2.5rem; }
    .nutra-hero-subtitle { font-size: 1.2rem; }
    .nutra-hero-stats { padding: 15px 25px; gap: 20px; }
    .stat-number { font-size: 1.5rem; }

    .main-nav-wrapper { grid-template-columns: repeat(3, 1fr); gap: 10px; }
    .main-nav-card { padding: 15px 10px; }

    .category-banner-title { font-size: 1.8rem; }
    .category-icon-lg { width: 65px; height: 65px; }
    .category-icon-lg i { font-size: 1.6rem; }

    .nutra-sub-section { padding: 50px 0; }
    .sub-title { font-size: 1.4rem; }
    .sub-icon { width: 50px; height: 50px; }
    .sub-icon i { font-size: 1.2rem; }

    .nutra-cta-section .cta-content h2 { font-size: 2rem; }
}

@media (max-width: 767px) {
    .nutra-hero { min-height: 380px; }
    .nutra-hero-content { padding: 50px 15px; }
    .nutra-hero-title { font-size: 2rem; }
    .nutra-hero-subtitle { font-size: 1rem; letter-spacing: 1px; }
    .nutra-hero-desc { font-size: 0.95rem; }
    .nutra-hero-badge { font-size: 0.8rem; padding: 6px 18px; }
    .nutra-hero-stats { flex-direction: column; gap: 12px; padding: 15px 25px; }
    .stat-divider { width: 50px; height: 1px; }

    .main-nav-wrapper { grid-template-columns: repeat(2, 1fr); gap: 8px; }
    .main-nav-card { padding: 12px 8px; border-radius: 12px; }
    .nav-card-icon { width: 40px; height: 40px; border-radius: 10px; }
    .nav-card-icon i { font-size: 1.1rem; }
    .nav-card-title { font-size: 0.78rem; }
    .nav-card-count { font-size: 0.65rem; }

    .category-banner { padding: 25px 0; }
    .category-banner-content { gap: 15px; }
    .category-icon-lg { width: 55px; height: 55px; border-radius: 14px; }
    .category-icon-lg i { font-size: 1.4rem; }
    .category-banner-title { font-size: 1.5rem; }
    .category-banner-desc { font-size: 0.9rem; }

    .nutra-sub-section { padding: 40px 0; }
    .sub-section-header { gap: 15px; margin-bottom: 25px; }
    .sub-icon { width: 45px; height: 45px; border-radius: 12px; }
    .sub-icon i { font-size: 1.1rem; }
    .sub-icon::after { inset: -4px; border-radius: 16px; }
    .sub-title { font-size: 1.2rem; }
    .sub-count { font-size: 0.8rem; padding: 2px 10px; }

    .nutra-product-table thead th { padding: 14px 12px; font-size: 0.72rem; letter-spacing: 0.5px; }
    .nutra-product-table tbody td { padding: 12px; font-size: 0.82rem; }
    .nutra-product-table thead th.col-sno,
    .nutra-product-table tbody td:first-child { width: 40px; padding: 12px 6px; }

    .nutra-cta-section { padding: 60px 0; }
    .nutra-cta-section .cta-content h2 { font-size: 1.6rem; }
    .nutra-cta-section .cta-content p { font-size: 0.95rem; }
    .btn-cta-primary, .btn-cta-secondary { padding: 14px 28px; font-size: 0.9rem; }
    .cta-buttons { flex-direction: column; align-items: center; }
}
