/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #2d3748;
    background-color: #ffffff;
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

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

/* Navigation */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    padding: 1rem 0;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a202c;
    letter-spacing: -0.5px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-menu a {
    font-size: 0.95rem;
    font-weight: 500;
    color: #4a5568;
    position: relative;
    transition: color 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #2b6cb0;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #2b6cb0;
    transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-cta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff !important;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
}

.nav-cta::after {
    display: none;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 0.5rem;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: #2d3748;
    transition: all 0.3s ease;
}

/* Hero Split */
.hero-split {
    display: flex;
    min-height: 100vh;
    padding-top: 80px;
}

.hero-left {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 3rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
}

.hero-content {
    max-width: 600px;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.hero-text {
    font-size: 1.25rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.hero-right {
    flex: 1;
    overflow: hidden;
}

.hero-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Split Sections */
.intro-split,
.problem-split,
.solution-split,
.services-preview-split,
.values-split,
.story-split,
.mission-split,
.services-intro-split {
    display: flex;
    min-height: 600px;
}

.split-image,
.split-content {
    flex: 1;
}

.split-image {
    overflow: hidden;
    position: relative;
}

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

.split-image:hover img {
    transform: scale(1.05);
}

.split-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 5rem 4rem;
    background: #f7fafc;
}

.reverse {
    flex-direction: row-reverse;
}

.reverse .split-content {
    background: #ffffff;
}

.eyebrow {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #667eea;
    margin-bottom: 1rem;
}

.split-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a202c;
}

.split-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 1.5rem;
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    font-weight: 600;
    color: #667eea;
    margin-top: 1rem;
    transition: transform 0.3s ease;
}

.link-arrow:hover {
    transform: translateX(5px);
}

/* Buttons */
.btn-hero,
.btn-primary,
.btn-secondary,
.btn-white,
.btn-service,
.btn-submit {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-hero,
.btn-primary,
.btn-submit {
    background: #ffffff;
    color: #667eea;
}

.btn-hero:hover,
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

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

.btn-secondary:hover {
    background: #f7fafc;
    border-color: #cbd5e0;
}

.btn-white {
    background: #ffffff;
    color: #667eea;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.btn-service {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
}

.btn-service:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

.btn-submit {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    width: 100%;
    padding: 1.2rem;
    font-size: 1.1rem;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

/* Stats Section */
.stats-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
}

.stats-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 3rem;
}

.stat-card {
    text-align: center;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Problem/Solution Lists */
.problem-list {
    margin-top: 2rem;
}

.problem-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.problem-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: #fed7d7;
    color: #c53030;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.problem-text h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #1a202c;
}

.problem-text p {
    margin: 0;
    color: #4a5568;
}

/* Features List */
.features-list {
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.feature-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.3rem;
}

.feature-content h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #1a202c;
}

.feature-content p {
    margin: 0;
}

/* Testimonials */
.testimonial-section {
    padding: 6rem 2rem;
    background: #f7fafc;
}

