@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css');

:root {
    --primary-color: #003366;
    /* Deep Ocean Blue */
    --accent-color: #005b96;
    --text-color: #333333;
    --text-light: #666666;
    --white: #ffffff;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;
}

/* Preloader Styles */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.loader {
    width: 50px;
    height: 50px;
    border: 5px solid #f3f3f3;
    border-top: 5px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* ─── Animation Styles ───────────────────────────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-55px);
    transition: opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-right {
    opacity: 0;
    transform: translateX(55px);
    transition: opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.revealed,
.reveal-left.revealed,
.reveal-right.revealed {
    opacity: 1;
    transform: translate(0, 0);
}

/* Stagger delay helpers (applied inline by JS to auto-detected elements) */
main h1.reveal,
main h1.reveal-left,
main h1.reveal-right {
    transition-duration: 0.9s;
}

main h2.reveal,
main h2.reveal-left,
main h2.reveal-right {
    transition-duration: 0.8s;
}

main h3.reveal,
main h3.reveal-right,
main h3.reveal-left {
    transition-duration: 0.75s;
}

main p.reveal {
    transition-duration: 0.7s;
}

main li.reveal {
    transition-duration: 0.65s;
}

main img.reveal,
main img.reveal-left,
main img.reveal-right {
    transition-duration: 0.9s;
}

/* Cards pop with subtle scale */
.news-card.reveal,
.advantage-card.reveal {
    transform: translateY(28px) scale(0.97);
}

.news-card.reveal.revealed,
.advantage-card.reveal.revealed {
    transform: translateY(0) scale(1);
}

/* ─── Navbar Scroll Effect ────────────────────────────────────────────── */
header.scrolled {
    background-color: var(--primary-color) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
    transition: background-color 0.4s ease, box-shadow 0.4s ease;
}

/* ─── Product card animate in ────────────────────────────────────────── */
.product-card.reveal {
    transform: translateY(24px) scale(0.97);
}

.product-card.reveal.revealed {
    transform: translateY(0) scale(1);
}

/* ─── Recipe items animate in ───────────────────────────────────────── */
.news-item.reveal {
    transform: translateY(24px) scale(0.97);
}

.news-item.reveal.revealed {
    transform: translateY(0) scale(1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--text-color);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background-color: var(--white);
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-box {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 10px;
    display: flex;
    text-align: center;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 12px;
    line-height: 1.2;
    width: 60px;
    height: 60px;
    border-radius: 50%;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: #888;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.nav-links li {
    position: relative;
}

.nav-links a:hover{
    color: #4db8e5;
    /* Light blue accent from reference */
}

/* Dropdown Menu Styles */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: var(--white);
    min-width: 200px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    z-index: 1001;
    top: 100%;
    left: 0;
    padding: 10px 0;
}

.nav-links li:hover .dropdown-content {
    display: block;
}

.dropdown-content a {
    color: #333333;
    padding: 12px 20px;
    text-decoration: none;
    display: block;
    font-size: 14px;
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0.5px;
    transition: all 0.23s;
}

.dropdown-content a:hover {
    color: #4db8e5 !important;
    background-color: #f9f9f9;
}

.dropdown-content a:first-child {
    color: #003366;
    /* Company Profile color from image */
}

.dropdown-content a:last-child {
    color: #999999;
    /* Mission And Value color from image */
}

.nav-links a i {
    font-size: 10px;
    margin-left: 5px;
    vertical-align: middle;
}

/* Hero Section */
.hero {
    padding: 80px 0;
    background-color: var(--white);
}

.hero-container {
    display: flex;
    align-items: flex-start;
    gap: 40px;
}

.hero-text-large {
    flex: 1;
    text-align: right;
}

.hero-text-large h1 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    font-size: 3.5rem;
    line-height: 1.1;
    text-transform: uppercase;
}

.hero-divider {
    width: 4px;
    background-color: var(--primary-color);
    align-self: stretch;
}

.hero-details {
    flex: 1;
    padding-top: 10px;
}

.hero-details h3 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-weight: 700;
    max-width: 400px;
}

.hero-details p {
    color: var(--accent-color);
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 450px;
}

/* Features Section */
.features {
    padding-bottom: 80px;
}

.feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.feature-item {
    height: 350px;
    background-color: #eee;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: flex-end;
}

.overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
    width: 100%;
    padding: 20px;
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 1.5rem;
    text-align: center;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

/* Footer */
footer {
    background-color: #f9f9f9;
    padding: 20px 0;
    text-align: center;
    font-size: 0.8rem;
    color: #999;
}

/* Responsive */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 20px;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .hero-container {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .hero-text-large {
        text-align: center;
    }

    .hero-divider {
        width: 100px;
        height: 4px;
        margin: 20px 0;
    }

    .hero-details h3,
    .hero-details p {
        margin: 0 auto 20px auto;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }
}

/* Video Hero Section */
.video-hero {
    /* margin-top: px; */
    position: relative;
    height: 87.5vh;
    overflow: hidden;
    color: var(--white);
    font-family: var(--font-heading);
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.top-banner {
    background-image: url('images/watermark-pattern-small.png');
    background-color: var(--primary-color);
    background-position: center bottom;
    background-repeat: repeat-x;
    padding: 20px 20px 60px 20px;
    height: 150px;
    /* More padding at bottom for the curve */
    text-align: center;
    border-bottom-left-radius: 70% 20px;
    border-bottom-right-radius: 50% 20px;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.hero-logo {
    max-width: 180px;
    height: auto;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.3));
}

.hero-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 40px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
    max-width: 800px;
    color: var(--white);
}

.btn-watch {
    display: inline-block;
    border: 2px solid var(--white);
    color: var(--white);
    padding: 12px 35px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s ease;
    background-color: rgba(0, 0, 0, 0.2);
    font-family: var(--font-heading);
    letter-spacing: 1px;
}

.btn-watch:hover {
    background-color: var(--white);
    color: var(--primary-color);
}

/* Responsive adjustments for Video Hero */
@media (max-width: 768px) {
    .video-hero {
        height: 60vh;
        min-height: 500px;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .top-banner {
        padding: 20px;
    }

    .hero-logo {
        max-width: 140px;
    }
}

/* Content Sections */
.content-section {
    padding: 80px 0;
    background-color: var(--white);
}

.split-container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.col-text {
    flex: 1;
}

.col-image {
    flex: 1;
    position: relative;
    padding: 20px 0;
    /* Add some spacing */
}

.content-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    object-fit: cover;
}

/* Premium Barramundi Section */
.premium-section h2.section-title {
    color: var(--primary-color);
    font-size: 2rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 30px;
    font-family: var(--font-heading);
}

.premium-section p {
    color: #555;
    margin-bottom: 20px;
    font-size: 1rem;
    line-height: 1.8;
}

/* Etty Bay Section */
.etty-bay-section {
    background-color: #fff;
    /* Ensure white bg */
}

.etty-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.icon-logo {
    width: 50px;
    height: auto;
}

.header-text-block {
    display: flex;
    flex-direction: column;
    color: var(--primary-color);
    font-family: 'Times New Roman', serif;
    /* Matching the serif look in screenshot */
    line-height: 1.1;
}

.header-main {
    font-size: 1.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.header-sub {
    font-size: 0.8rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    font-weight: 600;
    font-family: var(--font-heading);
    /* Back to sans-serif for subheader */
}

.etty-bay-section p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.7;
}

.btn-outline {
    display: inline-block;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 10px 30px;
    text-decoration: none;
    font-family: var(--font-heading);
    font-weight: 600;
    margin-top: 20px;
    transition: all 0.3s;
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

/* Video Wrapper for Etty Bay */
.video-wrapper {
    position: relative;
    cursor: pointer;
}

.play-button-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.2);
    border: 2px solid var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
}

.video-wrapper:hover .play-button-overlay {
    transform: translate(-50%, -50%) scale(1.1);
    background-color: rgba(255, 255, 255, 0.3);
}

.play-icon {
    color: var(--white);
    font-size: 24px;
    padding-left: 4px;
    /* Visual center adjustment */
}

/* Responsive Content Sections */
@media (max-width: 768px) {
    .split-container {
        flex-direction: column;
        gap: 40px;
    }

    /* Reverse order on mobile for Etty Bay so text is above image (or below?) 
       Standard flow is text then image in HTML. 
       If we want image first, we use column-reverse. 
       The screenshot shows layout, not mobile behavior, but typically stack is fine.
       I'll keep standard stack (Text -> Image) as per HTML order for simplicity unless requested otherwise.
    */
    .reverse-mobile {
        flex-direction: column-reverse;
        /* Let's put image on top for Etty Bay if that's preferred, but I'll stick to standard order unless I see a reason not to. */
    }

    /* Actually, let's remove reverse-mobile for now to keep it simple, 
       just standard stacking. Text first, then image. */
    .reverse-mobile {
        flex-direction: column;
    }
}

