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

:root {
    --color-primary: #1a365d;
    --color-primary-dark: #0f2440;
    --color-secondary: #e53e3e;
    --color-accent: #dd6b20;
    --color-text: #2d3748;
    --color-text-light: #718096;
    --color-bg: #ffffff;
    --color-bg-alt: #f7fafc;
    --color-bg-dark: #1a202c;
    --color-border: #e2e8f0;
    --font-main: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.15);
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --transition: 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text);
    background: var(--color-bg);
}

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

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--color-secondary);
}

h1, h2, h3, h4 {
    line-height: 1.2;
    font-weight: 700;
    color: var(--color-primary-dark);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 3vw, 1.5rem); }

.btn {
    display: inline-block;
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    border: 2px solid transparent;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
}

.btn-primary {
    background: var(--color-primary);
    color: #fff;
    border-color: var(--color-primary);
}

.btn-primary:hover {
    background: var(--color-primary-dark);
    border-color: var(--color-primary-dark);
    color: #fff;
}

.btn-secondary {
    background: var(--color-secondary);
    color: #fff;
    border-color: var(--color-secondary);
}

.btn-secondary:hover {
    background: #c53030;
    border-color: #c53030;
    color: #fff;
}

.btn-outline {
    background: transparent;
    color: var(--color-primary);
    border-color: var(--color-primary);
}

.btn-outline:hover {
    background: var(--color-primary);
    color: #fff;
}

.btn-light {
    background: #fff;
    color: var(--color-primary);
    border-color: #fff;
}

.btn-light:hover {
    background: var(--color-bg-alt);
    border-color: var(--color-bg-alt);
    color: var(--color-primary);
}

.btn-small {
    padding: 8px 16px;
    font-size: 0.875rem;
}

.btn-full {
    width: 100%;
}

.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: #fff;
    box-shadow: var(--shadow-sm);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
}

.logo:hover {
    color: var(--color-primary-dark);
}

.nav-desktop {
    display: none;
}

.nav-desktop .nav-link {
    margin-left: 32px;
    font-weight: 500;
    color: var(--color-text);
    position: relative;
}

.nav-desktop .nav-link:hover,
.nav-desktop .nav-link.active {
    color: var(--color-primary);
}

.nav-desktop .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--color-primary);
}

.nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.nav-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--color-primary);
    transition: var(--transition);
}

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

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

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

.nav-mobile {
    display: none;
    flex-direction: column;
    padding: 0 24px 24px;
    background: #fff;
}

.nav-mobile.active {
    display: flex;
}

.nav-mobile .nav-link {
    padding: 12px 0;
    border-bottom: 1px solid var(--color-border);
    font-weight: 500;
}

.nav-mobile .nav-link.active {
    color: var(--color-primary);
}

@media (min-width: 768px) {
    .nav-desktop {
        display: flex;
        align-items: center;
    }

    .nav-toggle {
        display: none;
    }

    .nav-mobile {
        display: none !important;
    }
}

.split-section {
    display: flex;
    flex-direction: column;
}

.split-content {
    padding: 48px 24px;
}

.split-image {
    min-height: 300px;
    position: relative;
    overflow: hidden;
}

.split-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

@media (min-width: 992px) {
    .split-section {
        flex-direction: row;
        align-items: stretch;
    }

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

    .split-content,
    .split-image {
        width: 50%;
    }

    .split-content {
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 80px 60px;
    }

    .split-image {
        min-height: 500px;
    }
}

.hero {
    background: var(--color-bg-alt);
}

.hero h1 {
    margin-bottom: 24px;
}