.testimonial-container {
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-container h2 {
    font-size: 2.8rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 4rem;
    color: #1a202c;
}

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

.testimonial-card {
    flex: 1;
    min-width: 300px;
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #2d3748;
    margin-bottom: 1.5rem;
    font-style: italic;
}

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

.testimonial-author span {
    color: #718096;
    font-size: 0.9rem;
}

/* Services Quick */
.services-quick {
    margin-top: 2rem;
}

.service-quick-item {
    background: #ffffff;
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    border-left: 4px solid #667eea;
}

.service-quick-item h4 {
    font-size: 1.3rem;
    color: #1a202c;
    margin-bottom: 0.5rem;
}

.service-quick-item p {
    margin-bottom: 1rem;
    color: #4a5568;
}

.price-tag {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.95rem;
}

/* Process Section */
.process-section {
    padding: 6rem 2rem;
    background: #ffffff;
}

.process-container {
    max-width: 1200px;
    margin: 0 auto;
}

.process-container h2 {
    font-size: 2.8rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 1rem;
    color: #1a202c;
}

.process-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #4a5568;
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.process-step {
    flex: 1;
    min-width: 250px;
    text-align: center;
}

.step-visual {
    margin-bottom: 1.5rem;
}

.step-circle {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.process-step h3 {
    font-size: 1.4rem;
    color: #1a202c;
    margin-bottom: 0.8rem;
}

.process-step p {
    color: #4a5568;
    line-height: 1.7;
}

/* CTA Sections */
.cta-section-mid,
.services-cta,
.cta-about,
.contact-cta {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    text-align: center;
}

.cta-content-box,
.services-cta-content,
.cta-about-content,
.contact-cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-content-box h2,
.services-cta-content h2,
.cta-about-content h2,
.contact-cta-content h2 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.cta-content-box p,
.services-cta-content p,
.cta-about-content p,
.contact-cta-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    opacity: 0.95;
}

/* Values */
.values-list {
    margin-top: 2rem;
}

.value-block {
    margin-bottom: 2rem;
}

.value-block h4 {
    font-size: 1.4rem;
    color: #1a202c;
    margin-bottom: 0.5rem;
}

.value-block p {
    margin: 0;
}

/* Booking Section */
.booking-section {
    padding: 6rem 2rem;
    background: #f7fafc;
}

.booking-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.booking-left,
.booking-right {
    flex: 1;
}

.booking-left h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: #1a202c;
}

.booking-left p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 2rem;
}

.booking-benefits {
    margin-top: 2rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.benefit-item svg {
    color: #48bb78;
    flex-shrink: 0;
}

.benefit-item span {
    color: #2d3748;
    font-weight: 500;
}

/* Forms */
.booking-form {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

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

.form-group label {
    display: block;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem 1.2rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #ffffff;
    color: #2d3748;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

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

/* FAQ Section */
.faq-section {
    padding: 6rem 2rem;
    background: #ffffff;
}

.faq-container {
    max-width: 1000px;
    margin: 0 auto;
}

.faq-container h2 {
    font-size: 2.8rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a202c;
}

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.faq-item {
    background: #f7fafc;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #667eea;
}

.faq-item h4 {
    font-size: 1.3rem;
    color: #1a202c;
    margin-bottom: 0.8rem;
}

.faq-item p {
    color: #4a5568;
    line-height: 1.7;
    margin: 0;
}

/* Footer */
.main-footer {
    background: #1a202c;
    color: #e2e8f0;
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

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

.footer-col h4 {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.footer-col p {
    color: #cbd5e0;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.footer-col ul li {
    margin-bottom: 0.7rem;
}

.footer-col ul li a {
    color: #cbd5e0;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: #667eea;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #2d3748;
    color: #a0aec0;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
}

.sticky-cta-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
    display: inline-block;
    transition: all 0.3s ease;
}

.sticky-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.5);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(26, 32, 44, 0.98);
    backdrop-filter: blur(10px);
    color: #ffffff;
    padding: 1.5rem 2rem;
    z-index: 9999;
    box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.2);
}

.cookie-banner.hidden {
    display: none;
}

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

.cookie-content p {
    flex: 1;
    margin: 0;
    line-height: 1.6;
}

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

#accept-cookies {
    background: #48bb78;
    color: #ffffff;
    padding: 0.7rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

#accept-cookies:hover {
    background: #38a169;
}

#reject-cookies {
    background: transparent;
    color: #ffffff;
    padding: 0.7rem 1.5rem;
    border: 2px solid #4a5568;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

#reject-cookies:hover {
    border-color: #cbd5e0;
    background: rgba(255, 255, 255, 0.1);
}

/* Page Hero */
.page-hero,
.about-hero,
.contact-hero {
    padding: 10rem 2rem 6rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    text-align: center;
}

.page-hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.3rem;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
}

