/* Aquafort - Premium Landing Page Styles */

/* ===== Reset & Base ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colors from original site */
    --primary-blue: #00A4DD;
    --primary-dark: #18305F;
    --accent-green: #3CC04F;
    --text-dark: #284053;
    --text-medium: #505050;
    --text-light: #7E7E7E;
    --bg-light: #F8FAFB;
    --bg-white: #FFFFFF;
    --border-light: #E8EEF2;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 50px;
    
    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 4rem;
    --space-3xl: 6rem;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.7;
    color: var(--text-medium);
    background: var(--bg-white);
    overflow-x: hidden;
    position: relative;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

/* ===== Typography ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.3;
}

h1 { font-size: clamp(2rem, 5vw, 3rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); }

.text-large {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: var(--space-md);
}

.text-medium {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
}

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

.text-highlight {
    color: var(--primary-blue);
}

/* ===== Header ===== */
.header {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-md);
    padding-bottom: var(--space-md);
}

.logo-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    letter-spacing: 1px;
}

.logo-img {
    height: 45px;
    width: auto;
    display: block;
}

.nav {
    display: flex;
    gap: var(--space-xl);
    align-items: center;
}

.nav-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-blue);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-blue);
}

.nav-link:hover::after {
    width: 100%;
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    padding: 0.875rem 1.75rem;
    border-radius: var(--radius-full);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-family: 'Lato', sans-serif;
}

.btn-header {
    background: var(--accent-green);
    color: var(--bg-white);
    box-shadow: var(--shadow-sm);
}

.btn-header:hover {
    background: #36ad47;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-hero {
    background: var(--bg-white);
    color: var(--primary-blue);
    padding: 1rem 2.5rem;
    font-size: 1.05rem;
    box-shadow: var(--shadow-md);
}

.btn-hero:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-submit {
    background: var(--primary-blue);
    color: var(--bg-white);
    width: 100%;
    justify-content: center;
    padding: 1rem 2rem;
    font-size: 1.05rem;
}

.btn-submit:hover {
    background: #0094c9;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-icon {
    width: 18px;
    height: 18px;
}

/* ===== Hero Section ===== */
.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-blue) 100%);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}

.hero::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 1440 320"><path fill="%23ffffff" fill-opacity="0.05" d="M0,96L48,112C96,128,192,160,288,165.3C384,171,480,149,576,133.3C672,117,768,107,864,112C960,117,1056,139,1152,138.7C1248,139,1344,117,1392,106.7L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
    opacity: 0.3;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(24, 48, 95, 0.1);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: var(--space-3xl) 0;
}

.hero-title {
    color: var(--bg-white);
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: var(--space-md);
    font-weight: 700;
    line-height: 1.2;
    animation: fadeInUp 0.8s ease;
}

