/* AMP Landscaping LLC Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fbf3e4;
}

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

/* Banner */
.banner {
    background-color: #f5e0b3;
    text-align: center;
    padding: 8px 0;
    font-weight: 600;
    color: #161616;
}

/* Header */
.header {
    background-color: #fbf3e4;
    padding: 24px 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.logo h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #151515;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.phone {
    color: #7d7054;
    text-decoration: none;
    font-weight: 400;
    font-size: 16px;
}

.phone:hover {
    color: #493f24;
}

/* Navigation */
.nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 32px;
}

.nav a {
    color: #151515;
    text-decoration: none;
    font-weight: 400;
    letter-spacing: 0.214em;
    text-transform: uppercase;
    border-bottom: 1px solid transparent;
    padding-bottom: 2px;
    transition: all 0.3s;
}

.nav a:hover,
.nav a.active {
    color: #9b8753;
    border-bottom-color: #9b8753;
}

/* Hero Section */
.hero {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 600px;
    background-color: #fbf3e4;
}

.hero-image {
    flex: 1;
    max-width: 50%;
    padding-left: 24px;
}

.hero-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 0;
}

.hero-content {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero-content h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: #151515;
    margin-bottom: 32px;
    line-height: 1.2;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #f2d799;
    color: #161515;
    padding: 16px 32px;
    text-decoration: none;
    border-radius: 0;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 0.125em;
    text-transform: uppercase;
    transition: all 0.3s;
    min-height: 56px;
}

.cta-button:hover {
    background-color: #e3ca8f;
    box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.5);
}

/* Services Section */
.services {
    padding: 80px 0;
    background-color: #fff;
}

.services h2 {
    text-align: center;
    font-size: 32px;
    font-weight: 600;
    color: #828282;
    margin-bottom: 48px;
    letter-spacing: 0.083em;
    text-transform: uppercase;
}

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

.service-card {
    background-color: #fbf3e4;
    padding: 40px;
    border: 1px solid #e2e2e2;
    text-align: center;
    transition: all 0.3s;
}

.service-card:hover {
    box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.5);
}

.service-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.service-card-link:hover .service-card {
    transform: translateY(-5px);
    cursor: pointer;
}

.service-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 26px;
    font-weight: 700;
    color: #1b1b1b;
    margin-bottom: 16px;
}

.service-card p {
    color: #575757;
    line-height: 1.5;
}

/* Gallery Carousel */
.gallery {
    padding: 80px 0;
    background-color: #fbf3e4;
}

.gallery h2 {
    text-align: center;
    font-size: 32px;
    font-weight: 600;
    color: #828282;
    margin-bottom: 48px;
    letter-spacing: 0.083em;
    text-transform: uppercase;
}

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

.carousel-wrapper {
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.carousel-track {
    display: flex;
    transition: transform 0.3s ease;
}

.carousel-slide {
    min-width: 100%;
    height: 600px;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background-color: #f8f8f8;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    z-index: 10;
    transition: background 0.3s;
}

.carousel-btn:hover {
    background: rgba(0, 0, 0, 0.7);
}

.prev-btn {
    left: 10px;
}

.next-btn {
    right: 10px;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background-color: #fff;
}

.contact h2 {
    text-align: center;
    font-size: 32px;
    font-weight: 600;
    color: #828282;
    margin-bottom: 48px;
    letter-spacing: 0.083em;
    text-transform: uppercase;
}

.contact-form {
    max-width: 800px;
    margin: 0 auto;
}

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

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e2e2e2;
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #9b8753;
}

.submit-btn {
    background-color: #f2d799;
    color: #161515;
    padding: 16px 32px;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 100%;
}

.submit-btn:hover {
    background-color: #e3ca8f;
}

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

.modal-content {
    background-color: #fff;
    margin: 5% auto;
    padding: 40px;
    border-radius: 8px;
    width: 90%;
    max-width: 600px;
    position: relative;
}

.close {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    color: #999;
}

.close:hover {
    color: #333;
}

.modal h3 {
    margin-bottom: 24px;
    color: #333;
    text-align: center;
}

/* Contact Page Styles */
.contact-page {
    padding: 80px 0;
    background-color: #fff;
}

.contact-page h1 {
    text-align: center;
    font-size: 36px;
    font-weight: 600;
    color: #333;
    margin-bottom: 16px;
}

