/* Global Styles */
:root {
    --primary-color: #e43c21;
    --secondary-color: #333333;
    --accent-color: #555555;
    --light-color: #f8f9fa;
    --dark-color: #343a40;
    --text-color: #212529;
    --border-radius: 5px;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #fff;
}

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

a {
    text-decoration: none;
    color: var(--primary-color);
}

ul {
    list-style: none;
}

h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.section-title {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
    color: var(--dark-color);
}

.btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: #c62c16;
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: white;
}

.btn-secondary:hover {
    background-color: #222222;
}

/* Animation Classes */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Country Selection Modal */
.country-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2000;
}

.country-modal.active {
    display: flex;
}

.modal-content {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    max-width: 800px;
    width: 90%;
    text-align: center;
}

.modal-logo {
    max-width: 200px;
    margin-bottom: 1.5rem;
}

.modal-logo img {
    height: 80px;
    width: auto;
}

.modal-content h2 {
    margin-bottom: 2rem;
    color: var(--dark-color);
}

.country-modal .options {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.country-option {
    flex: 1;
    max-width: 300px;
    padding: 2rem;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.country-option .icon-container {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.country-option .flag-icon {
    width: 40px;
    height: 30px;
    object-fit: contain;
}

.country-option img {
    max-width: 60px;
    height: auto;
}

.country-option h3 {
    margin: 1rem 0 0.5rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.country-option p {
    margin: 0 0 2rem;
    font-size: 0.9rem;
    color: #666;
}

.country-option:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.country-option button {
    padding: 0.8rem 2rem;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.country-option button:hover {
    background-color: var(--primary-color-dark);
}

/* Header & Navigation */
header {
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar {
    padding: 0.5rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo img {
    height: 60px;
    width: auto;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-menu a {
    color: var(--dark-color);
    font-weight: 500;
    transition: var(--transition);
}

.nav-menu a:hover, .nav-menu a.active {
    color: var(--primary-color);
}

/* Flag Icons in Navigation */
.flag-icons {
    display: flex;
    align-items: center;
    margin-left: 20px;
}

.flag-link {
    display: flex;
    align-items: center;
    padding: 5px;
    border-radius: 4px;
    transition: var(--transition);
}

.flag-link:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

.flag-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.hamburger {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: var(--dark-color);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 8rem 0;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* Intro Section */
.intro {
    padding: 5rem 0;
    background-color: #fff;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.intro-text h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.intro-text p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

.intro-image img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

/* Comfort Section */
.comfort {
    padding: 5rem 0;
    background-color: var(--light-color);
}

.comfort-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.comfort-text h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.comfort-text p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

.comfort-image img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

/* Videos Section */
.videos {
    padding: 5rem 0;
    background-color: #f0f2f5;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.video-container {
    width: 100%;
    margin: 0 auto;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 2rem;
}

.video-item {
    margin-bottom: 2rem;
    background-color: #fff;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.video-item h3 {
    text-align: center;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.video-responsive {
    position: relative;
    overflow: hidden;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.video-responsive iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Products Section */
.products {
    padding: 5rem 0;
    background-color: var(--light-color);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.product-card {
    background-color: #fff;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

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

.product-card img {
    width: 80%;
    max-height: 250px;
    object-fit: contain;
    padding: 1.5rem 1.5rem 0;
    margin: 0 auto;
    display: block;
}

.product-card h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    font-size: 1.3rem;
}

.product-card p {
    padding: 0 1.5rem 1.5rem;
    color: var(--accent-color);
}

.product-card .btn {
    margin: 0 auto 1.5rem;
    display: block;
    width: fit-content;
}

/* Features Section */
.features {
    padding: 5rem 0;
    background-color: #fff;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    background-color: var(--light-color);
    padding: 2rem;
    text-align: center;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

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

.feature-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    margin-bottom: 1rem;
}

/* Testimonials Section */
.testimonials {
    padding: 5rem 0;
    background-color: var(--light-color);
}

.testimonial {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    background-color: #fff;
}

.testimonial p {
    font-style: italic;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.client {
    font-weight: 600;
    color: var(--dark-color);
}

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

.contact-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.contact-info {
    padding-right: 2rem;
}

.contact-info h3 {
    margin-bottom: 1.5rem;
    font-size: 1.6rem;
}

.contact-info p {
    margin-bottom: 2rem;
    color: var(--accent-color);
}

.contact-details p {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.contact-details i {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-right: 1rem;
    width: 20px;
}

.contact-form-container {
    max-width: 700px;
    margin: 0 auto;
}

.contact-intro {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--accent-color);
    line-height: 1.7;
}

.contact-form {
    background-color: var(--light-color);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    font-family: inherit;
}

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

.recaptcha-container {
    margin-bottom: 1.5rem;
}

.recaptcha-notice {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.8rem;
    color: var(--accent-color);
    font-style: italic;
}

.contact-form .btn {
    margin: 0 auto;
    display: block;
    width: fit-content;
    border: none;
    outline: none;
}

.success-message {
    text-align: center;
    padding: 2rem;
    background-color: #e8f5e9;
    border-radius: var(--border-radius);
    margin-top: 1.5rem;
}

.success-message h3 {
    color: #2e7d32;
    margin-bottom: 1rem;
}

.success-message p {
    color: var(--accent-color);
}

.form-response {
    margin-top: 1.5rem;
    display: none;
}

.loading {
    text-align: center;
    padding: 1rem;
    color: var(--accent-color);
}

.loading::after {
    content: "...";
    animation: dots 1.5s infinite;
}

@keyframes dots {
    0%, 20% { content: "."; }
    40% { content: ".."; }
    60%, 100% { content: "..."; }
}

/* Footer */
footer {
    background-color: var(--dark-color);
    color: white;
    padding: 2rem 0 1rem;
}

.footer-content {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

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

.footer-logo-img {
    height: 50px;
    width: auto;
    margin-bottom: 1rem;
    filter: brightness(0) invert(1);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
}

.footer-legal a {
    color: #fff;
    opacity: 0.8;
    transition: var(--transition);
    font-size: 0.9rem;
}

.footer-legal a:hover {
    opacity: 1;
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .footer-legal {
        justify-content: center;
    }
}

/* Cookie Consent Banner */
.cookie-consent {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    display: none;
}

.cookie-consent .container {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--dark-color);
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.cookie-consent p {
    margin: 0;
    font-size: 0.95rem;
    color: white;
    opacity: 0.9;
    max-width: 800px;
}

.cookie-consent a {
    color: var(--primary-color);
    text-decoration: underline;
}

.cookie-consent button {
    white-space: nowrap;
    min-width: 120px;
}

body.cookie-pending {
    overflow: hidden;
    pointer-events: none;
}

body.cookie-pending .cookie-consent {
    pointer-events: all;
}

@media (max-width: 768px) {
    .cookie-consent .container {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
    
    .cookie-consent button {
        width: 100%;
        margin-top: 1rem;
    }
}

/* Input hints */
.input-hint {
    display: block;
    font-size: 0.8rem;
    color: #666;
    margin-top: 4px;
    font-style: italic;
}

/* Form validation styles */
.error-message {
    color: #d32f2f;
    font-size: 0.8rem;
    margin-top: 5px;
    display: block;
}

input:invalid,
textarea:invalid {
    border-color: #d32f2f;
}

input:valid:focus,
textarea:valid:focus {
    border-color: #4caf50;
}

/* Privacy Policy Page */
.privacy-policy {
    padding: 4rem 0;
    max-width: 800px;
    margin: 0 auto;
}

.privacy-policy h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.privacy-policy .last-updated {
    color: var(--accent-color);
    font-style: italic;
    margin-bottom: 2rem;
}

.privacy-policy section {
    margin-bottom: 3rem;
}

.privacy-policy h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.privacy-policy h3 {
    font-size: 1.4rem;
    margin: 1.5rem 0 1rem;
    color: var(--secondary-color);
}

.privacy-policy p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

.privacy-policy ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.privacy-policy li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .privacy-policy {
        padding: 2rem 0;
    }
    
    .privacy-policy h1 {
        font-size: 2rem;
    }
    
    .privacy-policy h2 {
        font-size: 1.6rem;
    }
    
    .privacy-policy h3 {
        font-size: 1.2rem;
    }
} 