.hero-subtitle {
    color: rgba(255, 255, 255, 0.95);
    font-size: clamp(1.1rem, 2.5vw, 1.25rem);
    margin-bottom: var(--space-xl);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-subtitle strong {
    color: var(--bg-white);
    font-weight: 600;
}

/* ===== Global Floating Shrimps (Full Page) ===== */
.global-floating-shrimps {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    pointer-events: none;
    z-index: 9999;
}

.global-shrimp {
    position: absolute;
    font-size: 2.5rem;
    opacity: 0;
    animation: floatGlobal 20s infinite ease-in-out;
    filter: grayscale(100%) drop-shadow(0 2px 6px rgba(0, 0, 0, 0.15));
    mix-blend-mode: overlay;
    pointer-events: none;
}

/* Positions for global floating shrimps */
.shrimp-g1 {
    left: 5%;
    animation-delay: 0s;
    animation-duration: 18s;
    font-size: 2rem;
    opacity: 0.08;
}

.shrimp-g2 {
    left: 15%;
    animation-delay: 3s;
    animation-duration: 22s;
    font-size: 1.8rem;
    opacity: 0.06;
}

.shrimp-g3 {
    left: 30%;
    animation-delay: 6s;
    animation-duration: 20s;
    font-size: 2.3rem;
    opacity: 0.07;
}

.shrimp-g4 {
    left: 45%;
    animation-delay: 1.5s;
    animation-duration: 19s;
    font-size: 1.6rem;
    opacity: 0.05;
}

.shrimp-g5 {
    left: 60%;
    animation-delay: 4s;
    animation-duration: 21s;
    font-size: 2.1rem;
    opacity: 0.08;
}

.shrimp-g6 {
    left: 75%;
    animation-delay: 7s;
    animation-duration: 23s;
    font-size: 1.9rem;
    opacity: 0.06;
}

.shrimp-g7 {
    left: 85%;
    animation-delay: 2s;
    animation-duration: 17s;
    font-size: 2.4rem;
    opacity: 0.07;
}

.shrimp-g8 {
    left: 92%;
    animation-delay: 5s;
    animation-duration: 24s;
    font-size: 1.7rem;
    opacity: 0.05;
}

.shrimp-g9 {
    left: 20%;
    animation-delay: 8s;
    animation-duration: 19s;
    font-size: 2.2rem;
    opacity: 0.06;
}

.shrimp-g10 {
    left: 55%;
    animation-delay: 3.5s;
    animation-duration: 21s;
    font-size: 1.5rem;
    opacity: 0.08;
}

.shrimp-g11 {
    left: 40%;
    animation-delay: 6.5s;
    animation-duration: 22s;
    font-size: 2rem;
    opacity: 0.05;
}

.shrimp-g12 {
    left: 68%;
    animation-delay: 9s;
    animation-duration: 20s;
    font-size: 1.8rem;
    opacity: 0.07;
}

@keyframes floatGlobal {
    0% {
        transform: translateY(100vh) translateX(0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.08;
    }
    90% {
        opacity: 0.08;
    }
    100% {
        transform: translateY(-100px) translateX(30px) rotate(360deg);
        opacity: 0;
    }
}

/* ===== Hero Floating Shrimps (Local to Hero) ===== */
.floating-shrimps {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.shrimp {
    position: absolute;
    font-size: 2rem;
    opacity: 0.25;
    animation: float 15s infinite ease-in-out;
    filter: grayscale(100%) brightness(2) drop-shadow(0 2px 4px rgba(255, 255, 255, 0.3));
}

/* Individual shrimp positions and animations */
.shrimp-1 {
    left: 10%;
    top: 20%;
    animation-delay: 0s;
    animation-duration: 12s;
}

.shrimp-2 {
    left: 25%;
    top: 60%;
    animation-delay: 2s;
    animation-duration: 14s;
    font-size: 1.5rem;
    opacity: 0.25;
}

.shrimp-3 {
    left: 70%;
    top: 30%;
    animation-delay: 4s;
    animation-duration: 16s;
    font-size: 2.5rem;
}

.shrimp-4 {
    left: 85%;
    top: 70%;
    animation-delay: 1s;
    animation-duration: 13s;
    font-size: 1.8rem;
    opacity: 0.2;
}

.shrimp-5 {
    left: 50%;
    top: 15%;
    animation-delay: 3s;
    animation-duration: 15s;
    font-size: 1.6rem;
    opacity: 0.35;
}

.shrimp-6 {
    left: 5%;
    top: 75%;
    animation-delay: 5s;
    animation-duration: 17s;
    font-size: 2.2rem;
    opacity: 0.28;
}

.shrimp-7 {
    left: 60%;
    top: 85%;
    animation-delay: 2.5s;
    animation-duration: 14.5s;
    font-size: 1.4rem;
    opacity: 0.22;
}

.shrimp-8 {
    left: 35%;
    top: 40%;
    animation-delay: 4.5s;
    animation-duration: 18s;
    font-size: 1.9rem;
    opacity: 0.3;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(20px, -20px) rotate(5deg);
    }
    50% {
        transform: translate(-15px, 15px) rotate(-5deg);
    }
    75% {
        transform: translate(15px, 10px) rotate(3deg);
    }
}

/* Waves animation for ocean effect */
.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 100"><path fill="%23ffffff" fill-opacity="0.1" d="M0,32L48,37.3C96,43,192,53,288,58.7C384,64,480,64,576,58.7C672,53,768,43,864,42.7C960,43,1056,53,1152,58.7C1248,64,1344,64,1392,64L1440,64L1440,100L1392,100C1344,100,1248,100,1152,100C1056,100,960,100,864,100C768,100,672,100,576,100C480,100,384,100,288,100C192,100,96,100,48,100L0,100Z"></path></svg>') repeat-x;
    animation: wave 10s linear infinite;
    pointer-events: none;
}

@keyframes wave {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 1440px 0;
    }
}

