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

html {
    scroll-behavior: smooth;
}

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

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

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

/* Navigation */
.navbar {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    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: #2c3e50;
    letter-spacing: -0.5px;
}

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

.nav-link {
    color: #555;
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #2c3e50;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #2c3e50;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

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

/* Hero Section - Split Screen */
.hero-split {
    display: flex;
    min-height: 90vh;
    align-items: center;
}

.hero-content {
    flex: 1;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #666;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.hero-visual {
    flex: 1;
    position: relative;
    overflow: hidden;
}

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

/* Buttons */
.cta-primary {
    display: inline-block;
    background: #2c3e50;
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    border: 2px solid #2c3e50;
}

.cta-primary:hover {
    background: transparent;
    color: #2c3e50;
    transform: translateY(-2px);
}

.cta-primary.large {
    padding: 1.25rem 3rem;
    font-size: 1.15rem;
}

.cta-secondary {
    display: inline-block;
    background: transparent;
    color: #2c3e50;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    font-weight: 600;
    border: 2px solid #2c3e50;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background: #2c3e50;
    color: white;
}

/* Split Layout System */
.split-layout {
    display: flex;
    align-items: center;
    gap: 4rem;
    padding: 5rem 4rem;
}

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

.split-text {
    flex: 1;
}

.split-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 700;
}

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

.split-image {
    flex: 1;
}

.split-image img {
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.12);
}

