/* SAM-Tech Diagnostics Site Styles */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #0066cc;
    --primary-dark: #004c99;
    --secondary: #00a86b;
    --text: #1a1a1a;
    --text-light: #666;
    --bg-gray: #f8f9fa;
    --border: #e0e0e0;
    --gold: #ffc107;
    --success: #28a745;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text);
}

/* Header & Navigation */
.header {
    background: white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-top {
    background: var(--primary-dark);
    color: white;
    padding: 8px 0;
    font-size: 14px;
}

.header-top .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.contact-info a {
    color: white;
    text-decoration: none;
    margin-right: 20px;
}

.nav-main {
    padding: 15px 0;
}

.nav-main .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: var(--primary);
    text-decoration: none;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary);
}

.cta-btn {
    background: var(--secondary);
    color: white;
    padding: 10px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s;
}

.cta-btn:hover {
    background: #008f5b;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    border-radius: 8px;
    min-width: 180px;
    padding: 10px 0;
    list-style: none;
    z-index: 1001;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: var(--text);
    text-decoration: none;
    transition: background 0.3s;
}

.dropdown-menu a:hover {
    background: var(--bg-gray);
    color: var(--primary);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #0066cc 0%, #004c99 100%);
    color: white;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="rgba(255,255,255,0.05)"/></svg>');
    background-size: 100px;
    opacity: 0.3;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.trust-bar {
    display: flex;
    gap: 30px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.trust-icon {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.hero-form {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.hero-form h3 {
    color: var(--text);
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    color: var(--text);
    font-weight: 500;
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border);
    border-radius: 6px;
    font-size: 14px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.btn-submit {
    width: 100%;
    background: var(--secondary);
    color: white;
    padding: 14px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-submit:hover {
    background: #008f5b;
}

/* Page Headers */
.page-header {
    background: linear-gradient(135deg, rgba(0,102,204,0.95) 0%, rgba(0,76,153,0.95) 100%);
    color: white;
    padding: 100px 0 80px;
    text-align: center;
}

.page-header h1 {
    font-size: 56px;
    margin-bottom: 20px;
    font-weight: 700;
}

.page-header p {
    font-size: 22px;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto 30px;
}

/* Sections */
section {
    padding: 80px 0;
}

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

.section-header h2 {
    font-size: 42px;
    margin-bottom: 15px;
    color: var(--text);
}

.section-header p {
    font-size: 18px;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

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

.category-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s;
    cursor: pointer;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-color: var(--primary);
}

.category-icon {
    width: 80px;
    height: 80px;
    background: var(--bg-gray);
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
}

.category-card h3 {
    margin-bottom: 10px;
    color: var(--text);
}

.category-card p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.btn-secondary {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

/* Featured Products - Original Grid (kept for other pages) */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.product-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s;
}

.product-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.product-image {
    background: var(--primary);
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: white;
}

.product-content {
    padding: 25px;
}

.product-tag {
    display: inline-block;
    background: var(--secondary);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 10px;
}

.product-content h3 {
    margin-bottom: 10px;
    color: var(--text);
}

.product-features {
    list-style: none;
    margin: 15px 0;
}

.product-features li {
    padding: 5px 0;
    color: var(--text-light);
    font-size: 14px;
}

.product-features li::before {
    content: "✓ ";
    color: var(--secondary);
    font-weight: bold;
}

.product-actions {
    display: inline-flex;
    gap: 10px;
    margin-top: 20px;
    flex-wrap: wrap;
    justify-content: flex-start;
}

/* Featured Equipment Showcase Section */
.featured-equipment-section {
    background: var(--bg-gray);
    padding: 80px 0;
}

.featured-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 15px;
}

.featured-header h2 {
    font-size: 36px;
    color: var(--text);
    white-space: nowrap;
}

.header-decoration {
    flex: 1;
    max-width: 150px;
}

.heartbeat-line {
    width: 100%;
    height: 30px;
    color: #5bc0de;
}

.featured-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto 60px;
}

.featured-showcase {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr;
    gap: 40px;
    align-items: center;
}

.showcase-column {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.showcase-item {
    text-align: center;
}

.showcase-icon {
    width: 90px;
    height: 90px;
    border: 3px solid #5bc0de;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    background: white;
    font-size: 36px;
    transition: all 0.3s ease;
}

.showcase-item:hover .showcase-icon {
    background: #e8f7fa;
    transform: scale(1.05);
}

.showcase-item h3 {
    font-size: 20px;
    color: var(--text);
    margin-bottom: 10px;
}

.showcase-item p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.6;
    max-width: 280px;
    margin: 0 auto;
}

.showcase-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.center-image-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.center-glow {
    position: absolute;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(91, 192, 222, 0.3) 0%, rgba(91, 192, 222, 0.1) 50%, transparent 70%);
    border-radius: 50%;
}

.center-image {
    position: relative;
    width: 280px;
    height: 280px;
    background: linear-gradient(180deg, #e8f7fa 0%, #d0f0f7 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 120px;
    box-shadow: 0 10px 40px rgba(91, 192, 222, 0.2);
}

.btn-explore {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 14px 32px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-explore:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

/* Responsive Featured Showcase */
@media (max-width: 992px) {
    .featured-showcase {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .showcase-column {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
        gap: 30px;
    }

    .showcase-item {
        flex: 1;
        min-width: 250px;
        max-width: 300px;
    }

    .showcase-center {
        order: -1;
    }

    .center-image {
        width: 220px;
        height: 220px;
        font-size: 90px;
    }

    .center-glow {
        width: 260px;
        height: 260px;
    }
}

@media (max-width: 768px) {
    .featured-header {
        flex-wrap: wrap;
        gap: 10px;
    }

    .header-decoration {
        display: none;
    }

    .featured-header h2 {
        font-size: 28px;
        text-align: center;
        width: 100%;
    }

    .featured-subtitle {
        font-size: 16px;
        margin-bottom: 40px;
    }

    .showcase-column {
        flex-direction: column;
        gap: 40px;
    }

    .showcase-item {
        max-width: 100%;
    }
}

.btn-primary {
    background: var(--primary);
    color: white;
    padding: 10px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    display: inline-block;
}

.btn-outline {
    background: white;
    color: var(--primary);
    padding: 10px;
    border: 2px solid var(--primary);
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    display: inline-block;
}

/* Responsive testimonial carousel */
@media (max-width: 1024px) {
    .carousel-prev {
        left: 10px;
    }

    .carousel-next {
        right: 10px;
    }
}

@media (max-width: 768px) {
    .carousel-arrow {
        width: 40px;
        height: 40px;
    }

    .testimonial-slide-inner {
        padding: 30px 20px;
    }

    .testimonial-quote {
        font-size: 18px;
    }
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    border-left: 4px solid var(--primary);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.service-card h3 {
    margin-bottom: 15px;
    color: var(--text);
}

.service-card ul {
    list-style: none;
}

.service-card li {
    padding: 5px 0;
    color: var(--text-light);
}

.service-card li::before {
    content: "• ";
    color: var(--primary);
    font-weight: bold;
}

/* Testimonials - Centered Continuous Carousel */
.testimonials-section {
    background: var(--bg-gray);
    padding: 80px 0;
    overflow: hidden;
}

.testimonials-carousel {
    position: relative;
    margin-top: 50px;
    max-width: 896px;
    margin-left: auto;
    margin-right: auto;
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: 2px solid var(--border);
    z-index: 10;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    transition: all 0.3s;
    z-index: 10;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.carousel-arrow:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

.carousel-prev {
    left: -60px;
}

.carousel-next {
    right: -60px;
}

.testimonials-track-wrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
    max-width: 896px; /* 4xl container */
    margin: 0 auto;
}

.testimonials-track {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-slide {
    flex: 0 0 100%;
    width: 100%;
    min-width: 100%;
    padding: 0 15px;
    box-sizing: border-box;
}

.testimonial-slide-inner {
    background: white;
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    height: 100%;
    max-width: 700px;
    margin: 0 auto;
}

.testimonial-slide.active .testimonial-slide-inner {
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.testimonial-quote {
    font-size: 20px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 30px;
    font-style: italic;
    position: relative;
    padding-top: 30px;
}

.testimonial-quote::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 50px;
    color: var(--primary);
    opacity: 0.2;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-slide.active .testimonial-quote {
    color: var(--text);
    font-size: 21px;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.author-avatar-wrapper {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 3px solid #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    font-size: 28px;
    transition: all 0.4s ease;
}

.testimonial-slide.active .author-avatar-wrapper {
    border-color: var(--primary);
    box-shadow: 0 4px 15px rgba(0,102,204,0.2);
}

.testimonial-author h4 {
    font-size: 16px;
    color: var(--text-light);
    font-weight: 500;
    transition: all 0.3s;
    margin: 0;
}

.testimonial-slide.active .testimonial-author h4 {
    color: var(--primary);
    font-weight: 600;
}

.testimonial-author p {
    font-size: 13px;
    color: var(--text-light);
    margin: 0;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ccc;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.dot:hover {
    background: #999;
}

.dot.active {
    background: var(--primary);
    width: 30px;
    border-radius: 5px;
}

@media (max-width: 768px) {
    .testimonial-slide {
        flex: 0 0 100%;
        width: 100%;
        min-width: 100%;
    }

    .carousel-arrow {
        width: 40px;
        height: 40px;
    }

    .carousel-prev {
        left: 10px;
    }

    .carousel-next {
        right: 10px;
    }
}

/* Testimonials Grid - kept for other pages */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.client-logo {
    width: 120px;
    height: 60px;
    background: var(--bg-gray);
    border-radius: 8px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: var(--primary);
}

.testimonial-text {
    color: var(--text-light);
    margin-bottom: 15px;
    font-style: italic;
}

.client-name {
    font-weight: 600;
    color: var(--text);
}


/* Trust Section */
.trust-section {
    background: var(--bg-gray);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.trust-stat {
    background: white;
    padding: 30px;
    border-radius: 12px;
}

.trust-stat-number {
    font-size: 48px;
    font-weight: bold;
    color: var(--primary);
    margin-bottom: 10px;
}

.trust-stat-label {
    color: var(--text-light);
    font-weight: 500;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    text-align: center;
    padding: 80px 0;
}

.cta-section h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 20px;
    margin-bottom: 35px;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button-center {
    text-align: center;
    margin-top: 20px;
}

.cta-button-center .btn-white {
    display: inline-block;
}

.btn-white {
    background: white;
    color: var(--primary);
    padding: 16px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    display: inline-block;
    transition: all 0.3s;
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255,255,255,0.3);
}

.btn-outline-white {
    background: transparent;
    color: white;
    padding: 16px 40px;
    border: 2px solid white;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    display: inline-block;
    transition: all 0.3s;
}

.btn-outline-white:hover {
    background: white;
    color: var(--primary);
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    margin-bottom: 20px;
    color: white;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 10px;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
}

.footer-section a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    text-align: center;
    color: #999;
}

.footer-bottom a {
    color: #999;
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

/* Floating Elements */
.floating-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--secondary);
    color: white;
    padding: 15px 25px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    text-decoration: none;
    font-weight: 600;
    z-index: 999;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.whatsapp-float {
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    cursor: pointer;
    z-index: 999;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: white;
    padding: 40px;
    border-radius: 12px;
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: var(--text-light);
}

.modal-content h3 {
    margin-bottom: 20px;
    color: var(--text);
}

/* Success Message */
.success-message {
    display: none;
    background: #d4edda;
    color: #155724;
    padding: 15px;
    border-radius: 6px;
    margin-top: 15px;
    border: 1px solid #c3e6cb;
}

.success-message.active {
    display: block;
}

/* Blog Section */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.blog-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}

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

.blog-card.featured {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
}

.blog-image {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 64px;
    position: relative;
    overflow: hidden;
}

.blog-card.featured .blog-image {
    height: 100%;
    font-size: 120px;
}

.blog-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blog-card.featured .blog-content {
    padding: 40px;
}

.blog-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    flex-wrap: wrap;
    align-items: center;
}

.blog-category {
    background: var(--primary);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.blog-date,
.blog-read-time {
    color: var(--text-light);
    font-size: 13px;
}

.blog-content h3 {
    color: var(--text);
    margin-bottom: 15px;
    line-height: 1.4;
    font-size: 20px;
}

.blog-card.featured .blog-content h3 {
    font-size: 28px;
    margin-bottom: 20px;
}

.blog-content p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
    flex: 1;
}

.blog-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid var(--border);
    margin-top: auto;
}

.blog-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--bg-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.blog-author strong {
    display: block;
    color: var(--text);
    font-size: 14px;
}

.blog-author small {
    display: block;
    color: var(--text-light);
    font-size: 12px;
}

.blog-cta {
    text-align: center;
    margin-top: 40px;
}

.blog-section {
    background: white;
}

.services-section {
    background: white;
}

/* About Page */

/* About Hero */
.about-hero {
    background: linear-gradient(135deg, rgba(0,102,204,0.95) 0%, rgba(0,76,153,0.95) 100%);
    background-size: cover;
    background-position: center;
    color: white;
    padding: 100px 0 80px;
    text-align: center;
    position: relative;
}

.about-hero h1 {
    font-size: 56px;
    margin-bottom: 20px;
    font-weight: 700;
}

.about-hero p {
    font-size: 22px;
    max-width: 700px;
    margin: 0 auto 30px;
    opacity: 0.95;
}

/* Breadcrumb */
.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    font-size: 14px;
}

.breadcrumb a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
}

.breadcrumb a:hover {
    opacity: 1;
}

.breadcrumb span {
    opacity: 0.6;
}

/* Company Story */
.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.story-image {
    width: 100%;
    height: 400px;
    background: var(--primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 120px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.story-text h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--text);
}

.story-text p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
    font-size: 17px;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.stat-box {
    text-align: center;
    padding: 25px;
    background: var(--bg-gray);
    border-radius: 12px;
}

.stat-number {
    font-size: 42px;
    font-weight: bold;
    color: var(--primary);
    display: block;
    margin-bottom: 8px;
}

.stat-label {
    color: var(--text-light);
    font-weight: 500;
}

/* Mission, Vision, Values Grid */
.mvv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.mvv-card {
    background: white;
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s;
}

.mvv-card:hover {
    transform: translateY(-5px);
}

.mvv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: var(--primary);
}

.mvv-icon {
    width: 80px;
    height: 80px;
    background: var(--bg-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    margin-bottom: 25px;
}

.mvv-card h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--text);
}

.mvv-card p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 16px;
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.value-card {
    background: white;
    padding: 35px;
    border-radius: 16px;
    border: 2px solid var(--border);
    transition: all 0.3s;
    text-align: center;
}

.value-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,102,204,0.1);
}

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

