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

:root {
    --primary: #1a4d7a;
    --secondary: #2c6ba0;
    --accent: #e8a547;
    --dark: #1a1a1a;
    --light: #f8f9fa;
    --border: #e0e0e0;
    --text: #333333;
    --text-light: #666666;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    object-fit: cover;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Header & Navigation */
header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

nav a {
    font-weight: 500;
    transition: opacity 0.3s;
    padding: 0.5rem 1rem;
}

nav a:hover {
    opacity: 0.8;
}

.ad-notice {
    font-size: 0.75rem;
    opacity: 0.85;
    padding: 0.3rem 0.8rem;
    background: rgba(255,255,255,0.15);
    border-radius: 4px;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Split-Screen Hero */
.hero-split {
    display: flex;
    min-height: 85vh;
}

.hero-left,
.hero-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-left {
    background: var(--light);
    padding: 4rem;
}

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

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--dark);
}

.hero-content p {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.cta-primary {
    display: inline-block;
    background: var(--accent);
    color: white;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 6px;
    transition: transform 0.3s, box-shadow 0.3s;
    border: none;
    cursor: pointer;
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(232,165,71,0.3);
}

.hero-right {
    position: relative;
    background-color: #3a5a7a;
}

.hero-image {
    width: 100%;
    height: 100%;
}

/* Split Sections */
.split-section {
    display: flex;
    min-height: 70vh;
}

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

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

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

.split-content h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: var(--dark);
}

.split-content p {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.split-image-container {
    position: relative;
    background-color: #4a6a8a;
}

.split-image {
    width: 100%;
    height: 100%;
}

/* Services Grid */
.services-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 6rem 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-light);
}

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

.service-card {
    flex: 1 1 calc(50% - 1rem);
    display: flex;
    background: white;
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.service-image-wrap {
    flex: 0 0 200px;
    background-color: #5a7a9a;
}

.service-image {
    width: 100%;
    height: 100%;
}

.service-content {
    flex: 1;
    padding: 2rem;
}

.service-content h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.service-content p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 1rem;
}

.service-select-btn {
    background: var(--primary);
    color: white;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.service-select-btn:hover {
    background: var(--secondary);
}

.service-select-btn.selected {
    background: var(--accent);
}

/* Form Section */
.form-split {
    display: flex;
    background: var(--light);
}

.form-left {
    flex: 1;
    padding: 5rem 4rem;
}

.form-right {
    flex: 1;
    position: relative;
    background-color: #2a4a6a;
}

.form-right img {
    width: 100%;
    height: 100%;
}

.contact-form {
    max-width: 500px;
}

.contact-form h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.contact-form p {
    color: var(--text-light);
    margin-bottom: 2rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--dark);
}

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

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
}

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

.selected-service-display {
    background: #e3f2fd;
    padding: 1rem;
    border-radius: 5px;
    margin-bottom: 1.5rem;
    border-left: 4px solid var(--primary);
}

.selected-service-display p {
    margin: 0;
    color: var(--dark);
}

.submit-btn {
    background: var(--accent);
    color: white;
    border: none;
    padding: 1rem 3rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(232,165,71,0.3);
}

/* About Page */
.about-hero {
    display: flex;
    min-height: 60vh;
    background: var(--primary);
}

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

.about-hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.about-hero-image {
    flex: 1;
    background-color: #2a4a6a;
}

.about-hero-image img {
    width: 100%;
    height: 100%;
}

.about-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 6rem 2rem;
}

.about-split {
    display: flex;
    gap: 4rem;
    margin-bottom: 4rem;
}

.about-text {
    flex: 1.5;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--dark);
}

.about-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.about-sidebar {
    flex: 1;
    background: var(--light);
    padding: 3rem;
    border-radius: 8px;
    height: fit-content;
}

.about-sidebar h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.about-sidebar ul {
    list-style: none;
}

.about-sidebar li {
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--border);
    color: var(--text-light);
}

.about-sidebar li:last-child {
    border-bottom: none;
}

/* Contact Page */
.contact-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 6rem 2rem;
}

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

.contact-info {
    flex: 1;
}

.contact-info h1 {
    font-size: 3rem;
    margin-bottom: 2rem;
    color: var(--dark);
}

.contact-item {
    margin-bottom: 2rem;
}

.contact-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.contact-item p {
    font-size: 1.1rem;
    color: var(--text);
}

.contact-map {
    flex: 1;
    background-color: #e0e0e0;
    border-radius: 8px;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
}

/* Legal Pages */
.legal-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 6rem 2rem;
}

.legal-container h1 {
    font-size: 3rem;
    margin-bottom: 2rem;
    color: var(--dark);
}

.legal-container h2 {
    font-size: 2rem;
    margin-top: 3rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.legal-container h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
    color: var(--dark);
}

.legal-container p {
    margin-bottom: 1.5rem;
    color: var(--text);
    font-size: 1.05rem;
}

.legal-container ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.legal-container li {
    margin-bottom: 0.5rem;
    color: var(--text);
}

/* Thanks Page */
.thanks-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 8rem 2rem;
    text-align: center;
}

.thanks-container h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.thanks-container p {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.checkmark {
    width: 80px;
    height: 80px;
    background: var(--accent);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    color: white;
    font-size: 3rem;
}

/* Footer */
footer {
    background: var(--dark);
    color: white;
    padding: 4rem 2rem 2rem;
}

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

.footer-section {
    flex: 1;
    min-width: 250px;
}

.footer-section h3 {
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

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

.footer-section li {
    margin-bottom: 0.8rem;
}

.footer-section a {
    color: rgba(255,255,255,0.7);
    transition: color 0.3s;
}

.footer-section a:hover {
    color: white;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    color: rgba(255,255,255,0.5);
}

.disclaimer {
    background: #f0f0f0;
    padding: 3rem 2rem;
    margin: 4rem 0;
    border-left: 4px solid var(--accent);
}

.disclaimer h3 {
    color: var(--dark);
    margin-bottom: 1rem;
}

.disclaimer p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
    padding: 2rem;
    z-index: 1000;
    display: none;
}

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

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

.cookie-text {
    flex: 1;
}

.cookie-text p {
    color: var(--text);
    margin-bottom: 0.5rem;
}

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

.cookie-accept,
.cookie-reject {
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s;
}

.cookie-accept {
    background: var(--primary);
    color: white;
}

.cookie-reject {
    background: var(--border);
    color: var(--text);
}

.cookie-accept:hover,
.cookie-reject:hover {
    opacity: 0.8;
}

/* Responsive */
@media (max-width: 968px) {
    .mobile-menu-toggle {
        display: block;
    }

    nav {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--primary);
        flex-direction: column;
        padding: 2rem;
        display: none;
    }

    nav.active {
        display: flex;
    }

    .hero-split,
    .split-section,
    .form-split,
    .about-hero,
    .about-split,
    .contact-split {
        flex-direction: column;
    }

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

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

    .service-image-wrap {
        flex: 0 0 250px;
    }

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

    .cookie-content {
        flex-direction: column;
    }

    .footer-content {
        flex-direction: column;
    }
}

@media (max-width: 600px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .services-wrapper,
    .about-content,
    .contact-wrapper {
        padding: 3rem 1rem;
    }
}
