/* Reset and Base Styles */
:root {
    --primary-color: #133b24;
    --secondary-color: #0d2919;
    --accent-color: #2d5d3f;
    --accent-light: #a3c1ae; /* New lighter accent color */
    --text-color: #333333;
    --light-gray: #f5f5f5;
    --medium-gray: #e0e0e0;
    --dark-gray: #757575;
    --white: #ffffff;
    --error-color: #f44336;
    --success-color: #133b24;
    --box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    --box-shadow-hover: 0 8px 20px rgba(19, 59, 36, 0.2);
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Raleway', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
}

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

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--secondary-color);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    color: var(--white);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

/* Header Styles */
.site-header {
    background-color: #f8f8f8;
    box-shadow: var(--box-shadow);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    max-height: 100px;
    width: auto;
    background-color: #f8f8f8;
    display: block;
}

.logo h1 {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
}

.main-nav ul {
    display: flex;
}

.main-nav li {
    margin-left: 30px;
}

.main-nav a {
    color: var(--text-color);
    font-weight: 600;
    font-size: 16px;
}

.main-nav a:hover {
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    background-color: var(--light-gray);
    padding: 80px 0;
    text-align: center;
    background-size: cover;
    background-position: center;
    position: relative;
    color: var(--white);
    overflow: hidden;
}

