/* MufflerProHA - Custom Design System */

:root {
    --primary-steel: #2c3e50;
    --secondary-orange: #e67e22;
    --accent-silver: #95a5a6;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --background-light: #ecf0f1;
    --white: #ffffff;
    --success-green: #27ae60;
    --warning-red: #c0392b;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    font-size: 16px;
}

/* Navigation */
.exhaust-navigation {
    background: var(--primary-steel);
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.brand-identity {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
}

.brand-icon {
    font-size: 2rem;
    color: var(--secondary-orange);
}

.brand-text {
    font-size: 1.5rem;
    letter-spacing: -0.5px;
}

.nav-links {
    list-style: none;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 2rem;
    margin: 0;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
}

.nav-links a:hover,
.nav-links a.active-link {
    color: var(--secondary-orange);
    border-bottom-color: var(--secondary-orange);
}

.mobile-nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-nav-toggle span {
    width: 28px;
    height: 3px;
    background: var(--white);
    border-radius: 2px;
    transition: 0.3s;
}

/* Hero Section */
.hero-showcase {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    background-image: url('/visual_gallery/hero-showcase-5fe29d44c01b5b5640adadd743b1496c.jpg'),
                      linear-gradient(135deg, rgba(44, 62, 80, 0.9) 0%, rgba(52, 73, 94, 0.9) 100%);
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
    padding: 8rem 0 6rem;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(44, 62, 80, 0.75);
}

.hero-showcase .grid-container {
    position: relative;
    z-index: 1;
}

.hero-headline {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-description {
    font-size: 1.25rem;
    color: var(--white);
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.primary-action-btn,
.secondary-action-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
    min-height: 54px;
    white-space: nowrap;
    border: none;
    cursor: pointer;
}

.primary-action-btn {
    background: var(--secondary-orange);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(230, 126, 34, 0.3);
}

.primary-action-btn:hover {
    background: #d35400;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(230, 126, 34, 0.4);
}

.secondary-action-btn {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.secondary-action-btn:hover {
    background: var(--white);
    color: var(--primary-steel);
}

/* Sections */
section {
    padding: 5rem 0;
}

.section-heading {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-steel);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-subheading {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.section-text {
    font-size: 1.1rem;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* Company Snapshot */
.company-snapshot {
    background: var(--white);
}

.snapshot-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.inline-link {
    color: var(--secondary-orange);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease;
}

.inline-link:hover {
    gap: 0.75rem;
}

/* Service Catalog */
.service-catalog {
    background: var(--background-light);
}

.service-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.service-visual {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.service-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-visual img {
    transform: scale(1.05);
}

.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-steel);
    padding: 1.5rem 1.5rem 0.75rem;
    margin: 0;
}

.service-description {
    font-size: 1rem;
    color: var(--text-dark);
    padding: 0 1.5rem;
    line-height: 1.6;
    flex-grow: 1;
}

.service-pricing {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    padding: 1.5rem;
    margin-top: auto;
    border-top: 1px solid var(--background-light);
}

.price-label {
    font-size: 0.9rem;
    color: var(--text-light);
}

.price-value {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--secondary-orange);
}

/* Advantages */
.advantage-display {
    background: var(--white);
}

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

.advantage-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.advantage-heading {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-steel);
    margin-bottom: 0.75rem;
}

.advantage-text {
    font-size: 1rem;
    color: var(--text-dark);
    line-height: 1.7;
}

/* Testimonials */
.client-voices {
    background: var(--background-light);
}

.testimonial-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.testimonial-rating {
    color: var(--secondary-orange);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.testimonial-content {
    font-size: 1.05rem;
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex-grow: 1;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: auto;
    padding-top: 1.5rem;
    border-top: 1px solid var(--background-light);
}

.author-photo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.author-name {
    font-weight: 700;
    color: var(--primary-steel);
    font-size: 1.1rem;
}

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

/* Contact Summary */
.contact-summary {
    background: var(--white);
}

.contact-details-grid {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin: 2.5rem 0;
}

.contact-detail-item {
    text-align: center;
    min-width: 200px;
}

.detail-icon {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
}

.detail-label {
    font-size: 0.9rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.detail-value {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-steel);
    text-decoration: none;
}

.detail-value:hover {
    color: var(--secondary-orange);
}

/* Footer */
.site-footer {
    background: var(--primary-steel);
    color: var(--white);
    padding: 3rem 0 1.5rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-heading {
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--secondary-orange);
}

.footer-bottom {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* Cookie Consent Banner */
.cookie-consent-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    max-width: 420px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
    z-index: 10000;
    padding: 1.5rem;
    border: 2px solid var(--primary-steel);
}

.cookie-consent-banner.hidden {
    display: none;
}

.cookie-heading {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-steel);
    margin-bottom: 0.75rem;
}

.cookie-text {
    font-size: 0.95rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.cookie-options {
    margin: 1rem 0;
}

.cookie-option {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
    color: var(--text-dark);
    cursor: pointer;
}

.cookie-option input[type="checkbox"] {
    margin-top: 3px;
    flex-shrink: 0;
}

.cookie-actions {
    display: flex;
    gap: 0.75rem;
    margin: 1.5rem 0 1rem;
}

.cookie-accept,
.cookie-decline {
    flex: 1;
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

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

.cookie-accept:hover {
    background: #d35400;
}

.cookie-decline {
    background: var(--accent-silver);
    color: var(--white);
}

.cookie-decline:hover {
    background: #7f8c8d;
}

.cookie-policy-link {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 1rem;
}

.cookie-policy-link a {
    color: var(--secondary-orange);
    text-decoration: none;
}

.cookie-policy-link a:hover {
    text-decoration: underline;
}

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, var(--primary-steel) 0%, #34495e 100%);
    padding: 4rem 0;
    text-align: center;
}

.page-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
}

/* About Pages */
.company-story {
    background: var(--white);
}

.story-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.team-showcase {
    background: var(--background-light);
}

.team-member-card {
    background: var(--white);
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    height: 100%;
    transition: transform 0.3s ease;
}

.team-member-card:hover {
    transform: translateY(-4px);
}

.member-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1.5rem;
    border: 4px solid var(--secondary-orange);
}

.member-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-steel);
    margin-bottom: 0.5rem;
}

