/*
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.1
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;
    padding-top: 78px;
}

/* 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;
}

/* Video Container */
.shark-video-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    /* 16:9 aspect ratio */
    aspect-ratio: 16 / 9;
}

.shark-video-container video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.shark-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s ease;
}

.shark-video-overlay:hover {
    background: rgba(0, 0, 0, 0.3);
}

.shark-play-btn {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    font-size: 24px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.shark-play-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

/* Team Section */
.shark-team-section {
    background: #f8f9fa;
}

.shark-team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.shark-team-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.shark-team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.shark-team-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00D4FF 0%, #0099CC 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin: 0 auto 20px;
}

.shark-team-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 20px;
    display: block;
    border: 3px solid #00D4FF;
}

.shark-team-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #0A2540;
    margin: 0 0 8px;
}

.shark-team-title {
    font-size: 14px;
    font-weight: 600;
    color: #00D4FF;
    margin: 0 0 12px;
}

.shark-team-bio {
    font-size: 14px;
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
}

/* Breadcrumb */
.shark-breadcrumb {
    background: #f8f9fa;
    padding: 12px 0;
    border-bottom: 1px solid #e9ecef;
}

.shark-breadcrumb ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 8px;
    align-items: center;
}

.shark-breadcrumb li {
    font-size: 14px;
    color: #6c757d;
}

.shark-breadcrumb li:not(:last-child)::after {
    content: '/';
    margin-left: 8px;
    color: #dee2e6;
}

.shark-breadcrumb a {
    color: #00D4FF;
    text-decoration: none;
    transition: color 0.3s ease;
}

.shark-breadcrumb a:hover {
    color: #00a8cc;
    text-decoration: underline;
}

.shark-breadcrumb li[aria-current="page"] {
    color: #212529;
    font-weight: 500;
}

