/* 
 * Brand Soluxions Inc. - Main Stylesheet
 * A modern, clean design for cosmetics manufacturing company
 */

/* ===== CSS Variables ===== */
:root {
    --primary-color: #00a5a8;
    --primary-dark: #008b8e;
    --primary-light: #33b5b8;
    --secondary-color: #0077b6;
    --gradient-primary: linear-gradient(135deg, #00a5a8 0%, #0077b6 50%, #00a5a8 100%);
    --gradient-hero: linear-gradient(135deg, #00a5a8 0%, #0088a8 50%, #0077b6 100%);
    --gradient-cta: linear-gradient(135deg, #00a5a8 0%, #0077b6 100%);
    --text-dark: #1a1a2e;
    --text-light: #ffffff;
    --text-muted: #666666;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
    --font-primary: 'Poppins', sans-serif;
}

/* ===== Reset & Base Styles ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    overflow-x: hidden;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Prevent body scroll when mobile menu is open */
body.menu-open {
    overflow: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Global section overflow fix for mobile */
section {
    overflow-x: hidden;
}

/* ===== Utility Classes ===== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 25px;
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-align: center;
    min-height: 48px;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.btn-primary {
    background-color: #3a5a80;
    color: var(--text-light);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: rgba(58, 90, 128, 0.7);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.37);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-light);
    border: 2px solid var(--text-light);
}

.btn-secondary:hover {
    background-color: var(--text-light);
    color: var(--primary-color);
}

.btn-outline {
    background-color: transparent;
    color: var(--text-dark);
    border: 2px solid var(--text-dark);
}

.btn-outline:hover {
    background-color: var(--text-dark);
    color: var(--text-light);
}

/* ===== Header & Navigation ===== */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    transition: var(--transition);
}

.main-header.scrolled {
    background: var(--gradient-primary);
    box-shadow: var(--shadow);
}

.navbar {
    padding: 15px 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    height: 50px;
    width: auto;
}

.footer-logo {
    height: 60px;
    filter: brightness(0) invert(1);
}

.logo-icon {
    width: 45px;
    height: 45px;
}

.logo-text {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-light);
    line-height: 1.1;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 35px;
}

.nav-links a {
    color: var(--text-light);
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.5px;
    position: relative;
}

.nav-links a:not(.btn)::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--text-light);
    transition: var(--transition);
}

.nav-links a:not(.btn):hover::after {
    width: 100%;
}

/* Hide mobile elements on desktop */
.mobile-menu-close,
.mobile-menu-footer,
.mobile-menu-overlay {
    display: none;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    width: 44px;
    height: 44px;
    justify-content: center;
    align-items: center;
    -webkit-tap-highlight-color: transparent;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background-color: var(--text-light);
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

/* Hide hamburger button when menu is open (we use the close button inside) */
.mobile-menu-btn.active {
    opacity: 0;
    pointer-events: none;
}

/* ===== Hero Section ===== */
.hero {
    background: var(--gradient-hero);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

/* Home Hero with Building Background */
.home-hero {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.home-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../images/showcase/BrandSoluxion.png');
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.home-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 128, 128, 0.5) 0%, rgba(0, 91, 150, 0.5) 100%);
    z-index: 1;
}

.home-hero .container {
    display: block;
    position: relative;
    z-index: 2;
    height: 100%;
    min-height: calc(100vh - 80px);
}

/* Desktop Hero Content */
.hero-desktop {
    text-align: right;
    color: var(--text-light);
    position: absolute;
    bottom: 20px;
    right: 5px;
}

.hero-desktop h1 {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 5px;
    text-shadow: 2px 3px 10px rgba(0, 0, 0, 0.6);
}

.hero-desktop .hero-address {
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.5px;
    text-shadow: 1px 2px 8px rgba(0, 0, 0, 0.5);
}

/* Mobile Hero Content - Hidden on desktop */
.hero-mobile {
    display: none;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    color: var(--text-light);
    z-index: 2;
}

.hero-content h1 {
    font-size: 52px;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
    opacity: 0.95;
}

.hero-badge {
    margin-top: 30px;
}

.hero-badge img {
    height: 60px;
    width: auto;
}

.fda-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.15);
    padding: 10px 20px;
    border-radius: 8px;
    width: fit-content;
}

.fda-badge img {
    height: 40px;
}

.fda-badge span {
    font-size: 12px;
    color: var(--text-light);
}

.hero-image {
    position: relative;
    z-index: 1;
}

.hero-image img {
    width: 100%;
    max-width: 600px;
    margin-left: auto;
}

.hero-product {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
}

.hero-product img {
    max-width: 150px;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
}

.hero-product-label {
    margin-top: 10px;
    font-size: 12px;
    color: var(--text-light);
}

/* ===== Categories Section ===== */
.categories {
    padding: 80px 0;
    background: var(--gradient-primary);
}

.section-title {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 50px;
    color: var(--text-light);
}

.section-title.dark {
    color: var(--text-dark);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.category-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.category-card {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 220px;
    width: 100%;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    cursor: pointer;
    overflow: hidden;
    border-radius: 15px;
}

.category-card:hover {
    transform: scale(1.08);
    box-shadow: 0 20px 40px rgba(0, 165, 168, 0.3);
    z-index: 10;
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    transition: transform 0.4s ease;
}

.category-card:hover img {
    transform: scale(1.05);
}

.category-name {
    padding: 12px 5px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-light);
    letter-spacing: 1px;
    text-align: center;
}

/* ===== Category Modal ===== */
.category-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 20px;
    overflow: hidden;
}

.category-modal.active {
    display: flex;
}

/* Body scroll lock when modal is open */
body.modal-open {
    touch-action: none;
    -webkit-overflow-scrolling: none;
}

.category-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    touch-action: none;
}

.category-modal-content {
    position: relative;
    background: var(--bg-white);
    border-radius: 20px;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    overflow-x: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.category-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    border: none;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--text-dark);
    transition: var(--transition);
    z-index: 10;
}

.category-modal-close:hover {
    background: var(--primary-color);
    color: var(--text-light);
}

.category-modal-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 400px;
}

.category-modal-image {
    background: linear-gradient(135deg, #e8f4f8 0%, #d4e8f0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.category-modal-image img {
    max-width: 100%;
    max-height: 350px;
    object-fit: contain;
    border-radius: 15px;
}

.category-modal-info {
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.category-modal-info h3 {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.category-modal-info p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.category-modal-info .btn {
    align-self: flex-start;
}

/* ===== Service Modal ===== */
.service-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.service-modal.active {
    opacity: 1;
    visibility: visible;
}

.service-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.service-modal-content {
    position: relative;
    background: var(--bg-white);
    border-radius: 20px;
    max-width: 900px;
    width: 90%;
    max-height: 90vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    animation: modalSlideIn 0.3s ease;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

/* Service Modal Layout with Image */
.service-modal-layout {
    display: flex;
    flex-direction: row;
    flex: 1;
    overflow: hidden;
}

.service-modal-image {
    flex: 0 0 300px;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.service-modal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-modal-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.service-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.1);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--text-dark);
    transition: all 0.3s ease;
    z-index: 10;
}

.service-modal-close:hover {
    background: rgba(0, 0, 0, 0.2);
    transform: rotate(90deg);
}

.service-modal-header {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 30px 30px 20px;
    border-bottom: 1px solid #eee;
    flex-shrink: 0;
}

.service-modal-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.service-modal-icon i {
    font-size: 36px;
    color: var(--text-light);
}

.service-modal-title {
    flex: 1;
}

.service-modal-category {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.service-modal-title h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}

.service-modal-body {
    padding: 25px 30px 30px;
    overflow-y: auto;
    flex: 1;
}

.service-modal-section {
    margin-bottom: 25px;
}

.service-modal-section:last-of-type {
    margin-bottom: 0;
}

.service-modal-section h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-modal-section h4 i {
    color: var(--primary-color);
    font-size: 18px;
}

.service-modal-section p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-muted);
}

