/* CSS START */
:root {
    --font-heading: 'Raleway', sans-serif;
    --font-body: 'Playfair Display', serif;
    --color-primary: #C59494;
    --color-primary-dark: #8E5A5A;
    /* Even darker for high visibility */
    --color-primary-light: #FBECEC;
    --color-text-dark: #2C2C2C;
    --color-text-light: #4a4a4a;
    --color-bg-light: #FAF9F9;
    --color-white: #FFFFFF;
    --radius: 12px;
    --transition: all 0.3s ease;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

html,
body {
    background-color: var(--color-bg-light);
}

body {
    font-family: var(--font-body);
    color: var(--color-text-dark);
    overflow-x: hidden;
    line-height: 1.6;
}

.contact-icon-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: var(--color-primary-light);
    color: var(--color-primary-dark);
    border-radius: 50%;
    font-size: 1.4rem;
    transition: var(--transition);
}

.contact-icon-link:hover {
    background: var(--color-primary-dark);
    color: var(--color-white);
    transform: translateY(-2px);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--color-text-dark);
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.highlight {
    color: #D8B4B4;
    /* Brighter version of the primary color */
    font-style: italic;
    font-weight: 800;
}

.section-header {
    margin-bottom: 3rem;
    text-align: left;
}

.section-header.center {
    text-align: center;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.decorative-label {
    display: inline-block;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-primary-dark);
    margin-bottom: 0.5rem;
    background: var(--color-primary-light);
    padding: 0.4rem 1rem;
    border-radius: 50px;
}

.seo-sentence {
    margin-top: 2rem;
    font-size: 1.1rem;
    color: var(--color-text-light);
    font-style: italic;
}

.rounded-box {
    border-radius: var(--radius);
    overflow: hidden;
}

.btn-primary,
.btn-submit,
.btn-light-outline {
    display: inline-block;
    padding: 0.9rem 2rem;
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background: var(--color-primary);
    color: var(--color-white);
}

.btn-primary:hover {
    background: var(--color-primary-dark);
    transform: translateY(-2px);
}

.btn-submit {
    width: 100%;
    background: var(--color-text-dark);
    color: var(--color-white);
    margin-top: 1rem;
}

.btn-long-text {
    text-transform: none;
    letter-spacing: normal;
    font-size: 0.9rem !important;
    padding: 0.8rem 1.2rem !important;
    white-space: normal;
    line-height: 1.4;
    height: auto;
    width: auto;
    max-width: 100%;
}

.btn-submit:hover {
    background: var(--color-primary-dark);
}

.btn-light-outline {
    background: transparent;
    border: 2px solid #D8B4B4;
    color: #D8B4B4;
    font-weight: 900;
}

.btn-light-outline:hover {
    background: #D8B4B4;
    color: #fff;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.button-group {
    display: flex;
    gap: 1rem;
}

.trust-line {
    font-size: 0.95rem;
    color: #D8B4B4;
    font-family: var(--font-heading);
    font-weight: 900;
}

.trust-line i {
    color: #FFD700;
    margin-right: 0.3rem;
}

#main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: var(--transition);
    background: transparent;
}

#main-header.scrolled {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    padding: 0.8rem 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 70px;
    width: auto;
    object-fit: contain;
    transition: var(--transition);
    mix-blend-mode: multiply;
    padding: 5px 0;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-links a:not(.btn-primary) {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.05rem;
    text-transform: uppercase;
    color: #C59494;
    letter-spacing: 0.5px;
    text-shadow: 0.4px 0 0 #C59494, -0.2px 0 0 #C59494;
}

.nav-links a:not(.btn-primary):hover {
    color: var(--color-primary-dark);
}

.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #fff;
    min-width: 200px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    z-index: 1;
    top: 100%;
    left: 0;
    border-top: 3px solid var(--color-primary);
    border-radius: 0 0 8px 8px;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content a {
    color: var(--color-text-dark);
    padding: 12px 16px;
    display: block;
    text-transform: capitalize;
    font-size: 0.9rem;
}

.dropdown-content a:hover {
    background-color: var(--color-bg-light);
    color: var(--color-primary);
}

.menu-toggle {
    display: none;
    cursor: pointer;
    z-index: 3000;
    position: relative;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: var(--color-text-dark);
    transition: 0.3s;
}