/* Services Detailed */
.services-detailed {
    padding: 6rem 2rem;
    background: #f7fafc;
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
}

.service-card-large {
    display: flex;
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    margin-bottom: 3rem;
}

.service-card-large.reverse {
    flex-direction: row-reverse;
}

.service-card-image {
    flex: 0 0 45%;
    overflow: hidden;
}

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

.service-card-large:hover .service-card-image img {
    transform: scale(1.05);
}

.service-card-content {
    flex: 1;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-card-content h3 {
    font-size: 2rem;
    font-weight: 800;
    color: #1a202c;
    margin-bottom: 1rem;
}

.service-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 2rem;
}

.service-includes {
    margin-bottom: 2rem;
}

.service-includes h4 {
    font-size: 1.2rem;
    color: #2d3748;
    margin-bottom: 1rem;
}

.service-includes ul {
    list-style: none;
    padding-left: 0;
}

.service-includes ul li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.7rem;
    color: #4a5568;
}

.service-includes ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #48bb78;
    font-weight: 700;
}

.service-pricing {
    background: #f7fafc;
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

.price-main {
    font-size: 2.5rem;
    font-weight: 800;
    color: #667eea;
    margin-bottom: 0.5rem;
}

.price-note {
    font-size: 0.9rem;
    color: #718096;
}

/* Why Choose Section */
.why-choose-section {
    padding: 6rem 2rem;
    background: #ffffff;
}

.why-choose-container {
    max-width: 1200px;
    margin: 0 auto;
}

.why-choose-container h2 {
    font-size: 2.8rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 4rem;
    color: #1a202c;
}

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

.why-card {
    flex: 1;
    min-width: 250px;
    background: #f7fafc;
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
}

.why-icon {
    margin-bottom: 1.5rem;
    color: #667eea;
}

.why-card h3 {
    font-size: 1.4rem;
    color: #1a202c;
    margin-bottom: 1rem;
}

.why-card p {
    color: #4a5568;
    line-height: 1.7;
    margin: 0;
}

/* Timeline */
.timeline-section {
    padding: 6rem 2rem;
    background: #ffffff;
}

.timeline-container {
    max-width: 900px;
    margin: 0 auto;
}

.timeline-container h2 {
    font-size: 2.8rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 4rem;
    color: #1a202c;
}

.timeline {
    position: relative;
    padding-left: 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #667eea 0%, #764ba2 100%);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    padding-left: 2rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -2.6rem;
    top: 0.3rem;
    width: 15px;
    height: 15px;
    background: #667eea;
    border-radius: 50%;
    border: 3px solid #ffffff;
    box-shadow: 0 0 0 3px #667eea;
}

.timeline-year {
    font-size: 1.8rem;
    font-weight: 800;
    color: #667eea;
    margin-bottom: 0.5rem;
}

.timeline-content h3 {
    font-size: 1.5rem;
    color: #1a202c;
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: #4a5568;
    line-height: 1.7;
    margin: 0;
}

/* Mission Values */
.mission-values {
    margin-top: 2rem;
}

.value-item {
    margin-bottom: 1.5rem;
}

.value-item strong {
    display: block;
    color: #1a202c;
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.value-item p {
    margin: 0;
}

/* Team Section */
.team-section {
    padding: 6rem 2rem;
    background: #f7fafc;
}

.team-container {
    max-width: 1200px;
    margin: 0 auto;
}

.team-container h2 {
    font-size: 2.8rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 1rem;
    color: #1a202c;
}

.team-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #4a5568;
    max-width: 800px;
    margin: 0 auto 4rem;
}

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

.team-member {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 280px;
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.member-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-info {
    padding: 1.8rem;
}

.member-info h3 {
    font-size: 1.3rem;
    color: #1a202c;
    margin-bottom: 0.3rem;
}

.member-role {
    color: #667eea;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 1rem;
    display: block;
}

.member-bio {
    color: #4a5568;
    line-height: 1.7;
    margin: 0;
    font-size: 0.95rem;
}

/* Approach Section */
.approach-section {
    padding: 6rem 2rem;
    background: #ffffff;
}

.approach-container {
    max-width: 1000px;
    margin: 0 auto;
}

.approach-container h2 {
    font-size: 2.8rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a202c;
}

.approach-content h3 {
    font-size: 2rem;
    color: #1a202c;
    margin-bottom: 1rem;
}

.approach-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 2rem;
}

.selection-criteria {
    margin-top: 2rem;
}

.criteria-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.criteria-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: #f7fafc;
    color: #667eea;
    border: 2px solid #667eea;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.3rem;
}