.service-modal-cta {
    display: flex;
    gap: 15px;
    padding: 20px 30px;
    border-top: 1px solid #eee;
    background: var(--bg-white);
    flex-shrink: 0;
}

.service-modal-cta .btn {
    flex: 1;
    text-align: center;
    padding: 14px 20px;
}

/* Primary button in service modal - Teal */
.service-modal-cta .btn-primary {
    background: var(--gradient-primary);
    color: var(--text-light);
    border: none;
}

.service-modal-cta .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 165, 168, 0.4);
}

/* Secondary button in service modal - Teal outline */
.service-modal-cta .btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.service-modal-cta .btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--text-light);
}

/* Responsive Service Modal */
@media (max-width: 768px) {
    .service-modal-content {
        max-width: 95%;
        max-height: 85vh;
    }
    
    .service-modal-layout {
        flex-direction: column;
    }
    
    .service-modal-image {
        flex: 0 0 180px;
        width: 100%;
    }
    
    .service-modal-header {
        padding: 20px 20px 15px;
    }
    
    .service-modal-icon {
        width: 60px;
        height: 60px;
    }
    
    .service-modal-icon i {
        font-size: 28px;
    }
    
    .service-modal-title h3 {
        font-size: 18px;
    }
    
    .service-modal-body {
        padding: 15px 20px 20px;
    }
    
    .service-modal-cta {
        padding: 15px 20px;
        flex-direction: column;
        gap: 10px;
    }
    
    .service-modal-cta .btn {
        width: 100%;
    }
}

/* Touch device optimizations - Fix iPad double-tap issue */
@media (hover: none) and (pointer: coarse) {
    .pick-card:hover {
        transform: none;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    }
    
    .service-card:hover .service-image-wrapper img {
        transform: none;
    }
    
    .category-image-wrapper:hover {
        transform: none;
        box-shadow: none;
    }
    
    .service-card {
        cursor: pointer;
        -webkit-tap-highlight-color: rgba(0, 165, 168, 0.1);
    }
    
    .service-card:active {
        transform: scale(0.98);
        transition: transform 0.1s ease;
    }
    
    .pick-link {
        color: var(--primary-color);
        font-weight: 600;
    }
}

/* ===== Featured Services / Top Picks Section ===== */
.top-picks,
.featured-services {
    padding: 80px 0;
    background-color: var(--bg-light);
    overflow: hidden;
}

.top-picks .section-title,
.featured-services .section-title {
    color: var(--text-dark);
}