.hero-text {
    font-size: 1.125rem;
    color: var(--color-text-light);
    margin-bottom: 32px;
    max-width: 500px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.badge {
    display: inline-block;
    padding: 6px 16px;
    background: var(--color-primary);
    color: #fff;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 20px;
    margin-bottom: 16px;
}

.section-tag {
    display: inline-block;
    color: var(--color-secondary);
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.trust-bar {
    background: var(--color-primary);
    padding: 32px 24px;
}

.trust-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.trust-item {
    text-align: center;
    padding: 16px 24px;
}

.trust-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}

.trust-label {
    display: block;
    color: rgba(255,255,255,0.8);
    font-size: 0.875rem;
    margin-top: 8px;
}

@media (min-width: 768px) {
    .trust-item {
        flex: 1;
        min-width: 150px;
    }
}

.intro-section {
    padding: 80px 24px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.intro-content h2 {
    margin-bottom: 24px;
}

.intro-content p {
    font-size: 1.125rem;
    color: var(--color-text-light);
}

.services-preview .feature-list {
    list-style: none;
    margin: 24px 0;
}

.services-preview .feature-list li {
    padding: 8px 0 8px 28px;
    position: relative;
}

.services-preview .feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-secondary);
    font-weight: bold;
}

.price-tag {
    display: inline-block;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: 24px;
}

.services-grid {
    padding: 80px 24px;
    background: var(--color-bg-alt);
}

.services-grid-header {
    text-align: center;
    margin-bottom: 48px;
}

.services-grid-header p {
    color: var(--color-text-light);
    margin-top: 12px;
}

.services-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
    justify-content: center;
}

.service-card {
    background: #fff;
    padding: 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    flex: 1;
    min-width: 260px;
    max-width: 280px;
    transition: transform var(--transition), box-shadow var(--transition);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    width: 56px;
    height: 56px;
    color: var(--color-primary);
    margin-bottom: 20px;
}

.service-icon svg {
    width: 100%;
    height: 100%;
}

.service-card h3 {
    margin-bottom: 12px;
}

.service-card p {
    color: var(--color-text-light);
    font-size: 0.95rem;
    margin-bottom: 16px;
}

.service-price {
    display: block;
    font-weight: 700;
    color: var(--color-secondary);
}

.services-cta {
    text-align: center;
    margin-top: 48px;
}

.process-section {
    padding: 80px 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.process-header {
    text-align: center;
    margin-bottom: 48px;
}

.process-header p {
    color: var(--color-text-light);
    margin-top: 12px;
}

.process-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
}

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

.step-num {
    display: inline-block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-primary);
    opacity: 0.2;
    line-height: 1;
    margin-bottom: 16px;
}

.process-step h3 {
    margin-bottom: 12px;
}

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

.testimonials-section {
    padding: 80px 24px;
    background: var(--color-bg-alt);
}

.testimonials-section h2 {
    text-align: center;
    margin-bottom: 48px;
}

.testimonials-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
    justify-content: center;
}

.testimonial {
    background: #fff;
    padding: 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    flex: 1;
    min-width: 280px;
    max-width: 360px;
}

.testimonial-text {
    font-style: italic;
    color: var(--color-text);
    margin-bottom: 20px;
    line-height: 1.7;
}

.testimonial-author strong {
    display: block;
    color: var(--color-primary-dark);
}

.testimonial-author span {
    font-size: 0.875rem;
    color: var(--color-text-light);
}

.calculator-section {
    background: var(--color-bg-alt);
}

.calculator-section .split-content {
    background: #fff;
}

.calculator-section h2 {
    margin-bottom: 16px;
}

.calculator-section > .split-content > p {
    color: var(--color-text-light);
    margin-bottom: 32px;
}

.quote-form {
    max-width: 400px;
}

.form-group {
    margin-bottom: 20px;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    font-size: 1rem;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    font-family: inherit;
    transition: border-color var(--transition);
}

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

.form-group textarea {
    resize: vertical;
}

.cta-banner {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    padding: 80px 24px;
    text-align: center;
}

.cta-banner-inner {
    max-width: 600px;
    margin: 0 auto;
}

.cta-banner h2 {
    color: #fff;
    margin-bottom: 16px;
}

.cta-banner p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 32px;
    font-size: 1.125rem;
}

.footer {
    background: var(--color-bg-dark);
    color: rgba(255,255,255,0.8);
    padding-top: 60px;
}

.footer-main {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px 40px;
}

.footer-brand {
    flex: 2;
    min-width: 200px;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
}

.footer-brand p {
    margin-top: 16px;
    font-size: 0.95rem;
}

