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

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

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

/* Navigation */
.main-nav {
    background: #fff;
    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: #1a73e8;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-links a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    color: #1a73e8;
}

.nav-cta {
    background: #1a73e8;
    color: #fff;
    padding: 0.7rem 1.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s;
    border: none;
    cursor: pointer;
}

.nav-cta:hover {
    background: #1557b0;
}

/* Hero Split Section */
.hero-split {
    display: flex;
    min-height: 85vh;
    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.2;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.hero-text {
    font-size: 1.3rem;
    color: #555;
    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;
}

/* Trust Bar */
.trust-bar {
    display: flex;
    justify-content: space-around;
    padding: 3rem 2rem;
    background: #f8f9fa;
}

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

.trust-number {
    font-size: 3rem;
    font-weight: 700;
    color: #1a73e8;
}

.trust-label {
    font-size: 1rem;
    color: #666;
    margin-top: 0.5rem;
}

/* Split Sections */
.split-standard,
.split-reverse {
    display: flex;
    min-height: 600px;
}

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

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

.split-content h2 {
    font-size: 2.5rem;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.split-content p {
    font-size: 1.15rem;
    color: #555;
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

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

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

/* Link CTA */
.link-cta {
    color: #1a73e8;
    font-weight: 600;
    text-decoration: none;
    font-size: 1.1rem;
    margin-top: 1rem;
    display: inline-block;
    transition: transform 0.3s;
}

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

/* Services Preview */
.services-preview {
    padding: 5rem 2rem;
    background: #fff;
}

.section-title {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto 3rem;
}

.service-card {
    flex: 1 1 calc(25% - 2rem);
    min-width: 280px;
    background: #f8f9fa;
    padding: 2.5rem 2rem;
    border-radius: 12px;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

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

.service-card p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.price-tag {
    display: inline-block;
    background: #1a73e8;
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-weight: 600;
}

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

/* Buttons */
.cta-primary,
.btn-primary {
    background: #1a73e8;
    color: #fff;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: background 0.3s, transform 0.2s;
}

.cta-primary:hover,
.btn-primary:hover {
    background: #1557b0;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: #1a73e8;
    padding: 1rem 2.5rem;
    border: 2px solid #1a73e8;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: #1a73e8;
    color: #fff;
}

.btn-outline {
    background: transparent;
    color: #2c3e50;
    padding: 1rem 2rem;
    border: 2px solid #2c3e50;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-outline:hover {
    background: #2c3e50;
    color: #fff;
}

/* Testimonials */
.testimonials {
    padding: 5rem 2rem;
    background: #f8f9fa;
}

.testimonials h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.testimonials-row {
    display: flex;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    flex: 1;
    background: #fff;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

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

.testimonial-author {
    color: #666;
    font-weight: 600;
}

/* Form Section */
.form-section {
    padding: 5rem 2rem;
    background: #fff;
}

.form-container-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    gap: 4rem;
}

.form-intro {
    flex: 1;
    padding-right: 2rem;
}

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

.form-intro p {
    font-size: 1.15rem;
    color: #555;
    line-height: 1.8;
}

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

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

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

.btn-submit {
    width: 100%;
    background: #1a73e8;
    color: #fff;
    padding: 1rem;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-submit:hover {
    background: #1557b0;
}

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

.final-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.final-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.final-cta .btn-primary {
    background: #fff;
    color: #667eea;
}

.final-cta .btn-primary:hover {
    background: #f0f0f0;
}

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

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

.footer-col {
    flex: 1;
}

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

.footer-col p {
    color: #aaa;
    line-height: 1.8;
}

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

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

.footer-col a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s;
}

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

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: #fff;
    padding: 1.5rem;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
    display: none;
}

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

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

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

.cookie-content a {
    color: #64b5f6;
    text-decoration: underline;
}

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

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

.btn-accept {
    background: #4caf50;
    color: #fff;
}

.btn-accept:hover {
    background: #45a049;
}

.btn-reject {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-reject:hover {
    background: #fff;
    color: #2c3e50;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: #1a73e8;
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 50px;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(26, 115, 232, 0.4);
    transition: all 0.3s;
    z-index: 999;
}

.sticky-cta:hover {
    background: #1557b0;
    transform: scale(1.05);
}

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

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

.page-hero-content p {
    font-size: 1.3rem;
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto;
}

/* About Page Specific */
.about-intro {
    background: #f8f9fa;
}

.values-section {
    padding: 5rem 2rem;
    background: #fff;
}

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

.values-grid {
    display: flex;
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.value-card {
    flex: 1;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 12px;
    border-left: 4px solid #1a73e8;
}

.value-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #1a73e8;
}

.value-card p {
    color: #555;
    line-height: 1.7;
}

.team-section {
    background: #f8f9fa;
}

.timeline-section {
    padding: 5rem 2rem;
    background: #fff;
}

.timeline-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
}

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

.timeline-item {
    display: flex;
    gap: 2rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 12px;
    border-left: 4px solid #1a73e8;
}

.timeline-year {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a73e8;
    min-width: 80px;
}

.timeline-item p {
    color: #555;
    line-height: 1.7;
}

.cta-about {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    text-align: center;
}

.cta-about h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-about p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-about .btn-primary {
    background: #fff;
    color: #667eea;
}

.cta-about .btn-primary:hover {
    background: #f0f0f0;
}

/* Services Page */
.services-hero {
    background: linear-gradient(135deg, #1a73e8 0%, #1557b0 100%);
}

.services-intro-split {
    display: flex;
    padding: 5rem 2rem;
    background: #f8f9fa;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

.services-list {
    padding: 5rem 2rem;
    background: #fff;
    max-width: 1200px;
    margin: 0 auto;
}

.service-detail-card {
    background: #f8f9fa;
    padding: 2.5rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    border-left: 5px solid #1a73e8;
}

.service-detail-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.service-detail-header h3 {
    font-size: 1.8rem;
    color: #1a1a1a;
}

.service-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a73e8;
}

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

.service-includes {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.service-includes li {
    padding-left: 1.5rem;
    position: relative;
    color: #666;
}

.service-includes li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4caf50;
    font-weight: 700;
}

.pricing-note {
    padding: 3rem 2rem;
    background: #fff3cd;
    margin: 3rem 0;
}

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

.note-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #856404;
}

.note-content p {
    color: #856404;
    line-height: 1.8;
    margin-bottom: 0.8rem;
}

.cta-services {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    text-align: center;
}

.cta-services h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-services p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-services .btn-primary {
    background: #fff;
    color: #667eea;
}

.cta-services .btn-primary:hover {
    background: #f0f0f0;
}

/* Contact Page */
.contact-hero {
    background: linear-gradient(135deg, #1a73e8 0%, #1557b0 100%);
}

.contact-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    padding: 5rem 2rem;
    gap: 4rem;
}

.contact-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

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

.contact-block p {
    color: #555;
    line-height: 1.8;
}

.contact-block a {
    color: #1a73e8;
    text-decoration: none;
}

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

.contact-map {
    flex: 1;
}

.map-placeholder {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 100%;
    min-height: 400px;
}

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

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

.map-overlay p {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
}

.contact-directions {
    padding: 5rem 2rem;
    background: #f8f9fa;
}

.contact-directions h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.directions-grid {
    display: flex;
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.direction-card {
    flex: 1;
    background: #fff;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

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

.direction-card p {
    color: #555;
    line-height: 1.8;
}

.contact-cta {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    text-align: center;
}

.contact-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.contact-cta .btn-primary {
    background: #fff;
    color: #667eea;
}

.contact-cta .btn-primary:hover {
    background: #f0f0f0;
}

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

.thanks-container {
    max-width: 700px;
    text-align: center;
}

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

.thanks-container h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.thanks-text {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.thanks-service {
    font-size: 1.1rem;
    color: #1a73e8;
    font-weight: 600;
    margin-bottom: 2.5rem;
}

.thanks-next {
    background: #f8f9fa;
    padding: 2.5rem;
    border-radius: 12px;
    margin: 2.5rem 0;
}

.thanks-next h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.thanks-steps {
    text-align: left;
    padding-left: 1.5rem;
}

.thanks-steps li {
    margin-bottom: 0.8rem;
    color: #555;
    line-height: 1.7;
}

.thanks-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 2.5rem;
}

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

.thanks-contact a {
    color: #1a73e8;
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
}

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

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

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

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

.legal-date {
    color: #777;
    font-style: italic;
    margin-bottom: 3rem;
}

.legal-container h2 {
    font-size: 1.8rem;
    margin: 2.5rem 0 1rem;
    color: #1a1a1a;
}

.legal-container h3 {
    font-size: 1.4rem;
    margin: 2rem 0 1rem;
    color: #2c3e50;
}

.legal-container p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 1rem;
}

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

.legal-container ul li {
    color: #555;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.legal-container a {
    color: #1a73e8;
    text-decoration: none;
}

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

.legal-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

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

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

.legal-table td {
    color: #555;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-split,
    .split-standard,
    .split-reverse {
        flex-direction: column;
    }

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

    .services-grid {
        gap: 1.5rem;
    }

    .service-card {
        flex: 1 1 calc(50% - 1.5rem);
    }

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

    .form-container-split,
    .contact-split,
    .services-intro-split {
        flex-direction: column;
    }

    .values-grid,
    .directions-grid {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

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

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

    .trust-bar {
        flex-direction: column;
        gap: 2rem;
    }

    .service-card {
        flex: 1 1 100%;
    }

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

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

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

    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
        font-size: 0.9rem;
        padding: 0.8rem 1.5rem;
    }

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

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

    .page-hero-content p {
        font-size: 1.1rem;
    }

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