/* 
   Nile Harvest CSS Styles
   Main stylesheet for Nile Harvest Frozen Fruits & Vegetables website
*/

:root {
    --primary-blue: #236192;/*#1A759F*/
    --secondary-blue: #114B5F;
    --accent-gold: #eaaa00 ;/*#D4AF37*/
    --fresh-green: #3A7D44;
    --light-bg: #F9F9F9;
    --dark-text: #333;
    --light-text: #FFF;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family:"Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

body {
    color: var(--dark-text);
    line-height: 1.6;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Navigation */
header {
    background-color: var(--primary-blue);
    position: fixed;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 50px;
    margin-right: 10px;
}

.logo h1 {
    color: var(--light-text);
    font-size: 24px;
    font-weight: 700;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin: 0 15px;
}

.nav-links a {
    color: var(--light-text);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--accent-gold);
}

.cta-buttons {
    display: flex;
    align-items: center;
}

.btn {
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
    margin-left: 10px;
}

.btn-primary {
    background-color: var(--accent-gold);
    color: var(--dark-text);
    border: none;
}

.btn-primary:hover {
    background-color: #c4a130;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--light-text);
    border: 2px solid var(--light-text);
}

.btn-secondary:hover {
    background-color: rgba(255,255,255,0.1);
    transform: translateY(-2px);
}

.quick-contact {
    display: flex;
    align-items: center;
    margin-left: 15px;
}

.quick-contact a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.1);
    color: var(--light-text);
    margin-right: 10px;
    transition: all 0.3s;
}

.quick-contact a:hover {
    background-color: var(--accent-gold);
    color: var(--dark-text);
    transform: translateY(-2px);
}

.mobile-menu {
    display: none;
    font-size: 24px;
    color: var(--light-text);
    cursor: pointer;
}

/* Language Switcher */
.language-switcher {
    display: flex;
    align-items: center;
    margin-left: 15px;
    position: relative;
}

.language-btn {
    display: flex;
    align-items: center;
    color: var(--light-text);
    background: none;
    border: none;
    cursor: pointer;
    font-size: 14px;
    padding: 5px 10px;
    border-radius: 3px;
    transition: all 0.3s;
}

.language-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.language-btn img {
    width: 20px;
    height: 14px;
    margin-right: 5px;
}

.language-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background-color: white;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    padding: 5px 0;
    min-width: 120px;
    z-index: 1000;
    display: none;
}

.language-dropdown.show {
    display: block;
}

