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

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

/* Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(250, 249, 247, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 2rem;
    border-bottom: 1px solid rgba(44, 44, 44, 0.1);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c2c2c;
    text-decoration: none;
}

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

.nav-links a {
    text-decoration: none;
    color: #2c2c2c;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #666;
}

.mobile-nav-toggle {
    display: none;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.75rem;
    border-radius: 8px;
    color: #2c2c2c;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    margin-right: 1rem;
}

.mobile-nav-toggle:hover {
    background: rgba(255, 255, 255, 1);
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.mobile-nav-toggle:active {
    transform: scale(0.95);
}


/* Main Content */
main {
    margin-top: 80px;
}

.section {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Modern Container */
.container-modern {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Modern Hero Section */
.modern-hero {
    position: relative;
    min-height: 100vh;
    min-height: 100svh; /* Use small viewport height for mobile */
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.1) 100%);
    z-index: 1;
}

.hero-content-modern {
    position: relative;
    z-index: 2;
    max-width: 600px;
    padding: 0 2rem;
}

.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255,255,255,0.3);
}

.hero-title-modern {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.brand-highlight {
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: 0.5rem;
}

.subtitle-line {
    display: block;
    font-size: 0.8em;
    font-weight: 400;
    opacity: 0.9;
    line-height: 1.3;
}

.hero-description-modern {
    font-size: 1.25rem;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 2rem;
    max-width: 500px;
}

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

.cta-primary-modern,
.cta-secondary-modern {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.cta-primary-modern {
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #2c2c2c;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

.cta-primary-modern:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(255, 215, 0, 0.4);
}

.cta-secondary-modern {
    background: rgba(255,255,255,0.1);
    color: white;
    border: 2px solid rgba(255,255,255,0.3);
    backdrop-filter: blur(10px);
}

.cta-secondary-modern:hover {
    background: rgba(255,255,255,0.2);
    border-color: rgba(255,255,255,0.5);
}

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

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

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.875rem;
    opacity: 0.8;
    font-weight: 500;
}

.hero-visual {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 50%;
    height: 100%;
    z-index: 2;
}

.hero-image-container {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-main-image {
    width: 80%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
    object-fit: cover;
}

.floating-card {
    position: absolute;
    background: white;
    border-radius: 12px;
    padding: 1rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    animation: float 6s ease-in-out infinite;
}

.card-1 {
    top: 10%;
    right: -10%;
    animation-delay: 0s;
}

.card-2 {
    bottom: 20%;
    right: -5%;
    animation-delay: 2s;
}

.card-3 {
    top: 30%;
    left: -15%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

/* Modern Services Preview */
.services-preview {
    background: #faf9f7;
    padding: 6rem 0;
}

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

.section-title-modern {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c2c2c;
    margin-bottom: 1rem;
}

.section-subtitle-modern {
    font-size: 1.125rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

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

.service-card-modern {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.service-card-modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

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

.service-card-modern h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #2c2c2c;
}

.service-card-modern p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-price {
    font-size: 1.125rem;
    font-weight: 700;
    color: #667eea;
}

.services-cta-container {
    text-align: center;
}

/* Modern About Section */
.about-modern {
    padding: 6rem 0;
    background: white;
}

.about-grid-modern {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-content-modern {
    padding-right: 2rem;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.about-title-modern {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c2c2c;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.about-description-modern {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 1.5rem;
}

.about-features-modern {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.feature-item-modern {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    color: #2c2c2c;
}

.feature-icon-modern {
    font-size: 1.5rem;
}

.about-image-modern {
    position: relative;
}

.about-main-image {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.image-overlay-card {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.stat-number-large {
    font-size: 2rem;
    font-weight: 800;
    color: #667eea;
    margin-bottom: 0.25rem;
}

.stat-label-small {
    font-size: 0.875rem;
    color: #666;
    font-weight: 600;
}

/* Modern Process Section */
.process-modern {
    background: #f8f9fa;
    padding: 6rem 0;
}

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

.process-step-modern {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.process-step-modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.step-number-modern {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.step-content-modern h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 1rem;
}

.step-content-modern p {
    color: #666;
    line-height: 1.6;
}

/* Modern Testimonials Section */
.testimonials-modern {
    padding: 6rem 0;
    background: white;
}

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

.testimonial-card-modern {
    background: #faf9f7;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.testimonial-card-modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.testimonial-rating {
    color: #ffd700;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-style: italic;
    color: #555;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.125rem;
}

.author-info {
    flex: 1;
}

.author-name {
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 0.25rem;
}

.author-service {
    font-size: 0.875rem;
    color: #666;
}

/* Modern CTA Section */
.cta-modern {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 6rem 0;
}

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

.cta-title-modern {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.cta-description-modern {
    font-size: 1.25rem;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 2.5rem;
}

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

/* Utility Classes */
.text-center {
    text-align: center;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #faf9f7 0%, #f5f4f2 100%);
    animation: fadeInUp 1s ease-out;
}

.hero-content {
    max-width: 600px;
    animation: slideInLeft 1s ease-out 0.3s both;
}

.hero h1 {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: #2c2c2c;
    line-height: 1.1;
}

.hero h2 {
    font-size: 1.5rem;
    font-weight: 400;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.4;
}

.hero-image {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 50%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    animation: slideInRight 1s ease-out 0.6s both;
}

/* Introduction Section */
.introduction {
    background: white;
    border-radius: 12px;
    padding: 4rem;
    margin: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.introduction p {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

/* Video Section */
.video-section {
    background: #2c2c2c;
    color: white;
    border-radius: 12px;
    overflow: hidden;
    margin: 2rem;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
}

.video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Why Choose Section */
.why-choose {
    background: white;
    border-radius: 12px;
    padding: 4rem;
    margin: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.why-choose h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #2c2c2c;
}

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

.feature-item {
    padding: 2rem;
    background: #faf9f7;
    border-radius: 8px;
    border-left: 4px solid #2c2c2c;
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-2px);
}

.feature-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: #2c2c2c;
}

.feature-item p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

/* Process Section */
.process {
    background: #faf9f7;
    border-radius: 12px;
    padding: 4rem;
    margin: 2rem;
}

.process h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #2c2c2c;
}

.process-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.process-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c2c2c;
}

.process-item p {
    line-height: 1.6;
    color: #555;
}

/* Photo Section */
.photo-section {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    background: white;
}

.photo-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.photo-text {
    padding: 2rem;
}

.photo-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c2c2c;
    line-height: 1.2;
}

.photo-text p {
    font-size: 1.125rem;
    line-height: 1.6;
    color: #666;
}

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

.photo-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Exterior Care Section */
.exterior-care {
    background: #faf9f7;
    border-radius: 12px;
    padding: 4rem;
    margin: 2rem;
}

.exterior-care .divider {
    width: 60px;
    height: 2px;
    background: #2c2c2c;
    margin: 2rem auto;
}

/* Second Video Section */
.video-section-2 {
    background: #2c2c2c;
    color: white;
    border-radius: 12px;
    overflow: hidden;
    margin: 2rem;
}

/* Reviews Section */
.reviews {
    background: white;
    border-radius: 12px;
    padding: 4rem;
    margin: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.reviews h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #2c2c2c;
}

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

.review-card {
    background: #faf9f7;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #2c2c2c;
}

.review-card .name {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #2c2c2c;
}

.review-card .quote {
    color: #666;
    font-style: italic;
    line-height: 1.5;
}

/* Page-specific styles */
.page-title {
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #2c2c2c;
}

.page-subtitle {
    text-align: center;
    font-size: 1.25rem;
    color: #666;
    margin-bottom: 4rem;
    font-weight: 400;
}

.content-section {
    margin-bottom: 4rem;
}

.content-section h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #2c2c2c;
}

.content-section p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 1.5rem;
}

.content-section p:last-child {
    margin-bottom: 0;
}

.quote-block {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    margin: 3rem 0;
    border-left: 4px solid #2c2c2c;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.quote-block blockquote {
    font-size: 1.25rem;
    font-style: italic;
    color: #444;
    line-height: 1.6;
    margin: 0;
}

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

.value-item {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.value-item:hover {
    transform: translateY(-2px);
}

.value-item h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #2c2c2c;
}

.value-item p {
    color: #666;
    line-height: 1.6;
}

.services-intro {
    padding: 3rem;
    background: white;
    border-radius: 12px;
    margin-bottom: 4rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.services-intro p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
}

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

.service-category {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.service-category:hover {
    transform: translateY(-2px);
}

.service-header {
    background: #2c2c2c;
    color: white;
    padding: 2rem;
}

.service-header h2 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.service-header p {
    color: #ccc;
    font-size: 1rem;
}

.service-content {
    padding: 2rem;
}

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

.service-list li {
    padding: 1.5rem 0;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
    padding-left: 2.5rem;
}

.service-list li:last-child {
    border-bottom: none;
}

.service-list li::before {
    content: counter(service-counter) ".";
    position: absolute;
    left: 0;
    top: 1.5rem;
    font-weight: 600;
    color: #2c2c2c;
    font-size: 1rem;
}

.service-name {
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 0.5rem;
    display: block;
}

.service-description {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
    display: block;
}

.service-details {
    background: #faf9f7;
    padding: 2rem;
    border-radius: 8px;
    margin-top: 2rem;
}

.service-details h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #2c2c2c;
}

.service-details p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.service-details ul {
    margin-left: 1.5rem;
    color: #555;
}

.service-details li {
    margin-bottom: 0.5rem;
}

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

.contact-info {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #2c2c2c;
}

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

.info-section h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #2c2c2c;
}

.info-section p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.info-section a {
    color: #2c2c2c;
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-section a:hover {
    color: #666;
}

.hours-list {
    list-style: none;
}

.hours-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    justify-content: space-between;
}

.hours-list li:last-child {
    border-bottom: none;
}

.contact-form {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.contact-form h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #2c2c2c;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: #faf9f7;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2c2c2c;
    background: white;
}

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

.submit-btn {
    background: #2c2c2c;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
}

.submit-btn:hover {
    background: #444;
}

.submit-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.form-success {
    display: none;
    background: #e8f5e8;
    color: #2d5016;
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
    border-left: 4px solid #4caf50;
}

.last-updated {
    text-align: center;
    font-size: 0.875rem;
    color: #666;
    margin-bottom: 2rem;
}

/* Footer */
.footer {
    background: #2c2c2c;
    color: white;
    padding: 3rem 2rem;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
    color: white;
}

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

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

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

.footer-links a:hover {
    color: white;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Mobile improvements for scrolling */
* {
    -webkit-overflow-scrolling: touch;
}

html, body {
    height: auto;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

html {
    scroll-behavior: smooth;
}

/* Prevent momentum scrolling issues on iOS */
body {
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: none;
}

.modern-hero {
    height: 100vh;
    height: 100svh; /* Use small viewport height for mobile */
}

/* Ensure proper stacking context */
.modern-hero {
    position: relative;
    z-index: 1;
}

/* Fix for mobile browsers address bar */
@media screen and (max-width: 768px) {
    .modern-hero {
        min-height: calc(100vh - env(safe-area-inset-top) - env(safe-area-inset-bottom));
        min-height: calc(100svh - env(safe-area-inset-top) - env(safe-area-inset-bottom));
    }
}

/* Ensure proper scrolling on mobile */
@media (max-width: 768px) {
    .mobile-nav-toggle {
        display: block;
    }

    .nav-links {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(250, 249, 247, 0.95);
        backdrop-filter: blur(10px);
        padding: 1rem;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 999;
    }

    .nav-links.show {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-links li {
        margin: 0.5rem 0;
    }

    .nav-links a {
        display: block;
        padding: 0.75rem 1rem;
        color: #2c2c2c;
        text-decoration: none;
        border-radius: 8px;
        transition: all 0.3s ease;
    }

    .nav-links a:hover {
        background: rgba(102, 126, 234, 0.1);
        color: #667eea;
    }

    .section {
        padding: 3rem 1rem;
    }

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

    .page-subtitle {
        font-size: 1.125rem;
    }

    .hero {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
        min-height: auto;
    }

    .hero-image {
        position: static;
        transform: none;
        width: 100%;
        margin-top: 2rem;
    }

    .hero-content {
        max-width: none;
    }


    /* Modern Hero Mobile Styles */
    .modern-hero {
        min-height: 100vh;
        flex-direction: column;
        text-align: center;
        padding: 2rem 0;
    }

    .hero-content-modern {
        max-width: none;
        padding: 0 1rem;
        margin-bottom: 2rem;
    }

    .hero-title-modern {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .hero-description-modern {
        font-size: 1.125rem;
        max-width: none;
        margin-bottom: 1.5rem;
    }

    .hero-cta-group {
        justify-content: center;
        margin-bottom: 2rem;
    }

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

    .hero-visual {
        display: none; /* Hide visual section on mobile */
    }

    .section-header-modern,
    .cta-content-modern {
        padding: 0 1rem;
    }

    .section-title-modern,
    .cta-title-modern {
        font-size: 2rem;
    }

    .section-subtitle-modern,
    .cta-description-modern {
        font-size: 1rem;
    }

    .about-grid-modern {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-content-modern {
        padding-right: 0;
        text-align: center;
    }

    .about-features-modern {
        justify-content: center;
    }

    .image-overlay-card {
        position: static;
        margin-top: 2rem;
        transform: none;
    }

    .testimonials-grid-modern {
        grid-template-columns: 1fr;
    }

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

    .service-card-modern {
        padding: 1.5rem;
    }

    .process-steps-modern {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .cta-buttons-modern {
        flex-direction: column;
        align-items: center;
    }

    .cta-primary-modern,
    .cta-secondary-modern {
        width: 100%;
        max-width: 300px;
    }

    /* Prevent horizontal scroll issues */
    .modern-hero,
    .section,
    .container-modern,
    main {
        overflow-x: hidden;
        max-width: 100vw;
        box-sizing: border-box;
    }

    /* Ensure proper touch scrolling */
    .modern-hero {
        -webkit-overflow-scrolling: auto;
        overscroll-behavior: none;
    }

    /* Fix any potential z-index issues */
    .modern-hero {
        z-index: 1;
    }

    /* Improve button touch targets on mobile */
    .cta-primary-modern,
    .cta-secondary-modern,
    .mobile-menu-btn,
    .close-menu-btn {
        min-height: 44px;
        min-width: 44px;
        touch-action: manipulation;
    }

    /* Fix container widths on mobile */
    .hero-content-modern,
    .section-header-modern,
    .about-content-modern,
    .cta-content-modern {
        width: 100%;
        max-width: none;
        padding-left: 1rem;
        padding-right: 1rem;
    }

    /* Ensure images don't cause horizontal scroll */
    img {
        max-width: 100%;
        height: auto;
    }

    .introduction {
        padding: 2rem;
        margin: 1rem;
    }

    .why-choose {
        padding: 2rem;
        margin: 1rem;
    }

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

    .process-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .photo-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }

    .photo-text {
        padding: 1rem;
        text-align: center;
    }

    .exterior-care {
        padding: 2rem;
        margin: 1rem;
    }

    .reviews {
        padding: 2rem;
        margin: 1rem;
    }

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

    .content-section h2 {
        font-size: 1.75rem;
    }

    .quote-block {
        padding: 2rem;
    }

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

    .services-intro {
        padding: 2rem;
    }

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

    .service-header {
        padding: 1.5rem;
    }

    .service-content {
        padding: 1.5rem;
    }

    .service-list li {
        flex-direction: column;
        align-items: flex-start;
    }

    .service-description {
        margin-left: 0;
        margin-top: 0.5rem;
    }

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

    .contact-info,
    .contact-form {
        padding: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

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

    .hero h2 {
        font-size: 1.25rem;
    }

    .introduction p {
        font-size: 1.125rem;
    }
}