/* Special hero style for index and services pages */
.index-hero, .services-hero {
    background-image: linear-gradient(rgba(19, 59, 36, 0.85), rgba(19, 59, 36, 0.85)), url('../images/logo.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    min-height: 500px;
}

.hero::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 50px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 70'%3E%3Cpath fill='%23ffffff' fill-opacity='1' d='M0,32L80,32C160,32,320,32,480,42.7C640,53,800,75,960,69.3C1120,64,1280,32,1360,16L1440,0L1440,70L1360,70C1280,70,1120,70,960,70C800,70,640,70,480,70C320,70,160,70,80,70L0,70Z'%3E%3C/path%3E%3C/svg%3E");
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.hero-content {
    max-width: 700px;
    animation: fadeInUp 1s ease-out;
}

.hero-tagline {
    font-size: 16px;
    font-weight: 600;
    color: var(--accent-light);
    margin-bottom: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    animation: fadeInDown 0.8s ease-out;
}

.hero-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 18px;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-description {
    font-size: 20px;
    margin-bottom: 30px;
    color: var(--white);
    opacity: 0.95;
    line-height: 1.4;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-cta {
    background-color: var(--white);
    color: var(--primary-color);
    border: none;
    padding: 15px 35px;
    font-size: 17px;
    font-weight: 600;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    animation: fadeInUp 1s ease-out 0.6s both;
    transition: all 0.3s ease;
}

.hero-cta:hover {
    background-color: var(--accent-light);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.hero-graphics {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-element {
    position: absolute;
    border-radius: 50%;
    background: rgba(163, 193, 174, 0.1);
    border: 2px solid rgba(163, 193, 174, 0.2);
}

.element-1 {
    width: 150px;
    height: 150px;
    top: 20%;
    left: 10%;
    animation: float 6s ease-in-out infinite;
}

.element-2 {
    width: 100px;
    height: 100px;
    top: 60%;
    right: 15%;
    animation: float 5s ease-in-out infinite reverse;
}

.element-3 {
    width: 80px;
    height: 80px;
    bottom: 30%;
    left: 85%;
    animation: float 7s ease-in-out infinite;
}

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

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-20px) rotate(90deg);
    }
    50% {
        transform: translateY(-10px) rotate(180deg);
    }
    75% {
        transform: translateY(-30px) rotate(270deg);
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 60px 0;
        min-height: 350px;
        text-align: center;
    }

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

    .hero-tagline {
        font-size: 14px;
        margin-bottom: 15px;
    }

    .hero h1 {
        font-size: 38px;
        margin-bottom: 18px;
    }

    .hero p {
        font-size: 16px;
        margin-bottom: 25px;
    }

    .hero-animation {
        margin-top: 25px;
    }

    .service-cards {
        grid-template-columns: 1fr;
        gap: 25px;
        margin: 30px 0 25px;
    }

    .service-card {
        padding: 25px 20px;
    }

    .service-card h3 {
        font-size: 18px;
    }

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

    .about-preview {
        padding: 50px 0;
    }

    .feature-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .feature {
        padding: 25px;
        text-align: center;
    }

    .feature h3 {
        font-size: 20px;
    }

    .footer {
        padding: 50px 0 25px;
    }

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

    .footer-section {
        margin-bottom: 25px;
    }

    .footer-section h3 {
        font-size: 18px;
        margin-bottom: 15px;
    }

    /* About Page Mobile */
    .page-header {
        padding: 40px 0;
    }

    .page-header h2 {
        font-size: 28px;
    }

    .about-content {
        padding: 50px 0;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-text h3 {
        font-size: 20px;
    }

    .team-section {
        padding: 50px 0;
    }

    .team-section h3 {
        font-size: 20px;
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .team-member {
        padding: 18px;
    }

    .member-photo {
        width: 100px;
        height: 100px;
        margin: 0 auto 12px;
    }

    .cta-section {
        padding: 50px 0;
    }

    .cta-section h3 {
        font-size: 20px;
    }

    /* Services Page Mobile */
    .services-intro {
        padding: 25px 0;
    }

    .services-content {
        padding: 15px 0 35px;
    }

    .service-item {
        padding: 25px 20px;
        margin-bottom: 25px;
    }

    .service-details h3 {
        font-size: 20px;
    }

    .service-details h4 {
        font-size: 16px;
    }

    /* Contact Page Mobile */
    .contact-content {
        padding: 50px 0;
    }

    .contact-content h2 {
        font-size: 26px;
        margin-bottom: 18px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 30px;
    }

    .contact-form-container {
        padding: 25px 20px;
    }

    .contact-form-container h3 {
        font-size: 20px;
    }

    .contact-form {
        gap: 16px;
    }

    .info-card {
        padding: 20px;
    }

    .info-card h3 {
        font-size: 20px;
        margin-bottom: 18px;
    }

    .area-list {
        columns: 1;
    }

    /* Products Section Mobile */
    .products-section {
        padding: 50px 0;
    }

    .products-section h2 {
        font-size: 26px;
        margin-bottom: 30px;
    }

    .products-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .products-info {
        padding-right: 0;
    }

    .custom-products {
        margin-top: 25px;
        padding: 20px;
    }

    .custom-products h3 {
        font-size: 18px;
    }

    /* Call to Action Mobile */
    .call-to-action {
        padding: 50px 0;
    }

    .call-to-action h2 {
        font-size: 28px;
    }

    .call-to-action p {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .btn-primary {
        padding: 12px 24px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 50px 0;
        min-height: 300px;
    }

    .hero h1 {
        font-size: 32px;
        margin-bottom: 15px;
    }

    .hero p {
        font-size: 15px;
        margin-bottom: 20px;
    }

    .hero-tagline {
        font-size: 13px;
        margin-bottom: 12px;
    }

    .service-card {
        padding: 20px 15px;
    }

    .service-card h3 {
        font-size: 17px;
    }

    .service-card p {
        font-size: 14px;
    }

    .footer {
        padding: 40px 0 20px;
    }

    .footer-section {
        margin-bottom: 20px;
    }

    /* Mobile adjustments for all pages */
    .page-header {
        padding: 35px 0;
    }

    .page-header h2 {
        font-size: 24px;
    }

    .about-content,
    .services-intro,
    .services-content,
    .contact-content,
    .products-section,
    .call-to-action {
        padding: 30px 0;
    }

    .service-item {
        padding: 18px 15px;
        margin-bottom: 15px;
    }

    .service-details h3 {
        margin-bottom: 6px;
    }

    .service-details h4 {
        margin: 6px 0 3px;
    }

    .service-list {
        margin-bottom: 6px;
    }

    .service-list li {
        margin-bottom: 3px;
    }

    .service-frequency {
        margin-top: 6px;
    }

    .pricing-info {
        margin: 6px 0;
    }

    .pricing-info h4 {
        margin-bottom: 3px;
    }

    .pricing-info p {
        margin-bottom: 3px;
    }

    .contact-form-container,
    .info-card {
        padding: 18px 15px;
    }

    .team-member {
        padding: 15px;
    }

    .member-photo {
        width: 80px;
        height: 80px;
        margin: 0 auto 10px;
    }

    .custom-products {
        margin-top: 20px;
        padding: 15px;
    }
}

/* Services Section */
.services {
    padding: 60px 0 70px;
    position: relative;
    z-index: 1;
    background-color: var(--white);
}

.services h2 {
    font-size: 30px;
    text-align: center;
    margin-bottom: 20px;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 12px;
}

.services h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--accent-color);
}

.service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0 30px;
}

.service-item {
    background-color: var(--white);
    border-radius: 12px;
    box-shadow: var(--box-shadow);
    padding: 35px 30px;
    margin-bottom: 25px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    transition: var(--transition);
    border-left: 5px solid var(--primary-color);
    display: flex;
    flex-direction: column;
}

.service-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--box-shadow-hover);
}