.language-option {
    display: flex;
    align-items: center;
    padding: 8px 15px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.language-option:hover {
    background-color: #f5f5f5;
}

.language-option img {
    width: 20px;
    height: 14px;
    margin-right: 10px;
}

.language-option span {
    color: var(--dark-text);
    font-size: 14px;
}

/* Hero Section */
.hero {
    height: 100vh;
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    background-size: cover;
    background-position: center;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/nile-wave-pattern1.png');
    opacity: 0.15;
    animation: waveEffect 15s infinite alternate;
}

@keyframes waveEffect {
    0% { transform: translateX(0) scale(1.05); }
    100% { transform: translateX(5%) scale(1); }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero h2 {
    color: var(--light-text);
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero p {
    color: var(--light-text);
    font-size: 20px;
    margin-bottom: 30px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.hero-buttons .btn {
    padding: 15px 30px;
    font-size: 18px;
}

/* About Section */
.about {
    padding: 100px 0;
    background-color: var(--light-bg);
}

.section-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--primary-blue);
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--accent-gold);
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 50px;
}

.about-text {
    flex: 1;
    padding-right: 50px;
    min-width: 300px;
}

.about-text h3 {
    font-size: 28px;
    color: var(--secondary-blue);
    margin-bottom: 20px;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 16px;
}

.about-image {
    flex: 1;
    min-width: 300px;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
}

.badge {
    text-align: center;
    width: 150px;
}

.badge i {
    font-size: 40px;
    color: var(--primary-blue);
    margin-bottom: 10px;
}

.badge h4 {
    font-size: 16px;
    margin-bottom: 5px;
}

.badge p {
    font-size: 14px;
    color: #666;
}

/* Products Section */
.products {
    padding: 100px 0;
    background-color: #fff;
}

.product-categories {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin: 40px 0;
}

.category-button {
    padding: 10px 20px;
    background-color: var(--light-bg);
    color: var(--primary-blue);
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 600;
}

.category-button:hover, .category-button.active {
    background-color: var(--primary-blue);
    color: var(--light-text);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}


.product-card {
    background-color: var(--light-bg);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.product-image {
    height: 200px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

/* .product-info {
    padding: 15px;
} */

.product-info h3 {
    font-size: 16px;
    margin-bottom: 10px;
    color: var(--primary-blue);
}


 
.product-info p {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
} 

.product-info .btn {
    width: 100%;
    text-align: center;
    margin: 0;
} 
    /* Product Card with Read More functionality */
    .product-card {
        position: relative;
        height: 450px; /* Fixed initial height for all cards */
        transition: height 0.3s ease;
        overflow: hidden;
    }
    
    .product-card.expanded {
        height: auto; /* Allow card to expand to fit content */
        max-height: 800px; /* Set a maximum height if needed */
    }
    
    .product-image {
        height: 200px; /* Fixed height for product images */
    }
    
    .product-info {
        padding: 20px;
        position: relative;
    }
    
    .product-info h3 {
        margin-bottom: 10px;
    }

    .product-item-btn{
        background: none;
        border: none;
        color: var(--primary-blue);
        cursor: pointer;
        transition: color 0.3s;
        margin-top: 10px;
    }

    .product-item-btn:hover {
        color: var(--accent-gold);
    }
    
    .product-description {
        position: relative;
        height: 80px; /* Fixed height for description area */
        overflow: hidden;
        transition: height 0.3s ease;
    }
    
    .product-card.expanded .product-description {
        height: auto; /* Allow description to expand */
        overflow: visible;
    }
    
    
    .read-more-btn {
        background: none;
        border: none;
        color: var(--primary-blue);
        font-weight: 600;
        padding: 5px 0;
        cursor: pointer;
        font-size: 14px;
        text-decoration: underline;
        transition: color 0.3s;
        display: block;
        margin-top: 10px;
    }
    
    .read-more-btn:hover {
        color: var(--accent-gold);
    }
    
    /* Position the "Add to Quote" button at the bottom of the card */
    .product-info .btn-primary {
        /*position: absolute;*/
        bottom: 20px;
        left: 20px;
        right: 20px;
        width: calc(100% - 40px);
    }
    
    /* Adjust button position when card is expanded */
    .product-card.expanded .product-info .btn-primary {
        position: relative;
        bottom: auto;
        left: auto;
        right: auto;
        width: 100%;
        margin-top: 20px;
    }

/* Read More Functionality 
.product-description {
    position: relative;
    margin-bottom: 15px;
}

.short-description {
    display: block;
    margin-bottom: 8px;
}

.full-description {
    display: none;
    margin-bottom: 8px;
}

.read-more-btn {
    background: none;
    border: none;
    color: var(--primary-blue);
    font-weight: 600;
    padding: 0;
    cursor: pointer;
    font-size: 14px;
    text-decoration: underline;
    transition: color 0.3s;
}

.read-more-btn:hover {
    color: var(--accent-gold);
}

.product-description.expanded .short-description {
    display: none;
}

.product-description.expanded .full-description {
    display: block;
}

.product-description.expanded .read-more-btn[data-de] {
    content: "Weniger Anzeigen";
}

.product-description.expanded .read-more-btn[data-en] {
    content: "Show Less";
}*/

/* Why Choose Us Section */
.why-choose-us {
    padding: 100px 0;
    background-color: var(--light-bg);
}

.features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
}

.feature {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    width: 100%;
    max-width: 350px;
    transition: transform 0.3s;
}

.feature:hover {
    transform: translateY(-10px);
}

.feature i {
    font-size: 50px;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.feature h3 {
    font-size: 20px;
    color: var(--secondary-blue);
    margin-bottom: 15px;
}

.feature p {
    font-size: 16px;
    color: #666;
}

/* Comparison Table */
.comparison {
    margin-top: 80px;
}

.comparison h3 {
    text-align: center;
    font-size: 28px;
    color: var(--primary-blue);
    margin-bottom: 40px;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border-radius: 10px;
    overflow: hidden;
}

.comparison-table th, .comparison-table td {
    padding: 15px;
    text-align: center;
    border: 1px solid #eee;
}

.comparison-table th {
    background-color: var(--primary-blue);
    color: var(--light-text);
    font-size: 18px;
}

.comparison-table tr:nth-child(even) {
    background-color: #f9f9f9;
}

.comparison-table tr:hover {
    background-color: #f5f5f5;
}

.check-icon {
    color: var(--fresh-green);
    font-size: 20px;
}

.x-icon {
    color: #d9534f;
    font-size: 20px;
}



/*  Packaging & Logistics Section (Replacement for Testimonials)  */
.testimonials {
    margin-top: 80px;
}

.testimonials h3 {
    text-align: center;
    font-size: 28px;
    color: var(--primary-blue);
    margin-bottom: 40px;
    position: relative;
}

.testimonials h3:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--accent-gold);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    border-top: 4px solid var(--primary-blue);
}

.testimonial:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.testimonial-content h4 {
    font-size: 20px;
    color: var(--secondary-blue);
    margin-bottom: 15px;
    position: relative;
    padding-left: 35px;
}

.testimonial-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
}

