/* Base Styles & Reset */
:root {
    --primary-color: #3a7bd5;
    --secondary-color: #00d2ff;
    --accent-color: #ff7e5f;
    --text-color: #333333;
    --text-light: #666666;
    --light-color: #f8f9fa;
    --dark-color: #212529;
    --border-color: #e5e5e5;
    --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    --gradient-accent: linear-gradient(135deg, #ff7e5f, #feb47b);
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --font-primary: 'Montserrat', sans-serif;
    --font-secondary: 'Open Sans', sans-serif;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 62.5%; /* 10px = 1rem */
}

body {
    font-family: var(--font-secondary);
    font-size: 1.6rem;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: 10rem 0;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 2rem;
}

h1 {
    font-size: 4.8rem;
}

h2 {
    font-size: 3.6rem;
}

h3 {
    font-size: 2.4rem;
}

p {
    margin-bottom: 1.6rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--secondary-color);
}

img {
    max-width: 100%;
    height: auto;
}

button {
    cursor: pointer;
    font-family: var(--font-primary);
}

ul {
    list-style: none;
}

/* Utility Classes */
.divider {
    height: 4px;
    width: 60px;
    background: var(--gradient-primary);
    margin: 0 auto 4rem;
    border-radius: var(--radius-sm);
}

.divider.light {
    background: var(--light-color);
}

.divider.left {
    margin: 0 0 4rem;
}

.section-heading {
    text-align: center;
    margin-bottom: 6rem;
}

.section-heading.light {
    color: var(--light-color);
}

.section-heading.left {
    text-align: left;
}

.btn {
    display: inline-block;
    padding: 1.2rem 3rem;
    border-radius: var(--radius-md);
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 1.6rem;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    color: white;
}

.btn-secondary {
    background: var(--gradient-accent);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    color: white;
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
}

.btn.full {
    width: 100%;
}

/* Header & Navigation */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-sm);
    padding: 1.5rem 0;
    transition: var(--transition);
}

.main-header.scrolled {
    padding: 1rem 0;
    background: white;
    box-shadow: var(--shadow-md);
}

.main-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo {
    height: 5rem;
    transition: var(--transition);
}

.scrolled .logo {
    height: 4rem;
}

.main-nav {
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    align-items: center;
}

.nav-link {
    color: var(--text-color);
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 1.5rem;
    margin: 0 1.5rem;
    padding: 0.5rem 0;
    position: relative;
}

.nav-link:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition);
}

.nav-link:hover:after {
    width: 100%;
}

.nav-link.cta {
    color: white;
    background: var(--gradient-primary);
    padding: 0.8rem 2rem;
    border-radius: var(--radius-md);
    margin-left: 2rem;
}

.nav-link.cta:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.nav-link.cta:after {
    display: none;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    width: 3rem;
    height: 2rem;
    position: relative;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: var(--primary-color);
    border-radius: 3px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: .25s ease-in-out;
}

.menu-toggle span:nth-child(1) {
    top: 0;
}

.menu-toggle span:nth-child(2) {
    top: 0.8rem;
}

.menu-toggle span:nth-child(3) {
    top: 1.6rem;
}

.menu-toggle.active span:nth-child(1) {
    top: 0.8rem;
    transform: rotate(135deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
    left: -60px;
}

.menu-toggle.active span:nth-child(3) {
    top: 0.8rem;
    transform: rotate(-135deg);
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 60rem;
    position: relative;
    background: url('images/hero.jpg') no-repeat center/cover;
    display: flex;
    align-items: center;
    padding-top: 8rem;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7));
}

.hero-content {
    position: relative;
    color: white;
    max-width: 70rem;
    text-align: left;
    padding: 2rem;
}

.hero-title {
    font-size: 5.6rem;
    margin-bottom: 2rem;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 2.2rem;
    margin-bottom: 4rem;
    font-weight: 300;
}

/* About Section */
.about-section {
    background-color: var(--light-color);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.about-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transform: perspective(1000px) rotateY(-5deg);
    transition: var(--transition);
}

.about-image:hover {
    transform: perspective(1000px) rotateY(0);
}

