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

body {
    font-family: 'Lato', sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Fixed Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 2rem;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

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

.logo-placeholder {
    display: flex;
    align-items: center;
    gap: 0.5rem; 
    font-weight: bold;
    font-size: 1.2rem;
    color: #1e3a8a; 
}

.logo-placeholder a {
    display: flex; 
    align-items: center; 
    gap: 0.5rem; 
    text-decoration: none; 
    color: #1e3a8a;">
}

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

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

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

.phone-btn {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    color: #ffffff !important;
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s ease;
}

.phone-btn-mobile {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    color: #ffffff !important;
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s ease;
    margin-top: 1rem;
    display: inline-block;
    text-align: center;
}

.phone-btn:hover {
    transform: translateY(-2px);
    color: #ffffff;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 1rem;
}

.mobile-menu.active {
    display: block;
}

.mobile-menu a {
    display: block;
    padding: 1rem 0;
    color: #333;
    text-decoration: none;
    border-bottom: 1px solid #eee;
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #ffffff;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    z-index: 0;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    width: 100%;
    padding: 0 2rem;
    margin: 0 auto;
    text-align: center;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.google-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin: 1.5rem 0;
}

.stars {
    color: #ffd700;
    font-size: 1.5rem;
}

.rating-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.3s ease;
}

.rating-link:hover {
    opacity: 0.8;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    line-height: 1.8;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

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

.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    color: #ffffff;
}

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

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* Common Features Section */
.common-features {
    padding: 5rem 2rem;
    background: #ffffff;
}

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

.features-content h3 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #333;
    font-weight: 700;
}

.features-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #555;
    line-height: 1.7;
}

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

.features-list li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: #333;
}

.features-list li i {
    color: #22c55e;
    font-size: 1.2rem;
    margin-right: 1rem;
    flex-shrink: 0;
}

.features-image {
    border-radius: 15px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    text-align: center;
}

.features-image img {
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    border-radius: 15px;
}

/* Ideas Section */
.ideas-section {
  padding: 5rem 2rem;
  background: #f9fafb;
}

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

.idea-card {
  background: #ffffff;
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease;
}

.idea-card:hover {
  transform: translateY(-8px);
}

.idea-icon {
  font-size: 3rem;
  color: #e60023; /* Pinterest Red */
  margin-bottom: 1rem;
}

.idea-card:nth-child(2) .idea-icon {
  color: #1e3a8a; /* DeepAI Blue */
}

.idea-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #1e293b;
}