/* Icon for each packaging & logistics box */
.testimonial-content h4:before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 24px;
    color: var(--accent-gold);
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.testimonial:nth-child(1) .testimonial-content h4:before {
    content: "\f49e"; /* box icon for retail packs */
}

.testimonial:nth-child(2) .testimonial-content h4:before {
    content: "\f466"; /* boxes icon for bulk packaging */
}

.testimonial:nth-child(3) .testimonial-content h4:before {
    content: "\f1de"; /* sliders icon for custom solutions */
}

.testimonial:nth-child(4) .testimonial-content h4:before {
    content: "\f48b"; /* truck with refrigeration icon for cold chain */
}

@media (max-width: 768px) {
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
}
/* Product Journey Section */
.testimonials {
    margin-top: 80px;
}

.testimonials h3 {
    text-align: center;
    font-size: 28px;
    color: var(--primary-blue);
    margin-bottom: 40px;
    position: relative;
}

.testimonials h3:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--accent-gold);
}

.journey-steps {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

/* Line connecting steps */
.journey-steps:before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 40px;
    width: 2px;
    background-color: var(--primary-blue);
    opacity: 0.3;
}

.journey-step {
    display: flex;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.journey-step:last-child {
    margin-bottom: 0;
}

.step-number {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background-color: var(--primary-blue);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: bold;
    margin-right: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    position: relative;
    z-index: 2;
}

.step-content {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    flex: 1;
    transition: transform 0.3s, box-shadow 0.3s;
}

.step-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.step-content h4 {
    font-size: 20px;
    color: var(--secondary-blue);
    margin-bottom: 15px;
}

.step-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #444;
    margin: 0;
}

@media (max-width: 768px) {
    .journey-step {
        flex-direction: column;
    }
    
    .step-number {
        margin-bottom: 20px;
        margin-right: 0;
        align-self: center;
    }
    
    .journey-steps:before {
        left: 50%;
        transform: translateX(-50%);
    }
}
/* .testimonials {
    margin-top: 80px;
}

.testimonials h3 {
    text-align: center;
    font-size: 28px;
    color: var(--primary-blue);
    margin-bottom: 40px;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    position: relative;
}

.testimonial::before {
    content: '\201C';
    font-size: 80px;
    position: absolute;
    top: 20px;
    left: 20px;
    color: var(--accent-gold);
    opacity: 0.3;
    font-family: Georgia, serif;
}

.testimonial-content {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 15px;
}

.author-info h4 {
    font-size: 18px;
    color: var(--primary-blue);
}

.author-info p {
    font-size: 14px;
    color: #666;
} */