.about-text p {
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

/* Benefits Section */
.benefits-section {
    background: var(--gradient-primary);
    color: white;
    position: relative;
    overflow: hidden;
}

.benefits-section::before,
.benefits-section::after {
    content: '';
    position: absolute;
    width: 40rem;
    height: 40rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
}

.benefits-section::before {
    top: -20rem;
    left: -10rem;
}

.benefits-section::after {
    bottom: -20rem;
    right: -10rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
    gap: 3rem;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    padding: 3rem;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.benefit-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.2);
}

.benefit-icon {
    margin-bottom: 2rem;
    color: white;
}

.benefit-card h3 {
    margin-bottom: 1.5rem;
    font-size: 2.2rem;
}

/* Method Section */
.method-section {
    background: white;
}

.method-steps {
    margin-bottom: 6rem;
}

.method-step {
    display: flex;
    margin-bottom: 4rem;
    align-items: flex-start;
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 6rem;
    height: 6rem;
    background: var(--gradient-primary);
    color: white;
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 2.4rem;
    border-radius: 50%;
    margin-right: 2.5rem;
    flex-shrink: 0;
}

.step-content h3 {
    margin-bottom: 1rem;
}

.method-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    margin-bottom: 4rem;
}

.method-cta {
    text-align: center;
}

/* Testimonials Section */
.testimonials-section {
    background: var(--dark-color);
    color: white;
    position: relative;
}

.testimonials-slider {
    position: relative;
    max-width: 90rem;
    margin: 0 auto;
    overflow: hidden;
}

.testimonial-slide {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.testimonial-slide.active {
    display: block;
    opacity: 1;
}

.testimonial-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.testimonial-image {
    width: 12rem;
    height: 12rem;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 3rem;
    border: 4px solid rgba(255, 255, 255, 0.2);
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-quote blockquote {
    font-size: 2rem;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 2rem;
    position: relative;
}

.testimonial-quote blockquote::before,
.testimonial-quote blockquote::after {
    content: '"';
    font-size: 4rem;
    line-height: 0;
    color: var(--secondary-color);
}

.testimonial-quote blockquote::before {
    position: absolute;
    top: 0.5rem;
    left: -2rem;
}

.testimonial-quote cite {
    font-style: normal;
    font-weight: 600;
    color: var(--secondary-color);
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 4rem;
}

.prev-testimonial,
.next-testimonial {
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    margin: 0 1rem;
    opacity: 0.7;
    transition: var(--transition);
}

.prev-testimonial:hover,
.next-testimonial:hover {
    opacity: 1;
    transform: scale(1.2);
}

.testimonial-dots {
    display: flex;
    margin: 0 2rem;
}

.dot {
    width: 1.2rem;
    height: 1.2rem;
    margin: 0 0.5rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    transition: var(--transition);
}

.dot.active {
    background: var(--secondary-color);
    transform: scale(1.2);
}

/* FAQ Section */
.faq-section {
    background: var(--light-color);
}

.faq-container {
    max-width: 80rem;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    background: white;
}

.faq-question {
    width: 100%;
    background: white;
    border: none;
    padding: 2rem;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 1.8rem;
    text-align: left;
    position: relative;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--light-color);
}

.faq-icon {
    position: absolute;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    width: 2rem;
    height: 2rem;
}

.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    background: var(--primary-color);
    transition: var(--transition);
}