.criteria-text h4 {
    font-size: 1.3rem;
    color: #1a202c;
    margin-bottom: 0.5rem;
}

.criteria-text p {
    margin: 0;
    color: #4a5568;
}

/* Certifications */
.certifications-section {
    padding: 6rem 2rem;
    background: #f7fafc;
}

.cert-container {
    max-width: 1200px;
    margin: 0 auto;
}

.cert-container h2 {
    font-size: 2.8rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 1rem;
    color: #1a202c;
}

.cert-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #4a5568;
    max-width: 800px;
    margin: 0 auto 4rem;
}

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

.cert-card {
    flex: 1;
    min-width: 250px;
    background: #ffffff;
    padding: 2rem;
    border-radius: 16px;
    border-top: 4px solid #667eea;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.cert-card h4 {
    font-size: 1.3rem;
    color: #1a202c;
    margin-bottom: 0.8rem;
}

.cert-card p {
    color: #4a5568;
    line-height: 1.7;
    margin: 0;
}

/* Contact Info */
.contact-info-section {
    padding: 6rem 2rem;
    background: #f7fafc;
}

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

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

.contact-card {
    flex: 1;
    min-width: 280px;
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.contact-icon {
    margin-bottom: 1.5rem;
    color: #667eea;
}

.contact-card h3 {
    font-size: 1.5rem;
    color: #1a202c;
    margin-bottom: 1rem;
}

.contact-card p {
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.contact-card a {
    color: #667eea;
    font-weight: 600;
}

.contact-note {
    font-size: 0.9rem;
    color: #718096;
    font-style: italic;
    margin-top: 1rem;
}

/* Map Section */
.map-section {
    padding: 6rem 2rem;
    background: #ffffff;
}

.map-container {
    max-width: 1200px;
    margin: 0 auto;
}

.map-container h2 {
    font-size: 2.8rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a202c;
}

.map-placeholder {
    position: relative;
    width: 100%;
    height: 400px;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 2rem;
}

.map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 32, 44, 0.9);
    color: #ffffff;
    padding: 1.5rem;
    text-align: center;
}

.location-details h3 {
    font-size: 1.8rem;
    color: #1a202c;
    margin-bottom: 1.5rem;
}