.footer-links,
.footer-contact {
    flex: 1;
    min-width: 150px;
}

.footer-links h4,
.footer-contact h4 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 1rem;
}

.footer-links a {
    display: block;
    color: rgba(255,255,255,0.7);
    padding: 6px 0;
    font-size: 0.95rem;
}

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

.footer-contact p {
    font-size: 0.95rem;
    margin-bottom: 8px;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-bg-dark);
    padding: 20px 24px;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform var(--transition);
}

.cookie-banner.active {
    transform: translateY(0);
}

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

.cookie-content p {
    color: rgba(255,255,255,0.9);
    font-size: 0.95rem;
    flex: 1;
    min-width: 200px;
}

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

.cookie-actions {
    display: flex;
    gap: 12px;
}

.sticky-cta {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: var(--color-secondary);
    color: #fff;
    padding: 14px 24px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: var(--shadow-lg);
    z-index: 90;
    transition: all var(--transition);
}

.sticky-cta:hover {
    background: #c53030;
    color: #fff;
    transform: scale(1.05);
}

.page-hero {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    padding: 100px 24px 60px;
    text-align: center;
}

.page-hero-content h1 {
    color: #fff;
    margin-bottom: 16px;
}

.page-hero-content p {
    color: rgba(255,255,255,0.9);
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto;
}

.page-hero-small {
    padding: 80px 24px 40px;
}

.page-hero-about {
    background: linear-gradient(135deg, var(--color-primary-dark) 0%, #234876 100%);
}

.services-detail {
    padding: 40px 0;
}

.service-detail-item {
    border-bottom: 1px solid var(--color-border);
}

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

.service-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin: 24px 0;
    padding: 20px;
    background: var(--color-bg-alt);
    border-radius: var(--radius-md);
}

.spec-item {
    flex: 1;
    min-width: 120px;
}

.spec-label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--color-text-light);
    margin-bottom: 4px;
}

.spec-value {
    font-weight: 600;
    color: var(--color-primary-dark);
}

.price-table {
    margin: 24px 0;
}

.price-table h4 {
    margin-bottom: 16px;
    font-size: 1rem;
}

.price-table table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
}

.price-table th,
.price-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid var(--color-border);
}

.price-table th {
    background: var(--color-bg-alt);
    font-weight: 600;
    color: var(--color-primary-dark);
}

.price-table tr:hover {
    background: var(--color-bg-alt);
}

.cta-section {
    padding: 80px 24px;
    background: var(--color-primary);
    text-align: center;
}

.cta-section.cta-alt {
    background: var(--color-bg-alt);
}

.cta-section.cta-alt h2 {
    color: var(--color-primary-dark);
}

.cta-section.cta-alt p {
    color: var(--color-text-light);
}

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

.cta-content h2 {
    color: #fff;
    margin-bottom: 16px;
}

.cta-content p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 32px;
}

.values-section {
    padding: 80px 24px;
    background: var(--color-bg-alt);
}

.values-header {
    text-align: center;
    margin-bottom: 48px;
}

.values-header p {
    color: var(--color-text-light);
    margin-top: 12px;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
    justify-content: center;
}

.value-item {
    flex: 1;
    min-width: 220px;
    max-width: 240px;
    text-align: center;
}

.value-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    color: var(--color-primary);
}

.value-icon svg {
    width: 100%;
    height: 100%;
}

.value-item h3 {
    margin-bottom: 12px;
}

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

.story-section {
    padding: 80px 24px;
    max-width: 800px;
    margin: 0 auto;
}

.story-content h2 {
    margin: 12px 0 24px;
}

.story-content p {
    margin-bottom: 16px;
    color: var(--color-text);
}

.team-list {
    list-style: none;
    margin-top: 24px;
}

.team-list li {
    padding: 8px 0;
    border-bottom: 1px solid var(--color-border);
}

.equipment-section {
    padding: 80px 24px;
    background: var(--color-bg-alt);
}

.equipment-header {
    text-align: center;
    margin-bottom: 48px;
}

.equipment-header p {
    color: var(--color-text-light);
    margin-top: 12px;
}