/* Containers */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.container-narrow {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Section Titles */
.section-title-center {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a1a1a;
    font-weight: 700;
}

/* Trust Section */
.trust-section {
    padding: 6rem 2rem;
    background: #f8f9fa;
}

.trust-cards {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
}

.trust-card {
    flex: 1;
    text-align: center;
    padding: 2rem;
}

.trust-icon {
    width: 60px;
    height: 60px;
    background: #2c3e50;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    font-weight: bold;
}

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

.trust-card p {
    color: #666;
    line-height: 1.7;
}

/* Services Preview */
.services-preview {
    background: white;
}

.service-item {
    margin-bottom: 2.5rem;
    padding: 2rem;
    border-left: 3px solid #2c3e50;
    background: #f8f9fa;
    border-radius: 8px;
}

.service-item h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.service-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.service-item p {
    color: #666;
}

/* Testimonial */
.testimonial-section {
    padding: 6rem 2rem;
    background: #2c3e50;
    color: white;
}

.testimonial {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial p {
    font-size: 1.4rem;
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.testimonial cite {
    font-style: normal;
    font-weight: 600;
    font-size: 1.1rem;
}

/* CTA Section */
.cta-section {
    background: white;
}

.highlight-text {
    font-weight: 600;
    color: #e74c3c;
    font-size: 1.15rem;
}

.split-form {
    flex: 1;
    background: #f8f9fa;
    padding: 3rem;
    border-radius: 12px;
}

/* Forms */
.main-form h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2c3e50;
}

.btn-submit {
    width: 100%;
    padding: 1.1rem;
    background: #2c3e50;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #1a252f;
    transform: translateY(-2px);
}

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

.process-steps {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
}

.step {
    flex: 1;
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #2c3e50;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
    font-weight: bold;
}

.step h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.step p {
    color: #666;
    line-height: 1.7;
}

/* Final CTA */
.final-cta {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.final-cta h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

.final-cta p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

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

/* Footer */
.footer {
    background: #1a252f;
    color: white;
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
}

.footer-col p {
    color: #b8c2cc;
    line-height: 1.7;
}

.footer-col ul {
    list-style: none;
}

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

.footer-col ul li a {
    color: #b8c2cc;
}

.footer-col ul li a:hover {
    color: white;
}

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: white;
    padding: 1.5rem;
    z-index: 10000;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
    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;
}

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

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

.btn-cookie {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-cookie.accept {
    background: white;
    color: #2c3e50;
}

.btn-cookie.accept:hover {
    background: #f0f0f0;
}

.btn-cookie.reject {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-cookie.reject:hover {
    background: rgba(255,255,255,0.1);
}

/* Page Header */
.page-header {
    padding: 6rem 2rem 4rem;
    text-align: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.subtitle {
    font-size: 1.3rem;
    color: #666;
}

/* About Page */
.about-intro {
    padding: 6rem 0;
}

.team-section {
    padding: 6rem 2rem;
    background: #f8f9fa;
}

.team-grid {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
}

.team-member {
    flex: 1;
    text-align: center;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.team-member img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1.5rem;
}

.team-member h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.role {
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-member p {
    color: #666;
    line-height: 1.7;
}

.values-section {
    padding: 6rem 2rem;
}

.values-list {
    margin-top: 3rem;
}

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

.value-item h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.value-item p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
}

.stats-section {
    padding: 6rem 2rem;
    background: #2c3e50;
    color: white;
}

.stats-grid {
    display: flex;
    gap: 4rem;
    justify-content: center;
}

.stat {
    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;
}

.cta-simple {
    padding: 6rem 2rem;
}

.cta-simple h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.cta-simple p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
}

/* Services Page */
.services-main {
    padding: 4rem 2rem;
}

.service-card {
    display: flex;
    gap: 3rem;
    margin-bottom: 4rem;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.service-card.featured {
    border: 3px solid #2c3e50;
}

.service-card-image {
    flex: 1;
}

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

.service-card-content {
    flex: 1;
    padding: 3rem;
    position: relative;
}

.service-badge {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: #e74c3c;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.service-card-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.price-tag {
    font-size: 1.8rem;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

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

.service-benefits {
    list-style: none;
    margin-bottom: 2rem;
}

.service-benefits li {
    padding: 0.7rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #555;
}

.service-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2c3e50;
    font-weight: bold;
}

.btn-service {
    display: inline-block;
    background: #2c3e50;
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-service:hover {
    background: #1a252f;
    transform: translateY(-2px);
}

.packages-section {
    padding: 6rem 2rem;
    background: #f8f9fa;
}

.packages-grid {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
}

.package-card {
    flex: 1;
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    text-align: center;
    position: relative;
}

.package-card.premium {
    border: 3px solid #2c3e50;
    transform: scale(1.05);
}

.badge-best {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #e74c3c;
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.package-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.package-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.original-price {
    font-size: 1.5rem;
    color: #999;
    text-decoration: line-through;
    font-weight: 400;
    margin-left: 0.5rem;
}

.package-includes {
    list-style: none;
    text-align: left;
    margin: 2rem 0;
}

.package-includes li {
    padding: 0.8rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #555;
}

.package-includes li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2c3e50;
    font-weight: bold;
}

.package-save {
    font-weight: 600;
    color: #27ae60;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.btn-package {
    display: block;
    width: 100%;
    padding: 1rem;
    background: #2c3e50;
    color: white;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-package:hover {
    background: #1a252f;
}

.faq-section {
    padding: 6rem 2rem;
}

.faq-list {
    margin-top: 3rem;
}

.faq-item {
    margin-bottom: 2.5rem;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 12px;
}

.faq-item h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.faq-item p {
    color: #666;
    line-height: 1.8;
}

/* Contact Page */
.contact-main {
    padding: 4rem 2rem;
}

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

.contact-info {
    flex: 1;
}

.intro-text {
    font-size: 1.15rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 3rem;
}

.info-block {
    margin-bottom: 2.5rem;
}

.info-block h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.info-block p {
    color: #666;
    line-height: 1.7;
}

.info-block a {
    color: #2c3e50;
    font-weight: 600;
}

.info-block a:hover {
    text-decoration: underline;
}

.note {
    font-size: 0.95rem;
    font-style: italic;
    color: #999;
    margin-top: 0.5rem;
}

.contact-visual {
    flex: 1;
}

.contact-visual img {
    border-radius: 12px;
    margin-bottom: 2rem;
}

.map-placeholder {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
}

.contact-cta {
    padding: 6rem 2rem;
    background: #f8f9fa;
}

/* Thanks Page */
.thanks-section {
    padding: 6rem 2rem;
    min-height: 70vh;
}

.thanks-icon {
    width: 100px;
    height: 100px;
    background: #27ae60;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 3rem;
}

.thanks-section h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.thanks-message {
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 3rem;
}

.thanks-details {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    margin: 3rem 0;
}

.thanks-details h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.next-steps {
    margin: 4rem 0;
}

.next-steps h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

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

.step-box {
    flex: 1;
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
}

.step-num {
    width: 50px;
    height: 50px;
    background: #2c3e50;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    font-weight: bold;
}

.step-box h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.step-box p {
    color: #666;
}

.thanks-cta {
    margin: 3rem 0;
}

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

.btn-secondary {
    display: inline-block;
    padding: 1rem 2rem;
    background: transparent;
    color: #2c3e50;
    border: 2px solid #2c3e50;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #2c3e50;
    color: white;
}

.btn-primary {
    display: inline-block;
    padding: 1rem 2rem;
    background: #2c3e50;
    color: white;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #1a252f;
}

.thanks-note {
    margin-top: 3rem;
    padding: 2rem;
    background: #fff3cd;
    border-radius: 12px;
    color: #856404;
}

.thanks-note p {
    margin-bottom: 1rem;
}

.thanks-note a {
    color: #856404;
    font-weight: 600;
    text-decoration: underline;
}

/* Legal Pages */
.legal-page {
    padding: 4rem 2rem 6rem;
}

.legal-page h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.last-updated {
    color: #999;
    font-style: italic;
    margin-bottom: 3rem;
}

.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.legal-content h3 {
    font-size: 1.4rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.legal-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
}

.legal-content ul {
    margin: 1.5rem 0 1.5rem 2rem;
}

.legal-content ul li {
    margin-bottom: 0.8rem;
    line-height: 1.7;
    color: #555;
}

.legal-content a {
    color: #2c3e50;
    font-weight: 600;
}

.legal-content a:hover {
    text-decoration: underline;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

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

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

/* Responsive */
@media (max-width: 1024px) {
    .split-layout {
        flex-direction: column;
        padding: 3rem 2rem;
    }

    .split-layout.reverse {
        flex-direction: column;
    }

    .hero-split {
        flex-direction: column;
        min-height: auto;
    }

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

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

    .trust-cards {
        flex-direction: column;
    }

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

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

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

    .service-card {
        flex-direction: column;
    }

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

    .package-card.premium {
        transform: scale(1);
    }

    .contact-split {
        flex-direction: column;
    }

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

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background: white;
        width: 100%;
        padding: 2rem;
        box-shadow: 0 4px 20px rgba(0,0,0,0.1);
        transition: left 0.3s ease;
        gap: 1.5rem;
    }

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

    .hamburger {
        display: flex;
    }

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

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

    .section-title-center {
        font-size: 2rem;
    }

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

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

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