.value-card h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--text);
}

.value-card p {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.6;
}

/* Timeline */
.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary) 0%, var(--secondary) 100%);
}

.timeline-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
    position: relative;
}

.timeline-item:nth-child(even) .timeline-content {
    grid-column: 1;
    grid-row: 1;
}

.timeline-item:nth-child(even) .timeline-year {
    grid-column: 2;
}

.timeline-year {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.year-badge {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 24px;
    font-weight: bold;
    box-shadow: 0 8px 20px rgba(0,102,204,0.3);
    position: relative;
    z-index: 2;
}

.timeline-dot {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background: white;
    border: 4px solid var(--primary);
    border-radius: 50%;
    z-index: 3;
}

.timeline-content {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.timeline-content h4 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--text);
}

.timeline-content p {
    color: var(--text-light);
    line-height: 1.7;
}

/* CEO Section */
.ceo-section {
    background: var(--bg-gray);
}

.ceo-content {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 60px;
    align-items: start;
    background: white;
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
}

.ceo-profile {
    text-align: center;
}

.ceo-image {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 100px;
    margin: 0 auto 25px;
    box-shadow: 0 15px 40px rgba(0,102,204,0.2);
}

.ceo-name {
    font-size: 26px;
    font-weight: bold;
    margin-bottom: 8px;
    color: var(--text);
}