.picks-carousel {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.picks-track-wrapper {
    overflow: hidden;
    width: 100%;
}

.picks-track {
    display: flex;
    gap: 20px;
    width: max-content;
    cursor: grab;
    user-select: none;
}

.picks-track:active,
.picks-carousel.dragging .picks-track {
    cursor: grabbing;
}

.picks-carousel.dragging .pick-card {
    pointer-events: none;
}

.pick-card {
    flex: 0 0 220px;
    display: flex;
    flex-direction: column;
    background: var(--bg-white);
    padding: 12px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pick-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

/* Hide rank badges - not used for Featured Services */
.pick-rank {
    display: none;
}

/* Service card clickable */
.service-card {
    cursor: pointer;
}

/* Service icon wrapper inside cards */
.service-icon-wrapper {
    width: 180px;
    height: 220px;
    background: var(--gradient-primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.service-icon-wrapper i {
    font-size: 60px;
    color: var(--text-light);
}

/* Service image wrapper for Featured Services */
.service-image-wrapper {
    width: 100%;
    height: 140px;
    background: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 8px;
}

.service-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-image-wrapper img {
    transform: scale(1.05);
}

.pick-image {
    width: 180px;
    height: 220px;
    background: linear-gradient(180deg, #f5f5f5 0%, #e8e8e8 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
}

.pick-image img {
    max-height: 90%;
    object-fit: contain;
}

.pick-info {
    text-align: center;
    padding: 0;
}

.pick-category {
    font-size: 10px;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
    font-weight: 600;
}

.pick-name {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
    line-height: 1.25;
}

.pick-link {
    font-size: 12px;
    color: var(--text-muted);
    border-bottom: 1px solid var(--text-muted);
    padding-bottom: 1px;
    cursor: pointer;
    display: inline-block;
    transition: all 0.3s ease;
}

.pick-link:hover {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

/* Service card hover effect for Learn More */
.service-card:hover .pick-link {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

/* ===== Discovery Section ===== */
.discovery {
    padding: 80px 0;
    background: linear-gradient(180deg, #e8f7fc 0%, #f0faff 100%);
}

.discovery-grid {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.discovery-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.discovery-item.reverse {
    direction: rtl;
}

.discovery-item.reverse > * {
    direction: ltr;
}

.discovery-image {
    position: relative;
}

.discovery-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.discovery-content {
    padding: 20px 0;
}

.discovery-number {
    font-size: 14px;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 10px;
    display: inline-block;
    background: rgba(0, 165, 168, 0.1);
    padding: 5px 15px;
    border-radius: 20px;
}

.discovery-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
    line-height: 1.3;
}

.discovery-text {
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 16px;
}

/* ===== Product Showcase ===== */
.product-showcase {
    padding: 80px 0;
    background: linear-gradient(135deg, #e8f7fc 0%, #d4f0fc 50%, #c8ecf8 100%);
    overflow: hidden;
}

.showcase-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.showcase-image {
    position: relative;
}

.showcase-image img {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0, 165, 168, 0.2);
    transition: transform 0.4s ease;
}

.showcase-image:hover img {
    transform: scale(1.02);
}

.showcase-info {
    padding: 20px 0;
}

.showcase-badge {
    display: inline-block;
    background: var(--gradient-primary);
    color: var(--text-light);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.showcase-title {
    font-size: 40px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.2;
}

.showcase-description {
    font-size: 17px;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 30px;
}

.showcase-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 35px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 10px;
    transition: background 0.3s ease;
}

.highlight-item:hover {
    background: rgba(255, 255, 255, 0.95);
}

.highlight-item i {
    color: var(--primary-color);
    font-size: 20px;
}

.highlight-item span {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
}

.showcase-cta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.showcase-cta .btn {
    padding: 14px 32px;
    font-size: 15px;
}

.showcase-cta .btn-outline {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
}

.showcase-cta .btn-outline:hover {
    background: var(--primary-color);
    color: var(--text-light);
}

/* ===== Steps Section ===== */
.steps {
    padding: 80px 0;
    background-color: var(--bg-white);
}

/* Ensure steps section is always visible - no scroll animations */
.steps,
.steps-timeline,
.step-item,
.step-dot,
.step-label {
    opacity: 1 !important;
    animation: none !important;
}

.steps .section-title {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.steps-subtitle {
    text-align: center;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 50px;
}

.steps-timeline {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding-top: 10px;
}

.steps-timeline::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 30px;
    right: 30px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    z-index: 0;
}

.step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
    flex: 1;
}

.step-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: var(--bg-white);
    border: 3px solid var(--primary-color);
    box-shadow: 0 0 0 3px var(--bg-white);
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.step-label {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
    text-align: center;
}

/* ===== CTA Section ===== */
.cta {
    padding: 100px 0;
    background: var(--gradient-cta);
    text-align: center;
}

.cta-title {
    font-size: 42px;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 20px;
}

.cta-text {
    color: var(--text-light);
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.cta .btn-secondary {
    background: transparent;
    border: 2px solid var(--text-light);
    color: var(--text-light);
}

.cta .btn-secondary:hover {
    background: var(--text-light);
    color: var(--primary-color);
}

.cta .btn-primary {
    background: #3a5a80;
}

.cta .btn-primary:hover {
    background: rgba(58, 90, 128, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

/* ===== Footer ===== */
.main-footer {
    background: var(--gradient-primary);
    padding: 60px 0 0;
    color: var(--text-light);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand .logo {
    margin-bottom: 15px;
}

.footer-brand .tagline {
    opacity: 0.8;
    font-size: 14px;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--text-light);
    color: var(--primary-color);
}

.footer-links h4,
.footer-contact h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links a {
    opacity: 0.8;
    font-size: 14px;
}

.footer-links a:hover {
    opacity: 1;
}

.footer-contact p {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 12px;
}

.footer-contact i {
    margin-top: 4px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 14px;
    opacity: 0.8;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    font-size: 14px;
    opacity: 0.8;
}

.footer-bottom-links a:hover {
    opacity: 1;
}

/* ===== Trust Badges / Certifications ===== */
.trust-badges {
    padding: 60px 0;
    background: var(--bg-light);
    text-align: center;
}

.trust-badges-label {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-bottom: 28px;
}

.trust-badges-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 28px;
    background: var(--bg-white);
    border-radius: 14px;
    border: 1.5px solid var(--border-color);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    transition: var(--transition);
}

.trust-badge:hover {
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
    border-color: var(--primary-color);
}

.trust-badge-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 20px;
}

.trust-badge-icon.fda {
    background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
    color: #2e7d32;
}

.trust-badge-icon.dti {
    background: linear-gradient(135deg, #e3f2fd, #bbdefb);
    color: #1565c0;
}

.trust-badge-info {
    text-align: left;
}

.trust-badge-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
}

.trust-badge-subtitle {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 2px;
}

/* Footer certifications (compact inline) */
.footer-certifications {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    padding: 16px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    flex-wrap: wrap;
}

.footer-cert {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 500;
    opacity: 0.85;
    letter-spacing: 0.3px;
}

.footer-cert i {
    font-size: 14px;
}

.footer-cert-divider {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
}

/* ===== RESPONSIVE DESIGN ===== */

/* Extra Large Screens (min-width: 2560px) - 4K and above */
@media (min-width: 2560px) {
    .hero-desktop {
        bottom: 100px;
        right: 120px;
    }
    
    .hero-desktop h1 {
        font-size: 42px;
        letter-spacing: 3px;
    }
    
    .hero-desktop .hero-address {
        font-size: 18px;
        letter-spacing: 1px;
    }
}

/* Large Screens (min-width: 1920px) */
@media (min-width: 1920px) {
    .hero-desktop {
        bottom: 80px;
        right: 100px;
    }
    
    .hero-desktop h1 {
        font-size: 36px;
        letter-spacing: 2.5px;
    }
    
    .hero-desktop .hero-address {
        font-size: 16px;
    }
}

/* Medium-Large Screens (min-width: 1600px) */
@media (min-width: 1600px) and (max-width: 1919px) {
    .hero-desktop {
        bottom: 70px;
        right: 80px;
    }
    
    .hero-desktop h1 {
        font-size: 30px;
    }
    
    .hero-desktop .hero-address {
        font-size: 14px;
    }
}

/* Standard Large Screens (min-width: 1400px) */
@media (min-width: 1400px) and (max-width: 1599px) {
    .hero-desktop {
        bottom: 60px;
        right: 60px;
    }
    
    .hero-desktop h1 {
        font-size: 28px;
    }
    
    .hero-desktop .hero-address {
        font-size: 13px;
    }
}

/* Large Tablets & Small Desktops (max-width: 1200px) */
@media (max-width: 1200px) {
    .container {
        padding: 0 30px;
    }
    
    .hero-content h1 {
        font-size: 48px;
    }
    
    .hero-center h1 {
        font-size: 36px;
        letter-spacing: 2px;
    }
    
    .hero-center .hero-address {
        font-size: 14px;
    }
    
    .categories-grid {
        grid-template-columns: repeat(6, 1fr);
        gap: 12px;
    }
    
    .category-card {
        height: 180px;
    }
    
    .category-name {
        font-size: 11px;
    }
    
    .pick-card {
        flex: 0 0 340px;
    }
    
    .discovery-grid {
        gap: 40px;
    }
}

/* Tablets (max-width: 1024px) */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 42px;
    }
    
    .hero-center h1 {
        font-size: 32px;
        letter-spacing: 2px;
    }
    
    .hero-center .hero-address {
        font-size: 13px;
    }

    .hero-image {
        display: none;
    }
    
    .hero {
        text-align: center;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .hero-content p {
        margin: 0 auto 30px;
    }
    
    .hero-buttons {
        justify-content: center;
    }

    .categories-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    
    .category-card {
        height: 200px;
    }
    
    .category-name {
        font-size: 12px;
    }

    .pick-card {
        flex: 0 0 320px;
        padding: 15px;
    }
    
    .pick-image {
        width: 150px;
        height: 180px;
    }
    
    .pick-name {
        font-size: 16px;
    }
    
    .discovery-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .discovery-item {
        flex-direction: row !important;
        align-items: center;
        gap: 30px;
    }
    
    .discovery-image {
        flex: 0 0 40%;
    }
    
    .discovery-content {
        flex: 1;
    }
    
    /* Product Showcase responsive */
    .showcase-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .showcase-stats {
        gap: 40px;
    }
    
    .stat-number {
        font-size: 40px;
    }
    
    .showcase-title {
        font-size: 36px;
    }
    
    .steps-timeline {
        display: flex;
        flex-wrap: nowrap;
        justify-content: space-between;
        gap: 10px;
        overflow-x: auto;
    }
    
    .step-item {
        flex: 1;
        min-width: auto;
    }
    
    .steps-timeline::before {
        display: block;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    /* Vision & Mission responsive */
    .vision-card,
    .mission-card {
        padding: 40px 30px;
    }
    
    .values-grid-eight {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }
}

/* Small Tablets / Large Phones (max-width: 768px) */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        width: 280px;
        max-width: 80%;
        background: var(--gradient-primary);
        flex-direction: column;
        padding: 120px 30px 40px;
        gap: 15px;
        z-index: 999;
        align-items: center;
        justify-content: flex-start;
        transform: translateX(100%);
        transition: transform 0.3s ease;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.3);
        display: flex;
    }

    .nav-links.active {
        transform: translateX(0);
    }
    
    /* Mobile menu overlay - clickable element to close menu */
    .mobile-menu-overlay {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
        z-index: 998;
        -webkit-tap-highlight-color: transparent;
    }
    
    .mobile-menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }
    
    /* Remove the pseudo-element overlay since we now have a real element */
    .nav-links::before {
        display: none;
    }
    
    .nav-links a {
        font-size: 20px;
        font-weight: 500;
        padding: 14px 25px;
        width: 100%;
        text-align: center;
        border-radius: 10px;
        transition: all 0.2s ease;
        border: none;
    }
    
    .nav-links a:not(.btn):hover,
    .nav-links a:not(.btn):active {
        background: rgba(255, 255, 255, 0.15);
    }
    
    .nav-links a:not(.btn)::after {
        display: none;
    }
    
    .nav-links li {
        width: 100%;
    }
    
    .nav-links .btn {
        margin-top: 30px;
        width: 100%;
        max-width: 180px;
        padding: 14px 30px;
        font-size: 14px;
        font-weight: 600;
    }
    
    .nav-links .btn-primary {
        background-color: #3a5a80;
        border-radius: 30px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }
    
    .nav-links .btn-primary:active {
        transform: scale(0.98);
    }
    
    /* Mobile menu close button */
    .mobile-menu-close {
        position: absolute;
        top: 25px;
        right: 25px;
        width: 44px;
        height: 44px;
        background: rgba(255, 255, 255, 0.1);
        border: none;
        border-radius: 50%;
        color: var(--text-light);
        font-size: 18px;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.2s ease;
        -webkit-tap-highlight-color: transparent;
    }
    
    .mobile-menu-close:hover,
    .mobile-menu-close:active {
        background: rgba(255, 255, 255, 0.2);
        transform: scale(1.05);
    }
    
    /* Mobile menu footer with logo */
    .mobile-menu-footer {
        margin-top: auto;
        padding-top: 30px;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .mobile-menu-logo {
        height: 40px;
        width: auto;
        opacity: 0.9;
    }
    
    .mobile-menu-copyright {
        font-size: 11px;
        color: rgba(255, 255, 255, 0.6);
        letter-spacing: 0.5px;
    }

    .mobile-menu-btn {
        display: flex;
        z-index: 1000;
        -webkit-tap-highlight-color: transparent;
    }
    
    .mobile-menu-btn:active {
        transform: scale(0.95);
    }
    
    .logo-img {
        height: 35px;
    }

    .hero {
        padding: 80px 0 0;
        min-height: 100vh;
    }
    
    .hero-content h1 {
        font-size: 32px;
        line-height: 1.2;
    }
    
    /* Hide desktop hero, show mobile hero */
    .hero-desktop {
        display: none;
    }
    
    .home-hero .container {
        padding-right: 20px;
        padding-bottom: 0;
        min-height: auto;
        justify-content: center;
        align-items: center;
    }
    
    .hero-mobile {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        text-align: center;
        color: var(--text-light);
        min-height: calc(100vh - 80px);
        padding: 170px 20px 60px;
    }
    
    .hero-mobile h1 {
        font-size: 36px;
        font-weight: 700;
        margin-bottom: 8px;
        text-shadow: 2px 3px 10px rgba(0, 0, 0, 0.5);
    }
    
    .hero-mobile h1 sup {
        font-size: 14px;
        vertical-align: super;
    }
    
    .hero-mobile .hero-tagline {
        font-size: 16px;
        font-weight: 400;
        margin-bottom: 25px;
        opacity: 0.95;
        text-shadow: 1px 2px 8px rgba(0, 0, 0, 0.4);
    }
    
    .hero-mobile .btn {
        padding: 14px 40px;
        font-size: 14px;
        background-color: #3a5a80;
        border: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    .hero-mobile .btn:hover,
    .hero-mobile .btn:active {
        background-color: rgba(58, 90, 128, 0.7);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        border: 1px solid rgba(255, 255, 255, 0.3);
    }
    
    /* Mobile hero image - vertical/portrait orientation */
    .home-hero::before {
        background-image: url('../images/showcase/BrandSoluxion_mobile.png');
        background-position: center top;
    }
    
    .hero-content p {
        font-size: 16px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
    }
    
    /* Categories */
    .categories {
        padding: 60px 0;
    }
    
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .category-card {
        height: 180px;
    }
    
    .category-name {
        font-size: 11px;
        padding: 10px 5px;
    }
    
    /* Category Modal - Tablet/Mobile */
    .category-modal-content {
        max-width: 95%;
        max-height: 85vh;
    }
    
    .category-modal-grid {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    
    .category-modal-image {
        padding: 30px;
        max-height: 250px;
    }
    
    .category-modal-image img {
        max-height: 200px;
    }
    
    .category-modal-info {
        padding: 30px;
        text-align: center;
    }
    
    .category-modal-info h3 {
        font-size: 24px;
    }
    
    .category-modal-info p {
        font-size: 14px;
    }
    
    .category-modal-info .btn {
        align-self: center;
    }
    
    /* Service Modal - Tablet/Mobile */
    .service-modal-content {
        max-width: 92%;
        max-height: 85vh;
        margin: 15px;
        border-radius: 16px;
        display: flex;
        flex-direction: column;
        overflow: hidden;
    }
    
    .service-modal-header {
        flex-direction: column;
        text-align: center;
        padding: 20px 18px 15px;
        gap: 12px;
        flex-shrink: 0;
    }
    
    .service-modal-icon {
        width: 60px;
        height: 60px;
        border-radius: 12px;
    }
    
    .service-modal-icon i {
        font-size: 26px;
    }
    
    .service-modal-category {
        font-size: 10px;
    }
    
    .service-modal-title h3 {
        font-size: 18px;
    }
    
    .service-modal-body {
        padding: 18px;
        overflow-y: auto;
        flex: 1;
    }
    
    .service-modal-section {
        margin-bottom: 15px;
    }
    
    .service-modal-section:last-of-type {
        margin-bottom: 0;
    }
    
    .service-modal-section h4 {
        font-size: 13px;
        margin-bottom: 8px;
    }
    
    .service-modal-section p {
        font-size: 13px;
        line-height: 1.5;
    }
    
    .service-modal-cta {
        flex-direction: column;
        gap: 10px;
        padding: 15px 18px;
        flex-shrink: 0;
        background: var(--bg-white);
    }
    
    .service-modal-cta .btn {
        width: 100%;
        padding: 12px 20px;
        font-size: 13px;
    }
    
    /* Featured Services / Top Picks */
    .top-picks,
    .featured-services {
        padding: 40px 0;
    }
    
    .picks-track {
        gap: 12px;
    }
    
    .pick-card {
        flex: 0 0 140px;
        padding: 10px;
        border-radius: 10px;
    }
    
    .service-icon-wrapper {
        width: 100%;
        height: 80px;
    }
    
    .service-icon-wrapper i {
        font-size: 32px;
    }
    
    .service-image-wrapper {
        height: 100px;
        border-radius: 6px;
        margin-bottom: 6px;
    }
    
    .pick-image {
        width: 100%;
        height: 100px;
    }
    
    .pick-info {
        padding: 0;
    }
    
    .pick-category {
        font-size: 8px;
        margin-bottom: 2px;
        letter-spacing: 0.3px;
    }
    
    .pick-name {
        font-size: 11px;
        margin-bottom: 4px;
        line-height: 1.2;
    }
    
    .pick-link {
        font-size: 9px;
    }
    
    .pick-rank {
        top: 10px;
        left: 10px;
    }
    
    /* Discovery */
    .discovery {
        padding: 60px 0;
    }
    
    .discovery-grid {
        gap: 50px;
    }
    
    .discovery-item {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .discovery-item.reverse {
        direction: ltr;
    }
    
    .discovery-image {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .discovery-image img {
        border-radius: 12px;
    }
    
    .discovery-content {
        padding: 0;
    }
    
    .discovery-number {
        font-size: 12px;
        padding: 4px 12px;
    }
    
    .discovery-title {
        font-size: 24px;
        margin-bottom: 15px;
    }
    
    .discovery-text {
        font-size: 15px;
    }

    /* Product Showcase */
    .product-showcase {
        padding: 60px 0;
    }
    
    .showcase-header {
        margin-bottom: 40px;
    }
    
    .showcase-title {
        font-size: 28px;
    }
    
    /* Product Showcase - Responsive */
    .product-showcase {
        padding: 60px 0;
    }
    
    .showcase-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .showcase-image {
        order: -1;
    }
    
    .showcase-image img {
        max-width: 500px;
        border-radius: 15px;
    }
    
    .showcase-info {
        padding: 0 15px;
    }
    
    .showcase-badge {
        font-size: 12px;
        padding: 6px 16px;
    }
    
    .showcase-title {
        font-size: 30px;
    }
    
    .showcase-description {
        font-size: 15px;
    }
    
    .showcase-highlights {
        grid-template-columns: 1fr;
        gap: 10px;
        text-align: left;
    }
    
    .highlight-item {
        justify-content: flex-start;
    }
    
    .showcase-cta {
        justify-content: center;
    }
    
    .showcase-cta .btn {
        padding: 14px 30px;
        font-size: 14px;
    }
    
    /* Steps - Keep horizontal like desktop */
    .steps {
        padding: 60px 0;
    }
    
    .steps-subtitle {
        font-size: 14px;
        margin-bottom: 40px;
        padding: 0 15px;
    }
    
    .steps-timeline {
        display: flex;
        flex-wrap: nowrap;
        justify-content: space-between;
        padding-top: 10px;
    }
    
    .steps-timeline::before {
        top: 19px;
        left: 20px;
        right: 20px;
    }
    
    .step-item {
        flex: 1;
        min-width: auto;
    }
    
    .step-dot {
        width: 18px;
        height: 18px;
        border-radius: 50%;
        background-color: var(--bg-white);
        border: 3px solid var(--primary-color);
        box-shadow: 0 0 0 2px var(--bg-white);
        margin-bottom: 15px;
        box-sizing: border-box;
    }
    
    .step-label {
        font-size: 10px;
    }
    
    /* CTA */
    .cta {
        padding: 60px 0;
    }

    .cta-title {
        font-size: 28px;
    }
    
    .cta-text {
        font-size: 16px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 280px;
    }

    /* Footer */
    .main-footer {
        padding: 50px 0 0;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .footer-brand {
        order: 1;
    }
    
    .footer-links:nth-child(2) {
        order: 3;
    }
    
    .footer-links:nth-child(3) {
        order: 4;
    }
    
    .footer-contact {
        order: 2;
    }

    .social-links {
        justify-content: center;
    }

    .footer-contact p {
        justify-content: center;
        text-align: center;
    }
    
    .footer-contact p i {
        display: block;
        margin-bottom: 5px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
        padding: 20px 0;
    }

    .trust-badges {
        padding: 40px 0;
    }

    .trust-badges-row {
        flex-direction: column;
        gap: 16px;
        align-items: center;
    }

    .trust-badge {
        padding: 14px 20px;
        width: 100%;
        max-width: 320px;
    }

    .trust-badge-icon {
        width: 40px;
        height: 40px;
        font-size: 17px;
    }

    .footer-certifications {
        gap: 16px;
    }
    
    /* Page Hero for internal pages */
    .page-hero {
        padding: 120px 0 60px;
    }
    
    .page-hero h1 {
        font-size: 32px;
    }
    
    .page-hero p {
        font-size: 16px;
    }
    
    /* Vision & Mission */
    .vision-section,
    .mission-section {
        padding: 40px 0;
    }
    
    .vision-card,
    .mission-card {
        padding: 30px 20px;
    }
    
    .vision-title,
    .mission-title {
        font-size: 22px;
        letter-spacing: 2px;
    }
    
    .vision-text,
    .mission-text {
        font-size: 15px;
        line-height: 1.7;
    }
    
    .values-section {
        padding: 60px 0;
    }
    
    .values-acronym {
        font-size: 22px;
        letter-spacing: 4px;
        margin-bottom: 40px;
    }
    
    .values-grid,
    .values-grid-eight {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .value-card {
        padding: 30px 20px;
    }
    
    .value-icon {
        width: 60px;
        height: 60px;
    }
    
    .value-icon i {
        font-size: 24px;
    }
    
    .value-card h3 {
        font-size: 16px;
    }
    
    .value-card p {
        font-size: 13px;
    }
    
    .section-title {
        font-size: 26px;
        margin-bottom: 40px;
    }
    
    /* About page - New Design */
    .about-intro {
        padding: 60px 0;
    }
    
    .about-intro-content h2 {
        font-size: 28px;
    }
    
    .about-lead {
        font-size: 18px;
    }
    
    .ceo-section {
        padding: 60px 0;
    }
    
    .ceo-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .ceo-image-wrapper {
        max-width: 280px;
        margin: 0 auto;
    }
    
    .ceo-quote {
        font-size: 18px;
        border-left: none;
        padding-left: 0;
        border-top: 4px solid rgba(255, 255, 255, 0.3);
        padding-top: 25px;
    }
    
    .logo-meaning {
        padding: 60px 0;
    }
    
    .logo-meaning-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .logo-meaning-image {
        order: -1;
    }
    
    .logo-meaning-image img {
        max-width: 150px;
        margin: 0 auto;
    }
    
    .mission-vision {
        padding: 60px 0;
    }
    
    .mv-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .mv-card {
        padding: 40px 30px;
    }
    
    .mv-card h2 {
        font-size: 24px;
    }
    
    .core-values {
        padding: 60px 0;
    }
    
    .cv-header h2 {
        font-size: 26px;
        letter-spacing: 3px;
    }
    
    .cv-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .cv-item {
        padding: 15px 20px;
    }
    
    .cv-letter {
        font-size: 22px;
        width: 38px;
        height: 38px;
    }
    
    .cv-text {
        font-size: 12px;
    }
    
    .cv-tagline p {
        font-size: 17px;
    }
    
    /* Legacy About page */
    .about-content {
        padding: 60px 0;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-text h2 {
        font-size: 28px;
    }
    
    .about-text h3 {
        font-size: 20px;
    }
    
    /* Products page */
    .products-section {
        padding: 40px 0 60px;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .category-filter {
        gap: 10px;
        margin-bottom: 40px;
    }
    
    .filter-btn {
        padding: 8px 18px;
        font-size: 13px;
    }
    
    /* Book Now page */
    .booking-section {
        padding: 50px 0;
    }
    
    .booking-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .booking-benefits {
        order: 2;
    }
    
    .booking-form-wrapper {
        order: 1;
        padding: 25px;
    }
    
    .booking-benefits h2,
    .booking-form-wrapper h2 {
        font-size: 24px;
    }
    
    .benefit-item {
        gap: 15px;
        margin-bottom: 25px;
    }
    
    .benefit-icon {
        width: 45px;
        height: 45px;
    }
    
    .benefit-icon i {
        font-size: 18px;
    }
    
    .benefit-content h4 {
        font-size: 16px;
    }
    
    .benefit-content p {
        font-size: 13px;
    }
}

/* Mobile Phones (max-width: 480px) */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-content h1 {
        font-size: 26px;
    }
    
    .hero-content p {
        font-size: 14px;
    }
    
    .hero-mobile h1 {
        font-size: 32px;
    }
    
    .hero-mobile .hero-tagline {
        font-size: 14px;
        margin-bottom: 20px;
    }
    
    .hero-mobile .btn {
        padding: 12px 35px;
        font-size: 14px;
    }
    
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .category-card {
        height: 150px;
    }
    
    .picks-track {
        gap: 10px;
    }
    
    .pick-card {
        flex: 0 0 120px;
        padding: 8px;
        border-radius: 8px;
    }
    
    .service-icon-wrapper {
        height: 70px;
    }
    
    .service-icon-wrapper i {
        font-size: 28px;
    }
    
    .service-image-wrapper {
        height: 85px;
        border-radius: 5px;
        margin-bottom: 5px;
    }
    
    .pick-image {
        height: 85px;
    }
    
    .pick-category {
        font-size: 7px;
        margin-bottom: 2px;
    }
    
    .pick-name {
        font-size: 10px;
        margin-bottom: 3px;
        line-height: 1.15;
    }
    
    .pick-link {
        font-size: 8px;
    }
    
    /* Service Modal - Small Mobile */
    .service-modal-content {
        margin: 8px;
        max-height: 90vh;
        max-width: 95%;
        border-radius: 14px;
        display: flex;
        flex-direction: column;
        overflow: hidden;
    }
    
    .service-modal-header {
        padding: 16px 14px 12px;
        gap: 10px;
        flex-shrink: 0;
    }
    
    .service-modal-icon {
        width: 50px;
        height: 50px;
        border-radius: 10px;
    }
    
    .service-modal-icon i {
        font-size: 22px;
    }
    
    .service-modal-category {
        font-size: 9px;
    }
    
    .service-modal-title h3 {
        font-size: 16px;
    }
    
    .service-modal-body {
        padding: 14px;
        overflow-y: auto;
        flex: 1;
    }
    
    .service-modal-section {
        margin-bottom: 12px;
    }
    
    .service-modal-section:last-of-type {
        margin-bottom: 0;
    }
    
    .service-modal-section h4 {
        font-size: 12px;
        margin-bottom: 6px;
    }
    
    .service-modal-section h4 i {
        margin-right: 6px;
    }
    
    .service-modal-section p {
        font-size: 12px;
        line-height: 1.45;
    }
    
    .service-modal-cta {
        padding: 12px 14px;
        gap: 8px;
        flex-shrink: 0;
        background: var(--bg-white);
    }
    
    .service-modal-cta .btn {
        padding: 10px 16px;
        font-size: 12px;
    }
    
    .service-modal-close {
        width: 32px;
        height: 32px;
        font-size: 14px;
        top: 8px;
        right: 8px;
    }
    
    /* Discovery - Mobile */
    .discovery {
        padding: 50px 0;
    }
    
    .discovery-grid {
        gap: 40px;
    }
    
    .discovery-item {
        gap: 20px;
    }
    
    .discovery-image {
        max-width: 100%;
    }
    
    .discovery-image img {
        border-radius: 10px;
    }
    
    .discovery-number {
        font-size: 11px;
        padding: 3px 10px;
    }
    
    .discovery-title {
        font-size: 20px;
        margin-bottom: 12px;
    }
    
    .discovery-text {
        font-size: 14px;
        line-height: 1.7;
    }
    
    /* Product Showcase - Mobile */
    .product-showcase {
        padding: 50px 0;
    }
    
    .showcase-content {
        gap: 30px;
    }
    
    .showcase-image img {
        max-width: 100%;
        border-radius: 12px;
    }
    
    .showcase-badge {
        font-size: 11px;
        padding: 5px 14px;
    }
    
    .showcase-title {
        font-size: 24px;
        margin-bottom: 15px;
    }
    
    .showcase-description {
        font-size: 14px;
        line-height: 1.7;
        margin-bottom: 25px;
    }
    
    .showcase-highlights {
        gap: 8px;
        margin-bottom: 25px;
    }
    
    .highlight-item {
        padding: 10px 12px;
        gap: 10px;
    }
    
    .highlight-item i {
        font-size: 16px;
    }
    
    .highlight-item span {
        font-size: 13px;
    }
    
    .showcase-cta {
        flex-direction: column;
        gap: 10px;
    }
    
    .showcase-cta .btn {
        width: 100%;
        text-align: center;
        padding: 12px 25px;
        font-size: 14px;
    }
    
    /* Steps - Keep horizontal like desktop */
    .steps-subtitle {
        font-size: 13px;
        margin-bottom: 35px;
    }
    
    .steps-timeline {
        display: flex;
        flex-wrap: nowrap;
        justify-content: space-between;
        padding-top: 8px;
    }
    
    .steps-timeline::before {
        top: 16px;
        left: 15px;
        right: 15px;
    }
    
    .step-item {
        flex: 1;
        min-width: auto;
    }
    
    .step-dot {
        width: 16px;
        height: 16px;
        border-radius: 50%;
        background-color: var(--bg-white);
        border: 2px solid var(--primary-color);
        box-shadow: 0 0 0 2px var(--bg-white);
        margin-bottom: 12px;
        box-sizing: border-box;
    }
    
    .step-label {
        font-size: 9px;
    }
    
    .section-title {
        font-size: 22px;
        margin-bottom: 30px;
    }
    
    .values-grid,
    .values-grid-eight {
        grid-template-columns: 1fr;
    }
    
    .value-card {
        padding: 25px 20px;
    }
    
    /* About page - 480px */
    .about-intro-content h2 {
        font-size: 24px;
    }
    
    .about-lead {
        font-size: 16px;
    }
    
    .about-intro-content p {
        font-size: 15px;
    }
    
    .ceo-quote {
        font-size: 16px;
    }
    
    .ceo-name {
        font-size: 20px;
    }
    
    .ceo-title {
        font-size: 13px;
    }
    
    .logo-meaning-content h2 {
        font-size: 24px;
    }
    
    .logo-meaning-content p {
        font-size: 15px;
    }
    
    .mv-card {
        padding: 30px 20px;
    }
    
    .mv-card h2 {
        font-size: 20px;
    }
    
    .mv-card p {
        font-size: 14px;
    }
    
    .cv-list {
        grid-template-columns: 1fr;
    }
    
    .cv-item {
        padding: 15px;
    }
    
    .cv-tagline p {
        font-size: 15px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* Book Now page - small mobile */
    .booking-section {
        padding: 40px 0;
    }
    
    .booking-benefits h2,
    .booking-form-wrapper h2 {
        font-size: 22px;
        margin-bottom: 20px;
    }
    
    .booking-form-wrapper {
        padding: 20px;
    }
    
    .booking-form-wrapper > p {
        font-size: 14px;
        margin-bottom: 20px;
    }
    
    .benefit-item {
        gap: 12px;
        margin-bottom: 20px;
    }
    
    .benefit-icon {
        width: 40px;
        height: 40px;
    }
    
    .benefit-icon i {
        font-size: 16px;
    }
    
    .benefit-content h4 {
        font-size: 15px;
    }
    
    .benefit-content p {
        font-size: 12px;
    }
    
    .checkbox-group {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    .checkbox-label {
        font-size: 13px;
    }
    
    .btn-lg {
        padding: 12px 30px;
        font-size: 14px;
        width: 100%;
    }
    
    /* Page Hero - small mobile */
    .page-hero {
        padding: 100px 0 50px;
    }
    
    .page-hero h1 {
        font-size: 26px;
    }
    
    .page-hero p {
        font-size: 14px;
    }
    
    /* About page - small mobile */
    .about-intro {
        padding: 40px 0;
    }
    
    .about-intro-content {
        text-align: center;
    }
    
    .ceo-section {
        padding: 40px 0;
    }
    
    .ceo-image-wrapper {
        max-width: 200px;
    }
    
    .ceo-badge {
        font-size: 11px;
        padding: 6px 14px;
    }
    
    .ceo-quote {
        font-size: 15px;
        line-height: 1.7;
    }
    
    .ceo-name {
        font-size: 18px;
    }
    
    .ceo-title {
        font-size: 12px;
    }
    
    .logo-meaning {
        padding: 40px 0;
    }
    
    .logo-meaning-content h2 {
        font-size: 22px;
    }
    
    .logo-meaning-content p {
        font-size: 14px;
        line-height: 1.6;
    }
    
    .logo-meaning-image img {
        max-width: 120px;
    }
    
    .mission-vision {
        padding: 40px 0;
    }
    
    .mv-card {
        padding: 25px 18px;
    }
    
    .mv-card h2 {
        font-size: 18px;
        margin-bottom: 12px;
    }
    
    .mv-card p {
        font-size: 13px;
        line-height: 1.6;
    }
    
    .core-values {
        padding: 40px 0;
    }
    
    .cv-header {
        margin-bottom: 30px;
    }
    
    .cv-logo {
        width: 50px;
        height: 50px;
    }
    
    .cv-header h2 {
        font-size: 22px;
        letter-spacing: 2px;
    }
    
    .cv-list {
        gap: 10px;
    }
    
    .cv-item {
        padding: 12px 15px;
    }
    
    .cv-letter {
        font-size: 18px;
        width: 32px;
        height: 32px;
    }
    
    .cv-text {
        font-size: 11px;
    }
    
    .cv-tagline {
        margin-top: 30px;
    }
    
    .cv-tagline p {
        font-size: 14px;
        line-height: 1.6;
    }

    .checkbox-group {
        grid-template-columns: 1fr;
    }
    
    .cta-title {
        font-size: 24px;
    }
    
    .discovery-number {
        font-size: 36px;
    }
    
    .discovery-title {
        font-size: 20px;
    }
    
    .discovery-text {
        font-size: 14px;
    }
    
    .btn {
        padding: 12px 25px;
        font-size: 13px;
    }
    
    .footer-logo {
        height: 50px;
    }
    
    .footer-links h4,
    .footer-contact h4 {
        font-size: 16px;
    }
    
    .footer-links ul li a,
    .footer-contact p {
        font-size: 14px;
    }
}

/* Extra Small Phones (max-width: 360px) */
@media (max-width: 360px) {
    .hero-content h1 {
        font-size: 22px;
    }
    
    .hero-center h1 {
        font-size: 16px;
    }
    
    .hero-center .hero-address {
        font-size: 9px;
    }
    
    .categories-grid {
        gap: 10px;
    }
    
    .category-card {
        height: 130px;
    }
    
    .category-name {
        font-size: 10px;
        padding: 8px 3px;
    }
    
    .pick-card {
        flex: 0 0 140px;
        padding: 10px;
    }
    
    .service-icon-wrapper {
        height: 70px;
    }
    
    .service-icon-wrapper i {
        font-size: 26px;
    }
    
    .pick-name {
        font-size: 12px;
    }
    
    .pick-link {
        font-size: 10px;
    }
    
    .section-title {
        font-size: 20px;
    }
    
    .nav-links {
        padding: 100px 20px 40px;
    }
    
    .nav-links a {
        font-size: 16px;
    }
    
    /* Page Hero - extra small */
    .page-hero {
        padding: 90px 0 40px;
    }
    
    .page-hero h1 {
        font-size: 22px;
    }
    
    .page-hero p {
        font-size: 13px;
    }
    
    /* About page - extra small */
    .about-intro-content h2 {
        font-size: 20px;
    }
    
    .about-lead {
        font-size: 14px;
    }
    
    .ceo-image-wrapper {
        max-width: 160px;
    }
    
    .ceo-quote {
        font-size: 14px;
    }
    
    .mv-card {
        padding: 20px 15px;
    }
    
    .mv-card h2 {
        font-size: 16px;
    }
    
    .mv-card p {
        font-size: 12px;
    }
    
    .cv-item {
        padding: 10px 12px;
    }
    
    .cv-letter {
        font-size: 16px;
        width: 28px;
        height: 28px;
    }
    
    .cv-text {
        font-size: 10px;
    }
    
    /* Book Now page - extra small */
    .booking-benefits h2,
    .booking-form-wrapper h2 {
        font-size: 20px;
    }
    
    .booking-form-wrapper {
        padding: 15px;
    }
    
    .benefit-icon {
        width: 36px;
        height: 36px;
    }
    
    .benefit-icon i {
        font-size: 14px;
    }
    
    .benefit-content h4 {
        font-size: 14px;
    }
    
    .benefit-content p {
        font-size: 11px;
    }
}

/* ===== Animations ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

.fade-in {
    animation: fadeIn 0.6s ease forwards;
}

/* ===== Placeholder Image Styling ===== */
.placeholder-img {
    background: linear-gradient(135deg, #e8f4fc 0%, #d4f0fc 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 14px;
}

/* ===== Page Hero (Internal Pages) ===== */
.page-hero {
    background: var(--gradient-hero);
    padding: 150px 0 80px;
    text-align: center;
    color: var(--text-light);
}

.page-hero h1 {
    font-size: 42px;
    font-weight: 600;
    margin-bottom: 15px;
}

.page-hero p {
    font-size: 18px;
    opacity: 0.9;
}

/* About Hero with Background Image */
.about-hero {
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../images/showcase/MockUp_Logo.png');
    background-size: cover;
    background-position: center right;
    filter: blur(1px);
    transform: scale(1.05);
    z-index: 0;
}

.about-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 128, 128, 0.85) 0%, rgba(0, 91, 150, 0.85) 100%);
    z-index: 1;
}

.about-hero .container {
    position: relative;
    z-index: 2;
}

/* Services Hero with Background Image */
.services-hero {
    position: relative;
    overflow: hidden;
}

.services-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../images/showcase/MockUp_Lab.png');
    background-size: cover;
    background-position: center;
    filter: blur(1px);
    transform: scale(1.1);
    z-index: 0;
}

.services-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 128, 128, 0.85) 0%, rgba(0, 91, 150, 0.85) 100%);
    z-index: 1;
}

.services-hero .container {
    position: relative;
    z-index: 2;
}

/* Products Hero with Background Image */
.products-hero {
    position: relative;
    overflow: hidden;
}

.products-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../images/showcase/MockUp_Lab2.png');
    background-size: cover;
    background-position: center;
    filter: blur(1px);
    transform: scale(1.05);
    z-index: 0;
}

.products-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 128, 128, 0.85) 0%, rgba(0, 91, 150, 0.85) 100%);
    z-index: 1;
}

.products-hero .container {
    position: relative;
    z-index: 2;
}

/* ===== Products Showcase Styles ===== */
.products-showcase {
    padding: 80px 0;
    background-color: var(--primary-dark);
}

.product-categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 60px;
}

.product-category-card {
    text-align: center;
    overflow: hidden;
}

.category-image-wrapper {
    background: var(--bg-white);
    border-radius: 30px;
    padding: 15px;
    margin-bottom: 15px;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: var(--transition);
    box-sizing: border-box;
}

.category-image-wrapper:hover {
    transform: scale(1.03);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.category-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    display: block;
}

.category-label {
    color: var(--text-light);
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 2px;
}

.products-description {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.products-description p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.products-description .description-main {
    font-size: 17px;
}

.products-description .description-compliance {
    margin-top: 30px;
    padding: 25px 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    border-left: 4px solid var(--accent-color);
}

.products-description .description-compliance strong {
    color: var(--text-light);
}

/* ===== About Page Styles ===== */
.about-content {
    padding: 80px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.about-text h3 {
    font-size: 22px;
    color: var(--text-dark);
    margin-top: 30px;
    margin-bottom: 15px;
}

.about-text p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 15px;
}

.about-image img {
    border-radius: 15px;
    box-shadow: var(--shadow);
}

/* ===== About Page - New Design ===== */

/* About Introduction */
.about-intro {
    padding: 80px 0;
    background-color: var(--bg-white);
}

.about-intro-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-intro-content h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 25px;
}

.about-lead {
    font-size: 20px;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.7;
}

.about-intro-content p {
    font-size: 17px;
    color: var(--text-muted);
    line-height: 1.8;
}

/* CEO Section */
.ceo-section {
    padding: 80px 0;
    background: var(--gradient-primary);
}

.ceo-grid {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 60px;
    align-items: center;
}

.ceo-image-wrapper {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    background: white;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2), 0 5px 15px rgba(0, 0, 0, 0.1);
}

.ceo-photo {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
    transition: transform 0.5s ease;
}

.ceo-image-wrapper:hover .ceo-photo {
    transform: scale(1.03);
}

.ceo-content {
    color: var(--text-light);
}

.ceo-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
}

.ceo-quote {
    font-size: 22px;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 30px;
    position: relative;
    padding-left: 30px;
    border-left: 4px solid rgba(255, 255, 255, 0.3);
}

.ceo-name {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 5px;
}

.ceo-title {
    font-size: 16px;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Logo Meaning Section */
.logo-meaning {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.logo-meaning-grid {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 60px;
    align-items: center;
}

.logo-meaning-content h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 20px;
}

.logo-meaning-content p {
    font-size: 17px;
    color: var(--text-muted);
    line-height: 1.8;
}

.logo-meaning-image {
    text-align: center;
}

.logo-meaning-image img {
    max-width: 200px;
    height: auto;
}

/* Mission & Vision Cards */
.mission-vision {
    padding: 80px 0;
    background: var(--gradient-primary);
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.mv-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 50px 40px;
    border-radius: 20px;
    color: var(--text-light);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.mv-card h2 {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 20px;
}

.mv-card h2::after {
    display: none;
}

.mv-card p {
    font-size: 16px;
    line-height: 1.8;
    opacity: 0.95;
}

/* Core Values - Brochure Style */
.core-values {
    padding: 80px 0;
    background: var(--gradient-primary);
}

.cv-header {
    text-align: center;
    margin-bottom: 50px;
}

.cv-logo {
    display: none;
}

.cv-header h2 {
    color: var(--text-light);
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 5px;
}

.cv-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 900px;
    margin: 0 auto 50px;
}

.cv-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.1);
    padding: 20px 25px;
    border-radius: 10px;
    color: var(--text-light);
    transition: var(--transition);
}