/* ===== Sections ===== */
.section {
    padding: var(--space-3xl) 0;
}

.section-title {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    color: var(--text-dark);
    margin-bottom: var(--space-md);
}

/* Dividers */
.divider {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-green));
    border-radius: var(--radius-full);
    margin-bottom: var(--space-lg);
}

.divider-center {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-green));
    border-radius: var(--radius-full);
    margin: 0 auto var(--space-xl);
}

/* ===== About Section ===== */
.section-about {
    background: var(--bg-white);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-3xl);
    align-items: center;
}

.about-image {
    position: relative;
}

.image-wrapper {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.image-wrapper:hover {
    box-shadow: 0 16px 48px rgba(0, 164, 221, 0.3);
    transform: translateY(-5px);
}

.image-wrapper::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-green));
    opacity: 0.1;
    border-radius: var(--radius-xl);
    z-index: -1;
}

.rounded-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius-xl);
    transition: transform 0.4s ease;
}

.image-wrapper:hover .rounded-image {
    transform: scale(1.05);
}

.about-content {
    padding: var(--space-lg);
}

.about-content .section-title {
    text-align: left;
    margin-bottom: var(--space-md);
}

.about-content strong {
    color: var(--primary-blue);
    font-weight: 600;
}

/* ===== Product Section ===== */
.section-product {
    background: var(--bg-light);
}

.product-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-xl);
    margin-top: var(--space-xl);
}

.product-card-large {
    background: var(--bg-white);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
}

.product-card-large:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 164, 221, 0.3);
    border-color: var(--primary-blue);
}

.product-icon-wrapper {
    width: 100px;
    height: 100px;
    margin: 0 auto var(--space-lg);
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-green));
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-white);
}

.product-icon {
    width: 60px;
    height: 60px;
}

.product-title {
    color: var(--primary-blue);
    margin-bottom: var(--space-sm);
    font-size: 1.75rem;
}

.product-scientific {
    color: var(--text-light);
    font-style: italic;
    margin-bottom: var(--space-md);
}

.product-description {
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: var(--space-lg);
}

.product-highlights {
    margin-top: var(--space-lg);
    text-align: left;
}

.product-highlights h4 {
    color: var(--primary-blue);
    font-size: 1.25rem;
    margin-bottom: var(--space-md);
}

.highlights-list {
    list-style: none;
    padding: 0;
}

.highlights-list li {
    padding: var(--space-sm);
    margin-bottom: var(--space-sm);
    padding-left: 2rem;
    position: relative;
    color: var(--text-medium);
    line-height: 1.6;
}

.highlights-list li::before {
    content: '✓';
    position: absolute;
    left: 0.5rem;
    color: var(--accent-green);
    font-weight: bold;
    font-size: 1.2rem;
}

.highlights-list .highlight-special {
    font-weight: 700;
    color: var(--text-dark);
}

.highlights-list .highlight-special::before {
    content: '⭐';
}

.product-features {
    background: var(--bg-white);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
}

.product-features:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(60, 192, 79, 0.25);
    border-color: var(--accent-green);
}

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

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--space-md);
    color: var(--accent-green);
}


.feature-item h4 {
    color: var(--primary-blue);
    margin-bottom: var(--space-md);
    font-size: 1.5rem;
}

.feature-item p {
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: var(--space-md);
}

