/* Echo Maneuver - Main Stylesheet */

/* ========================================
   CSS RESET & BASE STYLES
   ======================================== */

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

button {
    font-family: inherit;
    border: none;
    cursor: pointer;
    background: none;
}

/* ========================================
   TYPOGRAPHY
   ======================================== */

h1, h2, h3, h4 {
    line-height: 1.2;
    margin-bottom: 1rem;
    font-weight: 600;
    color: #1a2332;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
}

/* ========================================
   LAYOUT & CONTAINERS
   ======================================== */

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

section {
    padding: 4rem 0;
}

/* ========================================
   HEADER & NAVIGATION
   ======================================== */

.header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.nav-brand a {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0066cc;
}

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

.nav-menu a {
    color: #333;
    font-weight: 500;
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #0066cc;
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #0066cc;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    padding: 8px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: #333;
    transition: all 0.3s ease;
}

/* ========================================
   BUTTONS
   ======================================== */

.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: 4px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background-color: #0066cc;
    color: #fff;
}

.btn-primary:hover {
    background-color: #0052a3;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: #0066cc;
    border: 2px solid #0066cc;
}

.btn-secondary:hover {
    background-color: #0066cc;
    color: #fff;
}

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

/* ========================================
   HERO SECTION
   ======================================== */

.hero {
    background: linear-gradient(135deg, #0066cc 0%, #004999 100%);
    color: #fff;
    padding: 5rem 0;
}

.hero .container {
    display: flex;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.hero-content {
    flex: 1;
    min-width: 300px;
}

.hero h1 {
    color: #fff;
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hero-visual {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
}

.hero-visual img {
    max-width: 500px;
}

/* ========================================
   PAGE HERO
   ======================================== */

.page-hero {
    background-color: #f8f9fa;
    text-align: center;
    padding: 3rem 0;
}

.page-hero h1 {
    margin-bottom: 0.5rem;
}

.page-hero p {
    font-size: 1.125rem;
    color: #666;
    margin-bottom: 0;
}

/* ========================================
   INTRO SECTION
   ======================================== */

.intro-section {
    background-color: #fff;
}

.intro-grid {
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
}

.intro-text {
    flex: 1;
    min-width: 300px;
}

.intro-text h2 {
    margin-bottom: 1.5rem;
}

.intro-features {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.feature-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.feature-item img {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
}

.feature-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.feature-item p {
    margin-bottom: 0;
    color: #666;
}

/* ========================================
   PHILOSOPHY SECTION
   ======================================== */

.philosophy-section {
    background-color: #f8f9fa;
}

.philosophy-content {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
}

.section-label {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: #e3f2fd;
    color: #0066cc;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.philosophy-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #0066cc;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    color: #666;
    max-width: 150px;
}

/* ========================================
   SERVICES
   ======================================== */

.services-highlight {
    background-color: #fff;
}

.services-highlight h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2rem;
}

.service-card {
    flex: 1;
    min-width: 250px;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.service-card img {
    width: 60px;
    height: 60px;
    margin-bottom: 1.5rem;
}

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

.service-card p {
    color: #666;
    flex-grow: 1;
}

.service-price {
    display: block;
    font-weight: 700;
    color: #0066cc;
    font-size: 1.125rem;
    margin-top: 1rem;
}

.section-cta {
    text-align: center;
    margin-top: 2rem;
}

/* ========================================
   SERVICES PAGE
   ======================================== */

.services-main {
    background-color: #fff;
}

.services-intro {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
}

.service-detailed {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.service-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.service-header img {
    width: 80px;
    height: 80px;
}

.service-header h2 {
    margin-bottom: 0.5rem;
}

.service-price-large {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0066cc;
}

.service-body h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.service-body ul {
    list-style: disc;
    padding-left: 2rem;
    margin-bottom: 1.5rem;
}

.service-body ul li {
    margin-bottom: 0.5rem;
    color: #666;
}

.boat-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.boat-option {
    background-color: #fff;
    padding: 1.5rem;
    border-radius: 6px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.boat-option strong {
    font-size: 1.125rem;
    color: #1a2332;
}

.boat-option span {
    color: #666;
}

.boat-price {
    font-weight: 700;
    color: #0066cc;
    font-size: 1.125rem;
}

.service-note {
    background-color: #e3f2fd;
    padding: 1.5rem;
    border-radius: 6px;
    border-left: 4px solid #0066cc;
    margin-top: 2rem;
}

/* ========================================
   BENEFITS SECTION
   ======================================== */

.benefits-section {
    background-color: #f8f9fa;
}

.benefits-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.benefit-item {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.benefit-icon img {
    width: 50px;
    height: 50px;
}

.benefit-text h3 {
    margin-bottom: 0.75rem;
}

.benefit-text p {
    color: #666;
    margin-bottom: 0;
}

/* ========================================
   TESTIMONIALS
   ======================================== */

.testimonials-section {
    background-color: #fff;
}

.testimonials-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.testimonials-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.testimonial-card {
    flex: 1;
    min-width: 280px;
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #0066cc;
}

.testimonial-text {
    font-style: italic;
    color: #666;
    margin-bottom: 1.5rem;
}

.testimonial-author strong {
    display: block;
    color: #1a2332;
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    color: #999;
    font-size: 0.875rem;
}

/* ========================================
   PROCESS SECTION
   ======================================== */

.process-section {
    background-color: #f8f9fa;
}

.process-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.process-steps {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.process-step {
    flex: 1;
    min-width: 250px;
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    position: relative;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: #0066cc;
    color: #fff;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.process-step h3 {
    margin-bottom: 1rem;
}

.process-step p {
    color: #666;
    margin-bottom: 0;
}

/* ========================================
   KNOWLEDGE SECTION
   ======================================== */

.knowledge-section {
    background-color: #fff;
}

.knowledge-content {
    max-width: 1000px;
    margin: 0 auto;
}

.knowledge-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.knowledge-item {
    flex: 1;
    min-width: 250px;
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
}

.knowledge-item h3 {
    margin-bottom: 1rem;
    color: #0066cc;
}

.knowledge-item p {
    color: #666;
    margin-bottom: 0;
}

/* ========================================
   FAQ SECTION
   ======================================== */

.faq-section,
.faq-contact,
.faq-services {
    background-color: #fff;
}

.faq-section h2,
.faq-contact h2,
.faq-services h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #e0e0e0;
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 1.5rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    font-size: 1.125rem;
    font-weight: 600;
    color: #1a2332;
    cursor: pointer;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: #0066cc;
}

.faq-icon {
    font-size: 1.5rem;
    color: #0066cc;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-bottom: 1.5rem;
}

.faq-answer p {
    color: #666;
    margin-bottom: 0;
}

/* ========================================
   CTA SECTION
   ======================================== */

.cta-section {
    background: linear-gradient(135deg, #0066cc 0%, #004999 100%);
    color: #fff;
    text-align: center;
}

.cta-content h2 {
    color: #fff;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

/* ========================================
   STORY SECTION
   ======================================== */

.story-section {
    background-color: #fff;
}

.story-content {
    display: flex;
    gap: 4rem;
    align-items: center;
    flex-wrap: wrap;
}

.story-text {
    flex: 1;
    min-width: 300px;
}

.story-image {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
}

.story-image img {
    max-width: 400px;
}

/* ========================================
   VALUES SECTION
   ======================================== */

.values-section {
    background-color: #f8f9fa;
}

.values-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.value-card {
    flex: 1;
    min-width: 250px;
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
}

.value-card img {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
}

.value-card h3 {
    margin-bottom: 1rem;
    color: #0066cc;
}

.value-card p {
    color: #666;
    margin-bottom: 0;
}

/* ========================================
   TEAM SECTION
   ======================================== */

.team-section {
    background-color: #fff;
}

.team-section h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.section-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
    color: #666;
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.team-member {
    flex: 1;
    min-width: 250px;
    text-align: center;
}

.team-image {
    width: 150px;
    height: 150px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    overflow: hidden;
    background-color: #e3f2fd;
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-member h3 {
    margin-bottom: 0.5rem;
}

.team-role {
    display: block;
    color: #0066cc;
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-member p {
    color: #666;
    font-size: 0.875rem;
    margin-bottom: 0;
}

/* ========================================
   TIMELINE
   ======================================== */

.milestones-section {
    background-color: #f8f9fa;
}

.milestones-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 80px;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: #0066cc;
}

.timeline-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-year {
    width: 80px;
    flex-shrink: 0;
    font-size: 1.25rem;
    font-weight: 700;
    color: #0066cc;
}

.timeline-content {
    flex: 1;
    background-color: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    position: relative;
}

.timeline-content::before {
    content: '';
    position: absolute;
    left: -10px;
    top: 20px;
    width: 12px;
    height: 12px;
    background-color: #0066cc;
    border-radius: 50%;
    border: 3px solid #f8f9fa;
}

.timeline-content h3 {
    margin-bottom: 0.75rem;
}

.timeline-content p {
    color: #666;
    margin-bottom: 0;
}

/* ========================================
   COMMITMENT SECTION
   ======================================== */

.commitment-section {
    background-color: #fff;
}

.commitment-content h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.commitment-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.commitment-item {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #0066cc;
}

.commitment-item h3 {
    margin-bottom: 1rem;
    color: #0066cc;
}

.commitment-item p {
    color: #666;
    margin-bottom: 0;
}

/* ========================================
   ACHIEVEMENTS SECTION
   ======================================== */

.achievements-section {
    background-color: #f8f9fa;
}

.achievements-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.achievements-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.achievement-card {
    flex: 1;
    min-width: 250px;
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
}

.achievement-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #0066cc;
    margin-bottom: 1rem;
}

.achievement-card h3 {
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.achievement-card p {
    color: #666;
    font-size: 0.875rem;
    margin-bottom: 0;
}

/* ========================================
   WHY DIFFERENT SECTION
   ======================================== */

.why-different-section {
    background-color: #fff;
}

.why-different-section h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.different-content > p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    color: #666;
}

.different-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.different-item {
    flex: 1;
    min-width: 250px;
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
}

.different-item h3 {
    margin-bottom: 1rem;
    color: #0066cc;
}

.different-item p {
    color: #666;
    margin-bottom: 0;
}

/* ========================================
   CONTACT PAGE
   ======================================== */

.contact-main {
    background-color: #fff;
}

.contact-grid {
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
}

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

.contact-method {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.contact-method img {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
}

.contact-method h3 {
    margin-bottom: 0.5rem;
}

.contact-method p {
    margin-bottom: 0;
    color: #666;
}

.contact-method a {
    color: #0066cc;
    font-weight: 600;
}

.contact-method a:hover {
    text-decoration: underline;
}

.contact-method .note {
    display: block;
    font-size: 0.875rem;
    color: #999;
    margin-top: 0.5rem;
}

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

.info-card {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.info-card h3 {
    margin-bottom: 1rem;
    color: #0066cc;
}

.info-card p {
    color: #666;
    margin-bottom: 1rem;
}

.info-card p:last-child {
    margin-bottom: 0;
}

/* ========================================
   COMPANY INFO
   ======================================== */

.company-info-section {
    background-color: #f8f9fa;
}

.company-info-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.company-details {
    max-width: 600px;
    margin: 0 auto;
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid #e0e0e0;
}

.detail-row:last-child {
    border-bottom: none;
}

.detail-label {
    font-weight: 600;
    color: #666;
}

.detail-value {
    color: #1a2332;
    font-weight: 500;
}

/* ========================================
   ABOUT CONTACT SECTION
   ======================================== */

.about-contact-section {
    background-color: #fff;
}

.about-contact-content h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.about-contact-content > p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    color: #666;
}

.contact-features {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.contact-feature {
    flex: 1;
    min-width: 250px;
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
}

.contact-feature h3 {
    margin-bottom: 1rem;
    color: #0066cc;
}

.contact-feature p {
    color: #666;
    margin-bottom: 0;
}

/* ========================================
   EMERGENCY CONTACT
   ======================================== */

.emergency-contact {
    background-color: #f8f9fa;
}

.emergency-box {
    background-color: #fff3cd;
    border: 2px solid #ffc107;
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.emergency-box img {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
}

.emergency-box h2 {
    color: #1a2332;
    margin-bottom: 1rem;
}

.emergency-box p {
    color: #666;
    margin-bottom: 0;
}

/* ========================================
   COMPARISON TABLE
   ======================================== */

.comparison-section {
    background-color: #f8f9fa;
}

.comparison-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.comparison-table {
    max-width: 900px;
    margin: 0 auto;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
}

.comparison-header,
.comparison-row {
    display: flex;
    border-bottom: 1px solid #e0e0e0;
}

.comparison-header {
    background-color: #0066cc;
    color: #fff;
    font-weight: 600;
}

.comparison-header > div,
.comparison-row > div {
    flex: 1;
    padding: 1rem;
    min-width: 150px;
}

.comparison-header > div:first-child,
.comparison-row > div:first-child {
    flex: 1.5;
    font-weight: 600;
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-row:nth-child(even) {
    background-color: #f8f9fa;
}

/* ========================================
   EXTRAS SECTION
   ======================================== */

.extras-section {
    background-color: #fff;
}

.extras-section h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.extras-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 2rem;
}

.extra-item {
    flex: 1;
    min-width: 200px;
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
}

.extra-item h3 {
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.extra-item p {
    color: #666;
    flex-grow: 1;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.extra-price {
    font-weight: 700;
    color: #0066cc;
    font-size: 1rem;
}

/* ========================================
   BOOKING STEPS
   ======================================== */

.process-booking-section {
    background-color: #f8f9fa;
}

.process-booking-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.booking-steps {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.booking-step {
    flex: 1;
    min-width: 200px;
    text-align: center;
}

.step-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: #0066cc;
    color: #fff;
    border-radius: 50%;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.booking-step h3 {
    margin-bottom: 1rem;
}

.booking-step p {
    color: #666;
    margin-bottom: 0;
}

/* ========================================
   THANK YOU PAGE
   ======================================== */

.thank-you-section {
    padding: 6rem 0;
    text-align: center;
}

.thank-you-content {
    max-width: 600px;
    margin: 0 auto;
}

.thank-you-image {
    width: 120px;
    height: 120px;
    margin: 0 auto 2rem;
}

.thank-you-section h1 {
    margin-bottom: 1.5rem;
}

.lead {
    font-size: 1.25rem;
    color: #666;
    margin-bottom: 1rem;
}

.thank-you-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.next-steps-section {
    background-color: #f8f9fa;
}

.next-steps-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.steps-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.step-card {
    flex: 1;
    min-width: 250px;
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
}

.step-card .step-number {
    margin: 0 auto 1.5rem;
}

/* ========================================
   LEGAL PAGES
   ======================================== */

.legal-page {
    background-color: #fff;
    padding: 4rem 0;
}

.legal-page h1 {
    margin-bottom: 0.5rem;
}

.legal-intro {
    color: #666;
    font-size: 0.875rem;
    margin-bottom: 2rem;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h2 {
    margin-top: 3rem;
    margin-bottom: 1.5rem;
}

.legal-content h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-content ul,
.legal-content ol {
    list-style: disc;
    padding-left: 2rem;
    margin-bottom: 1rem;
}

.legal-content ol {
    list-style: decimal;
}

.legal-content ul li,
.legal-content ol li {
    margin-bottom: 0.5rem;
    color: #666;
}

.legal-content a {
    color: #0066cc;
    text-decoration: underline;
}

.legal-content a:hover {
    color: #0052a3;
}

.legal-content p {
    color: #666;
}

.legal-content strong {
    color: #1a2332;
}

.cookie-table {
    overflow-x: auto;
    margin: 2rem 0;
}

.cookie-table table {
    width: 100%;
    border-collapse: collapse;
    background-color: #fff;
}

.cookie-table th,
.cookie-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}

.cookie-table th {
    background-color: #f8f9fa;
    font-weight: 600;
    color: #1a2332;
}

.cookie-table td {
    color: #666;
}

/* ========================================
   FOOTER
   ======================================== */

.footer {
    background-color: #1a2332;
    color: #fff;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2rem;
}

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

.footer-col h4 {
    color: #fff;
    margin-bottom: 1rem;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: #fff;
}

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
    margin-bottom: 0;
}

/* ========================================
   COOKIE BANNER
   ======================================== */

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a2332;
    color: #fff;
    padding: 1.5rem;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
    z-index: 2000;
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    margin-bottom: 0;
    font-size: 0.875rem;
}

.cookie-content a {
    color: #6db3f2;
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* ========================================
   COOKIE MODAL
   ======================================== */

.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 3000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.cookie-modal.show {
    display: flex;
}

.cookie-modal-content {
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    max-width: 500px;
    width: 100%;
}

.cookie-modal-content h3 {
    margin-bottom: 1.5rem;
}

.cookie-option {
    margin-bottom: 1.5rem;
}

.cookie-option label {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    cursor: pointer;
    font-weight: 600;
}

.cookie-option input[type="checkbox"] {
    margin-top: 0.25rem;
    cursor: pointer;
}

.cookie-option p {
    color: #666;
    font-size: 0.875rem;
    margin-top: 0.5rem;
    margin-bottom: 0;
    margin-left: 2rem;
}

.cookie-modal-buttons {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 2rem;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    h3 {
        font-size: 1.25rem;
    }

    section {
        padding: 3rem 0;
    }

    /* Navigation */
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: #fff;
        width: 100%;
        text-align: center;
        transition: left 0.3s ease;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        gap: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        padding: 1rem 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    /* Hero */
    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    /* Grids */
    .services-grid,
    .testimonials-grid,
    .process-steps,
    .values-grid,
    .team-grid,
    .achievements-grid,
    .different-grid,
    .benefits-list,
    .contact-features,
    .extras-grid {
        gap: 1.5rem;
    }

    /* Stats */
    .philosophy-stats {
        gap: 2rem;
    }

    /* Timeline */
    .timeline::before {
        left: 60px;
    }

    .timeline-year {
        width: 60px;
        font-size: 1rem;
    }

    /* Tables */
    .comparison-table {
        overflow-x: auto;
    }

    .comparison-header > div,
    .comparison-row > div {
        min-width: 120px;
        padding: 0.75rem;
        font-size: 0.875rem;
    }

    /* Cookie banner */
    .cookie-content {
        flex-direction: column;
        align-items: stretch;
    }

    .cookie-buttons {
        justify-content: stretch;
    }

    .cookie-buttons button {
        flex: 1;
    }
}

@media (max-width: 480px) {
    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.875rem;
    }

    .hero {
        padding: 3rem 0;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .service-card,
    .value-card,
    .different-item,
    .knowledge-item {
        min-width: 100%;
    }

    .thank-you-actions {
        flex-direction: column;
    }

    .thank-you-actions .btn {
        width: 100%;
    }
}