.service-header {
    border-bottom: 2px solid var(--light-gray);
    padding-bottom: 20px;
    margin-bottom: 25px;
}

.service-header h3 {
    color: var(--primary-color);
    margin-bottom: 8px;
    font-size: 26px;
    font-weight: 700;
    text-align: center;
}

.service-details h3 {
    color: var(--primary-color);
    margin-bottom: 6px;
    font-size: 22px;
    text-align: center;
}

.service-description {
    color: var(--dark-gray);
    font-size: 16px;
    line-height: 1.6;
    text-align: center;
    margin-bottom: 0;
}

.service-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start;
}

.service-main {
    display: flex;
    flex-direction: column;
}

.service-details h4 {
    color: var(--primary-color);
    margin: 0 0 15px 0;
    font-size: 20px;
    font-weight: 600;
    border-bottom: 1px solid var(--medium-gray);
    padding-bottom: 8px;
}

.service-list {
    margin-bottom: 20px;
    padding-left: 0;
}

.service-list li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 25px;
    font-size: 15px;
    line-height: 1.5;
    color: var(--text-color);
}

.service-list li:before {
    content: "✓";
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 16px;
}

.service-sidebar {
    background-color: var(--light-gray);
    border-radius: 8px;
    padding: 25px 20px;
    text-align: center;
    border: 1px solid var(--medium-gray);
}

.pricing-info {
    background-color: var(--light-gray);
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    margin: 20px auto 0;
    transition: var(--transition);
    display: block;
    text-decoration: none;
    color: var(--text-color);
    cursor: pointer;
}

.pricing-info:hover {
    transform: translateY(-3px);
    box-shadow: var(--box-shadow-hover);
    background-color: var(--white);
}

.pricing-info h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 18px;
}

.pricing-amount {
    display: block;
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.pricing-details {
    font-size: 14px;
    line-height: 1.5;
    color: var(--dark-gray);
    margin: 0;
}

.service-frequency {
    font-style: italic;
    color: var(--secondary-color);
    margin-top: 15px;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    background-color: rgba(19, 59, 36, 0.1);
    padding: 8px 12px;
    border-radius: 4px;
}

/* Mobile responsive for service cards */
@media (max-width: 768px) {
    .service-item {
        padding: 25px 20px;
    }
    
    .service-content {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .service-details h3 {
        font-size: 22px;
    }
    
    .service-details h4 {
        font-size: 18px;
    }
    
    .pricing-amount {
        font-size: 20px;
    }
}

/* About Preview Section */
.about-preview {
    background-color: var(--accent-light);
    background-image: linear-gradient(135deg, var(--accent-light) 0%, #f5f5f5 100%);
    padding: 60px 0 70px;
    position: relative;
}

.about-preview::before {
    content: "";
    position: absolute;
    top: -2px;
    left: 0;
    width: 100%;
    height: 50px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 70'%3E%3Cpath fill='%23ffffff' fill-opacity='1' d='M0,64L80,58.7C160,53,320,43,480,42.7C640,43,800,53,960,53.3C1120,53,1280,43,1360,37.3L1440,32L1440,0L1360,0C1280,0,1120,0,960,0C800,0,640,0,480,0C320,0,160,0,80,0L0,0Z'%3E%3C/path%3E%3C/svg%3E");
    background-size: cover;
    background-position: center;
}

.about-preview h2 {
    font-size: 30px;
    text-align: center;
    margin-bottom: 20px;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 12px;
}

.about-preview h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--accent-color);
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0 30px;
}

.feature {
    background-color: var(--white);
    padding: 28px 25px;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    text-align: center;
    border-bottom: 4px solid var(--primary-color);
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-hover);
}