/* News/Recipes Section */
.news-section {
    background-color: var(--white);
    padding: 60px 0 100px 0;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.news-card {
    background-color: var(--white);
    /* border: 1px solid #eee; */
    /* Optional border */
}

.card-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    margin-bottom: 20px;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.news-card:hover .card-image img {
    transform: scale(1.05);
}

.card-content h3 {
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 10px;
    font-family: var(--font-heading);
    line-height: 1.3;
}

.news-date {
    display: block;
    color: #888;
    font-size: 0.85rem;
    margin-bottom: 15px;
}

.card-content p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.read-more {
    color: #4db8e5;
    /* Accent blue */
    text-decoration: underline;
    font-weight: 600;
    font-size: 0.9rem;
    font-family: var(--font-heading);
}

.read-more:hover {
    color: var(--primary-color);
}

/* Footer Refinement */
footer {
    background-color: var(--primary-color);
    color: var(--white);

}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.social-icons {
    display: flex;
    gap: 20px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    /* Subtle background */
    border-radius: 50%;
    transition: background-color 0.3s;
}

.social-icons a:hover {
    background-color: rgba(255, 255, 255, 0.3);
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    max-width: 900px;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: opacity 0.3s;
}

.footer-links a:hover {
    text-decoration: underline;
    opacity: 0.9;
}

.copyright {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
    margin-top: 10px;
}

/* Responsive News/Footer */
@media (max-width: 900px) {
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .news-grid {
        grid-template-columns: 1fr;
    }

    .footer-links a {
        font-size: 0.85rem;
    }
}

/* 'The Fish' Page Specific Styles */

.page-banner-section {
    background-color: var(--white);
}

.page-banner {
    background-image: url('images/watermark-pattern-small.png');
    background-color: var(--primary-color);
    background-position: center bottom;
    background-repeat: repeat-x;
    padding: 40px 20px 80px 20px;
    text-align: center;
    height: 150px;
    border-bottom-left-radius: 50% 20px;
    border-bottom-right-radius: 50% 20px;
    position: relative;
    /* Ensure it sits below header if header is fixed, though header is static currently */
}

.page-banner h1 {
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0;
}

/* Adjust h1 for mobile */
@media(max-width:768px) {
    .page-banner h1 {
        font-size: 2rem;
    }
}

.text-block-centered {
    text-align: left;
    max-width: 1000px;
    margin: 0 auto;
}

.section-title {
    color: var(--primary-color);
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
    line-height: 1.2;
}

.small-header {
    display: block;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

/* Quote Section */
.quote-section {
    padding: 60px 0;
    background-color: var(--white);
    text-align: center;
}

.quote-divider {
    height: 1px;
    width: 60px;
    background-color: #ddd;
    margin: 20px auto;
}

blockquote {
    font-family: var(--font-text);
    font-size: 1.8rem;
    color: #555;
    font-weight: 300;
    margin: 30px 0;
    padding: 0 20px;
    font-style: italic;
}

cite {
    color: #4db8e5;
    /* Using the accent blue */
    font-style: normal;
    font-weight: 700;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 20px;
}

/* Group Photo */
.group-section {
    padding-bottom: 60px;
}

.group-photo-wrapper {
    margin-bottom: 30px;
    text-align: center;
}

.group-photo-wrapper img {
    /* max-width: 100%; */
    /* height: auto; */
    height: 400px;
    width: 700px;
    border-radius: 4px;
}

.photo-caption {
    text-align: left;
    max-width: 100%;
    /* Full width container */
    margin-top: 20px;
}

.caption-line {
    width: 100%;
    height: 1px;
    background-color: #ddd;
    margin-bottom: 15px;
}

.photo-caption p {
    color: #888;
    font-size: 0.9rem;
}

.social-icons {
    margin: 15px 0;
    text-align: center;
}

.social-icons a {
    display: inline-block;
    margin: 0 10px;
    font-size: 24px;
    text-decoration: none;
}

/* No hover effects - colors remain constant */

/* Rounded Shadow Image style shared */
.content-image.rounded-shadow {
    border-radius: 4px;
    height: 400px;

}

.footer-links {
    gap: 15px;


    .footer-links a {
        font-size: 0.85rem;
    }
}

/* Recipes CTA Section */
.recipes-cta-section {
    position: relative;
    background-image: url('images/seafood6.jpeg');
    /* Placeholder background */
    background-size: cover;
    background-position: center;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.recipes-cta-section .cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background-color: rgba(0, 0, 0, 0.4); */
    /* Darker overlay for readability */
    background-size: contain;
    background-position: center;
    z-index: 1;
}

.recipes-cta-section .cta-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 800px;
    padding: 0 20px;
}

.recipes-cta-section h2 {
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 30px;
}

.btn-block-blue {
    display: inline-block;
    width: 100%;
    max-width: 600px;
    background-color: #003e7e;
    /* Matches header blue */
    color: var(--white);
    text-decoration: none;
    padding: 15px 0;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    transition: background-color 0.3s;
    border: none;
    cursor: pointer;
}

.btn-block-blue:hover {
    background-color: #002a5c;
}

/* Trust CTA Section (About Us) */
.trust-cta-section {
    position: relative;
    /* Blue water background placeholder */
    background-size: cover;
    background-position: center;
    padding: 100px 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.trust-cta-section .cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Heavy blue overlay to match screenshot */
    z-index: 1;
}

.trust-cta-section .cta-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 900px;
}

