/* Pure Vista Cleaning Ltd - Main Stylesheet */

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

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1e293b;
    background-color: #ffffff;
    font-display: swap;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
    color: #475569;
}

a {
    color: #2563eb;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #1d4ed8;
}

/* Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.main {
    min-height: calc(100vh - 200px);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 500;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
    text-decoration: none;
    font-size: 1rem;
}

.btn-primary {
    background-color: #2563eb;
    color: white;
    border-color: #2563eb;
}

.btn-primary:hover {
    background-color: #1d4ed8;
    border-color: #1d4ed8;
    color: white;
}

.btn-outline {
    background-color: transparent;
    color: #2563eb;
    border-color: #2563eb;
}

.btn-outline:hover {
    background-color: #2563eb;
    color: white;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-block {
    width: 100%;
    display: block;
}

/* Header & Navigation */
.header {
    background-color: #ffffff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.logo {
    display: flex;
    flex-direction: column;
    text-decoration: none;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2563eb;
    line-height: 1;
}

.logo-sub {
    font-size: 0.875rem;
    color: #64748b;
    line-height: 1;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1002;
    position: relative;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: #1e293b;
    margin: 3px 0;
    transition: 0.3s;
}

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

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
}

.nav-link {
    color: #1e293b;
    font-weight: 500;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #2563eb;
}

.nav-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 0.5rem;
    padding: 0.5rem 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    list-style: none;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.5rem 1rem;
    color: #1e293b;
    transition: background-color 0.3s ease;
}

.dropdown-menu a:hover {
    background-color: #f1f5f9;
    color: #2563eb;
}

.nav-cta {
    display: flex;
    gap: 1rem;
}

/* Mobile CTA Bar */
.mobile-cta-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    border-top: 1px solid #e2e8f0;
    z-index: 50;
}

.mobile-cta-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.mobile-cta-call {
    color: #2563eb;
    border-right: 1px solid #e2e8f0;
}

.mobile-cta-call:hover {
    background-color: #f1f5f9;
}

.mobile-cta-quote {
    color: #ffffff;
    background-color: #2563eb;
}

.mobile-cta-quote:hover {
    background-color: #1d4ed8;
}