.ceo-title {
    color: var(--primary);
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 20px;
}

.ceo-signature {
    width: 150px;
    height: 60px;
    background: var(--bg-gray);
    border-radius: 8px;
    margin: 20px auto 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-style: italic;
    color: var(--primary);
    font-weight: 600;
}

.ceo-message-text h3 {
    font-size: 32px;
    margin-bottom: 25px;
    color: var(--text);
}

.ceo-message-text p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.9;
    font-size: 17px;
}

.quote-highlight {
    background: var(--bg-gray);
    padding: 30px;
    border-left: 4px solid var(--primary);
    border-radius: 8px;
    margin: 30px 0;
    font-style: italic;
    color: var(--text);
    font-size: 18px;
}

/* Team Cards */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.team-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    height: 100%;
}

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

.team-image {
    width: 100%;
    height: 300px;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
    position: relative;
    overflow: hidden;
}

.team-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to top, rgba(0,0,0,0.3), transparent);
}

.team-info {
    padding: 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.team-name {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 8px;
    color: var(--text);
}

.team-role {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 15px;
}

.team-bio {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
}

.team-contact {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: auto;
}

.team-contact-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}

.team-contact-icon:hover {
    background: var(--primary);
    color: white;
    transform: scale(1.1);
}

/* Certifications */
.cert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.cert-card {
    background: white;
    padding: 40px;
    border-radius: 16px;
    border: 2px solid var(--border);
    text-align: center;
    transition: all 0.3s;
}