.trust-cta-section h2 {
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 20px;
}

.trust-cta-section p {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 40px;
    /* line-height: 1.6; */
}

/* Recipes Page Styles */
.recipe-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* 2 columns as requested */
    gap: 30px;
    margin-bottom: 60px;
}

.recipe-image {
    width: 100%;
    height: 350px;
    /* Fixed height for consistency */
    object-fit: cover;
    border-radius: 4px 4px 0 0;
}

/* Responsive adjustments for Recipe Grid */
@media (max-width: 768px) {
    .recipe-grid {
        grid-template-columns: 1fr;
        /* Single column on mobile */
    }

    .recipe-image {
        height: 250px;
    }
}

/* Trade Page Styles */
.trade-hero-section {
    position: relative;
    /* Placeholder: Replace with actual chef image */
    background-size: cover;
    background-position: center;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.trade-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50%;
    z-index: 1;
}

.trade-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 20px;
}

.trade-hero-content h2 {
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 20px;
}

.trade-hero-content p {
    color: var(--white);
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Contact Page Styles */
.contact-form .form-group {
    margin-bottom: 25px;
}

.contact-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--primary-color);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 1rem;
    background-color: #f8f9fa;
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--primary-color);
    background-color: #fff;
    box-shadow: 0 0 0 3px rgba(0, 62, 126, 0.1);
    outline: none;
}

.contact-form button[type="submit"] {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 15px 30px;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    display: block;
    width: 100%;
}

.contact-form button[type="submit"]:hover {
    background-color: #002a55;
    transform: translateY(-2px);
}

/* Products Page Styles */
.products-layout {
    padding: 60px 0;
}

/* Horizontal Filter Bar */
.filter-container {
    margin-bottom: 50px;
    display: flex;
    justify-content: center;
}

.filter-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    background: #f4f7f9;
    padding: 10px;
    border-radius: 50px;
    list-style: none;
    box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.05);
}

.filter-item {
    padding: 12px 25px;
    border-radius: 40px;
    cursor: pointer;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--primary-color);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    white-space: nowrap;
}

.filter-item:hover {
    color: #4db8e5;
}

.filter-item.active {
    background-color: var(--primary-color);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(0, 51, 102, 0.3);
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.product-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.product-image {
    width: 100%;
    height: 250px;
    /* object-fit: cover; */
    background-size: cover;
}

.product-category {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: #888;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.product-name {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 12px;
    line-height: 1.3;
    text-align: center;
}

.product-description {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
    margin-bottom: 20px;
}

.product-footer {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.btn-view {
    color: #4db8e5;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive Products */
@media (max-width: 992px) {
    .products-layout {
        grid-template-columns: 1fr;
    }

    .filter-sidebar {
        margin-bottom: 40px;
    }
}