.feature h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 20px;
}

.feature p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--dark-gray);
}

.about-preview .btn-secondary {
    display: block;
    width: fit-content;
    margin: 20px auto 0;
    font-size: 17px;
    padding: 12px 28px;
}

/* Footer Styles */
.site-footer {
    background-color: var(--text-color);
    color: var(--white);
    padding: 50px 0 15px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 25px;
}

.footer-section h3 {
    color: var(--accent-light);
    margin-bottom: 15px;
    font-size: 17px;
}

.footer-section p {
    margin-bottom: 8px;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section a {
    color: var(--medium-gray);
}

.footer-section a:hover {
    color: var(--accent-light);
}

.copyright {
    text-align: center;
    padding-top: 15px;
    border-top: 1px solid var(--dark-gray);
    color: var(--medium-gray);
    font-size: 14px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .site-header .container {
        flex-direction: column;
    }
    
    .logo {
        margin-bottom: 20px;
    }
    
    .main-nav ul {
        justify-content: center;
    }
    
    .main-nav li {
        margin: 0 10px;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .hero h2 {
        font-size: 28px;
    }
    
    .services, .about-preview {
        padding: 60px 0;
    }
}

@media (max-width: 576px) {
    .main-nav ul {
        flex-wrap: wrap;
    }
    
    .main-nav li {
        margin: 5px 10px;
    }
    
    .hero h2 {
        font-size: 24px;
    }
    
    .hero p {
        font-size: 16px;
    }
}

/* About Page Styles */
.page-header {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 50px 0;
    text-align: center;
}

.page-header h2 {
    font-size: 32px;
    margin-bottom: 0;
}

.about-content {
    padding: 60px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 35px;
    align-items: center;
}

.about-text h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 22px;
}

.about-text p {
    margin-bottom: 15px;
}

.about-image img {
    border-radius: 8px;
    box-shadow: var(--box-shadow);
    width: 100%;
}

.values-list {
    margin: 15px 0;
}

.values-list li {
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
}

.values-list li:before {
    content: "•";
    color: var(--primary-color);
    font-size: 24px;
    position: absolute;
    left: 0;
    top: -5px;
}

.team-section {
    background-color: var(--light-gray);
    padding: 60px 0;
    text-align: center;
}

.team-section h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 22px;
}

.team-intro {
    text-align: center;
    margin-bottom: 25px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.team-image {
    text-align: center;
    margin-bottom: 40px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.team-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.team-image:hover img {
    transform: scale(1.02);
}

.team-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    background-color: var(--light-gray);
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
}

.team-description p {
    margin-bottom: 15px;
    font-size: 16px;
    line-height: 1.7;
}

.team-description p:last-child {
    margin-bottom: 0;
}

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

.team-member {
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: var(--box-shadow);
    padding: 20px;
    transition: var(--transition);
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.member-photo {
    width: 120px;
    height: 120px;
    margin: 0 auto 15px;
    border-radius: 50%;
    overflow: hidden;
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h4 {
    color: var(--primary-color);
    margin-bottom: 5px;
}

.cta-section {
    padding: 60px 0;
    text-align: center;
    background-color: var(--white);
}

.cta-section h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 22px;
}

.cta-section p {
    margin-bottom: 25px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        order: -1;
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 40px 0;
    }
    
    .page-header h2 {
        font-size: 28px;
    }
    
    .about-content, .team-section, .cta-section {
        padding: 60px 0;
    }
    
    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

@media (max-width: 576px) {
    .page-header h2 {
        font-size: 24px;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        max-width: 300px;
        margin: 0 auto;
    }
}

/* Services Page Styles */
.services-intro {
    padding: 30px 0;
    text-align: center;
    background-color: var(--white);
}

.services-description {
    max-width: 800px;
    margin: 0 auto;
    font-size: 17px;
    line-height: 1.7;
}

.services-content {
    padding: 20px 0 40px;
    background-color: var(--light-gray);
}

.service-item {
    background-color: var(--white);
    border-radius: 12px;
    box-shadow: var(--box-shadow);
    padding: 25px 20px;
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    transition: var(--transition);
    border-left: 5px solid var(--primary-color);
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-hover);
}

.service-item.reverse {
    flex-direction: row;
}

.service-item.reverse .service-details {
    order: 1;
}

.service-image {
    flex: 1;
}

.service-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
}