.cert-card:hover {
    border-color: var(--gold);
    box-shadow: 0 10px 30px rgba(255,193,7,0.2);
}

.cert-badge {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    background: var(--bg-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
}

.cert-card h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--text);
}

.cert-card p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.6;
}

/* Partners */
.partners-section {
    padding: 80px 0;
    background: var(--bg-gray);
}

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

@media (max-width: 1024px) {
    .partners-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

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

@media (max-width: 480px) {
    .partners-grid {
        grid-template-columns: 1fr;
    }
}

.partner-logo {
    background: white;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 120px;
    font-weight: bold;
    color: var(--primary);
    font-size: 16px;
    transition: all 0.3s;
}

.partner-logo:hover {
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}

/* Responsive About Page */
@media (max-width: 968px) {
    .about-hero h1 {
        font-size: 42px;
    }

    .story-content,
    .ceo-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .stats-row {
        grid-template-columns: 1fr;
    }

    .timeline::before {
        left: 30px;
    }

    .timeline-item {
        grid-template-columns: 1fr;
        padding-left: 60px;
    }

    .timeline-item:nth-child(even) .timeline-content {
        grid-column: 1;
        grid-row: 2;
    }

    .timeline-year {
        grid-column: 1;
        grid-row: 1;
        justify-content: flex-start;
    }

    .timeline-dot {
        left: 30px;
    }

    .section-header h2 {
        font-size: 32px;
    }

    .ceo-content {
        padding: 40px;
    }

    .ceo-image {
        width: 200px;
        height: 200px;
        font-size: 80px;
    }
}

@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 32px;
    }

    .mvv-grid {
        grid-template-columns: 1fr;
    }

    .values-grid,
    .cert-grid {
        grid-template-columns: 1fr;
    }

    .story-image {
        height: 250px;
        font-size: 80px;
    }

    .ceo-content {
        padding: 30px;
    }

    .ceo-message-text h3 {
        font-size: 24px;
    }
}