.feature-highlight {
    font-weight: 700;
    color: var(--text-dark);
    background: linear-gradient(120deg, var(--primary-blue), var(--accent-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== Production Section ===== */
.section-production {
    background: var(--bg-white);
}

/* Certification Banner */
.certification-banner {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-xl);
    align-items: center;
    background: linear-gradient(135deg, rgba(0, 164, 221, 0.05), rgba(60, 192, 79, 0.05));
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-3xl);
    border: 2px solid transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.certification-banner:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(0, 164, 221, 0.15);
    border-color: var(--primary-blue);
}

.certificate-image {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-md);
}

.certificate-img-large {
    max-width: 280px;
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    transition: all 0.4s ease;
}

.certification-banner:hover .certificate-img-large {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.certificate-content {
    padding: var(--space-md);
}

.certificate-content h3 {
    color: var(--primary-blue);
    margin-bottom: var(--space-md);
    font-size: 1.75rem;
}

.certificate-content p {
    color: var(--text-medium);
    line-height: 1.8;
    font-size: 1.05rem;
}

.certificate-content strong {
    color: var(--accent-green);
    font-weight: 700;
}

.production-grid {
    margin-top: var(--space-xl);
    display: flex;
    flex-direction: column;
    gap: var(--space-3xl);
}

.production-item {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-xl);
    align-items: center;
}

.production-item.reverse {
    direction: rtl;
}

.production-item.reverse > * {
    direction: ltr;
}

.production-image {
    position: relative;
}

.production-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.production-image:hover {
    box-shadow: 0 16px 48px rgba(0, 164, 221, 0.25);
    transform: translateY(-8px);
}

.production-image .rounded-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    transition: transform 0.4s ease;
}

.production-image:hover .rounded-image {
    transform: scale(1.08);
}

.production-content {
    padding: var(--space-md);
}

.production-content h3 {
    color: var(--primary-blue);
    margin-bottom: var(--space-md);
    font-size: 1.5rem;
}

.production-content p {
    color: var(--text-medium);
    line-height: 1.8;
}

/* ===== Clients Section ===== */
.section-clients {
    background: var(--bg-light);
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-xl);
    margin-top: var(--space-xl);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.client-card {
    background: var(--bg-white);
    padding: var(--space-2xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    min-height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid transparent;
}

.client-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 32px rgba(0, 164, 221, 0.25);
    border-color: var(--primary-blue);
}

.client-logo {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.client-logo-img {
    max-width: 200px;
    max-height: 100px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: all 0.3s ease;
    filter: grayscale(0%);
}

.client-card:hover .client-logo-img {
    transform: scale(1.1);
    filter: grayscale(0%) brightness(1.1);
}

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

/* ===== Contact Section ===== */
.section-contact {
    background: var(--primary-dark);
    color: var(--bg-white);
}

.section-contact .section-title {
    color: var(--bg-white);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-xl);
    margin-top: var(--space-xl);
}

.contact-info-box {
    background: rgba(255, 255, 255, 0.05);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-items {
    margin-top: var(--space-xl);
    margin-bottom: var(--space-xl);
}

.contact-item {
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
    padding: var(--space-md);
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

.contact-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: var(--primary-blue);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-white);
}

.contact-details {
    flex: 1;
}

.contact-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-value {
    font-size: 1.05rem;
    color: var(--bg-white);
    font-weight: 500;
}

.location-note {
    margin-top: var(--space-xl);
    padding: var(--space-md);
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--primary-blue);
}

.location-note p {
    color: var(--bg-white);
    margin-bottom: var(--space-sm);
}

.location-note ul {
    list-style: none;
    padding-left: 0;
}

.location-note li {
    color: rgba(255, 255, 255, 0.9);
    padding: 0.35rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.location-note li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-green);
    font-weight: bold;
}

.important-notice {
    margin-top: var(--space-lg);
    padding: var(--space-md);
    background: rgba(60, 192, 79, 0.15);
    border-radius: var(--radius-md);
    border: 1px solid rgba(60, 192, 79, 0.3);
    display: flex;
    gap: var(--space-sm);
    align-items: flex-start;
}

