/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    line-height: 1.2;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Color Classes */
.text-navy { color: #1e3a8a; }
.text-sky { color: #0ea5e9; }
.text-coral { color: #ff7f7f; }
.text-teal { color: #0d9488; }
.text-yellow { color: #fbbf24; }
.text-light-gray { color: #f8fafc; }
.text-dark-gray { color: #374151; }

.bg-navy { background-color: #1e3a8a; }
.bg-sky { background-color: #0ea5e9; }
.bg-coral { background-color: #ff7f7f; }
.bg-teal { background-color: #0d9488; }
.bg-light-gray { background-color: #f8fafc; }
.bg-dark-gray { background-color: #374151; }

/* Utilities */
.text-center { text-align: center; }
.font-bold { font-weight: 700; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    gap: 8px;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.btn-primary {
    background-color: #ff7f7f;
    color: white;
}

.btn-primary:hover {
    background-color: #ff6b6b;
}

.btn-secondary {
    background-color: #0ea5e9;
    color: white;
}

.btn-secondary:hover {
    background-color: #0284c7;
}

.btn-outline {
    background-color: transparent;
    border: 2px solid white;
    color: white;
}

.btn-outline:hover {
    background-color: white;
    color: #1e3a8a;
}

.btn-phone {
    background-color: #ff7f7f;
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-phone:hover {
    background-color: #ff6b6b;
    transform: scale(1.05);
}

.btn-coral {
    background-color: #ff7f7f;
    color: white;
}

.btn-coral:hover {
    background-color: #ff6b6b;
}

.btn-teal {
    background-color: #0d9488;
    color: white;
}

.btn-teal:hover {
    background-color: #0f766e;
}

.btn-navy {
    background-color: #1e3a8a;
    color: white;
}

.btn-navy:hover {
    background-color: #1e40af;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    font-size: 18px;
}

/* Header */
.header {
    background-color: white;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #1e3a8a;
}

.logo i {
    color: #0d9488;
    margin-right: 8px;
}

.nav {
    display: flex;
    gap: 32px;
}

.nav a {
    color: #374151;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav a:hover {
    color: #1e3a8a;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: #1e3a8a;
    cursor: pointer;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 16px;
    padding: 16px 0;
    border-top: 1px solid #e5e7eb;
}

.mobile-menu a {
    color: #374151;
    font-weight: 500;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('https://images.unsplash.com/photo-1584622650111-993a426fbf0a?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&h=1080');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(30, 58, 138, 0.7);
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    margin-bottom: 32px;
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 48px;
    align-items: center;
}

.hero-badges {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

/* Sections */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: #1e3a8a;
    margin-bottom: 24px;
}

.section-header p {
    font-size: 20px;
    color: #374151;
    max-width: 600px;
    margin: 0 auto;
}

/* Why Choose Us */
.why-choose-us {
    background-color: #f8fafc;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-bottom: 48px;
}

.feature-card {
    background-color: white;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.feature-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: white;
    font-size: 24px;
}

.feature-card h3 {
    font-size: 20px;
    color: #1e3a8a;
    margin-bottom: 16px;
}

.feature-card p {
    color: #374151;
    line-height: 1.6;
}

/* Services */
.services {
    background-color: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    margin-bottom: 48px;
}

.service-card {
    background-color: #f8fafc;
    padding: 32px;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 24px;
}

.service-card h3 {
    font-size: 24px;
    color: #1e3a8a;
    margin-bottom: 16px;
}

.service-card p {
    color: #374151;
    margin-bottom: 16px;
}

.service-card ul {
    list-style: none;
    padding: 0;
}

.service-card li {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    color: #374151;
    font-size: 14px;
}

/* Gallery */
.gallery {
    background-color: white;
}

.before-after-section {
    margin-bottom: 64px;
}

.before-after-section h3 {
    font-size: 32px;
    color: #1e3a8a;
    text-align: center;
    margin-bottom: 32px;
}

.before-after-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 32px;
}

.before-after-card {
    background-color: #f8fafc;
    padding: 24px;
    border-radius: 16px;
}

.comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.before, .after {
    text-align: center;
}

.label {
    font-weight: 600;
    color: #374151;
    margin-bottom: 8px;
    font-size: 12px;
    letter-spacing: 1px;
}

.comparison img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
}

.project-info {
    text-align: center;
    color: #374151;
}

.recent-projects h3 {
    font-size: 32px;
    color: #1e3a8a;
    text-align: center;
    margin-bottom: 32px;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.project-card {
    cursor: pointer;
    transition: all 0.3s ease;
}

.project-card:hover {
    transform: translateY(-5px);
}

.project-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.project-card:hover img {
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.project-card p {
    text-align: center;
    margin-top: 12px;
    font-size: 14px;
    color: #374151;
}

/* Cost & Areas */
.cost-areas {
    background-color: #f8fafc;
}

.cost-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    margin-bottom: 64px;
    align-items: start;
}

.cost-info h3 {
    font-size: 32px;
    color: #1e3a8a;
    margin-bottom: 24px;
}

.included-list {
    list-style: none;
    padding: 0;
    margin-bottom: 32px;
}

.included-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    color: #374151;
}

.calculator-card {
    background-color: white;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.calculator-card h3 {
    font-size: 24px;
    color: #1e3a8a;
    text-align: center;
    margin-bottom: 24px;
}

.calculator-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    color: #374151;
    margin-bottom: 8px;
}

.form-group select,
.form-group input,
.form-group textarea {
    padding: 12px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group select:focus,
.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1e3a8a;
}

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: normal;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: 16px;
    height: 16px;
}

.estimate-result {
    background-color: #f8fafc;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
}

.estimate-price {
    font-size: 32px;
    font-weight: 700;
    color: #1e3a8a;
    margin: 8px 0;
}

.estimate-note {
    font-size: 12px;
    color: #6b7280;
}

/* Service Areas */
.service-areas-section {
    margin-top: 64px;
}

.areas-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.areas-list h3 {
    font-size: 32px;
    color: #1e3a8a;
    margin-bottom: 32px;
}

.areas-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 32px;
}

.area-column {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.area-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #374151;
    font-weight: 500;
}

.local-benefits {
    background-color: white;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.local-benefits h4 {
    font-size: 18px;
    color: #1e3a8a;
    margin-bottom: 16px;
}

.local-benefits ul {
    list-style: none;
    padding: 0;
}

.local-benefits li {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    color: #374151;
    font-size: 14px;
}

.map-section {
    background-color: white;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.map-section h3 {
    font-size: 32px;
    color: #1e3a8a;
    text-align: center;
    margin-bottom: 24px;
}

.map-placeholder {
    background-color: #e5e7eb;
    height: 250px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: #374151;
}

.map-placeholder i {
    font-size: 48px;
    margin-bottom: 8px;
}

.contact-info {
    text-align: center;
}

.contact-info h4 {
    font-size: 20px;
    color: #1e3a8a;
    margin-bottom: 8px;
}

.contact-info p {
    color: #374151;
    margin-bottom: 4px;
}

.contact-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
}

/* Testimonials */
.testimonials {
    background-color: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-bottom: 48px;
}

.testimonial-card {
    background-color: #f8fafc;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}

.testimonial-stars {
    display: flex;
    color: #fbbf24;
    font-size: 20px;
    margin-right: 16px;
}

.testimonial-rating {
    color: #374151;
    font-weight: 500;
}

.testimonial-review {
    color: #374151;
    font-style: italic;
    margin-bottom: 24px;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    background-color: #ff7f7f;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
}

.author-info h4 {
    color: #1e3a8a;
    font-size: 16px;
    margin-bottom: 4px;
}

.author-info p {
    color: #6b7280;
    font-size: 14px;
}

.testimonials-summary {
    text-align: center;
}

.rating-summary {
    display: inline-flex;
    align-items: center;
    background-color: #f8fafc;
    padding: 24px 32px;
    border-radius: 50px;
    margin-bottom: 32px;
    gap: 16px;
}

.stars {
    display: flex;
    color: #fbbf24;
    font-size: 32px;
}

.rating-score {
    font-size: 32px;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 4px;
}

.rating-count {
    color: #374151;
}

.review-links {
    display: flex;
    justify-content: center;
    gap: 24px;
}

.review-link {
    color: #374151;
    transition: color 0.3s ease;
}

.review-link:hover {
    color: #1e3a8a;
}

.review-link i {
    font-size: 32px;
    margin-right: 8px;
}

/* Contact */
.contact {
    background-color: #1e3a8a;
    color: white;
}

.contact .section-header h2,
.contact .section-header p {
    color: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.form-card {
    background-color: white;
    padding: 32px;
    border-radius: 16px;
    color: #374151;
}

.form-card h3 {
    font-size: 32px;
    color: #1e3a8a;
    margin-bottom: 24px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-disclaimer {
    font-size: 12px;
    color: #6b7280;
    text-align: center;
    margin-top: 16px;
}

.contact-details h3 {
    font-size: 32px;
    margin-bottom: 32px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 32px;
}

.contact-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.contact-text h4 {
    font-weight: 600;
    margin-bottom: 8px;
}

.contact-text p {
    font-size: 14px;
    opacity: 0.8;
}

.contact-link {
    color: #ff7f7f;
    font-size: 18px;
    text-decoration: none;
}

.contact-link:hover {
    text-decoration: underline;
}

.why-choose-card {
    background-color: rgba(255,255,255,0.1);
    padding: 24px;
    border-radius: 12px;
    margin-bottom: 32px;
}

.why-choose-card h4 {
    font-size: 20px;
    margin-bottom: 16px;
}

.why-choose-card ul {
    list-style: none;
    padding: 0;
}

.why-choose-card li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.social-links {
    text-align: center;
}

.social-links h4 {
    font-size: 18px;
    margin-bottom: 16px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background-color: #ff7f7f;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: #ff6b6b;
    transform: scale(1.1);
}

/* Footer */
.footer {
    background-color: #374151;
    color: white;
    padding: 48px 0 24px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    margin-bottom: 32px;
}

.footer-logo {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
}

.footer-logo i {
    color: #0d9488;
    margin-right: 8px;
}

.footer-section p {
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 16px;
    line-height: 1.6;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background-color: #ff7f7f;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background-color: #ff6b6b;
    transform: scale(1.1);
}

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 16px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section li {
    margin-bottom: 8px;
}

.footer-section a {
    color: rgba(255,255,255,0.8);
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #ff7f7f;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-contact-item i {
    width: 16px;
}

.footer-bottom {
    border-top: 1px solid #4b5563;
    padding-top: 24px;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.copyright p {
    margin-bottom: 4px;
    font-size: 14px;
    opacity: 0.8;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    color: rgba(255,255,255,0.8);
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ff7f7f;
}

.seo-keywords {
    text-align: center;
    opacity: 0.5;
    font-size: 12px;
    line-height: 1.4;
}

/* Responsive Design */
@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .mobile-menu.active {
        display: flex;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-badges {
        gap: 16px;
    }
    
    .badge {
        font-size: 12px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .before-after-grid {
        grid-template-columns: 1fr;
    }
    
    .projects-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .cost-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .areas-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .areas-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-buttons {
        flex-direction: column;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    section {
        padding: 60px 0;
    }
    
    .section-header {
        margin-bottom: 48px;
    }
    
    .feature-card,
    .service-card {
        padding: 24px;
    }
    
    .calculator-card,
    .form-card {
        padding: 24px;
    }
    
    .comparison {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .comparison img {
        height: 150px;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading states */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* Animation for testimonials */
.testimonial-card {
    animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Form validation styles */
.form-group input:invalid:not(:placeholder-shown),
.form-group select:invalid:not(:placeholder-shown),
.form-group textarea:invalid:not(:placeholder-shown) {
    border-color: #ef4444;
}

.form-group input:valid:not(:placeholder-shown),
.form-group select:valid:not(:placeholder-shown),
.form-group textarea:valid:not(:placeholder-shown) {
    border-color: #10b981;
}