.service-details {
    padding: 0;
}

.service-details h3 {
    color: var(--primary-color);
    margin-bottom: 6px;
    font-size: 22px;
    text-align: center;
}

.service-details h4 {
    color: var(--secondary-color);
    margin: 6px 0 3px;
    font-size: 17px;
}

.service-list {
    margin-bottom: 6px;
    padding-left: 20px;
}

.service-list li {
    margin-bottom: 3px;
    position: relative;
    padding-left: 15px;
}

.service-frequency {
    font-style: italic;
    color: var(--dark-gray);
    margin-top: 6px;
}

.pricing-info {
    margin: 6px 0;
}

.pricing-info h4 {
    margin-bottom: 3px;
}

.pricing-info p {
    margin-bottom: 3px;
}

.pricing-info .btn {
    margin-top: 20px;
}

@media (max-width: 992px) {
    .service-item {
        grid-template-columns: 1fr;
    }
    
    .service-item.reverse {
        direction: ltr;
    }
    
    .service-image {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .services-intro {
        padding: 25px 0;
    }
    
    .services-description {
        font-size: 16px;
    }
    
    .services-content {
        padding: 15px 0 35px;
    }
    
    .service-details {
        padding: 30px;
    }
    
    .pricing-info {
        padding: 60px 0;
    }
}

@media (max-width: 576px) {
    .service-image {
        height: 200px;
    }
    
    .service-details {
        padding: 20px;
    }
    
    .service-details h3 {
        font-size: 20px;
    }
}

/* Enhanced Contact Page Styles */
.contact-content {
    padding: 60px 0;
    background-color: var(--white);
    position: relative;
    z-index: 1;
}

.contact-content h2 {
    font-size: 30px;
    text-align: center;
    margin-bottom: 20px;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 12px;
}

.contact-content h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--accent-color);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 30px;
}

.contact-form-container {
    background-color: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
}

.contact-info {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.info-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
}

@media (min-width: 768px) {
    .contact-grid {
        grid-template-columns: 3fr 2fr;
    }
}

@media (max-width: 767px) {
    .contact-form-container,
    .info-card {
        padding: 20px;
    }
    
    .contact-grid {
        gap: 20px;
    }
    
    .contact-info {
        gap: 20px;
    }
    
    .contact-content {
        padding: 40px 0;
    }
    
    .contact-content h2 {
        font-size: 28px;
        margin-bottom: 20px;
    }
}

.contact-form-container h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 22px;
    text-align: center;
}

.contact-form-container p {
    margin-bottom: 25px;
    text-align: center;
}

.contact-form {
    display: grid;
    gap: 18px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 6px;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    border: 1px solid var(--medium-gray);
    border-radius: 4px;
    font-family: 'Raleway', sans-serif;
    font-size: 16px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(19, 59, 36, 0.2);
}

.contact-form button {
    justify-self: center;
    margin-top: 10px;
    padding: 12px 30px;
    font-size: 17px;
    width: 100%;
}

.contact-details li {
    margin-bottom: 15px;
    font-size: 17px;
}

.contact-details strong {
    display: block;
    margin-bottom: 6px;
    color: var(--primary-color);
    font-size: 19px;
    font-weight: 700;
}

.area-list {
    margin-top: 12px;
    columns: 2;
    text-align: left;
    max-width: 250px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 600;
}

.area-list li {
    margin-bottom: 8px;
    color: var(--primary-color);
}