/* Hero Section */
.shark-hero {
    background: linear-gradient(135deg, #0A2540 0%, #1A1A2E 100%);
    padding: 160px 0 80px;
    text-align: center;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.shark-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: inherit;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    z-index: 0;
}

.shark-hero > .shark-container {
    position: relative;
    z-index: 1;
}

/* Factory Background Section */
.shark-factory-bg-section {
    background: linear-gradient(rgba(10, 37, 64, 0.8), rgba(10, 37, 64, 0.9)), url('https://sbartswimwear.com/wp-content/uploads/2026/05/workshop-2.jpg') no-repeat center center;
    background-size: cover;
}

.shark-factory-bg-section .shark-section-header h2,
.shark-factory-bg-section .shark-section-header p {
    color: #FFFFFF;
}

.shark-factory-bg-section .shark-section-tag {
    background: rgba(0, 212, 255, 0.2);
    color: #00D4FF;
}

/* About Factory Section */
.shark-factory-about-section {
    background: #F7F9FC;
}

/* Product Detail Section */
.shark-product-detail-section {
    background: #FFFFFF;
}

.shark-product-detail {
    margin-bottom: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid #E8EEF2;
}

.shark-product-detail:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.shark-product-detail h2 {
    font-size: 32px;
    font-weight: 700;
    color: #0A2540;
    margin-bottom: 12px;
}

.shark-product-detail p {
    color: #6B7C93;
    font-size: 16px;
    margin-bottom: 24px;
}

.shark-product-gallery {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
    margin-bottom: 32px;
}

.shark-product-gallery img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.shark-product-gallery img:hover {
    transform: scale(1.05);
}

.shark-product-specs-full {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    background: #F7F9FC;
    padding: 24px;
    border-radius: 16px;
}

.shark-product-spec-item {
    font-size: 14px;
    color: #425466;
    padding: 8px 0;
}

.shark-product-spec-item strong {
    color: #0A2540;
}

@media (max-width: 992px) {
    .shark-product-gallery {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .shark-product-specs-full {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .shark-product-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .shark-product-specs-full {
        grid-template-columns: 1fr;
    }
    
    .shark-product-detail h2 {
        font-size: 24px;
    }
}

.shark-about-factory-images {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
}

.shark-about-factory-main {
    flex: 1;
    border-radius: 16px;
    overflow: hidden;
}

.shark-about-factory-main img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.shark-about-factory-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    width: 300px;
}

.shark-about-factory-grid img {
    width: 100%;
    height: 142px;
    object-fit: cover;
    border-radius: 12px;
}

@media (max-width: 768px) {
    .shark-about-factory-images {
        flex-direction: column;
    }
    
    .shark-about-factory-grid {
        width: 100%;
    }
}

/* Responsive Gallery & Process Flow */
@media (max-width: 992px) {
    .shark-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .shark-gallery-large {
        grid-column: span 2;
        grid-row: span 1;
    }
    
    .shark-process-flow-step {
        flex-direction: column;
    }
    
    .shark-process-flow-reverse {
        flex-direction: column;
    }
    
    .shark-process-flow-image {
        width: 100%;
    }
    
    .shark-process-flow-image img {
        height: 180px;
    }
}

@media (max-width: 600px) {
    .shark-gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .shark-gallery-large {
        grid-column: span 1;
    }
}

.shark-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.shark-gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.shark-gallery-item:hover {
    transform: scale(1.02);
}

.shark-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.shark-gallery-large {
    grid-column: span 2;
    grid-row: span 2;
}

.shark-gallery-large img {
    height: 100%;
    min-height: 300px;
}

.shark-gallery-item:not(.shark-gallery-large) img {
    height: 150px;
}

.shark-gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(10, 37, 64, 0.8));
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.shark-gallery-item:hover .shark-gallery-overlay {
    transform: translateY(0);
}

.shark-gallery-title {
    color: #FFFFFF;
    font-weight: 600;
    font-size: 16px;
}

/* Process Flow Styles */
.shark-process-flow {
    background: #F7F9FC;
}

.shark-process-flow-container {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.shark-process-flow-step {
    display: flex;
    align-items: center;
    gap: 24px;
    background: #FFFFFF;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.shark-process-flow-reverse {
    flex-direction: row-reverse;
}

.shark-process-flow-image {
    width: 300px;
    flex-shrink: 0;
}

.shark-process-flow-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.shark-process-flow-info {
    padding: 24px;
    flex: 1;
}

.shark-process-flow-num {
    font-size: 48px;
    font-weight: 800;
    color: rgba(0, 212, 255, 0.2);
    line-height: 1;
    margin-bottom: 8px;
}

.shark-process-flow-info h3 {
    font-size: 24px;
    font-weight: 700;
    color: #0A2540;
    margin-bottom: 12px;
}

.shark-process-flow-info p {
    color: #6B7C93;
    font-size: 15px;
    line-height: 1.6;
}

.shark-process-flow-arrow {
    text-align: center;
    font-size: 32px;
    color: #00D4FF;
    font-weight: bold;
}

.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;
}

/* Services Detail Styles */
.shark-services-detail-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.shark-service-detail-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.shark-service-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.shark-service-detail-card:hover .shark-service-detail-image img {
    transform: scale(1.05);
}

.shark-service-detail-card {
    background: #FFFFFF;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    overflow: hidden;
}

.shark-service-detail-header {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px;
    background: linear-gradient(135deg, #0A2540, #1A1A2E);
    flex-wrap: wrap;
}

.shark-service-detail-icon {
    width: 64px;
    height: 64px;
    background: rgba(0, 212, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

.shark-service-detail-header h3 {
    font-size: 20px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 4px;
}

.shark-service-detail-subtitle {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
}

.shark-service-detail-section {
    padding: 20px 24px;
    border-bottom: 1px solid #E8EEF2;
}

.shark-service-detail-section:last-of-type {
    border-bottom: none;
}

.shark-service-detail-section h4 {
    font-size: 16px;
    font-weight: 700;
    color: #0A2540;
    margin-bottom: 12px;
}

.shark-service-detail-section ul,
.shark-service-detail-section ol {
    margin: 0;
    padding-left: 20px;
}

.shark-service-detail-section li {
    color: #6B7C93;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 8px;
}

.shark-service-detail-section li:last-child {
    margin-bottom: 0;
}

.shark-service-case {
    background: #F7F9FC;
    padding: 16px;
    border-radius: 12px;
}

.shark-service-case p {
    color: #425466;
    font-size: 14px;
    margin-bottom: 8px;
}

.shark-service-case p:last-child {
    margin-bottom: 0;
}

.shark-service-detail-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    padding: 20px 24px;
    background: #F7F9FC;
}

.shark-service-spec {
    font-size: 14px;
    color: #425466;
    padding: 8px 12px;
    background: #FFFFFF;
    border-radius: 8px;
}

/* Services Process Styles */
.shark-services-process {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.shark-services-process-step {
    background: #FFFFFF;
    padding: 24px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.shark-services-process-image {
    width: 100%;
    height: 140px;
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 16px;
}

.shark-services-process-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.shark-services-process-num {
    font-size: 48px;
    font-weight: 800;
    color: rgba(0, 212, 255, 0.2);
    line-height: 1;
    margin-bottom: 12px;
}

.shark-services-process-content h4 {
    font-size: 18px;
    font-weight: 700;
    color: #0A2540;
    margin-bottom: 8px;
}

.shark-services-process-content p {
    color: #6B7C93;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 8px;
}

.shark-process-time {
    background: #F7F9FC;
    padding: 12px;
    border-radius: 8px;
    font-size: 13px !important;
    color: #425466 !important;
}

.shark-process-summary {
    display: flex;
    justify-content: center;
    gap: 40px;
    padding: 32px;
    background: linear-gradient(135deg, #0A2540, #1A1A2E);
    border-radius: 16px;
}

.shark-process-summary-item {
    text-align: center;
}

.shark-process-summary-value {
    display: block;
    font-size: 36px;
    font-weight: 800;
    color: #00D4FF;
}

.shark-process-summary-label {
    display: block;
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    margin-top: 4px;
}

@media (max-width: 992px) {
    .shark-services-detail-grid,
    .shark-services-process {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .shark-services-detail-grid,
    .shark-services-process {
        grid-template-columns: 1fr;
    }
    
    .shark-process-summary {
        flex-direction: column;
        gap: 20px;
    }
}

/* Features Grid */
.shark-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.shark-feature-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
    padding: 32px 24px;
    background: linear-gradient(135deg, #0A2540, #1A1A2E);
    border-radius: 16px;
    min-height: 200px;
}

.shark-feature-icon {
    font-size: 48px;
}

.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;
}

/* Product Showcase */
.shark-product-showcase {
    padding: 60px 0;
}

.shark-product-showcase-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.shark-product-item {
    background: #FFFFFF;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.shark-product-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.shark-product-image {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.shark-product-info {
    padding: 20px;
}

.shark-product-info h3 {
    font-size: 18px;
    font-weight: 700;
    color: #0A2540;
    margin: 0 0 8px;
}

.shark-product-info p {
    font-size: 14px;
    color: #6B7C93;
    margin: 0 0 12px;
}

.shark-product-link {
    font-size: 14px;
    font-weight: 600;
    color: #00D4FF;
    text-decoration: none;
    transition: color 0.3s ease;
}

.shark-product-link:hover {
    color: #0099CC;
}

/* Testimonials Section */
.shark-testimonials {
    background: #f8f9fa;
    padding: 60px 0;
}

.shark-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 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;
}

/* Front Page Testimonial Styles */
.shark-testimonial-content p {
    color: #425466;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 24px;
    font-style: italic;
}

.shark-testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00D4FF, #00B4D8);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.shark-testimonial-info {
    display: flex;
    flex-direction: column;
}

.shark-testimonial-name {
    font-weight: 700;
    color: #0A2540;
    font-size: 16px;
}

.shark-testimonial-title {
    color: #6B7C93;
    font-size: 14px;
}

/* CTA Section */
.shark-cta-section {
    background: linear-gradient(135deg, #00D4FF, #00B4D8);
    padding: 60px 0;
    text-align: center;
}

/* Front Page CTA */
.shark-cta {
    background: linear-gradient(135deg, #0A2540, #1B4332);
    padding: 60px 0;
    text-align: center;
}

.shark-cta-content h2 {
    font-size: 32px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 12px;
}

.shark-cta-content p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 24px;
}

.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;
}

.shark-footer-bottom p {
    margin-bottom: 10px;
}

.shark-footer-legal {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 10px;
    flex-wrap: wrap;
}

.shark-footer-legal a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: color 0.3s ease;
}

.shark-footer-legal a:hover {
    color: #00D4FF;
}

.shark-footer-legal span {
    color: rgba(255,255,255,0.3);
}

/* 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;
    padding: 8px;
    border-radius: 8px;
    transition: background 0.3s ease;
}

.shark-mobile-menu-btn:hover {
    background: rgba(0, 212, 255, 0.1);
}

/* Mobile Navigation */
.shark-nav.active {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 78px;
    left: 0;
    right: 0;
    background: #FFFFFF;
    padding: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    z-index: 9998;
    gap: 0;
    max-height: calc(100vh - 78px);
    overflow-y: auto;
}

.shark-nav.active a {
    padding: 14px 16px;
    border-bottom: 1px solid #E8EEF2;
    font-size: 16px;
    width: 100%;
}

.shark-nav.active a:last-child {
    border-bottom: none;
}

/* 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-im-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 8px;
}

.shark-im-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: #F7F9FC;
    border-radius: 8px;
    text-decoration: none;
    color: #0A2540;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.shark-im-link:hover {
    background: #00D4FF;
    color: #0A2540;
}

.shark-im-icon {
    font-size: 18px;
}

.shark-contact-social-links {
    display: flex;
    gap: 12px;
    margin-top: 8px;
    flex-wrap: wrap;
}

.shark-contact-social-links a {
    width: 40px;
    height: 40px;
    background: #F7F9FC;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0A2540;
    text-decoration: none;
    transition: all 0.3s ease;
}

.shark-contact-social-links a:hover {
    background: #00D4FF;
    color: #0A2540;
}

.shark-contact-form {
    background: #FFFFFF;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.shark-contact-response-promise {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(0, 168, 204, 0.1));
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.shark-response-icon {
    font-size: 20px;
}

.shark-response-text {
    font-size: 14px;
    font-weight: 600;
    color: #0A2540;
}

.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-map-section {
    margin-top: 40px;
}

.shark-map-container {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}

.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,
.shark-form-group select {
    width: 100%;
    padding: 12px;
    border: 2px solid #E8EEF2;
    border-radius: 8px;
    font-size: 14px;
    color: #2C3E50;
    background: #FFFFFF;
    transition: border-color 0.3s ease;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.shark-form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236B7C93' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
    cursor: pointer;
}

.shark-form-group input:focus,
.shark-form-group textarea:focus,
.shark-form-group select: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: 32px;
    margin-top: 40px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.shark-value-card {
    background: linear-gradient(135deg, #0A2540, #1A1A2E);
    padding: 40px 32px;
    border-radius: 16px;
    text-align: center;
    color: #FFFFFF;
}

.shark-value-icon {
    font-size: 40px;
    margin-bottom: 16px;
}

.shark-value-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 12px;
}

.shark-value-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

/* Hide duplicate related posts from plugins */
.single-post .sharedaddy,
.single-post .jp-relatedposts,
.single-post .jetpack-related-posts,
.single-post .entry-content ul li a[rel="bookmark"],
.single-post .entry-content > ul:has(li > a[rel="bookmark"]),
.single-post .entry-content .sharedaddy,
.single-post .entry-content .sd-content,
.single-post .entry-content .like-post-wrapper,
.single-post .entry-content .jp-relatedposts {
    display: none !important;
}

/* Related Posts Styles */
.shark-related-posts {
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid #E9ECEF;
}

.shark-related-posts h3 {
    font-size: 24px;
    font-weight: 700;
    color: #0A2540;
    margin-bottom: 24px;
    text-align: center;
}

.shark-related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.shark-related-card {
    background: #FFFFFF;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.shark-related-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.shark-related-image {
    height: 150px;
    overflow: hidden;
}

.shark-related-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.shark-related-content {
    padding: 20px;
}

.shark-related-content h4 {
    font-size: 16px;
    font-weight: 600;
    color: #0A2540;
    margin-bottom: 8px;
}

.shark-related-content h4 a {
    text-decoration: none;
    color: #0A2540;
}

.shark-related-content h4 a:hover {
    color: #00D4FF;
}

.shark-related-content p {
    font-size: 14px;
    color: #6B7C93;
    line-height: 1.6;
}

/* Pagination Styles */
.shark-pagination {
    margin-top: 40px;
    text-align: center;
}

.shark-pagination ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: inline-flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
}

.shark-pagination li {
    display: inline-block;
}

.shark-pagination a,
.shark-pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
}

.shark-pagination a {
    color: #0A2540;
    background: #FFFFFF;
    border: 1px solid #E9ECEF;
}

.shark-pagination a:hover {
    color: #FFFFFF;
    background: #00D4FF;
    border-color: #00D4FF;
}

.shark-pagination .current {
    color: #FFFFFF;
    background: #00D4FF;
    border: 1px solid #00D4FF;
}

.shark-pagination .dots {
    color: #6B7C93;
    background: transparent;
    border: none;
}

.shark-pagination .prev,
.shark-pagination .next {
    background: linear-gradient(135deg, #0A2540, #1A1A2E);
    color: #FFFFFF;
    border: none;
}

.shark-pagination .prev:hover,
.shark-pagination .next:hover {
    background: linear-gradient(135deg, #00D4FF, #00B4D8);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .shark-nav {
        display: none;
    }
    
    .shark-mobile-menu-btn {
        display: block;
    }
    
    .shark-header-inner .shark-btn {
        padding: 8px 16px;
        font-size: 13px;
    }
    
    .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-team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .shark-values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .shark-related-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .shark-form-row {
        grid-template-columns: 1fr;
    }
    
    .shark-stats {
        gap: 30px;
    }
    
    .shark-product-showcase-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .shark-testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .shark-map-container iframe {
        height: 300px;
    }
}

@media (max-width: 600px) {
    .shark-hero {
        padding: 120px 0 60px;
        min-height: 500px;
    }
    
    .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,
    .shark-team-grid,
    .shark-related-grid {
        grid-template-columns: 1fr;
    }
    
    .shark-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .shark-stat-value,
    .shark-factory-stat-value {
        font-size: 36px;
    }
    
    .shark-product-showcase-grid,
    .shark-testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .shark-product-image {
        height: 150px;
    }
    
    .shark-newsletter {
        padding: 30px 20px;
    }
    
    .shark-service-detail-header {
        padding: 16px;
    }
    
    .shark-service-detail-content {
        padding: 16px;
    }
    
    .shark-service-detail-specs {
        padding: 0 16px 16px;
    }
    
    .shark-btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .shark-section-header h2 {
        font-size: 28px;
    }
    
    .shark-section-header p {
        font-size: 16px;
    }
    
    .shark-faq-title {
        font-size: 28px;
    }
    
    .shark-faq-subtitle {
        font-size: 16px;
    }
    
    .shark-service-card {
        padding: 30px 20px;
    }
    
    .shark-product-info {
        padding: 20px;
    }
    
    .shark-news-content {
        padding: 20px;
    }
    
    .shark-contact-card {
        padding: 20px;
    }
    
    .shark-news-article-content {
        padding: 20px;
    }
    
    .shark-news-article-image {
        height: 200px;
    }
    
    .shark-news-article-content h2 {
        font-size: 22px;
    }
    
    .shark-process-flow-num {
        font-size: 36px;
    }
    
    .shark-services-process-num {
        font-size: 36px;
    }
    
    .shark-privacy-page h1,
    .shark-terms-page h1 {
        font-size: 28px;
    }
    
    .shark-privacy-content h2,
    .shark-terms-content h2 {
        font-size: 18px;
    }
    
    .shark-product-detail {
        margin-bottom: 40px;
        padding-bottom: 40px;
    }
    
    .shark-factory-icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }
    
    .shark-play-btn {
        width: 60px;
        height: 60px;
        font-size: 22px;
    }
    
    .shark-service-detail-icon {
        width: 48px;
        height: 48px;
        font-size: 22px;
    }
    
    .shark-feature-icon {
        font-size: 36px;
    }
    
    .shark-service-icon {
        font-size: 36px;
    }
    
    .shark-cta-form {
        flex-direction: column;
    }
    
    .shark-map-container iframe {
        height: 250px;
    }
    
    .shark-404-icon {
        font-size: 60px;
    }
}

.shark-404-icon {
    font-size: 80px;
    margin-bottom: 20px;
}

.shark-privacy-page,
.shark-terms-page {
    padding: 100px 0 60px;
}

.shark-privacy-page h1,
.shark-terms-page h1 {
    font-size: 36px;
    font-weight: 700;
    color: #0A2540;
    margin-bottom: 40px;
    text-align: center;
}

.shark-privacy-content h2,
.shark-terms-content h2 {
    font-size: 22px;
    font-weight: 700;
    color: #0A2540;
    margin: 40px 0 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid #E8EEF2;
}

.shark-privacy-content p,
.shark-terms-content p {
    color: #6B7C93;
    line-height: 1.8;
    margin-bottom: 16px;
    font-size: 15px;
}

.shark-privacy-content ul,
.shark-terms-content ul {
    padding-left: 24px;
    margin-bottom: 16px;
}

.shark-privacy-content li,
.shark-terms-content li {
    color: #6B7C93;
    margin-bottom: 8px;
    line-height: 1.6;
}

.shark-privacy-content a,
.shark-terms-content a {
    color: #00D4FF;
    text-decoration: none;
}

.shark-privacy-content a:hover,
.shark-terms-content a:hover {
    text-decoration: underline;
}

/* News Article Detail Styles */
.shark-news-article-detail {
    background: #FFFFFF;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    overflow: hidden;
    margin-bottom: 32px;
}

.shark-news-article-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.shark-news-article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.shark-news-article-content {
    padding: 32px;
}

.shark-news-article-content h2 {
    font-size: 28px;
    font-weight: 700;
    color: #0A2540;
    margin-bottom: 8px;
}

.shark-news-article-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: #0A2540;
    margin: 24px 0 12px;
}

.shark-news-article-content p {
    color: #6B7C93;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 16px;
}

.shark-news-article-content ul {
    margin: 0;
    padding-left: 20px;
}

.shark-news-article-content li {
    color: #425466;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 12px;
}

@media (max-width: 768px) {
    .shark-news-article-image {
        height: 200px;
    }
    
    .shark-news-article-content {
        padding: 20px;
    }
    
    .shark-news-article-content h2 {
        font-size: 24px;
    }
}