.equipment-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
    justify-content: center;
}

.equipment-item {
    flex: 1;
    min-width: 220px;
    max-width: 240px;
    background: #fff;
    padding: 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.equipment-item h3 {
    margin-bottom: 12px;
    font-size: 1.1rem;
}

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

.contact-main {
    padding-bottom: 0;
}

.contact-info-block {
    margin-bottom: 40px;
}

.contact-info-block h2 {
    margin-bottom: 24px;
    font-size: 1.5rem;
}

.contact-detail {
    margin-bottom: 24px;
}

.contact-detail h3 {
    font-size: 1rem;
    margin-bottom: 8px;
    color: var(--color-text-light);
    font-weight: 600;
}

.contact-detail p {
    color: var(--color-text);
}

.contact-detail a {
    color: var(--color-primary);
}

.hours-table {
    width: 100%;
    border-collapse: collapse;
}

.hours-table td {
    padding: 8px 0;
    border-bottom: 1px solid var(--color-border);
}

.hours-table td:last-child {
    text-align: right;
    font-weight: 600;
}

.contact-map {
    background: var(--color-bg-alt);
}

.map-placeholder {
    position: relative;
    height: 100%;
    min-height: 300px;
}

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

.map-overlay {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: #fff;
    padding: 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

.map-overlay p {
    margin: 4px 0;
    font-size: 0.95rem;
}

.map-overlay p:first-child {
    font-weight: 600;
}

.contact-transport {
    padding: 80px 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-transport h2 {
    text-align: center;
    margin-bottom: 48px;
}

.transport-options {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
}

.transport-item {
    flex: 1;
    min-width: 220px;
    max-width: 280px;
}

.transport-item h3 {
    margin-bottom: 12px;
    font-size: 1.1rem;
}

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

.contact-note {
    padding: 60px 24px;
    background: var(--color-bg-alt);
}

.note-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.note-content h2 {
    margin-bottom: 16px;
    font-size: 1.5rem;
}

.note-content p {
    color: var(--color-text-light);
}

.thanks-section {
    padding: 100px 24px;
    text-align: center;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.thanks-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 32px;
    color: #38a169;
}

.thanks-icon svg {
    width: 100%;
    height: 100%;
}

.thanks-content h1 {
    margin-bottom: 16px;
}

.thanks-service {
    font-size: 1.125rem;
    margin-bottom: 16px;
}

.thanks-content > p {
    color: var(--color-text-light);
}

.thanks-info {
    margin: 40px 0;
    padding: 24px;
    background: var(--color-bg-alt);
    border-radius: var(--radius-md);
    text-align: left;
}

.thanks-info h3 {
    margin-bottom: 16px;
    font-size: 1.1rem;
}

.thanks-info ol {
    margin-left: 20px;
}

.thanks-info li {
    padding: 8px 0;
    color: var(--color-text);
}

.thanks-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

.legal-content {
    padding: 60px 24px;
}

.legal-inner {
    max-width: 800px;
    margin: 0 auto;
}

.legal-updated {
    color: var(--color-text-light);
    font-size: 0.875rem;
    margin-bottom: 32px;
}

.legal-inner h2 {
    margin: 40px 0 16px;
    font-size: 1.3rem;
}

.legal-inner h3 {
    margin: 24px 0 12px;
    font-size: 1.1rem;
}

.legal-inner p {
    margin-bottom: 16px;
    color: var(--color-text);
}

.legal-inner ul {
    margin: 16px 0 16px 24px;
}

.legal-inner li {
    margin-bottom: 8px;
}

.legal-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    font-size: 0.95rem;
}

.legal-table th,
.legal-table td {
    padding: 12px;
    text-align: left;
    border: 1px solid var(--color-border);
}

.legal-table th {
    background: var(--color-bg-alt);
    font-weight: 600;
}

@media (max-width: 767px) {
    .sticky-cta {
        bottom: 80px;
    }

    .cookie-banner.active ~ .sticky-cta {
        bottom: 140px;
    }

    .price-table {
        overflow-x: auto;
    }

    .price-table table {
        min-width: 400px;
    }
}
