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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #2c2c2c;
    background-color: #fafafa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 16px;
    color: #1a1a1a;
}

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

p {
    margin-bottom: 16px;
    line-height: 1.6;
}

a {
    color: #8B4513;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #D2691E;
}

/* Buttons */
.btn-primary, .btn-secondary, .btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 16px;
}

.btn-primary {
    background: #8B4513;
    color: white;
    border-color: #8B4513;
}

.btn-primary:hover {
    background: #A0522D;
    border-color: #A0522D;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(139, 69, 19, 0.3);
}

.btn-secondary {
    background: #D2691E;
    color: white;
    border-color: #D2691E;
}

.btn-secondary:hover {
    background: #CD853F;
    border-color: #CD853F;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(210, 105, 30, 0.3);
}

.btn-outline {
    background: transparent;
    color: #8B4513;
    border-color: #8B4513;
}

.btn-outline:hover {
    background: #8B4513;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(139, 69, 19, 0.2);
}

/* Header */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(139, 69, 19, 0.1);
    transition: all 0.3s ease;
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    font-weight: 700;
    color: #8B4513;
}

.nav-brand i {
    font-size: 1.8rem;
    color: #D2691E;
}

.nav-menu {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-link {
    font-weight: 500;
    color: #2c2c2c;
    padding: 8px 0;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #8B4513;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #D2691E;
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.contact-btn {
    background: #8B4513;
    color: white;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    background: #A0522D;
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(139, 69, 19, 0.3);
}

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

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: #8B4513;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    min-height: 100vh;
    padding-top: 80px;
    gap: 60px;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 24px;
    line-height: 1.1;
}

.hero-content p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 32px;
    line-height: 1.6;
}

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

.hero-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.hero-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.hero-image:hover img {
    transform: scale(1.05);
}

/* About Preview */
.about-preview {
    padding: 100px 0;
    background: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    color: #8B4513;
    margin-bottom: 24px;
}

.about-text p {
    color: #666;
    margin-bottom: 20px;
}

.about-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* Services Section */
.services {
    padding: 100px 0;
    background: #f8f8f8;
}

.services h2 {
    text-align: center;
    color: #8B4513;
    margin-bottom: 16px;
}

.section-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 60px;
}

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

.service-card {
    background: white;
    padding: 32px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(139, 69, 19, 0.1);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
    border-color: rgba(139, 69, 19, 0.2);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #8B4513, #D2691E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: white;
    font-size: 2rem;
}

.service-card h3 {
    color: #8B4513;
    margin-bottom: 16px;
}

.service-card p {
    color: #666;
    margin-bottom: 20px;
}

.service-price {
    font-size: 1.25rem;
    font-weight: 600;
    color: #D2691E;
    background: rgba(210, 105, 30, 0.1);
    padding: 8px 16px;
    border-radius: 6px;
    display: inline-block;
}

/* Why Choose Us */
.why-choose {
    padding: 100px 0;
    background: white;
}

.why-choose h2 {
    text-align: center;
    color: #8B4513;
    margin-bottom: 60px;
}

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

.feature {
    text-align: center;
    padding: 24px;
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #D2691E, #CD853F);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 1.5rem;
}

.feature h3 {
    color: #8B4513;
    margin-bottom: 12px;
}

.feature p {
    color: #666;
}

/* Service Request Form */
.service-request {
    padding: 100px 0;
    background: #f8f8f8;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.form-container h2 {
    text-align: center;
    color: #8B4513;
    margin-bottom: 8px;
}

.form-container p {
    text-align: center;
    color: #666;
    margin-bottom: 32px;
}

.service-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 500;
    color: #2c2c2c;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #8B4513;
    box-shadow: 0 0 0 3px rgba(139, 69, 19, 0.1);
}

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

.form-success {
    text-align: center;
    padding: 40px;
    background: rgba(34, 197, 94, 0.1);
    border-radius: 12px;
    border: 2px solid rgba(34, 197, 94, 0.2);
}

.form-success i {
    font-size: 3rem;
    color: #22c55e;
    margin-bottom: 16px;
}

.form-success h3 {
    color: #16a34a;
    margin-bottom: 8px;
}

.form-success p {
    color: #15803d;
}

/* Testimonials */
.testimonials {
    padding: 100px 0;
    background: white;
}

.testimonials h2 {
    text-align: center;
    color: #8B4513;
    margin-bottom: 60px;
}

.testimonials-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonial-card {
    display: none;
    text-align: center;
    padding: 40px;
    background: #f8f8f8;
    border-radius: 12px;
    margin: 0 20px;
}