.idea-card p {
  color: #64748b;
  font-size: 1rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.idea-link {
  display: inline-block;
  padding: 0.6rem 1.2rem;
  border-radius: 25px;
  background: #1e3a8a;
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
}

.idea-link:hover {
  background: #3b82f6;
}

.get-started-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

/* Get Started */
.remodel-card p {
  margin-bottom: 1rem;
}

.step-button {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    background: #1e3a8a;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.8);
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 0;
    border-radius: 10px;
    max-width: 800px;
    width: 90%;
    max-height: 80vh;
    overflow: hidden;
}

.modal-header {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.close {
    color: white;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover {
    opacity: 0.7;
}

.modal-body {
    padding: 2rem;
    /*max-height: 60vh;*/
    overflow-y: auto;
}

.modal-slider {
    text-align: center;
}

.modal-image {
    width: 100%;
    /*height: 300px;*/
    background: linear-gradient(45deg, #667eea, #764ba2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.modal-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.slider-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.slider-btn {
    background: #3498db;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}

.slider-btn:hover {
    background: #2980b9;
}

.slider-btn:disabled {
    background: #bdc3c7;
    cursor: not-allowed;
}

.slide-counter {
    text-align: center;
    margin-top: 1rem;
    color: #666;
}

/* Why Remodel Section */
.why-remodel-section {
  padding: 5rem 2rem;
  background: #ffffff;
}

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

.remodel-card {
  background: #f1f5f9;
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  transition: transform 0.3s ease;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.05);
}

.remodel-card:hover {
  transform: translateY(-6px);
}

.remodel-icon {
  font-size: 2.5rem;
  color: #1e3a8a;
  margin-bottom: 1rem;
}

.remodel-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: #1e293b;
}

.remodel-card p {
  font-size: 1rem;
  color: #475569;
  line-height: 1.6;
}


/* Services Section */
.services {
    padding: 5rem 2rem;
    background: #f8f9fa;
}

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

.section-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 3rem;
    color: #333;
    font-weight: 700;
}

.section-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    border: none;
    border-radius: 2px;
    margin: 1rem auto 2rem auto;
}

p.section-subtitle {
    text-align: center;
    max-width: 1200px; 
    margin: 0 auto 3rem; 
    font-size: 1.1rem; 
    color: #555;">
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.service-card {
    width: 400px;
    height: 500px;
    background: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    justify-self: center;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-image {
    height: 325px;
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1e40af;
    font-size: 1.1rem;
}

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

.service-content {
    height: 175px;
    background: #1e3a8a;
    color: #ffffff;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.service-content p {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: 0.5rem;
}

.learn-more {
    background: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.learn-more:hover {
    background: #ffffff;
    color: #1e3a8a;
}

.learn-more a {
    color: #ffffff;
    text-decoration: none;
}

.learn-more a:hover {
    color: #1e3a8a;
}

/* About Section */
.about {
    padding: 5rem 2rem;
    background: #f8fafc;
}

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

.about-card {
    text-align: center;
    padding: 2rem;
    background: #ffffff;
    border-radius: 15px;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 6px rgba(59, 130, 246, 0.1);
}

.about-card:hover {
    transform: translateY(-5px);
}

.about-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: #1e3a8a;
    font-size: 3rem;
}

.about-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.about-card p {
    color: #64748b;
}

/* Areas Served Section */
.areas-served {
    padding: 5rem 2rem;
    background: #f1f5f9;
    position: relative;
}

.map-container {
    width: 100%;
    overflow: hidden;
}

.map-inner {
    display: flex;
    position: relative;
    width: 100%;
    height: 500px;
}

.map-placeholder {
    flex: 1;
    background-color: #ddd;
    height: 100%;
}

.areas-menu {
    width: 300px;
    position: absolute;
    top: 20px;
    right: 100px;
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(30, 58, 138, 0.2);
    overflow-y: auto;
    max-height: 90%;
    z-index: 2;
}

.areas-header {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    color: #ffffff;
    padding: 1rem;
    text-align: center;
    font-weight: 600;
}

.areas-list {
    max-height: 300px;
    overflow-y: auto;
}

.areas-list::-webkit-scrollbar {
    width: 6px;
}

.areas-list::-webkit-scrollbar-thumb {
    background-color: rgba(59, 130, 246, 0.5); /* soft blue */
    border-radius: 4px;
}

.area-item {
    padding: 0.8rem 1rem;
    border-bottom: 1px solid #eee;
    transition: background 0.3s ease;
}

.area-item:hover {
    background: #f1f5f9;
}

/* Contact Section */
.contact {
    padding: 5rem 2rem;
    background: #ffffff;
}

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

.contact-card {
    text-align: center;
    padding: 2rem;
    background: #ffffff;
    border-radius: 15px;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 6px rgba(59, 130, 246, 0.1);
}

.contact-card:hover {
    transform: translateY(-5px);
}

.contact-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: #1e3a8a;
    font-size: 3rem;
}

.contact-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.contact-card p {
    color: #64748b;
    font-size: 1.1rem;
}

.contact-card a {
    color: #3b82f6;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-card a:hover {
    color: #1e3a8a;
}

/* Footer */
.footer {
    background: #1e3a8a;
    color: #ffffff;
    text-align: center;
    padding: 2rem;
}

.footer p {
    font-size: 1rem;
    opacity: 0.9;
}

.footer-link {
    color: #ffffff;
    font-size: 0.9rem;
    margin-left: 1rem;
    text-decoration: underline;
}
.footer-link:hover {
    text-decoration: none;
}


/* Responsive Design */
@media (max-width: 1200px) {
    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

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

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

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

    .features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .features-content h3 {
        font-size: 2rem;
    }

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

    .service-card {
        width: 100%;
        max-width: 400px;
    }

    .map-inner {
        display: block;
        height: auto;
    }

    .map-placeholder {
        height: 300px;
        width: 100%;
    }

    .areas-menu {
        position: static;
        width: 100%;
        margin-top: 1rem;
        max-height: none;
        border-radius: 0;
        box-shadow: none;
    }

    .areas-list {
        max-height: 250px;
        overflow-y: auto;  
    }
}

@media (max-width: 900px) {
    .get-started-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    section.hero {
        margin-top: 5rem;
    }
}

@media (max-width: 600px) {
    .get-started-grid {
        grid-template-columns: 1fr;
    }
}

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

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

    .features-content h3 {
        font-size: 1.8rem;
    }

    .navbar {
        padding: 1rem;
    }

    .hero-content {
        padding: 0 1rem;
    }
}