/* Contact Section */
.contact {
    padding: 100px 0;
    background-color: #fff;
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    margin-top: 50px;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.contact-info h3 {
    font-size: 24px;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.info-item i {
    font-size: 20px;
    color: var(--accent-gold);
    margin-right: 15px;
    margin-top: 3px;
}

.info-item div h4 {
    font-size: 18px;
    margin-bottom: 5px;
}

.info-item div p, .info-item div a {
    font-size: 16px;
    color: #666;
    text-decoration: none;
    transition: color 0.3s;
}

.info-item div a:hover {
    color: var(--primary-blue);
}

.social-proof {
    margin-top: 40px;
}

.social-proof h4 {
    font-size: 18px;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.partner-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
}

.partner-logo {
    max-width: 100px;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s;
}

.partner-logo:hover {
    filter: grayscale(0);
    opacity: 1;
}

.contact-form {
    flex: 1;
    min-width: 300px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 16px;
    margin-bottom: 8px;
    color: var(--primary-blue);
}

.form-group input, .form-group textarea, .form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
    border-color: var(--primary-blue);
    outline: none;
}

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

/* Footer */
footer {
    background-color: var(--primary-blue);
    color: var(--light-text);
    padding: 50px 0 20px;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
}

.footer-col {
    flex: 1;
    min-width: 200px;
}

.footer-col h3 {
    font-size: 20px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: var(--accent-gold);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #ddd;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--accent-gold);
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icons a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.1);
    color: var(--light-text);
    transition: all 0.3s;
}

.social-icons a:hover {
    background-color: var(--accent-gold);
    color: var(--primary-blue);
    transform: translateY(-3px);
}

.newsletter {
    margin-top: 20px;
}

.newsletter p {
    margin-bottom: 15px;
}

.newsletter-form {
    display: flex;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: 5px 0 0 5px;
    font-size: 14px;
}

.newsletter-form button {
    padding: 0 20px;
    background-color: var(--accent-gold);
    color: var(--dark-text);
    border: none;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    transition: background-color 0.3s;
}

.newsletter-form button:hover {
    background-color: #c4a130;
}

.copyright {
    text-align: center;
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-blue);
    color: var(--light-text);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--accent-gold);
    transform: translateY(-5px);
}

/* Enhanced Cookie Consent Banner */
.cookie-banner {
    display: none;
    position: fixed;
    bottom: 30px;
    left: 30px;
    right: 30px;
    max-width: 1200px;
    margin: 0 auto;
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    padding: 0;
    border-radius: 12px;
    overflow: hidden;
    animation: slide-up 0.5s ease-out;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

@keyframes slide-up {
    from { transform: translateY(100px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.cookie-content {
    position: relative;
    padding: 25px 30px;
}

.cookie-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary-blue), var(--accent-gold));
}

.cookie-banner h3 {
    color: var(--primary-blue);
    font-size: 22px;
    margin: 0 0 15px 0;
    padding-bottom: 10px;
    position: relative;
    display: inline-block;
}

.cookie-banner h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--accent-gold);
}

.cookie-banner p {
    color: #555;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
    max-width: 85%;
}

.cookie-banner a {
    color: var(--primary-blue);
    text-decoration: underline;
    font-weight: 500;
    transition: color 0.2s;
}

.cookie-banner a:hover {
    color: var(--accent-gold);
}

.cookie-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 20px;
}

.cookie-banner .btn {
    padding: 10px 24px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 160px;
}

.cookie-banner .btn i {
    margin-right: 8px;
    font-size: 15px;
}

.cookie-banner .btn-primary {
    background-color: var(--primary-blue);
    color: white;
    border: none;
    box-shadow: 0 4px 12px rgba(17, 75, 95, 0.2);
}

.cookie-banner .btn-primary:hover {
    background-color: var(--secondary-blue);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(17, 75, 95, 0.25);
}

.cookie-banner .btn-secondary {
    background-color: #f0f0f0;
    color: var(--primary-blue);
    border: none;
}

.cookie-banner .btn-secondary:hover {
    background-color: #e0e0e0;
    transform: translateY(-2px);
}

.cookie-banner .btn-outline-secondary {
    background-color: transparent;
    color: #777;
    border: 1px solid #ddd;
}

.cookie-banner .btn-outline-secondary:hover {
    background-color: #f5f5f5;
    color: #555;
    transform: translateY(-2px);
}

/* Enhanced Cookie Settings Modal */
.cookie-modal {
    display: none;
    position: fixed;
    z-index: 1001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(3px);
    animation: fade-in 0.3s ease-out;
}

@keyframes fade-in {
    from { opacity: 0; }
    to { opacity: 1; }
}

