/* ==========================================
   MARIS GLOBAL - OCEAN THEME STYLESHEET
   ========================================== */

/* === RESET & BASE === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-blue: #123055;
    --secondary-blue: #1a4470;
    --light-blue: #4A90E2;
    --ocean-gradient: linear-gradient(135deg, #123055 0%, #1a4470 50%, #2a5a8a 100%);
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --text-dark: #2c3e50;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    background: var(--white);
    width: 100%;
    position: relative;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

/* Prevent all sections from overflowing */
section {
    width: 100%;
    overflow-x: hidden;
    box-sizing: border-box;
}

img, svg, video {
    max-width: 100%;
    height: auto;
}

/* === NAVIGATION === */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(18, 48, 85, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

/* Navbar when scrolled - WHITE BACKGROUND */
.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
}

.navbar .container {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 1rem;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.cart-link {
    color: var(--white);
    text-decoration: none;
    font-size: 1.4rem;
    line-height: 1;
}

.navbar.scrolled .cart-link {
    color: var(--primary-blue);
}


.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: var(--transition);
}

.logo-link:hover {
    opacity: 0.9;
    transform: scale(1.05);
}

.logo {
    height: 60px;
    width: auto;
    object-fit: contain;
    transition: all 0.3s ease;
}

/* Logo when scrolled */
.navbar.scrolled .logo {
    height: 50px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    justify-content: center;
}

.nav-menu a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    padding: 0.5rem 0;
}

/* Menu links when scrolled */
.navbar.scrolled .nav-menu a {
    color: var(--primary-blue);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--light-blue);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--white);
    transition: var(--transition);
}

/* Hamburger when scrolled */
.navbar.scrolled .hamburger span {
    background: var(--primary-blue);
}

/* === HERO SECTION === */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--ocean-gradient);
}

.ocean-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200%;
    height: 200px;
    background: rgba(74, 144, 226, 0.3);
    border-radius: 50%;
    animation: wave-animation 10s linear infinite;
}

.wave1 {
    animation-delay: 0s;
    opacity: 0.4;
}

.wave2 {
    animation-delay: -5s;
    opacity: 0.3;
    animation-duration: 12s;
}

.wave3 {
    animation-delay: -2s;
    opacity: 0.2;
    animation-duration: 15s;
}

@keyframes wave-animation {
    0% {
        transform: translateX(0) translateY(0);
    }
    100% {
        transform: translateX(-50%) translateY(0);
    }
}

/* === FISH ANIMATIONS === */
.fish-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.fish {
    position: absolute;
    font-size: 2rem;
    animation: swim 20s linear infinite;
}

.fish1 {
    top: 20%;
    animation-duration: 25s;
}

.fish2 {
    top: 40%;
    animation-duration: 30s;
    animation-delay: -5s;
}

.fish3 {
    top: 60%;
    animation-duration: 22s;
    animation-delay: -10s;
}

.fish4 {
    top: 75%;
    animation-duration: 35s;
    animation-delay: -15s;
}

.fish5 {
    top: 85%;
    animation-duration: 28s;
    animation-delay: -20s;
}

@keyframes swim {
    0% {
        left: 110%;
        transform: translateY(0) scaleX(1);
    }
    50% {
        transform: translateY(-20px) scaleX(1);
    }
    100% {
        left: -10%;
        transform: translateY(0) scaleX(1);
    }
}