.contact-intro {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 48px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-info-section {
    padding: 60px 0;
    background-color: #fbf3e4;
}

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

.contact-card {
    background: white;
    padding: 32px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.contact-card h3 {
    font-size: 20px;
    margin-bottom: 16px;
    color: #333;
}

.contact-card a {
    color: #9b8753;
    text-decoration: none;
    font-weight: 600;
}

/* Reviews Page Styles */
.reviews-page {
    padding: 80px 0;
    background-color: #fff;
}

.reviews-page h1 {
    text-align: center;
    font-size: 36px;
    font-weight: 600;
    color: #333;
    margin-bottom: 16px;
}

.reviews-intro {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 48px;
}

.review-widget {
    text-align: center;
    margin-bottom: 48px;
    padding: 32px;
    background-color: #f8f8f8;
    border-radius: 8px;
}

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

.review-card {
    background: #fbf3e4;
    padding: 32px;
    border-radius: 8px;
    border-left: 4px solid #9b8753;
}

.stars {
    color: #ffd700;
    font-size: 20px;
    margin-bottom: 16px;
}

.review-text {
    font-style: italic;
    margin-bottom: 16px;
    line-height: 1.6;
}

.reviewer {
    font-weight: 600;
    color: #333;
    margin-bottom: 4px;
}

.review-service {
    color: #666;
    font-size: 14px;
}

.review-platforms {
    text-align: center;
    padding: 48px 0;
}

.review-platforms h3 {
    margin-bottom: 24px;
    color: #333;
}

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

.platform-btn {
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s;
}

.platform-btn:hover {
    transform: translateY(-2px);
}

.platform-btn.google {
    background: #4285f4;
    color: white;
}

.platform-btn.facebook {
    background: #1877f2;
    color: white;
}

.platform-btn.trustpilot {
    background: #00b67a;
    color: white;
}

.cta-section {
    padding: 60px 0;
    background-color: #fbf3e4;
    text-align: center;
}

.cta-section h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: #333;
}

.cta-section p {
    font-size: 18px;
    color: #666;
    margin-bottom: 32px;
}

/* Services Page Styles */
.services-page {
    padding: 80px 0;
    background-color: #fff;
}

.services-page h1 {
    text-align: center;
    font-size: 36px;
    font-weight: 600;
    color: #333;
    margin-bottom: 16px;
}

.services-intro {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 48px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.detailed-services {
    max-width: 900px;
    margin: 0 auto;
}

.service-detail {
    background-color: #fbf3e4;
    padding: 40px;
    margin-bottom: 32px;
    border-radius: 8px;
    border-left: 4px solid #9b8753;
}

.service-detail h2 {
    font-size: 24px;
    color: #333;
    margin-bottom: 16px;
}

.service-detail p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 16px;
}

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

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

.service-detail li:before {
    content: "✓";
    color: #9b8753;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.service-cta {
    text-align: center;
    padding: 48px 0;
    background-color: #fbf3e4;
    border-radius: 8px;
    margin-top: 32px;
}

.service-cta h3 {
    font-size: 28px;
    color: #333;
    margin-bottom: 16px;
}

.service-cta p {
    font-size: 18px;
    color: #666;
    margin-bottom: 24px;
}

/* Footer */
.footer {
    background-color: #fbf3e4;
    padding: 32px 0;
    border-top: 1px solid #e2e2e2;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-left p {
    color: #525252;
    font-size: 12px;
    letter-spacing: 0.045em;
}

.footer-nav {
    display: flex;
    gap: 24px;
}

.footer-nav a {
    color: #7d7054;
    text-decoration: none;
    font-size: 12px;
    padding: 4px 8px;
}

.footer-nav a:hover {
    color: #493f24;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
    
    .header-content {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .nav ul {
        flex-direction: column;
        gap: 16px;
    }
    
    .hero {
        flex-direction: column;
        min-height: auto;
    }
    
    .hero-image {
        max-width: 100%;
        order: 2;
    }
    
    .hero-content {
        order: 1;
        padding: 32px 16px;
    }
    
    .hero-content h2 {
        font-size: 28px;
    }
    
    .services {
        padding: 40px 0;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .service-card {
        padding: 24px;
    }
    
    .gallery {
        padding: 40px 0;
    }
    
    .carousel-slide {
        height: 300px;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .modal-content {
        margin: 10% auto;
        padding: 20px;
        width: 95%;
    }
    
    .reviews-bg {
        background-attachment: scroll;
        padding: 40px 0;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}