.hero-section {
    padding: 180px 0 100px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.2) 100%), url('hero_background.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

@media (max-width: 1024px) {
    .hero-section {
        background-attachment: scroll;
    }
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #FFFFFF;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.6);
}

.subheader {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.95);
    max-width: 600px;
    font-weight: 500;
    line-height: 1.6;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.hero-form-wrapper {
    background: var(--color-primary-light);
    padding: 2.5rem;
    box-shadow: var(--shadow);
    border: 1px solid rgba(216, 180, 180, 0.3);
}

.form-group {
    margin-bottom: 1rem;
}

.form-row {
    display: flex;
    gap: 1rem;
}

.form-group.half {
    flex: 1;
}

textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #ddd;
    background: #FAFAFA;
    border-radius: var(--radius);
    font-family: var(--font-body);
    min-height: 150px;
    resize: vertical;
}

input,
select {
    width: 100%;
    padding: 1rem;
    border: 1px solid #ddd;
    background: #FAFAFA;
    font-family: var(--font-body);
    border-radius: var(--radius);
}

input:focus,
select:focus {
    outline: none;
    border-color: var(--color-primary);
    background: #fff;
}

.reviews-section {
    padding: 6rem 0;
    background-color: #fff;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.review-card {
    background: var(--color-bg-light);
    padding: 2rem;
    text-align: center;
    border: 1px solid #f0f0f0;
}

.stars {
    color: #D8B4B4;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.review-text {
    font-style: italic;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.gallery-section {
    padding: 6rem 0;
    background: var(--color-bg-light);
}

.gallery-grid-expanded {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.gallery-item-wrapper,
.gallery-pair-wrapper {
    width: 100%;
    text-align: center;
}

.gallery-pair-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.gallery-caption {
    margin-bottom: 1.2rem;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--color-text-dark);
}

.gallery-item {
    overflow: hidden;
    position: relative;
    height: 450px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item.main-feature-img {
    height: auto;
    max-height: 700px;
}

.soft-cta {
    margin-top: 5rem;
    padding: 4rem;
    background: var(--color-white);
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow);
}

.soft-cta h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.process-section {
    padding: 6rem 0;
    background: #fff;
}

@media (max-width: 768px) {
    .process-steps.three-steps {
        grid-template-columns: 1fr;
    }
}

.ba-grid-container {
    padding: 6rem 0;
    background: #fff;
}

.ba-static-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    margin-top: 3rem;
}

.ba-item {
    position: relative;
    overflow: hidden;
}

.ba-item img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.ba-item:hover img {
    transform: translateY(-5px);
}

.ba-item p {
    text-align: center;
    margin-top: 1.25rem;
    font-weight: 700;
    font-family: var(--font-heading);
    color: var(--color-primary-dark);
    font-size: 1.2rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .ba-static-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .ba-item img {
        height: 350px;
    }
}


.step {
    text-align: center;
    padding: 2rem;
    background: var(--color-bg-light);
    border-radius: var(--radius);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
}

.step-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.services-section {
    padding: 6rem 0;
    background-color: var(--color-bg-light);
}