.testimonial-card.active {
    display: block;
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.testimonial-content p {
    font-size: 1.1rem;
    color: #2c2c2c;
    font-style: italic;
    margin-bottom: 24px;
    line-height: 1.6;
}

.testimonial-author strong {
    color: #8B4513;
    font-size: 1.1rem;
}

.testimonial-author span {
    color: #666;
    font-size: 0.9rem;
}

.testimonial-nav {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 32px;
}

.testimonial-btn {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: #e0e0e0;
    cursor: pointer;
    transition: background 0.3s ease;
}

.testimonial-btn.active,
.testimonial-btn:hover {
    background: #8B4513;
}

/* CTA Section */
.cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #8B4513, #D2691E);
    color: white;
    text-align: center;
}

.cta h2 {
    color: white;
    margin-bottom: 16px;
}

.cta p {
    font-size: 1.1rem;
    margin-bottom: 32px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta .btn-primary {
    background: white;
    color: #8B4513;
    border-color: white;
}

.cta .btn-primary:hover {
    background: rgba(255, 255, 255, 0.9);
    color: #8B4513;
}

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

.cta .btn-secondary:hover {
    background: white;
    color: #8B4513;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 60px 0 20px;
}

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

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    font-weight: 700;
    color: #D2691E;
    margin-bottom: 16px;
}

.footer-brand i {
    font-size: 1.8rem;
}

.footer-section h4 {
    color: #D2691E;
    margin-bottom: 16px;
}

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

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    color: #ccc;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #D2691E;
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    color: #ccc;
}

.contact-info i {
    color: #D2691E;
    width: 16px;
}

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

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #8B4513, #D2691E);
    color: white;
    padding: 120px 0 60px;
    text-align: center;
}

