/*
Theme Name: SHARK SPORTING Swimwear Factory
Theme URI: https://sbartswimwear.com/
Description: B2B Swimwear Factory WordPress Theme for SHARK SPORTING
Author: SHARK SPORTING
Author URI: https://sbartswimwear.com/
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: shark-sporting
Tags: b2b, swimwear, factory, manufacturing, responsive, seo
*/

/* Reset Styles */
html, body { margin: 0; padding: 0; box-sizing: border-box; }
*, *::before, *::after { box-sizing: inherit; }

/* Base Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #2C3E50;
    line-height: 1.6;
    background: #FFFFFF;
}

/* Container */
.shark-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.shark-header {
    background: #FFFFFF;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.shark-header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.shark-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.shark-logo-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #0A2540, #00D4FF);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.shark-logo-text {
    font-size: 24px;
    font-weight: 700;
    color: #0A2540;
}

.shark-logo-text span {
    color: #00D4FF;
}

/* Navigation Styles */
.shark-nav {
    display: flex;
    gap: 32px;
}

.shark-nav a {
    text-decoration: none;
    color: #2C3E50;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 14px;
}

.shark-nav a:hover,
.shark-nav a.current-menu-item {
    color: #00D4FF;
}

/* Button Styles */
.shark-btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    font-size: 16px;
}

.shark-btn-primary {
    background: linear-gradient(135deg, #00D4FF, #00B4D8);
    color: #0A2540;
}

.shark-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.4);
}

.shark-btn-white {
    background: #FFFFFF;
    color: #0A2540;
    border: 2px solid #0A2540;
}

.shark-btn-white:hover {
    background: #0A2540;
    color: #FFFFFF;
}

/* Hero Section */
.shark-hero {
    background: linear-gradient(135deg, #0A2540 0%, #1A1A2E 100%);
    padding: 160px 0 80px;
    text-align: center;
    margin-top: 78px;
}

.shark-hero-badge {
    display: inline-block;
    background: rgba(0, 212, 255, 0.15);
    padding: 8px 16px;
    border-radius: 50px;
    color: #00D4FF;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.shark-hero h1 {
    font-size: 48px;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 20px;
}

.shark-hero h1 span {
    color: #00D4FF;
}

.shark-hero p {
    font-size: 18px;
    color: rgba(255,255,255,0.8);
    max-width: 700px;
    margin: 0 auto;
}

/* Stats Section */
.shark-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.shark-stat-item {
    text-align: center;
}

.shark-stat-value {
    font-size: 48px;
    font-weight: 800;
    color: #00D4FF;
}

.shark-stat-label {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    margin-top: 4px;
}

/* Section Styles */
.shark-section {
    padding: 80px 0;
}

.shark-section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px;
}

.shark-section-tag {
    display: inline-block;
    background: rgba(0, 212, 255, 0.1);
    color: #00D4FF;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
}

.shark-section-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #0A2540;
    margin-bottom: 16px;
}

.shark-section-header p {
    font-size: 16px;
    color: #6B7C93;
}

/* Products Grid */
.shark-products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.shark-product-card {
    background: #FFFFFF;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.shark-product-card:hover {
    transform: translateY(-5px);
}

.shark-product-image {
    height: 180px;
    background: #F7F9FC;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
}

.shark-product-info {
    padding: 20px;
}

.shark-product-info h3 {
    font-size: 18px;
    font-weight: 700;
    color: #0A2540;
    margin-bottom: 8px;
}

.shark-product-info p {
    color: #6B7C93;
    font-size: 14px;
}

/* Services Grid */
.shark-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.shark-service-card {
    background: #FFFFFF;
    padding: 32px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.3s ease;
}

.shark-service-card:hover {
    transform: translateY(-5px);
}

.shark-service-icon {
    font-size: 36px;
    margin-bottom: 16px;
}

.shark-service-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #0A2540;
    margin-bottom: 12px;
}

.shark-service-card p {
    color: #6B7C93;
    font-size: 14px;
    line-height: 1.6;
}

/* Features Grid */
.shark-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.shark-feature-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 32px;
    background: linear-gradient(135deg, #0A2540, #1A1A2E);
    border-radius: 16px;
}

.shark-feature-icon {
    font-size: 36px;
}

.shark-feature-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 8px;
}

.shark-feature-content p {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
}

/* Testimonials Grid */
.shark-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.shark-testimonial-card {
    background: #FFFFFF;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.shark-testimonial-rating {
    font-size: 20px;
    margin-bottom: 16px;
}

.shark-testimonial-card p {
    color: #425466;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 24px;
    font-style: italic;
}

.shark-testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.shark-author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00D4FF, #00B4D8);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.shark-author-name {
    font-weight: 700;
    color: #0A2540;
    font-size: 16px;
}

.shark-author-title {
    color: #6B7C93;
    font-size: 14px;
}