/* Hero Section */
.hero {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-badge {
    display: inline-block;
    background-color: #dbeafe;
    color: #1e40af;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.hero-description {
    font-size: 1.25rem;
    color: #64748b;
    margin-bottom: 2rem;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.hero-trust {
    display: flex;
    gap: 2rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #64748b;
    font-size: 0.875rem;
}

.trust-item svg {
    color: #10b981;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 1rem;
}

/* Services Preview */
.services-preview {
    padding: 4rem 0;
}

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

.section-header h2 {
    font-size: 2.5rem;
    color: #1e293b;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.125rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.service-card {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

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

.service-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background-color: #dbeafe;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
}

.service-icon svg {
    color: #2563eb;
}

.service-card h3 {
    margin-bottom: 1rem;
}

.service-card h3 a {
    color: #1e293b;
    text-decoration: none;
}

.service-card h3 a:hover {
    color: #2563eb;
}

.service-card p {
    margin-bottom: 1.5rem;
}

.service-link {
    color: #2563eb;
    font-weight: 500;
    text-decoration: none;
}

.service-link:hover {
    text-decoration: underline;
}

.services-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* Service Areas */
.service-areas {
    padding: 4rem 0;
    background-color: #f8fafc;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.service-areas .area-item {
    background-color: #ffffff !important;
    padding: 1rem;
    border-radius: 0.5rem;
    text-align: center;
    font-weight: 500;
    color: #1e293b !important;
    border: 1px solid #e2e8f0;
}

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

.areas-cta p {
    margin-bottom: 1.5rem;
    font-style: italic;
    color: #ffffff !important;
}

.service-areas .btn-outline {
    background-color: white;
    color: #2563eb;
    border-color: white;
}

.service-areas .btn-outline:hover {
    background-color: #f1f5f9;
    color: #1d4ed8;
    border-color: #f1f5f9;
}

/* Testimonials */
.testimonials {
    padding: 4rem 0;
}

.testimonials-note {
    color: #dc2626;
    font-size: 0.875rem;
    margin-top: 0.5rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial {
    background-color: #f8fafc;
    padding: 2rem;
    border-radius: 1rem;
    border-left: 4px solid #2563eb;
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: #1e293b;
}

.testimonial-author strong {
    color: #1e293b;
    display: block;
}

.testimonial-author span {
    color: #64748b;
    font-size: 0.875rem;
}

/* CTA Section */
.cta-section {
    padding: 4rem 0;
    background-color: #2563eb;
    color: white;
    text-align: center;
}

.cta-content h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta-content p {
    color: #dbeafe;
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.cta-section .btn-primary {
    background-color: white;
    color: #2563eb;
    border-color: white;
}

.cta-section .btn-primary:hover {
    background-color: #f1f5f9;
    color: #1d4ed8;
    border-color: #f1f5f9;
}

.cta-section .btn-outline {
    background-color: transparent;
    color: white;
    border-color: white;
}

.cta-section .btn-outline:hover {
    background-color: white;
    color: #2563eb;
    border-color: white;
}

/* Service Pages */
.service-hero {
    padding: 3rem 0;
    background-color: #f8fafc;
}

.service-hero-content {
    text-align: center;
}

.breadcrumb {
    margin-bottom: 1rem;
    color: #64748b;
}

.breadcrumb a {
    color: #2563eb;
}

.service-subtitle {
    font-size: 1.25rem;
    color: #64748b;
    margin-bottom: 2rem;
}

.service-cta-top {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.service-overview {
    padding: 4rem 0;
}

.service-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.service-main {
    max-width: none;
}

.service-intro {
    margin-bottom: 3rem;
}

.service-features {
    margin-bottom: 3rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

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

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: #dbeafe;
    border-radius: 50%;
    margin: 0 auto 1rem;
}

.feature-icon svg {
    color: #2563eb;
}

.service-process {
    margin-bottom: 3rem;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

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

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: #2563eb;
    color: white;
    border-radius: 50%;
    font-weight: 700;
    font-size: 1.25rem;
    margin: 0 auto 1rem;
}

.service-areas-snippet {
    background-color: #f8fafc;
    padding: 2rem;
    border-radius: 1rem;
    margin-bottom: 3rem;
}

.service-faq {
    margin-bottom: 3rem;
}

.faq-items {
    margin-top: 2rem;
}

.faq-item {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e2e8f0;
}

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

.faq-item h4 {
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.service-sidebar {
    position: sticky;
    top: 2rem;
    height: fit-content;
}

.service-cta-card {
    background-color: #f8fafc;
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    margin-bottom: 2rem;
}

.service-cta-card h3 {
    color: #1e293b;
    margin-bottom: 1rem;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.related-services {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 1rem;
    padding: 2rem;
}

.related-services h4 {
    margin-bottom: 1rem;
    color: #1e293b;
}

.related-services ul {
    list-style: none;
}

.related-services li {
    margin-bottom: 0.5rem;
}

.related-services a {
    color: #2563eb;
    text-decoration: none;
}

.related-services a:hover {
    text-decoration: underline;
}

.service-cta-bottom,
.services-cta-bottom {
    padding: 4rem 0;
    background-color: #2563eb;
    color: white;
    text-align: center;
}

.service-cta-bottom .cta-content h2,
.services-cta-bottom .cta-content h2 {
    color: white;
}

.service-cta-bottom .cta-content p,
.services-cta-bottom .cta-content p {
    color: #dbeafe;
}

.service-cta-bottom .btn-primary,
.services-cta-bottom .btn-primary {
    background-color: white;
    color: #2563eb;
    border-color: white;
}

.service-cta-bottom .btn-primary:hover,
.services-cta-bottom .btn-primary:hover {
    background-color: #f1f5f9;
    color: #1d4ed8;
    border-color: #f1f5f9;
}

.service-cta-bottom .btn-outline,
.services-cta-bottom .btn-outline {
    background-color: transparent;
    color: white;
    border-color: white;
}

.service-cta-bottom .btn-outline:hover,
.services-cta-bottom .btn-outline:hover {
    background-color: white;
    color: #2563eb;
    border-color: white;
}

/* Services Hub Page */
.services-hero {
    padding: 3rem 0;
    background-color: #f8fafc;
}

.services-hero-content {
    text-align: center;
}

.services-subtitle {
    font-size: 1.25rem;
    color: #64748b;
    margin-bottom: 2rem;
}

.services-overview {
    padding: 4rem 0;
}

.services-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.services-detailed-grid {
    display: grid;
    gap: 3rem;
    margin-bottom: 4rem;
}

.service-detailed-card {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.service-detailed-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

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

.service-detailed-content {
    padding: 2rem;
}

.service-features {
    list-style: none;
    margin: 1rem 0;
}

.service-features li {
    padding: 0.25rem 0;
    color: #64748b;
}

.service-features li:before {
    content: "✓";
    color: #10b981;
    font-weight: bold;
    margin-right: 0.5rem;
}

.service-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

/* About Page */
.about-hero {
    padding: 3rem 0;
    background-color: #f8fafc;
}

.about-hero-content {
    text-align: center;
}

.about-subtitle {
    font-size: 1.25rem;
    color: #64748b;
    margin-bottom: 2rem;
}

.about-main {
    padding: 4rem 0;
}

.about-story {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.story-text h2 {
    margin-bottom: 1.5rem;
}

.owner-highlights {
    background-color: #f8fafc;
    padding: 2rem;
    border-radius: 1rem;
    margin-top: 2rem;
}

.owner-highlights ul {
    list-style: none;
    margin-top: 1rem;
}

.owner-highlights li {
    margin-bottom: 1rem;
    padding-left: 1rem;
    position: relative;
}

.owner-highlights li:before {
    content: "→";
    color: #2563eb;
    font-weight: bold;
    position: absolute;
    left: 0;
}

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

.story-image img {
    width: 100%;
    max-width: 400px;
    border-radius: 1rem;
}

.image-caption {
    margin-top: 1rem;
    padding: 1rem;
    background-color: #f8fafc;
    border-radius: 0.5rem;
}

.about-services {
    padding: 4rem 0;
    background-color: #f8fafc;
}

.services-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.service-item {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid #e2e8f0;
}

.service-item h3 {
    margin-bottom: 1rem;
}

.service-item h3 a {
    color: #1e293b;
    text-decoration: none;
}

.service-item h3 a:hover {
    color: #2563eb;
}

.about-values {
    padding: 4rem 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.value-item {
    text-align: center;
    padding: 2rem;
}

.value-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background-color: #dbeafe;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
}

.value-icon svg {
    color: #2563eb;
}

.about-area {
    padding: 4rem 0;
    background-color: #f8fafc;
}

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

.area-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.about-cta {
    padding: 4rem 0;
    background-color: #2563eb;
    color: white;
    text-align: center;
}

.about-cta .cta-content h2 {
    color: white;
}

.about-cta .cta-content p {
    color: #dbeafe;
}

.about-cta .btn-primary {
    background-color: white;
    color: #2563eb;
    border-color: white;
}

.about-cta .btn-primary:hover {
    background-color: #f1f5f9;
    color: #1d4ed8;
    border-color: #f1f5f9;
}

.about-cta .btn-outline {
    background-color: transparent;
    color: white;
    border-color: white;
}

.about-cta .btn-outline:hover {
    background-color: white;
    color: #2563eb;
    border-color: white;
}

/* Areas Page */
.areas-hero {
    padding: 3rem 0;
    background-color: #f8fafc;
}

.areas-hero-content {
    text-align: center;
}

.areas-overview {
    padding: 4rem 0;
}

.areas-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.area-section h3 {
    margin-bottom: 2rem;
    color: #1e293b;
    text-align: center;
}

.area-list {
    display: grid;
    gap: 2rem;
}

.area-item {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 1rem;
    padding: 2rem;
}

.area-item h4 {
    color: #2563eb;
    margin-bottom: 1rem;
}

.areas-specialties {
    padding: 4rem 0;
    background-color: #f8fafc;
}

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

.specialties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.specialty-item {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
}

.specialty-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background-color: #dbeafe;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
}

.specialty-icon svg {
    color: #2563eb;
}

.areas-conditions {
    padding: 4rem 0;
}

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

.conditions-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.condition-item {
    background-color: #f8fafc;
    padding: 2rem;
    border-radius: 1rem;
}

.condition-item h4 {
    color: #1e293b;
    margin-bottom: 1rem;
}

.areas-travel {
    padding: 4rem 0;
    background-color: #f8fafc;
}

.travel-info {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.travel-text ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.contact-card {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    border: 1px solid #e2e8f0;
}

.contact-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
}

.areas-services {
    padding: 4rem 0;
}

.areas-cta {
    padding: 4rem 0;
    background-color: #2563eb;
    color: white;
    text-align: center;
}

.areas-cta .cta-content h2 {
    color: white;
}

.areas-cta .cta-content p {
    color: #dbeafe;
}

.areas-cta .btn-primary {
    background-color: white;
    color: #2563eb;
    border-color: white;
}

.areas-cta .btn-primary:hover {
    background-color: #f1f5f9;
    color: #1d4ed8;
    border-color: #f1f5f9;
}

.areas-cta .btn-outline {
    background-color: transparent;
    color: white;
    border-color: white;
}

.areas-cta .btn-outline:hover {
    background-color: white;
    color: #2563eb;
    border-color: white;
}

/* Contact Page */
.contact-hero {
    padding: 3rem 0;
    background-color: #f8fafc;
}

.contact-hero-content {
    text-align: center;
}

.contact-subtitle {
    font-size: 1.25rem;
    color: #64748b;
    margin-bottom: 2rem;
}

.contact-main {
    padding: 4rem 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-details h2 {
    margin-bottom: 1.5rem;
}

.contact-methods {
    margin-top: 2rem;
}

.contact-method {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background-color: #f8fafc;
    border-radius: 1rem;
}

.method-icon {
    flex-shrink: 0;
}

.method-icon svg {
    color: #2563eb;
}

.method-details h3 {
    margin-bottom: 0.5rem;
    color: #1e293b;
}

.method-details p {
    margin-bottom: 0.25rem;
}

.method-note {
    font-size: 0.875rem;
    color: #64748b;
    font-style: italic;
}

.method-details a {
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
}

.method-details a:hover {
    color: #1d4ed8;
    text-decoration: underline;
}

.service-area-info {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 1rem;
    padding: 2rem;
    margin-top: 2rem;
}

.area-list {
    list-style: none;
    margin: 1rem 0;
}

.area-list li {
    padding: 0.25rem 0;
    color: #64748b;
}

.area-list li:before {
    content: "→";
    color: #2563eb;
    margin-right: 0.5rem;
}

/* Form Styles */
.form-container {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 1rem;
    padding: 2rem;
}

.form-message {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    border-radius: 0.5rem;
    margin-bottom: 2rem;
}

.form-message.success {
    background-color: #dcfce7;
    color: #166534;
    border: 1px solid #bbf7d0;
}

.form-message.error {
    background-color: #fef2f2;
    color: #dc2626;
    border: 1px solid #fecaca;
}

.quote-form {
    margin-top: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #1e293b;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.checkbox-group,
.radio-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 0.5rem;
}

.checkbox-label,
.radio-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-weight: normal;
}

.checkbox-label input[type="checkbox"],
.radio-label input[type="radio"] {
    width: auto;
    margin: 0;
}

.honeypot {
    position: absolute !important;
    left: -9999px !important;
    opacity: 0 !important;
    height: 0 !important;
    width: 0 !important;
    overflow: hidden !important;
    visibility: hidden !important;
}

.form-note {
    font-size: 0.875rem;
    color: #64748b;
    text-align: center;
    margin-top: 1rem;
}

.contact-faq {
    padding: 4rem 0;
    background-color: #f8fafc;
}

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

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.faq-grid .faq-item {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 1rem;
    text-align: left;
    border: 1px solid #e2e8f0;
}

/* Error Page */
.error-page {
    padding: 4rem 0;
    text-align: center;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

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

.error-code {
    font-size: 6rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 1rem;
}

.error-page h1 {
    font-size: 2.5rem;
    color: #1e293b;
    margin-bottom: 1rem;
}

.error-page p {
    font-size: 1.125rem;
    color: #64748b;
    margin-bottom: 2rem;
}

.error-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
}

.helpful-links {
    background-color: #f8fafc;
    padding: 2rem;
    border-radius: 1rem;
    margin-bottom: 2rem;
}

.helpful-links h3 {
    color: #1e293b;
    margin-bottom: 1.5rem;
}

.links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: left;
}

.link-group h4 {
    color: #334155;
    margin-bottom: 1rem;
}

.link-group ul {
    list-style: none;
    padding: 0;
}

.link-group li {
    margin-bottom: 0.5rem;
}

.link-group a {
    color: #2563eb;
    transition: color 0.3s ease;
}

.link-group a:hover {
    color: #1d4ed8;
}

.contact-help h3 {
    color: #1e293b;
    margin-bottom: 1rem;
}

.contact-help p {
    margin-bottom: 1.5rem;
}

/* Footer */
.footer {
    background-color: #1e293b;
    color: #e2e8f0;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.footer-section p {
    color: #cbd5e1;
    margin-bottom: 1rem;
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.badge {
    background-color: #2563eb;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 500;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.contact-info p {
    margin-bottom: 0.5rem;
}

.contact-info a {
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
}

.contact-info a:hover {
    color: #1d4ed8;
    text-decoration: underline;
}

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

.footer-bottom p {
    color: #9ca3af;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Header mobile padding */
    .nav {
        padding: 1.5rem 0;
    }
    /* Hide desktop navigation */
    .nav-menu {
        display: none;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    /* Mobile Navigation */
    .nav-toggle {
        display: flex !important;
        min-width: 44px;
        min-height: 44px;
        align-items: center;
        justify-content: center;
        background-color: transparent;
        border: 2px solid transparent;
        border-radius: 4px;
        flex-direction: column;
    }
    
    .nav-toggle:hover {
        background-color: #f8fafc;
        border-color: #e2e8f0;
    }
    
    .nav-toggle span {
        display: block;
        width: 25px;
        height: 3px;
        background-color: #1e293b;
        margin: 2px 0;
        transition: all 0.3s ease;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: white;
        flex-direction: column;
        padding: 6rem 2rem 2rem;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        z-index: 999;
        overflow-y: auto;
    }
    
    .nav-menu.active {
        display: flex;
        transform: translateX(0);
    }
    
    .nav-list {
        flex-direction: column;
        gap: 0;
        margin-bottom: 2rem;
        width: 100%;
    }
    
    .nav-list li {
        width: 100%;
        border-bottom: 1px solid #e2e8f0;
    }
    
    .nav-list li:last-child {
        border-bottom: none;
    }
    
    .nav-link {
        display: block;
        padding: 1rem 0;
        font-size: 1.125rem;
        color: #1e293b;
        text-decoration: none;
        transition: color 0.3s ease;
    }
    
    .nav-link:hover {
        color: #2563eb;
    }
    
    .nav-cta {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }
    
    .nav-cta .btn {
        width: 100%;
        text-align: center;
        padding: 1rem;
        font-size: 1.125rem;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background-color: #f8fafc;
        margin-top: 0;
        padding: 0.5rem 0;
        border-radius: 0.5rem;
        margin-bottom: 1rem;
    }
    
    .dropdown-menu li {
        border-bottom: none;
    }
    
    .dropdown-menu a {
        padding: 0.75rem 1rem;
        font-size: 1rem;
        color: #64748b;
    }
    
    .dropdown-menu a:hover {
        background-color: #e2e8f0;
        color: #2563eb;
    }
    
    /* Mobile CTA Bar */
    .mobile-cta-bar {
        display: flex;
    }
    
    .main {
        padding-bottom: 80px;
    }
    
    /* Typography */
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .error-code {
        font-size: 4rem;
    }
    
    .error-page h1 {
        font-size: 2rem;
    }
    
    /* Layout adjustments */
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-cta,
    .error-actions,
    .contact-buttons,
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-trust {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .areas-grid {
        grid-template-columns: 1fr;
    }
    
    .service-content {
        grid-template-columns: 1fr;
    }
    
    .service-detailed-card {
        grid-template-columns: 1fr;
    }
    
    .about-story {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .travel-info {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .checkbox-group,
    .radio-group {
        grid-template-columns: 1fr;
    }
    
    .links-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .service-actions {
        flex-direction: column;
    }
    
    .area-cta {
        flex-direction: column;
    }
    
    /* Spacing adjustments */
    .container {
        padding: 0 1rem;
    }
    
    section {
        padding: 2rem 0;
    }
    
    .hero,
    .service-hero,
    .about-hero,
    .areas-hero,
    .contact-hero {
        padding: 2rem 0;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .btn-large {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
    
    .service-card,
    .testimonial,
    .value-item,
    .specialty-item {
        padding: 1.5rem;
    }
}

/* Print Styles */
@media print {
    .header,
    .mobile-cta-bar,
    .footer,
    .btn,
    .nav-toggle {
        display: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    h1, h2, h3, h4, h5, h6 {
        page-break-after: avoid;
    }
    
    .container {
        max-width: none;
        padding: 0;
    }
}