/* === BUBBLES === */
.bubbles {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.bubble {
    position: absolute;
    bottom: -50px;
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: bubble-rise 8s ease-in-out infinite;
}

.bubble:nth-child(1) { left: 10%; animation-duration: 7s; animation-delay: 0s; }
.bubble:nth-child(2) { left: 20%; animation-duration: 9s; animation-delay: 2s; width: 15px; height: 15px; }
.bubble:nth-child(3) { left: 35%; animation-duration: 6s; animation-delay: 4s; width: 25px; height: 25px; }
.bubble:nth-child(4) { left: 50%; animation-duration: 10s; animation-delay: 1s; }
.bubble:nth-child(5) { left: 65%; animation-duration: 8s; animation-delay: 3s; width: 18px; height: 18px; }
.bubble:nth-child(6) { left: 75%; animation-duration: 7s; animation-delay: 5s; width: 22px; height: 22px; }
.bubble:nth-child(7) { left: 85%; animation-duration: 9s; animation-delay: 2.5s; }
.bubble:nth-child(8) { left: 95%; animation-duration: 8s; animation-delay: 4.5s; width: 16px; height: 16px; }

@keyframes bubble-rise {
    0% {
        bottom: -50px;
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        bottom: 110%;
        opacity: 0;
        transform: translateX(50px);
    }
}

/* === HERO CONTENT === */
.hero-content {
    text-align: center;
    color: var(--white);
    z-index: 10;
    padding: 2rem;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.2rem !important;
    opacity: 0.9;
}

/* === ANIMATIONS === */
.fade-in {
    animation: fadeIn 1s ease-in;
}

.fade-in-delay {
    animation: fadeIn 1s ease-in 0.3s backwards;
}

.fade-in-delay-2 {
    animation: fadeIn 1s ease-in 0.6s backwards;
}

.fade-in-delay-3 {
    animation: fadeIn 1s ease-in 0.9s backwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-in-left {
    animation: slideInLeft 0.8s ease-out;
}

.slide-in-right {
    animation: slideInRight 0.8s ease-out;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.slide-up {
    animation: slideUp 0.6s ease-out;
}

.delay-1 {
    animation-delay: 0.1s;
}

.delay-2 {
    animation-delay: 0.2s;
}

.delay-3 {
    animation-delay: 0.3s;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.float-animation {
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* === BUTTONS === */
.cta-button,
.cta-button-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--light-blue);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 5px 20px rgba(74, 144, 226, 0.4);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.cta-button:hover::before {
    width: 300px;
    height: 300px;
}

.cta-button:hover,
.cta-button-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(74, 144, 226, 0.6);
}

.cta-button-secondary {
    background: transparent;
    border: 2px solid var(--white);
}

/* === SECTIONS === */
section {
    padding: 5rem 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-blue);
}

/* === ABOUT SECTION === */
.about {
    background: var(--light-gray);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-content h2 {
    color: var(--primary-blue);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.about-img-wrapper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(18, 48, 85, 0.2);
    transition: var(--transition);
}

.about-img-wrapper:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 50px rgba(18, 48, 85, 0.3);
}

.about-img-wrapper img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.image-placeholder {
    background: var(--ocean-gradient);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(18, 48, 85, 0.2);
}

.image-placeholder svg {
    width: 100%;
    height: auto;
}

/* === SERVICES SECTION === */
.services {
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(18, 48, 85, 0.2);
    border-color: var(--light-blue);
}

.service-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

/* === CTA SECTION === */
.cta-section {
    background: var(--ocean-gradient);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* === PAGE HEADER === */
.page-header {
    padding: 10rem 0 6rem;
    background: var(--ocean-gradient);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: 80px;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* === PRODUCTS PAGE === */
.products {
    background: var(--light-gray);
}

.products-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.products-intro h2 {
    color: var(--primary-blue);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.product-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(18, 48, 85, 0.2);
}

.product-image {
    position: relative;
    height: 200px;
    background: var(--ocean-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-badge {
    font-size: 5rem;
    z-index: 1;
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(18, 48, 85, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-overlay span {
    color: var(--white);
    font-weight: 600;
    font-size: 1.1rem;
}

.product-content {
    padding: 1.5rem;
}

.product-content h3 {
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
    font-size: 1.4rem;
}

.product-features {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.feature-tag {
    background: var(--light-blue);
    color: var(--white);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

/* === QUALITY SECTION === */
.quality-section {
    background: var(--ocean-gradient);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.quality-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.quality-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.quality-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.quality-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.quality-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--light-blue);
}

.quality-item h3 {
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

/* === CONTACT PAGE === */
.contact-section {
    background: var(--light-gray);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-form-container h2,
.contact-info h2 {
    color: var(--primary-blue);
    margin-bottom: 2rem;
    font-size: 2rem;
}

/* === FORM STYLES === */
.contact-form {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--primary-blue);
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: var(--transition);
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--light-blue);
    box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
}

.submit-button {
    width: 100%;
    padding: 1rem;
    background: var(--ocean-gradient);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.submit-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(18, 48, 85, 0.3);
}

.form-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 8px;
    display: none;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    display: block;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    display: block;
}

/* === INFO CARDS === */
.info-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 15px;
    margin-bottom: 1.5rem;
    display: flex;
    gap: 1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.info-card:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 25px rgba(18, 48, 85, 0.15);
}

.info-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.info-content h3 {
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.social-links-vertical {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.social-links-vertical a {
    color: var(--light-blue);
    text-decoration: none;
    transition: var(--transition);
}

.social-links-vertical a:hover {
    color: var(--primary-blue);
    padding-left: 5px;
}

.map-placeholder {
    height: 200px;
    background: var(--ocean-gradient);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.map-overlay {
    background: rgba(255, 255, 255, 0.9);
    padding: 1rem 2rem;
    border-radius: 10px;
    font-weight: 600;
    color: var(--primary-blue);
}

/* === FAQ SECTION === */
.faq-section {
    background: var(--white);
}

.faq-section h2 {
    text-align: center;
    color: var(--primary-blue);
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.faq-item {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid var(--light-blue);
    transition: var(--transition);
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.faq-item h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

/* === FOOTER === */
.footer {
    background: var(--primary-blue);
    color: var(--white);
    position: relative;
    padding-top: 8rem;
    padding-bottom: 2rem;
}

.footer-wave {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.footer-wave svg {
    position: relative;
    display: block;
    width: 100%;
    height: 120px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-col h3,
.footer-col h4 {
    margin-bottom: 1rem;
    color: var(--light-blue);
}

.footer-slogan {
    font-style: italic;
    color: var(--light-blue);
    margin-bottom: 1rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.5rem;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-col a:hover {
    color: var(--white);
    padding-left: 5px;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.social-icon {
    display: inline-block;
    transition: var(--transition);
}

.social-icon:hover {
    transform: translateX(5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-fish {
    position: absolute;
    bottom: 20px;
    width: 100%;
    pointer-events: none;
}

.small-fish {
    position: absolute;
    font-size: 1.5rem;
    opacity: 0.5;
    animation: small-swim 15s linear infinite;
}

.small-fish:nth-child(1) {
    bottom: 50px;
    animation-duration: 18s;
}

.small-fish:nth-child(2) {
    bottom: 30px;
    animation-duration: 20s;
    animation-delay: -5s;
}

.small-fish:nth-child(3) {
    bottom: 40px;
    animation-duration: 22s;
    animation-delay: -10s;
}

@keyframes small-swim {
    0% {
        left: 105%;
    }
    100% {
        left: -5%;
    }
}

/* === WHATSAPP FLOATING WIDGET === */
.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;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
}

/* WhatsApp pulse animation */
.whatsapp-float::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    background: #25D366;
    animation: whatsapp-pulse 2s ease-out infinite;
    z-index: -1;
}

@keyframes whatsapp-pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.3);
        opacity: 0;
    }
}

/* === RESPONSIVE DESIGN === */
@media (max-width: 768px) {
    /* Fix horizontal scroll on mobile */
    html, body {
        max-width: 100vw;
        overflow-x: hidden;
    }

    * {
        max-width: 100%;
    }

    .wave {
        left: -50%;
    }

    /* Mobile navbar layout */
    .navbar .container {
        grid-template-columns: auto 1fr auto;
        align-items: center;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: rgba(18, 48, 85, 0.98);
        width: 100%;
        text-align: center;
        transition: var(--transition);
        padding: 2rem 0;
        gap: 1rem;
        z-index: 999;
    }

    .nav-menu.active {
        left: 0;
    }

    /* Mobile menu when navbar is scrolled */
    .navbar.scrolled .nav-menu {
        background: rgba(255, 255, 255, 0.98);
        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
    }

    .navbar.scrolled .nav-menu a {
        color: var(--primary-blue);
    }

    /* Cart and hamburger on the right */
    .nav-actions {
        display: flex;
        align-items: center;
        gap: 1rem;
        order: 3;
        margin-left: auto;
    }

    .cart-link {
        font-size: 1.3rem;
    }

    .hamburger {
        display: flex;
        order: 2;
    }

    /* Logo stays on the left */
    .nav-brand {
        order: 1;
    }

    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.2rem;
    }

    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .page-header {
        padding: 8rem 0 4rem;
    }

    .page-header h1 {
        font-size: 2.5rem;
    }

    .quality-grid {
        grid-template-columns: 1fr;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }

    .logo {
        height: 45px;
    }

    .navbar.scrolled .logo {
        height: 40px;
    }

    .nav-brand h1 {
        font-size: 1.4rem;
    }

    .nav-brand .slogan {
        font-size: 0.75rem;
    }

    .cta-button,
    .cta-button-secondary {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .fish {
        font-size: 1.5rem;
    }

    section {
        padding: 3rem 0;
    }
}

/* === SMOOTH TRANSITIONS === */
/* Global transition removed - only specific elements have transitions */

/* === AQUACULTURE SECTION === */
.aquaculture-section {
    background: var(--white);
    padding: 5rem 0;
}

.aquaculture-grid {
    display: grid;
    gap: 4rem;
}

.aqua-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.aqua-card:nth-child(even) {
    direction: rtl;
}

.aqua-card:nth-child(even) > * {
    direction: ltr;
}

.aqua-image {
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.aqua-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.aqua-image:hover img {
    transform: scale(1.1);
}

.aqua-content h3 {
    color: var(--primary-blue);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.aqua-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.aqua-content ul {
    list-style: none;
}

.aqua-content li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 1.05rem;
}

.aqua-content li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--light-blue);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Why Choose Us Section */
.why-choose-us {
    background: var(--ocean-gradient);
    color: var(--white);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.why-choose-us h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.benefit-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.benefit-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-10px);
}

.benefit-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.benefit-item h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.benefit-item p {
    font-size: 1.05rem;
    opacity: 0.95;
}

/* Responsive for Aquaculture Section */
@media (max-width: 968px) {
    .aqua-card {
        grid-template-columns: 1fr;
    }
    
    .aqua-card:nth-child(even) {
        direction: ltr;
    }
    
    .aqua-image img {
        height: 250px;
    }
}

/* === QUALITY PAGE STYLES === */
.quality-intro {
    background: var(--light-gray);
    padding: 4rem 0;
    text-align: center;
}

.intro-content {
    max-width: 800px;
    margin: 0 auto;
}

.intro-content h2 {
    color: var(--primary-blue);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.intro-content p {
    font-size: 1.2rem;
    line-height: 1.8;
}

.quality-standards {
    padding: 5rem 0;
    background: var(--white);
}

.standards-grid {
    display: grid;
    gap: 3rem;
}

.standard-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    background: var(--light-gray);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.standard-card:nth-child(even) {
    grid-template-columns: 1fr 1fr;
}

.standard-card:nth-child(even) .standard-image {
    order: 2;
}

.standard-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
}

.standard-content h3 {
    color: var(--primary-blue);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.standard-content ul {
    list-style: none;
    margin-top: 1rem;
}

.standard-content li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.standard-content li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--light-blue);
    font-weight: bold;
}

.certifications {
    background: var(--light-gray);
    padding: 5rem 0;
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.cert-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.cert-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(18, 48, 85, 0.2);
}

.cert-icon {
    font-size: 3rem;
    color: var(--light-blue);
    margin-bottom: 1rem;
    width: 60px;
    height: 60px;
    background: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--white);
}

.cert-card h3 {
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.quality-process {
    background: var(--white);
    padding: 5rem 0;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.process-step {
    text-align: center;
    position: relative;
}

.step-number {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--light-blue);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    z-index: 10;
}

.step-image {
    margin-bottom: 1.5rem;
    margin-top: 20px;
}

.step-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.process-step h3 {
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.hygiene-section {
    background: var(--ocean-gradient);
    color: var(--white);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.hygiene-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.hygiene-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.hygiene-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.hygiene-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.hygiene-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hygiene-item h3 {
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

/* Responsive for Quality Page */
@media (max-width: 968px) {
    .standard-card {
        grid-template-columns: 1fr !important;
    }
    
    .standard-card:nth-child(even) .standard-image {
        order: 1;
    }
    
    .process-grid {
        grid-template-columns: 1fr;
    }
}

/* === PRODUCT MODAL === */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    animation: fadeIn 0.3s ease;
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: var(--white);
    border-radius: 20px;
    max-width: 800px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: slideUp 0.4s ease;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-close {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 2rem;
    font-weight: bold;
    color: var(--text-dark);
    cursor: pointer;
    z-index: 10;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--light-gray);
    transition: var(--transition);
}

.modal-close:hover {
    background: var(--primary-blue);
    color: var(--white);
    transform: rotate(90deg);
}

.modal-body {
    padding: 3rem;
}

.modal-product-image {
    height: 350px;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.modal-product-image img {
    display: block;
}

.modal-product-info h2 {
    color: var(--primary-blue);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.modal-product-info p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.modal-divider {
    height: 2px;
    background: linear-gradient(to right, var(--primary-blue), transparent);
    margin: 2rem 0;
}

.modal-product-info h3 {
    color: var(--primary-blue);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.product-order-form {
    margin-top: 1rem;
}

.product-card {
    cursor: pointer;
}

.product-card:hover {
    cursor: pointer;
}

/* Modal Responsive */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        max-height: 95vh;
    }
    
    .modal-body {
        padding: 2rem 1.5rem;
    }
    
    .modal-product-image {
        height: 250px;
    }
}

/* === PRINT STYLES === */
@media print {
    .navbar,
    .hamburger,
    .fish-container,
    .bubbles,
    .footer-fish {
        display: none;
    }
}