.transport-options {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.transport-item {
    flex: 1;
    min-width: 250px;
    background: #f7fafc;
    padding: 1.5rem;
    border-radius: 12px;
}

.transport-item strong {
    display: block;
    color: #1a202c;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.transport-item p {
    color: #4a5568;
    margin: 0;
}

/* Contact Reasons */
.contact-reasons {
    padding: 6rem 2rem;
    background: #f7fafc;
}

.reasons-container {
    max-width: 1200px;
    margin: 0 auto;
}

.reasons-container h2 {
    font-size: 2.8rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a202c;
}

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

.reason-card {
    flex: 1;
    min-width: 250px;
    background: #ffffff;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.reason-card h4 {
    font-size: 1.3rem;
    color: #1a202c;
    margin-bottom: 0.8rem;
}

.reason-card p {
    color: #4a5568;
    line-height: 1.7;
    margin: 0;
}

/* FAQ Contact */
.faq-contact {
    padding: 6rem 2rem;
    background: #ffffff;
}

.faq-contact-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-contact-container h2 {
    font-size: 2.8rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a202c;
}

.faq-list-contact {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-item-contact {
    background: #f7fafc;
    padding: 2rem;
    border-radius: 12px;
}

.faq-item-contact h4 {
    font-size: 1.2rem;
    color: #1a202c;
    margin-bottom: 0.8rem;
}

.faq-item-contact p {
    color: #4a5568;
    line-height: 1.7;
    margin: 0;
}

/* Thanks Page */
.thanks-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 2rem;
    background: #f7fafc;
}

.thanks-container {
    max-width: 800px;
    text-align: center;
    background: #ffffff;
    padding: 4rem 3rem;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.thanks-icon {
    margin-bottom: 2rem;
    color: #48bb78;
}

.thanks-container h1 {
    font-size: 3rem;
    font-weight: 800;
    color: #1a202c;
    margin-bottom: 1rem;
}

.thanks-message {
    font-size: 1.2rem;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.thanks-details {
    background: #f7fafc;
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    color: #2d3748;
}

.thanks-next {
    margin: 3rem 0;
    text-align: left;
}

.thanks-next h3 {
    font-size: 1.8rem;
    color: #1a202c;
    margin-bottom: 2rem;
    text-align: center;
}

.next-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.step-num {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.step-text h4 {
    font-size: 1.2rem;
    color: #1a202c;
    margin-bottom: 0.5rem;
}

.step-text p {
    color: #4a5568;
    margin: 0;
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.thanks-contact {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e2e8f0;
}

.thanks-contact p {
    color: #4a5568;
    margin-bottom: 0.5rem;
}

.thanks-contact a {
    color: #667eea;
    font-weight: 600;
}

/* Legal Pages */
.legal-page {
    padding: 8rem 2rem 4rem;
    background: #ffffff;
}

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

.legal-container h1 {
    font-size: 3rem;
    font-weight: 800;
    color: #1a202c;
    margin-bottom: 1rem;
}

.legal-intro {
    font-size: 1rem;
    color: #718096;
    margin-bottom: 3rem;
}

.legal-content h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a202c;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.legal-content h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2d3748;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
}

.legal-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2d3748;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.legal-content p {
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 1rem;
}

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

.legal-content ul li {
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.legal-content strong {
    color: #2d3748;
}

.legal-content a {
    color: #667eea;
    text-decoration: underline;
}

.legal-footer {
    text-align: center;
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid #e2e8f0;
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
    .hero-split,
    .intro-split,
    .problem-split,
    .solution-split,
    .services-preview-split,
    .values-split,
    .story-split,
    .mission-split,
    .services-intro-split {
        flex-direction: column;
    }

    .reverse {
        flex-direction: column;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .split-content {
        padding: 3rem 2rem;
    }

    .booking-split {
        flex-direction: column;
        gap: 3rem;
    }

    .service-card-large,
    .service-card-large.reverse {
        flex-direction: column;
    }

    .service-card-image {
        flex: 0 0 300px;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: #ffffff;
        flex-direction: column;
        justify-content: flex-start;
        padding: 2rem;
        gap: 1.5rem;
        transition: left 0.3s ease;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    }

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

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-text {
        font-size: 1.1rem;
    }

    .page-hero-content h1 {
        font-size: 2.5rem;
    }

    .stats-grid {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }

    .testimonials-grid {
        flex-direction: column;
    }

    .process-grid {
        flex-direction: column;
    }

    .footer-grid {
        flex-direction: column;
        gap: 2rem;
    }

    .team-member {
        flex: 1 1 100%;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

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

    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
    }

    .sticky-cta-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .thanks-actions {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 14px;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .split-content h2 {
        font-size: 1.8rem;
    }

    .page-hero-content h1 {
        font-size: 2rem;
    }

    .service-card-content {
        padding: 2rem 1.5rem;
    }

    .booking-form {
        padding: 1.5rem;
    }
}