.faq-icon::before {
    width: 2rem;
    height: 2px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.faq-icon::after {
    width: 2px;
    height: 2rem;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
}

.faq-item.active .faq-icon::after {
    transform: translateX(-50%) rotate(90deg);
    opacity: 0;
}

.faq-answer {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 2rem 2rem;
    max-height: 50rem;
}

/* Contact Section */
.contact-section {
    background: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
}

.contact-intro {
    font-size: 1.8rem;
    margin-bottom: 4rem;
}

.contact-details {
    margin-bottom: 3rem;
}

.contact-detail {
    display: flex;
    margin-bottom: 2rem;
}

.contact-icon {
    margin-right: 1.5rem;
    color: var(--primary-color);
}

.contact-detail h4 {
    margin-bottom: 0.5rem;
    font-size: 1.8rem;
}

.contact-form-container {
    background: var(--light-color);
    padding: 4rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group.full {
    grid-column: 1 / -1;
}

.contact-form label {
    display: block;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 1.2rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-family: var(--font-secondary);
    font-size: 1.6rem;
    transition: var(--transition);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(58, 123, 213, 0.2);
}

.consent-group {
    display: flex;
    align-items: flex-start;
    margin-top: 1rem;
}

.consent-group input {
    width: auto;
    margin-top: 0.5rem;
    margin-right: 1rem;
}

.consent-label {
    font-size: 1.4rem;
    line-height: 1.4;
}

/* Map Section */
.map-section {
    padding: 0;
    height: 45rem;
}

.google-map {
    height: 100%;
}

.google-map iframe {
    height: 100%;
    width: 100%;
    border: none;
}

/* Footer */
.main-footer {
    background: var(--dark-color);
    color: white;
    padding: 8rem 0 2rem;
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    margin-bottom: 6rem;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-tagline {
    margin-top: 1.5rem;
    font-size: 1.8rem;
    font-style: italic;
    opacity: 0.8;
}

.newsletter-form-container h3 {
    margin-bottom: 1rem;
}

.newsletter-form-container p {
    margin-bottom: 2rem;
    opacity: 0.8;
}

.newsletter-form-group {
    display: flex;
    margin-bottom: 1rem;
}

.newsletter-form-group input {
    flex: 1;
    padding: 1.2rem;
    border: none;
    border-radius: var(--radius-sm) 0 0 var(--radius-sm);
    font-family: var(--font-secondary);
    font-size: 1.6rem;
}

.newsletter-form-group .btn {
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.newsletter-consent {
    display: flex;
    align-items: flex-start;
}

.newsletter-consent input {
    margin-top: 0.5rem;
    margin-right: 1rem;
}

.newsletter-consent label {
    font-size: 1.4rem;
    line-height: 1.4;
    opacity: 0.8;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
    gap: 4rem;
    margin-bottom: 6rem;
}

.footer-links h3 {
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.footer-nav ul li,
.footer-legal ul li {
    margin-bottom: 1rem;
}

.footer-nav a,
.footer-legal a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-nav a:hover,
.footer-legal a:hover {
    color: white;
}

.footer-contact address {
    font-style: normal;
    line-height: 1.8;
    opacity: 0.7;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
}

.copyright {
    opacity: 0.7;
    font-size: 1.4rem;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: white;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    z-index: 1000;
    display: none;
}

.cookie-content {
    max-width: 120rem;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.cookie-content p {
    margin: 0 2rem 0 0;
    flex: 1;
}

.cookie-buttons {
    display: flex;
}

.cookie-buttons .btn {
    margin-left: 1rem;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    html {
        font-size: 58%;
    }
}

@media (max-width: 992px) {
    html {
        font-size: 56%;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .about-image {
        max-width: 60rem;
        margin: 0 auto;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 54%;
    }
    
    section {
        padding: 8rem 0;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 40rem;
        height: 100vh;
        background: white;
        flex-direction: column;
        align-items: flex-start;
        padding: 10rem 3rem 3rem;
        box-shadow: var(--shadow-lg);
        transition: right 0.3s ease;
        z-index: 1000;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-link {
        margin: 1.5rem 0;
        font-size: 1.8rem;
    }
    
    .nav-link.cta {
        margin: 1.5rem 0 0;
        width: 100%;
        text-align: center;
    }
    
    .hero-title {
        font-size: 4.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.8rem;
    }
    
    .method-step {
        flex-direction: column;
    }
    
    .step-number {
        margin-bottom: 2rem;
        margin-right: 0;
    }
    
    .testimonial-content {
        flex-direction: column;
    }
    
    .contact-form {
        grid-template-columns: 1fr;
    }
    
    .cookie-content {
        flex-direction: column;
    }
    
    .cookie-content p {
        margin: 0 0 2rem;
    }
}

@media (max-width: 576px) {
    html {
        font-size: 52%;
    }
    
    .hero-title {
        font-size: 3.6rem;
    }
    
    .section-heading h2 {
        font-size: 3.2rem;
    }
    
    .benefit-card {
        padding: 2rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
}