/* CTA Section */
.shark-cta-section {
    background: linear-gradient(135deg, #00D4FF, #00B4D8);
    padding: 60px 0;
    text-align: center;
}

.shark-cta-box h2 {
    font-size: 32px;
    font-weight: 700;
    color: #0A2540;
    margin-bottom: 12px;
}

.shark-cta-box p {
    font-size: 16px;
    color: rgba(10, 37, 64, 0.8);
    margin-bottom: 24px;
}

/* Footer Styles */
.shark-footer {
    background: #0A2540;
    color: #FFFFFF;
    padding: 60px 0 30px;
}

.shark-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.shark-footer-brand p {
    color: rgba(255,255,255,0.7);
    margin-top: 16px;
    font-size: 14px;
}

.shark-footer .shark-logo-text {
    color: #FFFFFF;
}

.shark-footer .shark-logo-text span {
    color: #00D4FF;
}

.shark-social-links {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.shark-social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #FFFFFF;
    font-size: 18px;
    transition: background 0.3s ease;
}

.shark-social-links a:hover {
    background: #00D4FF;
    color: #0A2540;
}

.shark-footer-column h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
}

.shark-footer-links {
    list-style: none;
    padding: 0;
}

.shark-footer-links li {
    margin-bottom: 12px;
}

.shark-footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.shark-footer-links a:hover {
    color: #00D4FF;
}

.shark-footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    text-align: center;
    color: rgba(255,255,255,0.6);
    font-size: 14px;
}

/* WhatsApp Float Button */
.shark-whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
    z-index: 9999;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.shark-whatsapp-float:hover {
    transform: scale(1.1);
}

/* Mobile Menu Button */
.shark-mobile-menu-btn {
    display: none;
    background: transparent;
    border: none;
    font-size: 24px;
    color: #0A2540;
    cursor: pointer;
}

/* Product Page Styles */
.shark-categories {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.shark-cat-btn {
    padding: 8px 20px;
    border: 2px solid #00D4FF;
    border-radius: 25px;
    background: transparent;
    color: #00D4FF;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.shark-cat-btn:hover,
.shark-cat-btn.active {
    background: #00D4FF;
    color: #0A2540;
}

.shark-product-specs {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 12px;
}

.shark-product-spec {
    background: #F7F9FC;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    color: #6B7C93;
}

/* Contact Page Styles */
.shark-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.shark-contact-card {
    display: flex;
    gap: 16px;
    padding: 24px;
    background: #FFFFFF;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    margin-bottom: 16px;
}

.shark-contact-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #00D4FF, #00B4D8);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.shark-contact-info h4 {
    font-size: 18px;
    font-weight: 700;
    color: #0A2540;
    margin-bottom: 4px;
}

.shark-contact-info p {
    color: #6B7C93;
    font-size: 14px;
}

.shark-contact-info a {
    color: #00D4FF;
    text-decoration: none;
}

.shark-contact-form {
    background: #FFFFFF;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.shark-contact-form h3 {
    font-size: 24px;
    font-weight: 700;
    color: #0A2540;
    margin-bottom: 8px;
}

.shark-contact-form p {
    color: #6B7C93;
    font-size: 14px;
    margin-bottom: 24px;
}

.shark-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.shark-form-group {
    margin-bottom: 16px;
}

.shark-form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #0A2540;
    margin-bottom: 8px;
}

.shark-form-group input,
.shark-form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #E8EEF2;
    border-radius: 8px;
    font-size: 14px;
    color: #2C3E50;
    background: #FFFFFF;
    transition: border-color 0.3s ease;
}

.shark-form-group input:focus,
.shark-form-group textarea:focus {
    outline: none;
    border-color: #00D4FF;
}

.shark-form-group textarea {
    min-height: 120px;
    resize: vertical;
}

/* Contact Form 7 Styles */
.wpcf7 {
    /* Remove duplicate styling - handled by .shark-contact-form */
}

.wpcf7 .wpcf7-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #0A2540;
}

.wpcf7 .wpcf7-form input[type="text"],
.wpcf7 .wpcf7-form input[type="email"],
.wpcf7 .wpcf7-form input[type="tel"],
.wpcf7 .wpcf7-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #E8ECF1;
    border-radius: 8px;
    font-size: 15px;
    color: #0A2540;
    background: #FFFFFF;
    transition: border-color 0.3s ease;
    margin-bottom: 16px;
}

.wpcf7 .wpcf7-form input:focus,
.wpcf7 .wpcf7-form textarea:focus {
    outline: none;
    border-color: #00D4FF;
}

.wpcf7 .wpcf7-form textarea {
    min-height: 120px;
    resize: vertical;
}

.wpcf7 .wpcf7-submit {
    background: linear-gradient(135deg, #00D4FF 0%, #00A8CC 100%);
    color: #0A2540;
    padding: 14px 32px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
}

.wpcf7 .wpcf7-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 212, 255, 0.3);
}