.map-section {
    padding: 60px 0 80px;
    background-color: var(--accent-light);
    background-image: linear-gradient(135deg, var(--accent-light) 0%, #f5f5f5 100%);
    position: relative;
}

.map-section h2 {
    font-size: 32px;
    text-align: center;
    margin-bottom: 30px;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 15px;
}

.map-section h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--accent-color);
}

.map-container {
    width: 100%;
    max-width: 900px;
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    margin: 0 auto;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    background-color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--primary-color);
    font-size: 18px;
}

/* Form Validation Styles */
.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: var(--error-color);
}

.error-message {
    color: var(--error-color);
    font-size: 14px;
    margin-top: 5px;
}

.success-message {
    color: var(--success-color);
    background-color: rgba(76, 175, 80, 0.1);
    border: 1px solid var(--success-color);
    border-radius: 4px;
    padding: 20px;
    text-align: center;
    font-weight: 600;
    margin: 20px 0;
}

/* Service Icon Styles */
.service-icon {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Feature Icon Styles */
.feature-icon {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 20px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Call to Action Section */
.call-to-action {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 60px 0;
    text-align: center;
    position: relative;
}

.call-to-action::before {
    content: "";
    position: absolute;
    top: -2px;
    left: 0;
    width: 100%;
    height: 50px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 70'%3E%3Cpath fill='%23f5f5f5' fill-opacity='1' d='M0,64L80,58.7C160,53,320,43,480,42.7C640,43,800,53,960,53.3C1120,53,1280,43,1360,37.3L1440,32L1440,0L1360,0C1280,0,1120,0,960,0C800,0,640,0,480,0C320,0,160,0,80,0L0,0Z'%3E%3C/path%3E%3C/svg%3E");
    background-size: cover;
    background-position: center;
}

.call-to-action h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: var(--white);
}

.call-to-action p {
    font-size: 17px;
    margin-bottom: 25px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

.call-to-action .btn-primary {
    background-color: var(--white);
    color: var(--primary-color);
    border: none;
    padding: 14px 28px;
    font-size: 17px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: var(--transition);
}

.call-to-action .btn-primary:hover {
    background-color: var(--accent-light);
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

/* Responsive adjustments for new sections */
@media (max-width: 768px) {
    .call-to-action {
        padding: 60px 0;
    }
    
    .call-to-action h2 {
        font-size: 28px;
    }
    
    .service-icon {
        font-size: 40px;
        height: 50px;
    }
    
    .feature-icon {
        font-size: 36px;
        height: 45px;
    }
}

@media (max-width: 576px) {
    .call-to-action h2 {
        font-size: 24px;
    }
    
    .call-to-action p {
        font-size: 16px;
    }
}

/* Products Section Styles */
.products-section {
    padding: 60px 0;
    background-color: var(--white);
    text-align: center;
}

.products-section h2 {
    font-size: 30px;
    text-align: center;
    margin-bottom: 35px;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 12px;
}

.products-section h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--accent-color);
}

.products-content {
    max-width: 800px;
    margin: 0 auto;
}

.products-info {
    padding: 0 20px;
}

.products-info p {
    margin-bottom: 15px;
    font-size: 15px;
    line-height: 1.6;
}

.products-list {
    margin: 15px auto;
    padding-left: 20px;
    max-width: 600px;
    text-align: left;
}

.products-list li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 25px;
}

.products-list li:before {
    content: "✓";
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.custom-products {
    margin: 30px auto 0;
    padding: 25px;
    background-color: var(--light-gray);
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
    max-width: 700px;
    text-align: left;
}

.custom-products h3 {
    color: var(--primary-color);
    margin-bottom: 12px;
    font-size: 20px;
    text-align: center;
}

.products-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
}

@media (max-width: 992px) {
    .products-content {
        grid-template-columns: 1fr;
    }
    
    .products-info {
        padding-right: 0;
    }
    
    .products-image {
        order: -1;
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .products-section {
        padding: 60px 0;
    }
    
    .custom-products {
        padding: 20px;
    }
}

.services .btn-secondary {
    display: block;
    width: fit-content;
    margin: 20px auto 0;
    font-size: 17px;
    padding: 12px 28px;
} 