.member-role {
    font-size: 1rem;
    color: var(--secondary-orange);
    font-weight: 600;
    margin-bottom: 1rem;
}

.member-bio {
    font-size: 0.95rem;
    color: var(--text-dark);
    line-height: 1.6;
}

.company-values {
    background: var(--white);
}

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

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

.value-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-steel);
    margin-bottom: 0.75rem;
}

.value-description {
    font-size: 1rem;
    color: var(--text-dark);
    line-height: 1.7;
}

.about-cta {
    background: var(--background-light);
}

.cta-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

/* Services Page */
.services-detail {
    background: var(--white);
}

.service-detail-item {
    margin-bottom: 5rem;
}

.service-detail-item:last-child {
    margin-bottom: 0;
}

.service-detail-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.service-detail-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-steel);
    margin-bottom: 1rem;
}

.service-detail-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-orange);
    margin-bottom: 1.5rem;
}

.service-detail-description {
    font-size: 1.05rem;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.service-features {
    background: var(--background-light);
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 2rem;
}

.service-features h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-steel);
    margin-bottom: 1rem;
}

.service-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-features li {
    padding: 0.5rem 0 0.5rem 1.75rem;
    position: relative;
    font-size: 1rem;
    color: var(--text-dark);
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-green);
    font-weight: 700;
}

.services-cta {
    background: var(--background-light);
}

/* Contact Page */
.contact-content {
    background: var(--white);
}

.contact-form {
    background: var(--white);
}

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

.form-row label {
    display: block;
    font-weight: 600;
    color: var(--primary-steel);
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.form-row input,
.form-row select,
.form-row textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    font-size: 1rem;
    border: 2px solid #ddd;
    border-radius: 6px;
    font-family: inherit;
    transition: border-color 0.3s ease;
    background: var(--white);
    color: var(--text-dark);
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
    outline: none;
    border-color: var(--secondary-orange);
}

.submit-btn {
    width: 100%;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    background: var(--secondary-orange);
    color: var(--white);
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 54px;
}

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