.cookie-modal-content {
    background-color: #fff;
    margin: 10% auto;
    padding: 35px 40px;
    border-radius: 12px;
    max-width: 550px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    animation: scale-in 0.3s ease-out;
}

@keyframes scale-in {
    from { transform: scale(0.9); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.cookie-modal-content h2 {
    color: var(--primary-blue);
    font-size: 26px;
    margin: 0 0 20px 0;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
}

.cookie-modal-content > p {
    color: #666;
    font-size: 16px;
    margin-bottom: 25px;
}

.close {
    position: absolute;
    top: 25px;
    right: 25px;
    font-size: 28px;
    font-weight: 400;
    color: #aaa;
    cursor: pointer;
    transition: color 0.2s;
    line-height: 0.6;
    height: 30px;
    width: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.close:hover {
    color: var(--primary-blue);
    background-color: #f0f0f0;
}

.cookie-option {
    background-color: #f9f9f9;
    margin-top: 15px;
    padding: 18px 20px;
    border-radius: 8px;
    border-left: 3px solid #ddd;
    transition: all 0.2s;
}

.cookie-option:hover {
    background-color: #f5f5f5;
    border-left-color: var(--primary-blue);
}

.cookie-option:last-child {
    margin-bottom: 25px;
}

.cookie-option input[type="checkbox"] {
    transform: scale(1.2);
    margin-right: 5px;
    accent-color: var(--primary-blue);
}

.cookie-option label {
    font-weight: 600;
    margin-left: 10px;
    color: #444;
    font-size: 16px;
}

.cookie-option p {
    margin: 10px 0 0 30px;
    color: #666;
    font-size: 14px;
    line-height: 1.5;
}

.cookie-option.essential {
    border-left-color: var(--accent-gold);
}

.cookie-option.analytics {
    border-left-color: var(--fresh-green);
}

.cookie-option.marketing {
    border-left-color: var(--secondary-blue);
}

/* Footer cookie settings button */
#openCookieSettings {
    background-color: transparent;
    border: 1px solid rgba(255,255,255,0.3);
    color: rgba(255,255,255,0.7);
    border-radius: 20px;
    padding: 6px 15px;
    font-size: 13px;
    transition: all 0.3s;
}

#openCookieSettings:hover {
    background-color: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.5);
    color: #fff;
}

@media (max-width: 768px) {
    .cookie-banner {
        bottom: 0;
        left: 0;
        right: 0;
        border-radius: 12px 12px 0 0;
    }
    
    .cookie-content {
        padding: 20px;
    }
    
    .cookie-banner p {
        max-width: 100%;
    }
    
    .cookie-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .cookie-banner .btn {
        width: 100%;
    }
    
    .cookie-modal-content {
        margin: 5% auto;
        padding: 25px;
        width: 90%;
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: var(--primary-blue);
        flex-direction: column;
        align-items: center;
        padding-top: 50px;
        transition: left 0.3s;
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .nav-links li {
        margin: 15px 0;
    }
    
    .mobile-menu {
        display: block;
    }
    
    .cta-buttons {
        display: none;
    }
    
    .hero h2 {
        font-size: 36px;
    }
    
    .hero p {
        font-size: 18px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .comparison-table {
        font-size: 14px;
    }
    
    .comparison-table th, .comparison-table td {
        padding: 10px;
    }
}

@media (max-width: 768px) {
    .about-content, .contact-container {
        flex-direction: column;
    }
    
    .about-text {
        padding-right: 0;
        margin-bottom: 30px;
    }
    
    .feature {
        max-width: 100%;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
    
    .partner-logos {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .hero h2 {
        font-size: 30px;
    }
    
    .hero p {
        font-size: 16px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .badge {
        width: 120px;
    }
    
    .badge i {
        font-size: 32px;
    }
    
    .trust-badges {
        gap: 15px;
    }
    
    .product-grid {
        grid-template-columns: 1fr;
    }
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 1s ease-in-out;
}

.slide-up {
    animation: slideUp 0.8s ease-in-out;
}

.slide-in-left {
    animation: slideInLeft 0.8s ease-in-out;
}

.slide-in-right {
    animation: slideInRight 0.8s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { transform: translateY(50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@keyframes slideInLeft {
    from { transform: translateX(-50px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes slideInRight {
    from { transform: translateX(50px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

