.services-section {
    padding: 60px 20px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.services-card {
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
    border: 1px solid var(--border-light);
    border-top: 4px solid var(--gold);
}

.services-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.services-card .service-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
}

.services-card img {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
}

.services-card h3 {
    color: var(--gold);
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.services-card p {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.7;
}

.service-icon-box {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.service-icon-box i {
    font-size: 36px;
    color: var(--text-light);
}

.services-list-section {
    max-width: 900px;
    margin: 60px auto;
    padding: 40px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    border-radius: var(--radius-lg);
    text-align: center;
    color: var(--text-light);
}

.services-list-section h3 {
    color: var(--gold);
    font-size: 1.5rem;
    margin-bottom: 25px;
}

.services-list-img {
    max-width: 300px;
    margin: 0 auto 25px;
}

.services-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px 30px;
    list-style: none;
    padding: 0;
    margin: 25px auto 0;
    max-width: 900px;
}

.services-list li {
    color: var(--text-light);
    font-size: var(--spacing-md);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
}

.services-list li i {
    color: var(--gold);
    font-size: 20px;
}

.services {
    font: 700 28px var(--font-main);
    padding: 30px 25px;
    border-radius: var(--radius-xl);
    text-align: center;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    color: var(--text-light);
    margin: 15px auto;
    max-width: 800px;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
}

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

.services2 {
    font: 700 28px var(--font-main);
    padding: 20px 20px;
    border-radius: 30px;
    text-align: center;
    box-shadow: 0 8px 8px rgba(0, 0, 0, 0.8);
    background-color: #00305b;
    color: var(--text-light);
    margin: 0;
}

.services2 ul {
    padding-left: 15%;
    margin: 20px 0;
}

.services2 li {
    text-align: left;
    margin: 5px 0;
}

.services3 {
    font: 700 28px var(--font-main);
    padding: 20px 20px;
    border-radius: 30px;
    text-align: center;
    box-shadow: 0 8px 8px rgba(0, 0, 0, 0.8);
    background-color: #3d3934;
    color: var(--text-light);
    width: 20%;
    height: 150px;
}

.services3 img {
    height: 75px;
    width: 50px;
}

.serv3 {
    width: 100%;
    margin-left: 0%;
}

.services3 ul {
    padding-left: 15%;
    margin: 20px 0;
}

.services3 li {
    text-align: left;
    margin: 5px 0;
}

.services4 {
    font: 700 28px var(--font-main);
    padding: 20px 20px;
    border-radius: 30px;
    text-align: center;
    box-shadow: 0 8px 8px rgba(0, 0, 0, 0.8);
    background-color: #3d3934;
    color: var(--text-light);
    margin: 5%;
    width: 80%;
    float: left;
}

.services4 ul {
    padding-left: 15%;
    margin: 20px 0;
}

.services4 li {
    text-align: left;
    margin: 5px 0;
}

.services5 {
    font-family: helvetica-w01-roman;
    text-align: center;
    background-color: var(--bg-card);
    color: var(--text-light);
    margin: 0%;
    width: 25%;
    border: solid 1px rgba(255,255,255,0.2);
    float: left;
    font-size: 1em;
    padding: 0;
    width: 300px;
    height: 340px;
}

.services5 img {
    width: 100%;
    height: 170px;
    margin: 0;
}

@media (min-width: 768px) {
    .services {
        margin: 0 15%;
    }
    .services2 {
        margin: 0 5%;
    }
    .services3 {
        margin: 0 1%;
    }
    .services2 ul {
        display: grid;
        grid-template: repeat(3, auto) / repeat(3, 1fr);
        gap: 10px;
        max-width: 800px;
        margin: 20px auto;
    }
    .service2 li {
        margin: 0;
    }
}

.service-page-content {
    padding: 60px 20px;
    max-width: 900px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    border-radius: var(--radius-lg);
    margin-top: -30px;
    position: relative;
    z-index: 2;
}

.service-page-content h2 {
    color: var(--gold);
    font-size: 1.75rem;
    margin-bottom: 20px;
}

.service-page-content h3 {
    color: var(--teal);
    font-size: 1.3rem;
    margin: 30px 0 15px;
}

.service-page-content p {
    color: rgba(255,255,255,0.85);
    font-size: var(--spacing-md);
    line-height: 1.8;
    margin-bottom: 20px;
}

.service-page-content ul,
.service-page-content ol {
    color: rgba(255,255,255,0.85);
    margin-bottom: 20px;
    padding-left: 25px;
}

.service-page-content li {
    margin-bottom: 10px;
    line-height: 1.7;
}

.service-page-content .content-img {
    max-width: 100%;
    border-radius: var(--radius-md);
    margin: 30px auto;
    display: block;
}

.service-cta-section {
    text-align: center;
    margin: 40px 0;
}

.service-cta-section .btn-primary {
    display: inline-block;
    background: var(--gold);
    color: var(--text-light);
    padding: 18px 45px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.service-cta-section .btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.service-bottom-section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
    align-items: start;
}

.service-reviews-card {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    border-radius: 70px;
    padding: 30px 20px;
    text-align: center;
    border: 1px solid var(--border-light);
}

.service-reviews-card h4 {
    color: var(--teal);
    font-size: 0.85rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-reviews-card img {
    max-width: 140px;
    margin-bottom: 15px;
}

.service-reviews-card a {
    display: block;
}

.service-reviews-card .gallery-link {
    color: var(--gold);
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
    line-height: 1.6;
}

.service-features-card {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    border-radius: var(--radius-lg);
    padding: 30px;
    grid-column: span 2;
    border: 1px solid var(--border-light);
}

.service-features-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px 30px;
}

.service-features-card li {
    color: rgba(255,255,255,0.85);
    font-size: 15px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.5;
}

.service-features-card li i {
    color: var(--gold);
    font-size: 18px;
    flex-shrink: 0;
    margin-top: 2px;
}

@media (max-width: 900px) {
    .service-bottom-section {
        grid-template-columns: 1fr;
    }

    .service-features-card {
        grid-column: span 1;
    }

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

.services-page-section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.services-page-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.8;
}

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

.service-card-link {
    text-decoration: none;
}

.service-card {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    border-radius: var(--radius-lg);
    padding: 35px 25px;
    text-align: center;
    border: 1px solid var(--border-gold);
    transition: all 0.3s;
    height: 100%;
    box-sizing: border-box;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.service-card-icon {
    width: 70px;
    height: 70px;
    background: rgba(200,150,43,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: var(--gold);
}

.service-card h2,
.service-card h3 {
    color: var(--text-light);
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.service-card p {
    color: rgba(255,255,255,0.75);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-card-link-text {
    color: var(--gold);
    font-weight: 600;
    font-size: 0.9rem;
}

.service-card-link-text i {
    transition: transform 0.3s;
}

.service-card:hover .service-card-link-text i {
    transform: translateX(5px);
}

.service-card-cta {
    background: linear-gradient(135deg, rgba(200,150,43,0.2) 0%, rgba(200,150,43,0.1) 100%);
    border-color: var(--gold);
}

.service-card-cta .btn-primary {
    margin-top: 10px;
}

.service-areas-section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.service-areas-section h2 {
    color: var(--gold);
    font-size: 1.8rem;
    margin-bottom: 30px;
}

.service-areas-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.service-area-tag {
    background: rgba(200,150,43,0.15);
    border: 1px solid rgba(200,150,43,0.3);
    border-radius: var(--radius-full);
    padding: 10px 20px;
    color: var(--text-muted);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.service-area-tag i {
    color: var(--gold);
}

.service-areas-homepage {
    margin-top: 50px;
    text-align: center;
}

.service-areas-homepage h3 {
    color: var(--gold);
    font-size: 1.5rem;
    margin-bottom: 25px;
}