.services-list-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-image-card {
    background: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.service-image-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.card-image {
    height: 220px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s ease;
}

.service-image-card:hover .card-image img {
    transform: scale(1.1);
}

.card-content {
    padding: 1.5rem;
    text-align: center;
}

.card-content h3 {
    margin-bottom: 0.5rem;
    color: var(--color-primary-dark);
}

.card-content p {
    font-size: 0.9rem;
    color: var(--color-text-light);
}

.service-image-card.centered-card {
    grid-column: 2 / 3;
}

.section-footer-cta {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

.about-section {
    padding: 6rem 0;
    background: #fff;
}

.grid-2-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.subheader-text {
    font-size: 1.2rem;
    color: var(--color-primary-dark);
    font-weight: 600;
    margin-bottom: 1rem;
    font-style: italic;
}

.about-checks {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.check-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-family: var(--font-heading);
}

.check-item i {
    color: var(--color-primary);
    font-size: 1.2rem;
}

.areas-section-pink {
    padding: 6rem 0;
    background-color: var(--color-primary-light);
}

.area-list-vertical {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    font-family: var(--font-heading);
    font-weight: 600;
}

.area-list-vertical li i {
    margin-right: 0.5rem;
    color: var(--color-primary-dark);
}

.areas-text h2 {
    margin-bottom: 1rem;
}

.areas-text p {
    margin-bottom: 2rem;
}

.cta-section-footer {
    padding: 6rem 0;
    background: #fff;
}

.cta-content h2 {
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.contact-methods {
    margin-top: 2rem;
    font-size: 1.1rem;
}

.contact-methods p {
    margin-bottom: 0.5rem;
}

.footer-form {
    background: var(--color-primary-light);
    padding: 2.5rem;
    border-radius: var(--radius);
    border: 1px solid rgba(216, 180, 180, 0.3);
    box-shadow: var(--shadow);
}

.footer-form h3 {
    margin-bottom: 1rem;
}

.footer-pink {
    background: var(--color-primary-light);
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.footer-logo {
    max-width: 200px;
    height: auto !important;
    object-fit: contain;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 2rem;
}

.guarantee-badge {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    background: #fff;
    border-radius: 50px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    color: var(--color-primary-dark);
    font-weight: 700;
    font-size: 0.9rem;
}

.footer-bottom {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    color: #777;
}

.label {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--color-primary);
    color: var(--color-white);
    padding: 0.5rem 1.2rem;
    font-weight: 700;
    border-radius: var(--radius);
    font-family: var(--font-heading);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.desktop-only-text {
    display: block;
}

.mobile-only-text {
    display: none;
}

@media (max-width: 900px) {
    .services-list-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-image-card.centered-card {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.25rem;
    }

    h1 {
        font-size: 28px;
        line-height: 1.2;
    }

    h2 {
        font-size: 22px;
    }

    h3 {
        font-size: 18px;
    }

    p {
        font-size: 16px;
    }

    section {
        margin-bottom: 40px;
    }

    .two-column {
        display: block;
    }

    .two-column div {
        width: 100%;
    }

    nav {
        padding: 12px 0;
    }

    .menu-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        width: 200px;
        position: absolute;
        top: 70px;
        right: 1.5rem;
        left: auto;
        background: rgba(255, 255, 255, 0.35);
        backdrop-filter: blur(30px);
        -webkit-backdrop-filter: blur(30px);
        flex-direction: column;
        padding: 1.2rem;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
        border-radius: var(--radius);
        border: 1px solid rgba(255, 255, 255, 0.2);
        align-items: flex-end;
        text-align: right;
        z-index: 2000;
    }

    .nav-links li {
        width: 100%;
        margin-bottom: 0.1rem;
    }

    .nav-links a:not(.btn-primary) {
        display: block;
        padding: 0.5rem 0;
        width: 100%;
        font-size: 0.95rem;
        font-weight: 900;
        color: #C59494;
        text-shadow: 0.4px 0 0 #C59494;
    }

    .dropdown-content {
        position: static;
        display: none;
        box-shadow: none;
        background: transparent;
        padding: 0.5rem 1.5rem 0.5rem 0;
        border: none;
        margin-top: 0.3rem;
        text-align: right;
    }

    .dropdown-content a {
        font-size: 0.75rem;
        padding: 0.4rem 0;
    }

    .dropdown.active .dropdown-content {
        display: block;
    }

    .nav-links.active {
        display: flex;
    }

    .hero-grid,
    .reviews-grid,
    .grid-2-col,
    .process-steps.three-steps {
        grid-template-columns: 1fr;
    }

    .services-list-grid {
        grid-template-columns: 1fr;
    }

    .service-image-card.centered-card {
        grid-column: auto;
    }

    .gallery-pair-images {
        grid-template-columns: 1fr;
    }

    .gallery-item {
        height: 300px;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        text-align: left;
        gap: 3rem 2rem;
    }

    .footer-col:first-child {
        grid-column: 1 / -1;
    }

    .desktop-only-text {
        display: none;
    }

    .mobile-only-text {
        display: block;
    }
}

@media (max-width: 480px) {
    .footer-content {
        grid-template-columns: 1fr;
    }
}


/* Lightbox Styles */
.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 5000;
    display: none;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox-overlay.active {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.5);
    transform: scale(0.9);
    transition: transform 0.3s ease;
    cursor: default;
}

.lightbox-overlay.active .lightbox-content {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
    z-index: 5001;
}

.lightbox-close:hover {
    color: var(--color-primary);
}

.lightbox-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    font-size: 50px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 5001;
    padding: 20px;
    user-select: none;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 4px;
}

.lightbox-arrow:hover {
    color: var(--color-primary);
    background: rgba(0, 0, 0, 0.6);
}

.lightbox-arrow.left {
    left: 30px;
}

.lightbox-arrow.right {
    right: 30px;
}

.zoomable-image {
    cursor: zoom-in;
}

.section-center {
    padding: 40px;
    text-align: center;
}

.section-heading {
    color: #1a1a1a;
    margin-bottom: 20px;
}

.container-narrow {
    max-width: 900px;
    margin: 0 auto;
}

.lead-text {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--color-text-light);
    margin-bottom: 2rem;
}