.important-notice svg {
    flex-shrink: 0;
    color: var(--accent-green);
}

.important-notice p {
    color: var(--bg-white);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ===== Contact Form ===== */
.contact-form-box {
    background: var(--bg-white);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.contact-form-box h3 {
    color: var(--primary-blue);
    margin-bottom: var(--space-sm);
    font-size: 1.75rem;
}

.form-subtitle {
    color: var(--text-light);
    margin-bottom: var(--space-xl);
}

/* Messages/Alerts */
.messages {
    margin-bottom: var(--space-lg);
}

.alert {
    padding: var(--space-md);
    border-radius: var(--radius-sm);
    margin-bottom: var(--space-sm);
    font-weight: 500;
}

.alert-success {
    background: rgba(60, 192, 79, 0.1);
    border: 2px solid var(--accent-green);
    color: #2a8a3a;
}

.alert-error {
    background: rgba(220, 53, 69, 0.1);
    border: 2px solid #dc3545;
    color: #c82333;
}

.form-group {
    margin-bottom: var(--space-lg);
}

.form-group label {
    display: block;
    margin-bottom: var(--space-xs);
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid var(--border-light);
    border-radius: var(--radius-sm);
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    color: var(--text-dark);
    transition: all 0.3s ease;
    background: var(--bg-white);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(0, 164, 221, 0.1);
}

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

/* ===== Footer ===== */
.footer {
    background: var(--text-dark);
    color: var(--bg-white);
    padding: var(--space-3xl) 0 var(--space-lg);
}

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

.footer-logo {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    margin-bottom: var(--space-md);
    color: var(--primary-blue);
    letter-spacing: 1px;
}

.footer-logo-img {
    height: 50px;
    width: auto;
    margin-bottom: var(--space-md);
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

.footer-contact h4 {
    color: var(--primary-blue);
    margin-bottom: var(--space-md);
    font-size: 1.25rem;
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--space-sm);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--space-xl);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* ===== Animations ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== Responsive Design ===== */

/* Tablets & Small Desktops (1024px - 1200px) */
@media (max-width: 1024px) {
    .nav {
        gap: var(--space-md);
    }
    
    .nav-link {
        font-size: 0.9rem;
    }
    
    .product-showcase {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
    
    .certification-banner {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .certificate-img-large {
        max-width: 240px;
    }
    
    .floating-shrimps .shrimp {
        font-size: 1.6rem;
    }
}

/* Tablets Portrait (768px - 1024px) */
@media (max-width: 768px) {
    .header .container {
        flex-wrap: wrap;
        justify-content: space-between;
        gap: var(--space-md);
        padding: var(--space-sm) var(--space-md);
    }
    
    .logo-img {
        height: 40px;
    }
    
    .nav {
        order: 3;
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        gap: var(--space-sm);
        padding-top: var(--space-sm);
        border-top: 1px solid var(--border-light);
    }
    
    .nav-link {
        font-size: 0.85rem;
        padding: 0.5rem;
    }
    
    .btn-header {
        order: 2;
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .btn-icon {
        width: 16px;
        height: 16px;
    }
    
    .hero {
        min-height: 65vh;
        background-attachment: scroll;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section {
        padding: var(--space-2xl) 0;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }
    
    .about-content {
        padding: var(--space-sm);
        text-align: center;
    }
    
    .about-content .section-title {
        text-align: center;
    }
    
    .divider {
        margin-left: auto;
        margin-right: auto;
    }
    
    .product-card-large {
        padding: var(--space-lg);
    }
    
    .production-item,
    .production-item.reverse {
        grid-template-columns: 1fr;
        direction: ltr;
        gap: var(--space-md);
    }
    
    .production-image .rounded-image {
        height: 280px;
    }
    
    .production-content {
        text-align: center;
    }
    
    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-md);
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
    
    .contact-info-box {
        padding: var(--space-lg);
    }
    
    .contact-form-box {
        padding: var(--space-lg);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-logo-img {
        height: 45px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .floating-shrimps .shrimp {
        font-size: 1.3rem;
    }
}

/* Mobile Landscape (600px - 768px) */
@media (max-width: 600px) {
    .hero {
        min-height: 60vh;
    }
    
    .hero-title {
        font-size: 1.85rem;
    }
    
    .production-image .rounded-image {
        height: 240px;
    }
    
    .clients-grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }
    
    .client-logo-img {
        max-width: 180px;
    }
}

/* Mobile Portrait (480px - 600px) */
@media (max-width: 480px) {
    :root {
        --space-sm: 0.75rem;
        --space-md: 1rem;
        --space-lg: 1.5rem;
        --space-xl: 2rem;
        --space-2xl: 2.5rem;
        --space-3xl: 3rem;
    }
    
    .container {
        padding: 0 var(--space-sm);
    }
    
    .header .container {
        padding: var(--space-sm);
    }
    
    .logo-img {
        height: 35px;
    }
    
    .nav {
        gap: 0.5rem;
    }
    
    .nav-link {
        font-size: 0.8rem;
        padding: 0.4rem 0.6rem;
    }
    
    .btn-header {
        padding: 0.65rem 1.2rem;
        font-size: 0.85rem;
    }
    
    .hero {
        min-height: 55vh;
    }
    
    .hero-title {
        font-size: 1.6rem;
        margin-bottom: var(--space-sm);
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: var(--space-md);
    }
    
    .btn-hero {
        padding: 0.8rem 1.75rem;
        font-size: 0.9rem;
    }
    
    .section {
        padding: var(--space-xl) 0;
    }
    
    .section-title {
        font-size: 1.65rem;
    }
    
    .divider,
    .divider-center {
        width: 50px;
        height: 3px;
    }
    
    .product-card-large {
        padding: var(--space-md);
    }
    
    .product-title {
        font-size: 1.5rem;
    }
    
    .product-icon-wrapper {
        width: 75px;
        height: 75px;
    }
    
    .product-icon {
        width: 45px;
        height: 45px;
    }
    
    .product-highlights h4 {
        font-size: 1.15rem;
    }
    
    .highlights-list li {
        font-size: 0.95rem;
    }
    
    .certification-banner {
        padding: var(--space-md);
    }
    
    .certificate-content h3 {
        font-size: 1.4rem;
    }
    
    .certificate-content p {
        font-size: 0.95rem;
    }
    
    .certificate-img-large {
        max-width: 200px;
    }
    
    .production-image .rounded-image {
        height: 220px;
    }
    
    .production-content h3 {
        font-size: 1.35rem;
    }
    
    .production-content p {
        font-size: 0.95rem;
    }
    
    .client-card {
        padding: var(--space-lg);
        min-height: 140px;
    }
    
    .client-logo-img {
        max-width: 150px;
        max-height: 85px;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: var(--space-sm);
    }
    
    .contact-icon {
        margin: 0 auto;
    }
    
    .form-group input,
    .form-group textarea {
        font-size: 16px; /* Prevents auto-zoom on iOS */
    }
    
    .footer {
        padding: var(--space-2xl) 0 var(--space-md);
    }
    
    .footer-logo-img {
        height: 40px;
    }
    
    .footer-contact h4 {
        font-size: 1.1rem;
    }
    
    /* Shrimps optimization for mobile */
    .floating-shrimps .shrimp {
        font-size: 1.1rem;
    }
    
    .shrimp-7,
    .shrimp-8 {
        display: none;
    }
}

/* Extra Small Mobile (< 360px) */
@media (max-width: 360px) {
    .logo-img {
        height: 30px;
    }
    
    .hero-title {
        font-size: 1.4rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .nav-link {
        font-size: 0.75rem;
    }
    
    .production-image .rounded-image {
        height: 200px;
    }
    
    .contact-form-box,
    .contact-info-box {
        padding: var(--space-md);
    }
    
    .shrimp-5,
    .shrimp-6 {
        display: none;
    }
}

/* ===== Utility Classes ===== */
.text-center {
    text-align: center;
}

/* Smooth scrolling for anchor links */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}