.cv-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.cv-letter {
    font-size: 28px;
    font-weight: 700;
    width: 45px;
    height: 45px;
    background: var(--text-light);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cv-text {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cv-tagline {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.cv-tagline p {
    font-size: 20px;
    font-style: italic;
    color: var(--text-light);
    line-height: 1.7;
    opacity: 0.9;
}

/* Legacy Vision & Mission Sections (keeping for compatibility) */
.vision-section {
    padding: 80px 0 40px;
    background-color: var(--bg-light);
}

.vision-card,
.mission-card {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 50px;
    background: var(--bg-white);
    border-radius: 20px;
    box-shadow: var(--shadow);
    position: relative;
}

.vision-card::before,
.mission-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.vision-title,
.mission-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 20px;
    letter-spacing: 3px;
}

.vision-text,
.mission-text {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-muted);
    font-style: italic;
}

.mission-section {
    padding: 40px 0 80px;
    background-color: var(--bg-light);
}

.values-section {
    padding: 80px 0;
    background-color: var(--bg-white);
}

.values-acronym {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 8px;
    margin-bottom: 50px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.values-grid-eight {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.value-card {
    background: var(--bg-white);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.value-icon i {
    font-size: 28px;
    color: var(--text-light);
}

.value-card h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.value-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ===== Products Page Styles ===== */

/* Products Intro Section */
.products-intro {
    padding: 60px 0 40px;
    background-color: var(--bg-white);
}

.products-intro-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.intro-lead {
    font-size: 17px;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 20px;
}

.products-intro-content p {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 15px;
}

.compliance-note {
    margin-top: 25px;
    padding: 20px;
    background: var(--bg-light);
    border-radius: 10px;
    color: var(--primary-dark) !important;
}

.products-section {
    padding: 60px 0 80px;
}

.category-filter {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 25px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
    background: var(--bg-light);
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-color);
    color: var(--text-light);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.product-card {
    background: var(--bg-white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.product-image {
    height: 200px;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.product-image img {
    max-height: 100%;
    object-fit: contain;
}

.product-info {
    padding: 20px;
}

.product-category {
    font-size: 11px;
    color: var(--primary-color);
    font-weight: 600;
    letter-spacing: 1px;
}

.product-name {
    font-size: 16px;
    font-weight: 600;
    margin: 8px 0;
    color: var(--text-dark);
}

.product-description {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 15px;
}

.product-link {
    font-size: 13px;
    color: var(--primary-color);
    font-weight: 500;
}

.product-link:hover {
    text-decoration: underline;
}

/* ===== Services Page Styles ===== */
.services-section {
    padding: 80px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--bg-white);
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.service-icon i {
    font-size: 32px;
    color: var(--text-light);
}

.service-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.service-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.why-choose-card {
    max-width: 900px;
    margin: 0 auto;
    background: var(--bg-white);
    padding: 60px 50px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    text-align: center;
}

.why-choose-card h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 30px;
    letter-spacing: 2px;
}

.why-choose-card p {
    font-size: 17px;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 20px;
}

.why-choose-card p:last-child {
    margin-bottom: 0;
}

.process-section {
    padding: 80px 0;
    background-color: var(--bg-white);
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    max-width: 600px;
    margin: -30px auto 50px;
}

.process-timeline {
    display: flex;
    justify-content: space-between;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 25px;
    left: 50px;
    right: 50px;
    height: 2px;
    background: var(--border-color);
}

.process-item {
    text-align: center;
    position: relative;
    z-index: 1;
}

.process-number {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-light);
}

.process-item h4 {
    font-size: 16px;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.process-item p {
    font-size: 12px;
    color: var(--text-muted);
    max-width: 120px;
}

/* ===== Contact Page Styles ===== */
.contact-section {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
}

.contact-form-wrapper h2,
.contact-info-wrapper h2 {
    font-size: 28px;
    color: var(--text-dark);
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.contact-tagline {
    font-size: 16px;
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 30px;
}

.contact-form {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 15px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 14px;
    font-family: var(--font-primary);
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 165, 168, 0.1);
}

.form-group input.error {
    border-color: #ff6b6b;
}

/* reCAPTCHA Styling */
.recaptcha-wrapper {
    margin: 20px 0;
}

.recaptcha-wrapper .g-recaptcha {
    display: flex;
    justify-content: flex-start;
}

/* Center reCAPTCHA on mobile */
@media (max-width: 480px) {
    .recaptcha-wrapper .g-recaptcha {
        justify-content: center;
        transform: scale(0.9);
        transform-origin: center;
    }
    
    .recaptcha-wrapper {
        margin: 15px 0;
    }
}

@media (max-width: 360px) {
    .recaptcha-wrapper .g-recaptcha {
        transform: scale(0.85);
    }
}

.contact-info {
    margin-bottom: 40px;
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon i {
    font-size: 18px;
    color: var(--text-light);
}

.info-content h4 {
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.info-content p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

.social-section h4 {
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.contact-info-wrapper .social-links a {
    background: var(--bg-light);
    color: var(--text-dark);
}

.contact-info-wrapper .social-links a:hover {
    background: var(--primary-color);
    color: var(--text-light);
}

/* Alert Messages */
.alert {
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 14px;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* ===== Book Now Page Styles ===== */
.book-hero {
    position: relative;
    overflow: hidden;
}

.book-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../images/showcase/MockUp_Logo.png');
    background-size: cover;
    background-position: center;
    filter: blur(1px);
    transform: scale(1.05);
    z-index: 0;
}

.book-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 128, 128, 0.85) 0%, rgba(0, 91, 150, 0.85) 100%);
    z-index: 1;
}

.book-hero .container {
    position: relative;
    z-index: 2;
}

.booking-section {
    padding: 80px 0;
}

.booking-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: start;
}

.booking-benefits h2 {
    font-size: 28px;
    color: var(--text-dark);
    margin-bottom: 30px;
}

.benefit-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.benefit-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-icon i {
    font-size: 20px;
    color: var(--text-light);
}

.benefit-content h4 {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.benefit-content p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

.booking-form-wrapper {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 15px;
}

.booking-form-wrapper h2 {
    font-size: 28px;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.booking-form-wrapper > p {
    color: var(--text-muted);
    margin-bottom: 30px;
}

/* Fieldset styling for accessible form groups */
.booking-form fieldset {
    border: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.booking-form fieldset legend {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 10px;
    display: block;
    width: 100%;
}

.checkbox-group {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-dark);
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--primary-color);
}

.btn-lg {
    padding: 15px 40px;
    font-size: 16px;
}