.form-success-message {
    background: var(--success-green);
    color: var(--white);
    padding: 2.5rem;
    border-radius: 8px;
    text-align: center;
}

.success-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.form-success-message h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.form-success-message p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--white);
}

.contact-info-block {
    background: var(--background-light);
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.info-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.info-content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-steel);
    margin-bottom: 0.5rem;
}

.info-content p {
    font-size: 1rem;
    color: var(--text-dark);
    line-height: 1.6;
    margin: 0;
}

.info-content a {
    color: var(--secondary-orange);
    text-decoration: none;
}

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

.map-container {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

/* Service Areas Page */
.service-areas-content {
    background: var(--white);
}

.areas-grid {
    margin: 3rem 0;
}

.area-card {
    background: var(--background-light);
    padding: 2rem;
    border-radius: 8px;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.area-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.area-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-steel);
    margin-bottom: 1rem;
}

.area-description {
    font-size: 1rem;
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.area-distance {
    font-size: 0.9rem;
    color: var(--secondary-orange);
    font-weight: 600;
}

.additional-areas {
    background: var(--background-light);
    padding: 2.5rem;
    border-radius: 8px;
    margin-top: 3rem;
}

.community-names {
    list-style: none;
    padding: 0;
    margin: 0;
}

.community-names li {
    padding: 0.5rem 0 0.5rem 1.5rem;
    position: relative;
    font-size: 1.05rem;
    color: var(--text-dark);
}

.community-names li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--secondary-orange);
    font-weight: 700;
}

.why-travel {
    background: var(--background-light);
}

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

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

.benefit-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-steel);
    margin-bottom: 0.75rem;
}

.benefit-text {
    font-size: 1rem;
    color: var(--text-dark);
    line-height: 1.7;
}

.areas-cta {
    background: var(--white);
}

/* Thank You Page */
.thank-you-content {
    background: var(--white);
    padding: 6rem 0;
}

.thank-you-icon {
    font-size: 5rem;
    color: var(--success-green);
    margin-bottom: 1.5rem;
}

.thank-you-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-steel);
    margin-bottom: 1.5rem;
}

.thank-you-message {
    font-size: 1.2rem;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.thank-you-submessage {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
}

.thank-you-submessage a {
    color: var(--secondary-orange);
    text-decoration: none;
    font-weight: 600;
}

.thank-you-submessage a:hover {
    text-decoration: underline;
}

.thank-you-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Legal Pages */
.legal-content {
    background: var(--white);
    padding: 4rem 0;
}

.legal-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-steel);
    margin-bottom: 0.5rem;
}

.legal-updated {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
}

.legal-section {
    margin-bottom: 2.5rem;
}

.legal-section h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-steel);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.legal-section h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-steel);
    margin-bottom: 0.75rem;
    margin-top: 1.5rem;
}

.legal-section p {
    font-size: 1rem;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-section ul,
.legal-section ol {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.legal-section li {
    font-size: 1rem;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.legal-section a {
    color: var(--secondary-orange);
    text-decoration: none;
}

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

/* Responsive Design */
@media screen and (max-width: 768px) {
    .mobile-nav-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--primary-steel);
        flex-direction: column;
        align-items: flex-start;
        padding: 1.5rem;
        gap: 0;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }

    .nav-links.active {
        transform: translateX(0);
    }

    .nav-links li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-links a {
        display: block;
        padding: 1rem 0;
    }

    .hero-headline {
        font-size: 2.2rem;
    }

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

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

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

    .contact-details-grid {
        flex-direction: column;
        gap: 1.5rem;
    }

    .cookie-consent-banner {
        left: 10px;
        right: 10px;
        bottom: 10px;
        max-width: none;
    }

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

    section {
        padding: 3rem 0;
    }
}

@media screen and (max-width: 480px) {
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .primary-action-btn,
    .secondary-action-btn {
        width: 100%;
    }

    .cta-actions {
        flex-direction: column;
        width: 100%;
    }

    .cta-actions .primary-action-btn,
    .cta-actions .secondary-action-btn {
        width: 100%;
    }
}