/* Global Styles */
:root {
    --primary-color: rgb(13 167 253);
    --secondary-color: #00a86b;
    --accent-color: #ff6b35;
    --dark-bg: #1a1a1a;
    --light-bg: #f8f9fa;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

/* Spacing Utilities */
.assets-bg-section {
    position: relative;
    overflow: hidden;
}

.assets-bg-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('images/vehicle.png');
    background-size: cover;
    background-position: center right;
    opacity: 0.08;
    pointer-events: none;
    z-index: 0;
}

.assets-bg-section .container {
    position: relative;
    z-index: 1;
}

.py-7 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
}

/* Background Utilities */
.bg-gradient-light {
    background: linear-gradient(135deg, #e3f2fd 0%, #f0f7ff 100%);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    line-height: 1.6;
    background: #f5f5f5;
    margin: 0;
    padding: 0;
}

/* Global Max Width Container */
nav, section, footer {
    max-width: 1200px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    width: calc(100% - 30px) !important;
}

section.hero-section {
    max-width: none !important;
    width: 100% !important;
    margin: 0 !important;
}

.hero-section {
    max-width: 1200px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    width: calc(100% - 30px) !important;
}

/* Hero Section */
.hero-section {
    min-height: 70vh;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    position: relative;
    overflow: hidden;
    width: 100%;
    margin: 0;
    padding: 0;
}

.hero-section .container {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    width: calc(100% - 30px);
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.6) 0%, rgba(0, 168, 107, 0.6) 100%);
    z-index: -1;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><defs><pattern id="dots" x="0" y="0" width="40" height="40" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="1200" height="600" fill="url(%23dots)"/></svg>');
    opacity: 0.5;
}

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.hero-section .lead {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.hero-section img {
    max-height: 400px;
}

/* Achievement Cards */
.achievement-card {
    padding: 2.5rem 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-top: 4px solid var(--primary-color);
}

.achievement-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    border-top-color: var(--secondary-color);
}

.achievement-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.achievement-card h5 {
    color: var(--dark-bg);
    margin-top: 1rem;
}

/* Cards */
.card {
    transition: all 0.3s ease;
    border-radius: 12px;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15) !important;
}

/* Feature Circles */
.feature-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    transition: transform 0.3s ease;
}

.feature-circle:hover {
    transform: scale(1.1);
}

/* Value Cards */
.value-card {
    padding: 2rem;
    text-align: center;
    border-radius: 12px;
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    background: linear-gradient(135deg, #f0f7ff 0%, #e8f5e9 100%);
}

.value-card i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.value-card h5 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
}