.wpcf7 .wpcf7-response-output {
    margin-top: 16px;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
}

.wpcf7 .wpcf7-mail-sent-ok {
    background: #D4EDDA;
    color: #155724;
    border: 1px solid #C3E6CB;
}

.wpcf7 .wpcf7-validation-errors,
.wpcf7 .wpcf7-mail-sent-ng {
    background: #F8D7DA;
    color: #721C24;
    border: 1px solid #F5C6CB;
}

/* Factory Page Styles */
.shark-factory-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

.shark-factory-stat {
    background: #FFFFFF;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    text-align: center;
}

.shark-factory-stat-value {
    font-size: 48px;
    font-weight: 800;
    color: #00D4FF;
}

.shark-factory-stat-label {
    font-size: 14px;
    color: #6B7C93;
    margin-top: 8px;
}

.shark-factory-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.shark-factory-item {
    background: #FFFFFF;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    padding: 32px;
    display: flex;
    gap: 20px;
}

.shark-factory-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #0A2540, #00D4FF);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    flex-shrink: 0;
}

.shark-factory-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: #0A2540;
    margin-bottom: 8px;
}

.shark-factory-content p {
    color: #6B7C93;
    font-size: 14px;
}

/* Process Page Styles */
.shark-process-steps {
    position: relative;
}

.shark-process-line {
    position: absolute;
    top: 40px;
    left: 0;
    right: 0;
    height: 3px;
    background: #00D4FF;
}

.shark-process-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    position: relative;
    z-index: 1;
}

.shark-process-step {
    background: #FFFFFF;
    padding: 32px 20px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    text-align: center;
}

.shark-process-num {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #00D4FF, #00B4D8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    color: #0A2540;
    margin: 0 auto 16px;
}

.shark-process-icon {
    font-size: 32px;
    margin-bottom: 12px;
}

.shark-process-step h3 {
    font-size: 16px;
    font-weight: 700;
    color: #0A2540;
    margin-bottom: 8px;
}

.shark-process-step p {
    color: #6B7C93;
    font-size: 12px;
}

/* News Page Styles */
.shark-news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.shark-news-card {
    background: #FFFFFF;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.shark-news-card:hover {
    transform: translateY(-5px);
}

.shark-news-image {
    height: 200px;
    background: #F7F9FC;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
    overflow: hidden;
}

.shark-news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.shark-news-content {
    padding: 24px;
}

.shark-news-date {
    font-size: 12px;
    color: #00D4FF;
    font-weight: 600;
    margin-bottom: 8px;
}

.shark-news-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: #0A2540;
    margin-bottom: 12px;
}

.shark-news-content p {
    color: #6B7C93;
    font-size: 14px;
    margin-bottom: 16px;
}

.shark-news-readmore {
    color: #00D4FF;
    font-weight: 600;
    text-decoration: none;
    font-size: 14px;
}

/* About Page Styles */
.shark-about-content {
    max-width: 800px;
    margin: 0 auto;
}

.shark-about-content h3 {
    font-size: 24px;
    font-weight: 700;
    color: #0A2540;
    margin-bottom: 16px;
    margin-top: 32px;
}

.shark-about-content p {
    color: #6B7C93;
    font-size: 16px;
    line-height: 1.8;
}

.shark-values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.shark-value-card {
    background: #FFFFFF;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    text-align: center;
}

.shark-value-icon {
    font-size: 40px;
    margin-bottom: 16px;
}

.shark-value-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #0A2540;
    margin-bottom: 12px;
}

.shark-value-card p {
    color: #6B7C93;
    font-size: 14px;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .shark-nav {
        display: none;
    }
    
    .shark-mobile-menu-btn {
        display: block;
    }
    
    .shark-hero h1 {
        font-size: 36px;
    }
    
    .shark-products-grid,
    .shark-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .shark-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .shark-footer-grid,
    .shark-factory-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .shark-factory-grid,
    .shark-news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .shark-process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .shark-process-line {
        display: none;
    }
    
    .shark-contact-grid {
        grid-template-columns: 1fr;
    }
    
    .shark-form-row {
        grid-template-columns: 1fr;
    }
    
    .shark-stats {
        gap: 30px;
    }
}

@media (max-width: 600px) {
    .shark-hero {
        padding: 120px 0 60px;
    }
    
    .shark-hero h1 {
        font-size: 28px;
    }
    
    .shark-products-grid,
    .shark-services-grid,
    .shark-features-grid,
    .shark-footer-grid,
    .shark-factory-stats,
    .shark-factory-grid,
    .shark-news-grid,
    .shark-process-grid,
    .shark-values-grid {
        grid-template-columns: 1fr;
    }
    
    .shark-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .shark-stat-value,
    .shark-factory-stat-value {
        font-size: 36px;
    }
}