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

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #e0e0e0;
    background: #1a1a1a;
    overflow-x: hidden;
}

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

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(15px);
    z-index: 1000;
    padding: 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.nav-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-logo {
    width: 75px;
    height: 75px;
    object-fit: contain;
}

.nav-brand h1 {
    color: white;
    font-size: 1.8rem;
    font-weight: 800;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

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

.nav-menu a {
    text-decoration: none;
    color: white;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: #e0f7fa;
    transform: translateY(-1px);
}

.nav-phone {
    background: rgba(255, 255, 255, 0.2);
    color: white !important;
    padding: 0.7rem 1.5rem;
    border-radius: 30px;
    font-weight: 700;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.nav-phone:hover {
    background: rgba(255, 255, 255, 0.3) !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}

.nav-social {
    color: white !important;
    font-size: 1.2rem;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.nav-social:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: #1a1a1a;
    display: flex;
    align-items: center;
    padding: 80px 0;
    position: relative;
}

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

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

.hero-title {
    font-family: 'Roboto Slab', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-description {
    font-size: 1.1rem;
    color: #cccccc;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 15px 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 5px;
    transition: all 0.3s ease;
    text-align: center;
}



.btn-primary {
    background: #333333;
    color: white;
    border: 2px solid #333333;
}

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



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

.btn-secondary:hover {
    background: #333;
    border-color: #ffffff;
    transform: translateY(-2px);
}

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

.hero-features .feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #cccccc;
}

.hero-features .feature-item i {
    color: #ffffff;
    font-size: 1.1rem;
}

.hero-features .feature-item span {
    font-size: 0.9rem;
    font-weight: 500;
}

/* About Section */
.about-section {
    padding: 80px 0;
    background: #222222;
}

.about-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-text h2 {
    font-family: 'Roboto Slab', serif;
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.about-text p {
    font-size: 1.1rem;
    color: #cccccc;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.about-stats {
    display: flex;
    gap: 2rem;
}

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

.stat-item h3 {
    font-family: 'Roboto Slab', serif;
    font-size: 2rem;
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: #cccccc;
    font-size: 0.9rem;
    margin: 0;
}



/* Video Section */
.video-section {
    padding: 80px 0;
    background: #222222;
}

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

.section-header h2 {
    font-family: 'Roboto Slab', serif;
    font-size: 2.5rem;
    color: white;
    font-weight: 700;
    margin-bottom: 1rem;
}

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

.video-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}

.restoration-video {
    width: 100%;
    height: auto;
    display: block;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-container:hover .video-overlay {
    opacity: 1;
}

.play-button {
    width: 80px;
    height: 80px;
    background: rgba(0, 188, 212, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-button:hover {
    background: #00BCD4;
    transform: scale(1.1);
}

/* Reviews Section */
.reviews-section {
    padding: 80px 0;
    background: #1a1a1a;
    color: white;
}

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

.bbb-badge {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.bbb-logo {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    margin-bottom: 1rem;
}

.bbb-logo i {
    font-size: 2rem;
    color: #FFD700;
}

.bbb-text {
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
}

.bbb-rating {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.rating-letter {
    font-size: 3rem;
    font-weight: 900;
    color: #4CAF50;
    text-shadow: 0 2px 10px rgba(76, 175, 80, 0.5);
}

.rating-stars {
    display: flex;
    gap: 0.2rem;
}

.rating-stars i {
    color: #FFD700;
    font-size: 1.2rem;
}

.reviews-header h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: white;
}

.reviews-header p {
    font-size: 1.2rem;
    color: #e0e0e0;
    opacity: 0.9;
}

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

.review-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
}

.review-stars {
    display: flex;
    gap: 0.2rem;
    margin-bottom: 1rem;
}

.review-stars i {
    color: #FFD700;
    font-size: 1.1rem;
}

.review-card p {
    color: #e0e0e0;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.reviewer {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.reviewer strong {
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
}

.reviewer span {
    color: #cccccc;
    font-size: 0.9rem;
    font-weight: 500;
}

.reviews-cta {
    text-align: center;
    margin-top: 3rem;
}

.reviews-link {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    background: linear-gradient(135deg, #4285F4 0%, #34A853 100%);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 6px 25px rgba(66, 133, 244, 0.3);
    transition: all 0.3s ease;
}

.reviews-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(66, 133, 244, 0.6);
    background: linear-gradient(135deg, #3367D6 0%, #137333 100%);
}

/* Services Section */
.services-section {
    padding: 80px 0;
    background: #1a1a1a;
}

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

.service-item {
    background: #222222;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    border: 1px solid #333;
    transition: all 0.3s ease;
}

.service-item:hover {
    background: #2a2a2a;
    border-color: #555555;
    transform: translateY(-5px);
}

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

.service-icon i {
    font-size: 1.5rem;
    color: white;
}

.service-item h3 {
    font-family: 'Roboto Slab', serif;
    font-size: 1.3rem;
    color: white;
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-item p {
    color: #cccccc;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(15px);
        flex-direction: column;
        padding: 2rem 1rem;
        box-shadow: 0 5px 30px rgba(0, 0, 0, 0.5);
        gap: 1.5rem;
    }

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

    .nav-toggle {
        display: flex;
    }

    .hero {
        padding: 100px 20px 60px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

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

    .btn {
        width: 100%;
        max-width: 300px;
    }

    .hero-features {
        justify-content: center;
        gap: 1.5rem;
    }

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

    .about-stats {
        justify-content: center;
        gap: 1.5rem;
    }

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

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .cta-buttons-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .video-container {
        margin: 0 15px;
    }
    
    .footer-content-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .nav {
        padding: 0.5rem 1rem;
    }

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

    .hero-features {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .about-stats {
        flex-direction: column;
        gap: 1rem;
    }

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

    .form-card {
        padding: 2rem;
    }
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: #222222;
}

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

.cta-content h2 {
    font-family: 'Roboto Slab', serif;
    font-size: 2.5rem;
    color: white;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-content > p {
    font-size: 1.2rem;
    color: #cccccc;
    margin-bottom: 3rem;
    line-height: 1.6;
}

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

.cta-card {
    background: #1a1a1a;
    border-radius: 8px;
    padding: 2.5rem;
    border: 1px solid #333;
    text-align: center;
    transition: all 0.3s ease;
}

.cta-card:hover {
    transform: translateY(-5px);
    border-color: #555555;
    background: #2a2a2a;
}

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

.cta-icon i {
    font-size: 2rem;
    color: white;
}

.cta-card h3 {
    font-family: 'Roboto Slab', serif;
    font-size: 1.5rem;
    color: white;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-card p {
    color: #cccccc;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.cta-btn {
    display: inline-block;
    background: #333333;
    color: white;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

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

.financing-highlight {
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 8px;
    padding: 2rem;
    max-width: 500px;
    margin: 0 auto;
}

.financing-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-align: left;
}

.financing-content i {
    font-size: 2rem;
    color: #333333;
    flex-shrink: 0;
}

.financing-content h4 {
    font-family: 'Roboto Slab', serif;
    color: white;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.financing-content p {
    color: #cccccc;
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.5;
}

.bbb-badge {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.bbb-badge:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
}

/* Footer Styles */
.footer {
    background: #000000;
    color: white;
    padding: 2rem 0;
    text-align: center;
}

.footer-content-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-content p {
    color: #e0e0e0;
    margin: 0;
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    color: #e0e0e0;
    font-size: 1.2rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid #333;
}

.social-link:hover {
    color: white;
    background: #333;
    transform: translateY(-2px);
}

/* Mobile Responsive for CTA */
@media (max-width: 768px) {
    .cta-buttons-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .cta-card {
        padding: 2rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .cta-section {
        padding: 4rem 0;
    }
    
    .cta-card {
        padding: 1.5rem;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
    }
    
    .financing-content {
        flex-direction: column;
        text-align: center;
    }
}

/* Form Pages Styles */
.form-page-section {
    padding: 120px 0 80px;
    background: #1a1a1a;
    min-height: 100vh;
}

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

.form-page-header h1 {
    font-family: 'Roboto Slab', serif;
    font-size: 3rem;
    color: white;
    font-weight: 700;
    margin-bottom: 1rem;
}

.form-page-header p {
    font-size: 1.2rem;
    color: #cccccc;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.form-page-content {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 3rem;
    align-items: start;
}

.form-card-single {
    background: #222222;
    border-radius: 8px;
    padding: 3rem;
    border: 1px solid #333;
}

.form-card-single .form-header h2 {
    font-family: 'Roboto Slab', serif;
    font-size: 1.8rem;
    color: white;
    font-weight: 700;
    margin-bottom: 1rem;
}

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

.form-group label {
    display: block;
    color: white;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.form-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info-card,
.financing-card,
.emergency-contact-card {
    background: #222222;
    border-radius: 8px;
    padding: 2rem;
    border: 1px solid #333;
}

.contact-info-card h3,
.financing-card h3,
.emergency-contact-card h3 {
    font-family: 'Roboto Slab', serif;
    color: white;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.contact-item,
.step-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-item:last-child,
.step-item:last-child {
    margin-bottom: 0;
}

.contact-item i,
.step-item i {
    color: #333333;
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
    margin-top: 0.2rem;
}

.contact-item div,
.step-item div {
    flex: 1;
}

.contact-item strong,
.step-item strong {
    color: white;
    display: block;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.contact-item span,
.step-item span {
    color: #cccccc;
    font-size: 0.9rem;
    line-height: 1.4;
}

.contact-item a {
    color: white;
    text-decoration: none;
    font-weight: 600;
}

.contact-item a:hover {
    text-decoration: underline;
}

.financing-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.financing-card li {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    margin-bottom: 1rem;
    color: #cccccc;
}

.financing-card li:last-child {
    margin-bottom: 0;
}

.financing-card li i {
    color: #333333;
    font-size: 0.9rem;
    width: 16px;
}

.financing-info,
.emergency-notice {
    background: #2a2a2a;
    border: 1px solid #333;
    border-radius: 8px;
    padding: 1.5rem;
    margin: 2rem 0;
}

.financing-badge,
.emergency-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #333333;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.financing-info p,
.emergency-notice p {
    color: #cccccc;
    margin: 0;
    line-height: 1.5;
}

.emergency-notice a {
    color: white;
    font-weight: 600;
    text-decoration: none;
}

.emergency-notice a:hover {
    text-decoration: underline;
}

.emergency-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.emergency-info i {
    color: #333333;
    font-size: 1.5rem;
}

.emergency-info div strong {
    color: white;
    display: block;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.emergency-info div a {
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
}

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

.emergency-contact-card p {
    color: #cccccc;
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Form Pages Mobile Responsive */
@media (max-width: 768px) {
    .form-page-header h1 {
        font-size: 2.2rem;
    }
    
    .form-page-header p {
        font-size: 1.1rem;
    }
    
    .form-page-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-card-single {
        padding: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .form-page-section {
        padding: 100px 0 60px;
    }
    
    .form-page-header h1 {
        font-size: 1.8rem;
    }
    
    .form-card-single {
        padding: 1.5rem;
    }
    
    .contact-info-card,
    .financing-card,
    .emergency-contact-card {
        padding: 1.5rem;
    }
}