/* Product Cards */
.product-card {
    padding: 1.5rem;
    border-radius: 12px;
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.product-card img {
    border-radius: 8px;
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover img {
    transform: scale(1.05);
}

.product-card h5 {
    color: var(--primary-color);
    margin-top: 1rem;
}

/* Strategy Items */
.strategy-item {
    padding: 1.5rem;
    border-left: 4px solid var(--primary-color);
    background: white;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.strategy-item:hover {
    border-left-color: var(--secondary-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.strategy-item h6 {
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.strategy-item i {
    margin-right: 0.5rem;
}

/* Boat Cards */
.boat-card {
    overflow: hidden;
    background: white;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-top: 4px solid var(--primary-color);
}

.boat-image-container {
    width: 100%;
    height: 180px;
    overflow: hidden;
    border-radius: 8px 8px 0 0;
    position: relative;
}

.boat-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.boat-card:hover .boat-image {
    transform: scale(1.05);
}

.boat-card {
    padding: 0;
}

.boat-card h6, .boat-card p {
    padding: 0 1.5rem;
}

.boat-card h6 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    padding-top: 1rem;
}

.boat-card p {
    padding-bottom: 1.5rem;
}

.boat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
    border-top-color: var(--secondary-color);
}

/* Equipment Summary */
.equipment-summary {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.equipment-stat {
    padding: 2rem;
    text-align: center;
    background: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.equipment-stat strong {
    display: block;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.equipment-stat span {
    color: #666;
    font-size: 0.9rem;
}

/* Branch Cards */
.branch-card {
    padding: 2rem;
    background: white;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.branch-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.branch-card i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.branch-card h5 {
    margin-bottom: 1rem;
}

/* Contact Section */
.contact-info {
    text-align: center;
    padding: 1.5rem;
}

.contact-info i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-info h5 {
    font-weight: 700;
    margin-bottom: 1rem;
}

.contact-info p {
    font-size: 0.95rem;
    line-height: 1.8;
}

/* Navigation */
.navbar {
    background: transparent !important;
    box-shadow: none;
    border-bottom: none;
    position: absolute;
    width: calc(100% - 30px);
    max-width: 1200px;
    top: 0;
    z-index: 100;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.5rem 15px;
}

.navbar-brand {
    font-size: 1.3rem;
    letter-spacing: 0.5px;
    color: white !important;
    display: flex;
    align-items: center;
    padding: 0;
}

.navbar-logo {
    height: 140px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
    display: block;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 1)) drop-shadow(0 0 25px rgba(255, 255, 255, 0.95)) drop-shadow(0 0 40px rgba(255, 255, 255, 0.85)) drop-shadow(0 0 60px rgba(255, 255, 255, 0.7));
}

@media (max-width: 992px) {
    .navbar-logo {
        height: 100px;
    }
}

@media (max-width: 768px) {
    .navbar-logo {
        height: 70px;
    }
}

.navbar-brand:hover .navbar-logo {
    transform: scale(1.05);
}

.navbar-brand i {
    margin-right: 0.5rem;
}

.nav-link {
    transition: all 0.3s ease;
    margin: 0 0.75rem;
    color: white !important;
    font-weight: 500;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    background: rgba(0, 0, 0, 0.1);
    padding: 0.5rem 1rem !important;
    border-radius: 4px;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

.nav-link.active {
    color: var(--primary-color) !important;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 0.25rem;
}

.dropdown-toggle::after {
    display: none !important;
}

.navbar.scrolled {
    position: fixed;
    background: rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.navbar.scrolled .nav-link {
    color: #666 !important;
    text-shadow: none;
}

.navbar.scrolled .navbar-brand {
    color: #1a1a1a !important;
}

.ceo-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 102, 204, 0.15);
}

.ceo-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.ceo-image-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.1) 0%, rgba(0, 168, 107, 0.1) 100%);
    pointer-events: none;
    border-radius: 12px;
}

.ceo-image-wrapper:hover .ceo-image {
    transform: scale(1.05);
}

/* Footer Update */

/* Business Philosophy Section */
.philosophy-stat-card {
    background: white;
    padding: 2.5rem 1.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 102, 204, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.philosophy-stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 102, 204, 0.15);
    border-color: var(--primary-color);
}

.philosophy-stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.philosophy-stat-label {
    color: #333;
    font-weight: 600;
    font-size: 1rem;
    margin: 0;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #0052a3;
    border-color: #0052a3;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 102, 204, 0.3);
}

.btn-outline-light:hover {
    background-color: white;
    color: var(--primary-color);
}

/* Sections */
section {
    position: relative;
}

section h2 {
    color: var(--dark-bg);
    margin-bottom: 1rem;
}

/* Footer */
footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-top: 3px solid var(--primary-color);
}

/* Responsive Design */
@media (max-width: 992px) {
    .nav-link {
        margin: 0 0.4rem !important;
        font-size: 0.85rem;
        padding: 0.4rem 0.7rem !important;
    }
}

@media (max-width: 768px) {
    .navbar {
        flex-wrap: nowrap !important;
        width: calc(100% - 30px) !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        padding: 0.5rem 15px !important;
    }

    .navbar-nav {
        flex-direction: row !important;
        gap: 0.15rem;
        align-items: center;
        flex-wrap: nowrap;
    }

    .nav-link {
        margin: 0 !important;
        padding: 0.3rem 0.4rem !important;
        font-size: 0.75rem;
        min-width: auto;
        white-space: nowrap;
    }

    .hero-section h1 {
        font-size: 2.5rem;
    }

    .hero-section .lead {
        font-size: 1.1rem;
    }

    .hero-section img {
        max-height: 300px;
        margin-top: 2rem;
    }

    .d-flex {
        flex-direction: column;
    }

    .d-flex .btn {
        width: 100%;
    }

    .equipment-summary {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 1rem;
    }

    .equipment-stat strong {
        font-size: 2rem;
    }

    /* Mobile Dropdown Menu Styling */
    .dropdown-menu {
        position: static !important;
        float: none !important;
        width: 100% !important;
        margin: 0.5rem 0 0 0 !important;
        padding: 0.5rem 0 !important;
        border: none !important;
        box-shadow: none !important;
        background-color: rgba(0, 0, 0, 0.8) !important;
        display: none;
    }

    .dropdown-menu.show {
        display: block !important;
    }

    .dropdown-item {
        padding: 0.75rem 1.5rem !important;
        color: white !important;
    }

    .dropdown-item:hover,
    .dropdown-item:focus {
        background-color: rgba(13, 167, 253, 0.2) !important;
        color: white !important;
    }
}

@media (max-width: 576px) {
    .hero-section h1 {
        font-size: 2rem;
    }

    .display-5 {
        font-size: 2rem;
    }

    section {
        padding: 2rem 0;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.card, .value-card, .product-card, .strategy-item, .boat-card, .branch-card {
    animation: fadeIn 0.6s ease-out forwards;
}

/* Utility Classes */
.rounded-lg {
    border-radius: 12px;
}

.shadow-lg {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

/* Smooth Transitions */
a {
    text-decoration: none;
    transition: color 0.3s ease;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #0052a3;
}

/* Fish Species Image Container */
.fish-species-image {
    height: 200px;
    overflow: hidden;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.fish-species-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