.page-header h1 {
    color: white;
    font-size: 3rem;
    margin-bottom: 16px;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Company Story */
.company-story {
    padding: 100px 0;
    background: white;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.story-text h2 {
    color: #8B4513;
    margin-bottom: 24px;
}

.story-text p {
    color: #666;
    margin-bottom: 20px;
}

.story-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.story-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* Why Choose Detailed */
.why-choose-detailed {
    padding: 100px 0;
    background: #f8f8f8;
}

.why-choose-detailed h2 {
    text-align: center;
    color: #8B4513;
    margin-bottom: 60px;
}

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

.reason-card {
    background: white;
    padding: 32px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

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

.reason-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #8B4513, #D2691E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: white;
    font-size: 2rem;
}

.reason-card h3 {
    color: #8B4513;
    margin-bottom: 16px;
}

.reason-card p {
    color: #666;
}

/* Team Section */
.team {
    padding: 100px 0;
    background: white;
}

.team h2 {
    text-align: center;
    color: #8B4513;
    margin-bottom: 60px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.team-member {
    text-align: center;
    background: #f8f8f8;
    padding: 32px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.member-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    border: 4px solid #D2691E;
}

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

.team-member h3 {
    color: #8B4513;
    margin-bottom: 8px;
}

.member-title {
    color: #D2691E;
    font-weight: 500;
    margin-bottom: 12px;
}

.team-member p {
    color: #666;
    font-size: 0.9rem;
}

/* Mission Section */
.mission {
    padding: 100px 0;
    background: #f8f8f8;
}

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

.mission h2 {
    color: #8B4513;
    margin-bottom: 32px;
}

.mission p {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 24px;
}

/* Services Detailed */
.services-detailed {
    padding: 100px 0;
    background: white;
}

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

.services-intro h2 {
    color: #8B4513;
    margin-bottom: 24px;
}

.services-intro p {
    color: #666;
    font-size: 1.1rem;
}

.service-details-grid {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.service-detail {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    align-items: center;
    padding: 40px;
    background: #f8f8f8;
    border-radius: 12px;
}

.service-detail:nth-child(even) {
    grid-template-columns: 2fr 1fr;
}

.service-detail:nth-child(even) .service-image {
    order: 2;
}

.service-detail:nth-child(even) .service-content {
    order: 1;
}

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

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

.service-content h3 {
    color: #8B4513;
    margin-bottom: 16px;
}

.service-content p {
    color: #666;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    margin-bottom: 24px;
}

.service-features li {
    padding: 4px 0;
    color: #666;
    position: relative;
    padding-left: 20px;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #22c55e;
    font-weight: bold;
}

.service-pricing {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.price {
    font-size: 1.25rem;
    font-weight: 600;
    color: #D2691E;
    background: rgba(210, 105, 30, 0.1);
    padding: 8px 16px;
    border-radius: 6px;
}

.turnaround {
    color: #666;
    font-size: 0.9rem;
    background: rgba(139, 69, 19, 0.1);
    padding: 6px 12px;
    border-radius: 4px;
}

/* Repair Process */
.repair-process {
    padding: 100px 0;
    background: #f8f8f8;
}

.repair-process h2 {
    text-align: center;
    color: #8B4513;
    margin-bottom: 60px;
}

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

.process-step {
    text-align: center;
    padding: 24px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #8B4513, #D2691E);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 20px;
}

.process-step h3 {
    color: #8B4513;
    margin-bottom: 12px;
}

.process-step p {
    color: #666;
    font-size: 0.9rem;
}

/* Contact Page Styles */
.contact-info-section {
    padding: 100px 0;
    background: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-details h2 {
    color: #8B4513;
    margin-bottom: 24px;
}

.contact-details p {
    color: #666;
    margin-bottom: 32px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: #f8f8f8;
    border-radius: 8px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #8B4513, #D2691E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-text h3 {
    color: #8B4513;
    margin-bottom: 8px;
}

.contact-text p {
    color: #666;
    margin: 0;
}

.contact-form-container {
    background: #f8f8f8;
    padding: 40px;
    border-radius: 12px;
}

.contact-form-container h2 {
    color: #8B4513;
    margin-bottom: 8px;
}

.contact-form-container p {
    color: #666;
    margin-bottom: 32px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Map Section */
.map-section {
    padding: 100px 0;
    background: #f8f8f8;
}

.map-section h2 {
    text-align: center;
    color: #8B4513;
    margin-bottom: 40px;
}

.map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    margin-bottom: 32px;
}

.map-info {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.map-info h3 {
    color: #8B4513;
    margin-bottom: 16px;
}

.map-info p {
    color: #666;
}

/* Service Areas */
.service-areas {
    padding: 100px 0;
    background: white;
}

.service-areas h2 {
    text-align: center;
    color: #8B4513;
    margin-bottom: 40px;
}

.areas-content p {
    text-align: center;
    color: #666;
    max-width: 800px;
    margin: 0 auto 40px;
}

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

.area-section {
    background: #f8f8f8;
    padding: 32px;
    border-radius: 12px;
}

.area-section h3 {
    color: #8B4513;
    margin-bottom: 20px;
    text-align: center;
}

.area-section ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 8px;
}

.area-section ul li {
    padding: 8px 12px;
    background: white;
    border-radius: 6px;
    color: #666;
    text-align: center;
    font-size: 0.9rem;
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background: #f8f8f8;
}

.faq-section h2 {
    text-align: center;
    color: #8B4513;
    margin-bottom: 60px;
}

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

.faq-item {
    background: white;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.faq-item h3 {
    color: #8B4513;
    margin-bottom: 16px;
}

.faq-item p {
    color: #666;
    margin: 0;
}

/* Thank You Page */
.thank-you-section {
    padding: 120px 0;
    background: white;
    text-align: center;
}

.thank-you-content {
    max-width: 800px;
    margin: 0 auto;
}

.thank-you-icon {
    margin-bottom: 32px;
}

.thank-you-icon i {
    font-size: 4rem;
    color: #22c55e;
}

.thank-you-content h1 {
    color: #8B4513;
    margin-bottom: 24px;
}

.thank-you-message {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 60px;
}

.next-steps {
    margin-bottom: 60px;
}

.next-steps h2 {
    color: #8B4513;
    margin-bottom: 40px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    margin-bottom: 40px;
}

.step {
    padding: 24px;
    background: #f8f8f8;
    border-radius: 12px;
}

.step-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #8B4513, #D2691E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: white;
    font-size: 1.5rem;
}

.step h3 {
    color: #8B4513;
    margin-bottom: 12px;
}

.step p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

.immediate-needs {
    background: rgba(139, 69, 19, 0.05);
    padding: 40px;
    border-radius: 12px;
    margin-bottom: 40px;
}

.immediate-needs h2 {
    color: #8B4513;
    margin-bottom: 16px;
}

.immediate-needs p {
    color: #666;
    margin-bottom: 24px;
}

.explore-more {
    background: #f8f8f8;
    padding: 40px;
    border-radius: 12px;
}

.explore-more h2 {
    color: #8B4513;
    margin-bottom: 16px;
}

.explore-more p {
    color: #666;
    margin-bottom: 24px;
}

.explore-links {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Legal Content */
.legal-content {
    padding: 100px 0;
    background: white;
}

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

.legal-text h2 {
    color: #8B4513;
    margin-top: 40px;
    margin-bottom: 20px;
}

.legal-text h3 {
    color: #D2691E;
    margin-top: 32px;
    margin-bottom: 16px;
}

.legal-text ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.legal-text ul li {
    margin-bottom: 8px;
    color: #666;
}

.legal-text p {
    color: #666;
    margin-bottom: 16px;
}

.cookie-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin: 32px 0;
}

.cookie-category-detail {
    background: #f8f8f8;
    padding: 24px;
    border-radius: 8px;
}

.cookie-category-detail h3 {
    color: #8B4513;
    margin-bottom: 12px;
}

.cookie-category-detail p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.cookie-category-detail ul {
    margin: 0;
    padding-left: 16px;
}

.cookie-category-detail ul li {
    font-size: 0.9rem;
    margin-bottom: 4px;
}

/* Cookie Consent */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    color: white;
    padding: 20px;
    z-index: 999;
    border-top: 2px solid #8B4513;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.4;
}

.cookie-content a {
    color: #D2691E;
}

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

.btn-accept, .btn-reject, .btn-settings {
    padding: 8px 16px;
    border: none;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-accept {
    background: #8B4513;
    color: white;
}

.btn-accept:hover {
    background: #A0522D;
}

.btn-reject {
    background: transparent;
    color: white;
    border: 1px solid #666;
}

.btn-reject:hover {
    background: #666;
}

.btn-settings {
    background: #D2691E;
    color: white;
}

.btn-settings:hover {
    background: #CD853F;
}

/* Cookie Modal */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 20px;
}

.cookie-modal.show {
    display: flex;
}

.cookie-modal-content {
    background: white;
    padding: 32px;
    border-radius: 12px;
    max-width: 500px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
}

.cookie-modal-content h3 {
    color: #8B4513;
    margin-bottom: 24px;
    text-align: center;
}

.cookie-category {
    margin-bottom: 20px;
    padding: 16px;
    background: #f8f8f8;
    border-radius: 8px;
}

.cookie-category label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
}

.cookie-category input[type="checkbox"] {
    margin-top: 2px;
}

.cookie-category span {
    color: #666;
    font-size: 0.9rem;
}

.cookie-modal-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 24px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }

    /* Header Mobile */
    .nav-menu {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .nav-contact {
        display: none;
    }

    /* Hero Mobile */
    .hero {
        grid-template-columns: 1fr;
        padding-top: 100px;
        gap: 40px;
    }

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

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

    /* Typography Mobile */
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.25rem; }

    .page-header h1 {
        font-size: 2.5rem;
    }

    /* Grid Layouts Mobile */
    .about-content,
    .story-content,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .service-detail {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .service-detail:nth-child(even) {
        grid-template-columns: 1fr;
    }

    .service-detail:nth-child(even) .service-image,
    .service-detail:nth-child(even) .service-content {
        order: unset;
    }

    /* Form Mobile */
    .form-row {
        grid-template-columns: 1fr;
    }

    .form-container {
        padding: 24px;
    }

    /* Services Grid Mobile */
    .services-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 24px;
    }

    .reasons-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .areas-grid {
        grid-template-columns: 1fr;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    /* Cookie Banner Mobile */
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

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

    /* CTA Mobile */
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .explore-links {
        flex-direction: column;
        align-items: center;
    }

    /* Padding Adjustments */
    .hero,
    .about-preview,
    .services,
    .why-choose,
    .service-request,
    .testimonials,
    .cta,
    .company-story,
    .why-choose-detailed,
    .team,
    .mission,
    .services-detailed,
    .repair-process,
    .contact-info-section,
    .map-section,
    .service-areas,
    .faq-section,
    .thank-you-section,
    .legal-content {
        padding: 60px 0;
    }

    .footer {
        padding: 40px 0 20px;
    }

    .page-header {
        padding: 100px 0 40px;
    }
}

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

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

    .btn-primary,
    .btn-secondary,
    .btn-outline {
        padding: 10px 20px;
        font-size: 14px;
    }

    .service-card,
    .reason-card,
    .team-member {
        padding: 24px;
    }

    .form-container {
        padding: 20px;
    }

    .cookie-modal-content {
        padding: 24px;
        margin: 10px;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus States */
button:focus,
input:focus,
select:focus,
textarea:focus,
a:focus {
    outline: 2px solid #8B4513;
    outline-offset: 2px;
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    .hero-image,
    .about-image,
    .story-image,
    .service-image,
    .member-image {
        border: 2px solid #000;
    }
}