.faq-section {
    padding: 6rem 0;
    background-color: #fff;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 2.5rem;
}

.faq-question {
    font-family: var(--font-heading);
    margin-bottom: 0.8rem;
    color: var(--color-primary-dark);
    font-size: 1.4rem;
}

.faq-answer {
    font-size: 1.1rem;
    line-height: 1.6;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    justify-content: center;
    max-width: 900px;
    margin: 0 auto;
    list-style: none;
}

.check-item-styled {
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-family: var(--font-heading);
}

.check-mark {
    color: var(--color-primary);
    font-weight: bold;
}


.trust-strip {
    background: var(--color-bg-light);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 1.5rem 0;
}

.trust-items {
    list-style: none;
    display: flex;
    justify-content: space-around;
    gap: 2rem;
    flex-wrap: wrap;
    padding: 0;
    margin: 0;
}

.trust-items li {
    font-weight: 700;
    font-size: 1rem;
    color: var(--color-primary-dark);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

@media (max-width: 768px) {
    .trust-items {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        text-align: center;
    }
}


.service-intro {
    padding: 6rem 0;
    background: #fff;
    text-align: center;
}

.service-intro .container {
    max-width: 900px;
    margin: 0 auto;
}

.service-intro h2 {
    font-size: 2.5rem;
    color: var(--color-primary-dark);
    margin-bottom: 1.5rem;
    font-family: var(--font-heading);
}

.service-intro p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--color-text-light);
}

@media (max-width: 768px) {
    .service-intro h2 {
        font-size: 2rem;
    }

    .service-intro p {
        font-size: 1.1rem;
    }
}


.service-area {
    padding: 6rem 0;
    background: var(--color-bg-light);
    text-align: center;
}

.service-area .container {
    max-width: 900px;
    margin: 0 auto;
}

.service-area h2 {
    font-size: 2.5rem;
    color: var(--color-primary-dark);
    margin-bottom:
        1.5rem;
}

.service-area p {
    font-size: 1.2rem;
    line-height: 1.8;
}

.reviews {
    padding: 6rem 0;
    background: #fff;
}

.reviews h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: var(--color-primary-dark);
}

.review {
    background: var(--color-bg-light);
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    border-left: 5px solid var(--color-primary);
}

.review p {
    font-size: 1.15rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.review strong {
    color: var(--color-primary-dark);
}


.cta-section {
    padding: 6rem 0;
    text-align: center;
    background-color: #fff;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.cta-section h2 {
    font-size: 2.5rem;
    color: var(--color-primary-dark);
    margin-bottom: 1.5rem;
}

.cta-section p {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}


.cta-section a:not(.btn-primary) {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 700;
}

.cta-section a:not(.btn-primary):hover {
    text-decoration: underline;
}


.service-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    text-align: left;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card h3 {
    margin-bottom: 1rem;
    color: var(--color-primary-dark);
}

.service-card p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.service-link {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 700;
    display: inline-block;
}

.service-link:hover {
    text-decoration: underline;
}

.phone-cta {
    margin-top: 1.5rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.phone-cta a {
    color: var(--color-primary-dark);
    text-decoration: none;
}

.phone-cta a:hover {
    text-decoration: underline;
}

/* CSS END */