/* Services Page */
.services-hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    padding: 100px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.services-hero::before {
    content: '⚙️';
    position: absolute;
    font-size: 400px;
    opacity: 0.05;
    top: -100px;
    right: -50px;
    transform: rotate(15deg);
}

.services-hero h1 {
    font-size: 56px;
    margin-bottom: 20px;
    font-weight: 700;
}

.services-hero p {
    font-size: 22px;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.95;
}

.section-badge {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.service-card {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s;
    border-left: 5px solid transparent;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    border-left-color: var(--primary);
}

.service-icon {
    font-size: 56px;
    margin-bottom: 20px;
    display: block;
}

.service-card h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: var(--text);
}

.service-card p {
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    margin-bottom: 25px;
    padding: 0;
}

.service-features li {
    padding: 8px 0;
    color: var(--text-light);
    display: flex;
    align-items: start;
    gap: 10px;
}

.service-features li:before {
    content: "✓";
    color: var(--success);
    font-weight: bold;
    font-size: 18px;
}

.learn-more {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.learn-more:hover {
    text-decoration: underline;
}

.process-section {
    background: white;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.process-step {
    text-align: center;
    position: relative;
}

.process-step .step-number {
    width: 70px;
    height: 70px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: bold;
    margin: 0 auto 20px;
}

.process-step h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--text);
}

.process-step p {
    color: var(--text-light);
}

.services-cta {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.services-cta h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.services-cta p {
    font-size: 20px;
    margin-bottom: 35px;
    opacity: 0.95;
}

.services-cta .cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.services-cta .btn-primary {
    background: white;
    color: var(--primary);
    padding: 16px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 17px;
    transition: all 0.3s;
}

.services-cta .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.services-cta .btn-secondary {
    background: transparent;
    color: white;
    padding: 16px 35px;
    border: 2px solid white;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 17px;
    transition: all 0.3s;
}

.services-cta .btn-secondary:hover {
    background: rgba(255,255,255,0.1);
}

/* Responsive Services */
@media (max-width: 768px) {
    .services-hero h1 {
        font-size: 36px;
    }

    .services-hero p {
        font-size: 18px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }
}

/* Contact Page */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
}

.contact-info-section h2 {
    font-size: 28px;
    margin-bottom: 30px;
    color: var(--text);
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--bg-gray);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    flex-shrink: 0;
}

.contact-item h3 {
    margin-bottom: 5px;
    color: var(--text);
}

.contact-item p,
.contact-item a {
    color: var(--text-light);
    text-decoration: none;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.contact-form h2 {
    margin-bottom: 30px;
    color: var(--text);
}

.map-section {
    padding: 80px 0;
    background: white;
    margin-top: 100px;
}

.map-section .map-header {
    text-align: center;
    margin-bottom: 50px;
    display: block;
}

.map-section .map-header h2 {
    font-size: 42px;
    margin-bottom: 15px;
    color: var(--text);
    font-weight: 700;
}

.map-section .map-header p {
    font-size: 18px;
    color: var(--text-light);
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    height: 500px;
    position: relative;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.map-frame {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

/* Careers Page */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.benefit-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.benefit-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.jobs-filter {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.filter-btn {
    padding: 10px 24px;
    border: 2px solid var(--border);
    border-radius: 30px;
    background: white;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s;
}

.filter-btn:hover,
.filter-btn.active {
    border-color: var(--primary);
    background: var(--primary);
    color: white;
}

.jobs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.job-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: all 0.3s;
}

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

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.job-title {
    font-size: 20px;
    color: var(--text);
    margin-bottom: 5px;
}

.job-department {
    background: var(--bg-gray);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: var(--primary);
}

.job-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.job-meta span {
    color: var(--text-light);
    font-size: 14px;
}

.job-description {
    color: var(--text-light);
    margin-bottom: 20px;
}

/* Affiliate Page */
.affiliate-hero {
    background: linear-gradient(135deg, var(--secondary) 0%, #008f5b 100%);
}

.commission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.commission-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border: 2px solid transparent;
    transition: all 0.3s;
}

.commission-card:hover {
    border-color: var(--secondary);
}

.commission-card.featured {
    border-color: var(--secondary);
    transform: scale(1.05);
}

.commission-percentage {
    font-size: 48px;
    font-weight: bold;
    color: var(--secondary);
    margin-bottom: 10px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.step-card {
    text-align: center;
    padding: 30px;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    margin: 0 auto 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero .container {
        grid-template-columns: 1fr;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .section-header h2 {
        font-size: 28px;
    }

    .categories-grid,
    .products-grid,
    .services-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .trust-bar {
        flex-direction: column;
        gap: 15px;
    }

    .about-intro {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .blog-card.featured {
        grid-template-columns: 1fr;
    }

    .blog-card.featured .blog-image {
        height: 200px;
        font-size: 64px;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .blog-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .timeline::before {
        left: 20px;
    }

    .timeline-item,
    .timeline-item:nth-child(odd) {
        flex-direction: column;
        padding-left: 50px;
    }

    .timeline-content {
        width: 100%;
    }
}

/* CEO Message Centered Layout */
.ceo-section-centered {
    padding: 80px 0;
    background: var(--bg-gray);
}

.ceo-profile-top {
    text-align: center;
    margin-bottom: 40px;
}

.ceo-profile-top .ceo-image {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 64px;
    margin: 0 auto 20px;
    box-shadow: 0 10px 30px rgba(0,102,204,0.2);
}

.ceo-profile-top h3 {
    font-size: 32px;
    color: var(--text);
    margin-bottom: 15px;
    font-weight: 700;
}

.ceo-profile-top .ceo-name {
    font-size: 24px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 5px;
}

.ceo-profile-top .ceo-title {
    font-size: 18px;
    color: var(--text-light);
}

.ceo-message-content {
    max-width: 900px;
    margin: 0 auto;
}

.ceo-message-content p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 20px;
}

.ceo-message-content .quote-highlight {
    background: white;
    border-left: 4px solid var(--primary);
    padding: 25px 30px;
    margin: 30px 0;
    font-size: 18px;
    font-style: italic;
    color: var(--primary);
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.ceo-signature-bottom {
    font-family: 'Brush Script MT', cursive;
    font-size: 36px;
    color: var(--primary);
    text-align: right;
    margin-top: 30px;
}

/* Product Showcase Section Styles */
.products-showcase-section {
    padding: 80px 0;
    background: var(--bg-gray);
}

.products-showcase-section .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.products-showcase-section .section-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 15px;
}

.products-showcase-section .section-header p {
    font-size: 18px;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.product-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.product-card .product-image {
    height: 200px;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 72px;
    color: white;
}

.product-card .product-content {
    padding: 30px;
}

.product-card .product-tag {
    display: inline-block;
    background: var(--gold);
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.product-card .product-tag:has-text("NEW ARRIVAL") {
    background: var(--success);
}

.product-card .product-tag:has-text("PREMIUM") {
    background: var(--primary);
}

.product-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text);
}

.product-card > .product-content > p {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 16px;
}

.product-card .product-features {
    list-style: none;
    margin-bottom: 25px;
}

.product-card .product-features li {
    padding: 8px 0;
    color: var(--text);
    position: relative;
    padding-left: 25px;
    font-size: 15px;
}

.product-card .product-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: bold;
}

.product-card .product-actions {
    display: inline-flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
}

.product-card .btn-primary {
    background: var(--primary);
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.product-card .btn-primary:hover {
    background: var(--primary-dark);
}

.product-card .btn-outline {
    width: 44px;
    height: 44px;
    border: 2px solid var(--border);
    background: white;
    border-radius: 6px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    font-size: 18px;
    color: var(--text);
    text-decoration: none;
    padding: 0;
}

.product-card .btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
}

/* Responsive Design for Product Cards */
@media (max-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 25px;
    }
}

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

    .products-showcase-section .section-header h2 {
        font-size: 28px;
    }

    .products-showcase-section .section-header p {
        font-size: 16px;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .product-card .product-image {
        height: 150px;
        font-size: 56px;
    }

    .product-card .product-content {
        padding: 25px;
    }

    .product-card h3 {
        font-size: 20px;
    }

    .product-card .product-actions {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .product-card .btn-primary,
    .product-card .btn-outline {
        width: auto;
    }
}
