/* ========================================
   SERVICE PAGES STYLES
   ======================================== */

/* ========================================
   1. LARGE HERO SECTION (Full Width)
   ======================================== */

.service-hero-large {
    position: relative;
    width: 100%;
    min-height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: var(--primary-color);
    margin-top: -2rem;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(20, 50, 40, 0.95), rgba(27, 67, 50, 0.93));
}

.hero-content-large {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--white);
    max-width: 850px;
    padding: 3rem 2rem;
    animation: fadeInUp 0.8s ease-out;
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge-modern {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.2), rgba(45, 106, 79, 0.3));
    backdrop-filter: blur(10px);
    color: #25D366;
    padding: 0.65rem 1.5rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    border: 2px solid rgba(37, 211, 102, 0.4);
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.2);
    animation: fadeIn 0.8s ease-out 0.2s both;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.hero-badge-modern svg {
    width: 18px;
    height: 18px;
    stroke: #25D366;
    stroke-width: 2.5;
}

.hero-content-large h1 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    color: var(--white);
    line-height: 1.1;
    font-family: 'Poppins', sans-serif;
    letter-spacing: -2px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    animation: fadeIn 0.8s ease-out 0.3s both;
}

.service-intro-large {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    line-height: 1.6;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.95);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    animation: fadeIn 0.8s ease-out 0.4s both;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeIn 0.8s ease-out 0.5s both;
}

.hero-content-large .btn {
    font-size: 1.1rem;
    padding: 1.1rem 2.75rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}

.btn-large {
    padding: 1.1rem 2.75rem;
    font-size: 1.1rem;
    font-weight: 700;
}

.btn-primary {
    background: linear-gradient(135deg, #25D366, #20b358);
    color: white;
    border: 2px solid #25D366;
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #20b358, #25D366);
    border-color: #20b358;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 35px rgba(37, 211, 102, 0.5);
}

.btn-secondary-outline {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.6);
}

.btn-secondary-outline:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: white;
    transform: translateY(-2px);
}

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

.btn-secondary:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

/* Hero Responsive */
@media (max-width: 968px) {
    .hero-content-large h1 {
        font-size: 2.5rem;
    }

    .service-intro-large {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .service-hero-large {
        min-height: 350px;
    }

    .hero-content-large {
        padding: 2rem 1.5rem;
    }

    /* Hide badge text on mobile */
    .hero-badge-modern {
        display: none;
    }

    .hero-content-large h1 {
        font-size: 2rem;
        margin-top: 1.5rem;
    }

    .service-intro-large {
        font-size: 1rem;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
        align-items: center;
    }

    .hero-content-large .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

/* ========================================
   FENCING TYPES GRID SECTION
   ======================================== */

.fencing-types-section {
    padding: 4rem 0;
}

.fencing-types-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1rem;
}

.fence-type-card {
    background: var(--white);
    border: none;
    border-radius: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    cursor: pointer;
}

.fence-type-card:hover {
    box-shadow: 0 12px 40px rgba(45, 106, 79, 0.25);
    transform: translateY(-8px);
}

.fence-type-image {
    width: 100%;
    height: 350px;
    overflow: hidden;
    background-color: var(--background-dark);
    position: relative;
}

.fence-type-image h3 {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    font-size: 2rem;
    color: white;
    margin: 0;
    font-weight: 800;
    padding: 0 1.5rem;
    font-family: 'Poppins', sans-serif;
    letter-spacing: -0.5px;
    line-height: 1.2;
    z-index: 10;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    opacity: 1;
    transform: translateY(0);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.fence-type-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 160px;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.4) 0%,
            rgba(0, 0, 0, 0.15) 50%,
            transparent 100%);
    opacity: 1;
    transition: all 0.4s ease;
    pointer-events: none;
    z-index: 2;
}

.fence-type-card:hover .fence-type-image::after {
    height: 180px;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.45) 0%,
            rgba(0, 0, 0, 0.2) 50%,
            transparent 100%);
}

.fence-type-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(1.05) saturate(0.85) hue-rotate(-10deg);
}

.fence-type-card:hover .fence-type-image img {
    transform: scale(1.08);
    filter: brightness(1.1) saturate(0.85) hue-rotate(-10deg);
}

.fence-type-card:hover .fence-type-image h3 {
    opacity: 1;
    transform: translateY(-5px);
    font-size: 2.1rem;
}

.fence-type-card p {
    color: #374151;
    line-height: 1.7;
    font-size: 0.95rem;
    padding: 1.25rem 1.5rem;
    font-weight: 400;
    margin: 0;
    background: white;
    position: relative;
    z-index: 1;
}

/* Responsive */
@media (max-width: 768px) {
    .fencing-types-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0;
    }

    /* Override inline styles for decking grid on mobile */
    .decking-grid {
        grid-template-columns: 1fr !important;
        max-width: 100% !important;
    }

    .fence-type-image {
        height: 250px;
    }

    .fence-type-image h3 {
        font-size: 1.8rem;
        bottom: 15px;
        padding: 0 1rem;
    }

    .fence-type-image::after {
        height: 100px;
    }

    .fence-type-card {
        cursor: default;
        pointer-events: none;
    }

    .fence-type-card p {
        font-size: 0.9rem;
        padding: 1rem 1rem;
        line-height: 1.5;
    }

    /* Disable hover effects on mobile */
    .fence-type-card:hover {
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        transform: none;
    }

    .fence-type-card:hover .fence-type-image img {
        transform: none;
        filter: brightness(1.05) saturate(0.85) hue-rotate(-10deg);
    }

    .fence-type-card:hover .fence-type-image::after {
        height: 100px;
        background: linear-gradient(to top,
                rgba(0, 0, 0, 0.4) 0%,
                rgba(0, 0, 0, 0.15) 50%,
                transparent 100%);
    }

    .fence-type-card:hover .fence-type-image h3 {
        opacity: 1;
        transform: none;
        font-size: 1.8rem;
    }

    .fence-type-card:active {
        transform: none;
    }
}

@media (max-width: 480px) {
    .fence-type-image h3 {
        font-size: 1.6rem;
        bottom: 12px;
    }
}

@media (max-width: 373px) {
    .fence-type-image h3 {
        font-size: 1.5rem;
        bottom: 10px;
    }
}

/* ========================================
   SERVICES TEXT SECTION
   ======================================== */

.services-text-section {
    padding: 6rem 0;
    background: var(--background-color);
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(82, 183, 136, 0.15);
    color: #52b788;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(82, 183, 136, 0.3);
}

.section-badge svg {
    width: 20px;
    height: 20px;
    stroke: #52b788;
}

.section-header h2 {
    font-size: 2.75rem;
    color: var(--primary-color);
    margin-bottom: 1.25rem;
    font-weight: 800;
    font-family: 'Poppins', sans-serif;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.section-intro {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #6b7280;
    max-width: 650px;
    margin: 0 auto;
}

.services-benefits-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Top row - 3 cards spanning 2 columns each */
.services-benefits-grid .benefit-card:nth-child(1) {
    grid-column: 1 / 3;
}

.services-benefits-grid .benefit-card:nth-child(2) {
    grid-column: 3 / 5;
}

.services-benefits-grid .benefit-card:nth-child(3) {
    grid-column: 5 / 7;
}

/* Bottom row - 2 cards centered, spanning 2 columns each */
.services-benefits-grid .benefit-card:nth-child(4) {
    grid-column: 2 / 4;
}

.services-benefits-grid .benefit-card:nth-child(5) {
    grid-column: 4 / 6;
}

.benefit-card {
    background: var(--primary-color);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(45, 106, 79, 0.2);
    transition: all 0.3s ease;
    border: 1px solid var(--primary-color);
    text-align: center;
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(45, 106, 79, 0.3);
    background: #52b788;
    border-color: #52b788;
}

.benefit-icon {
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.benefit-card:hover .benefit-icon {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.3);
}

.benefit-icon svg {
    width: 32px;
    height: 32px;
    stroke: white;
    transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon svg {
    stroke: white;
    transform: scale(1.1);
}

.benefit-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.benefit-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
}

/* Responsive */
@media (max-width: 968px) {
    .services-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    /* Reset grid positioning on medium screens */
    .services-benefits-grid .benefit-card:nth-child(1),
    .services-benefits-grid .benefit-card:nth-child(2),
    .services-benefits-grid .benefit-card:nth-child(3),
    .services-benefits-grid .benefit-card:nth-child(4),
    .services-benefits-grid .benefit-card:nth-child(5) {
        grid-column: auto;
    }
}

@media (max-width: 768px) {
    .services-text-section {
        padding: 4rem 0;
    }

    .section-header {
        margin-bottom: 3rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .section-intro {
        font-size: 1.1rem;
    }

    .services-benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .benefit-card {
        padding: 2rem 1.5rem;
    }
}

/* ========================================
   BEFORE/AFTER GALLERY SECTION
   ======================================== */

.before-after-gallery {
    padding: 5rem 0;
    background: var(--primary-color);
    margin: 4rem 0 0 0;
}

.gallery-header {
    text-align: center;
    margin-bottom: 3rem;
}

.gallery-header h2 {
    font-size: 2.8rem;
    color: var(--white);
    margin-bottom: 1rem;
    font-weight: 800;
}

.gallery-header p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.before-after-slider {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 4rem;
}

.slider-container {
    position: relative;
    overflow: hidden;
}

.before-after-slide {
    display: none;
    animation: fadeIn 0.5s ease;
}

.before-after-slide.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateX(20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.comparison-wrapper {
    background: var(--white);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.before-after-container {
    display: flex;
    position: relative;
}

.image-side {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.image-wrapper {
    position: relative;
    width: 100%;
    height: 450px;
    overflow: hidden;
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.before-after-slide:hover .image-wrapper img {
    transform: scale(1.05);
}

.image-label {
    position: absolute;
    top: 1.5rem;
    padding: 0.5rem 1.5rem;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 2rem;
    z-index: 2;
}

.before-label {
    left: 1.5rem;
    background: rgba(239, 68, 68, 0.9);
    color: var(--white);
}

.after-label {
    right: 1.5rem;
    background: rgba(37, 211, 102, 0.9);
    color: var(--white);
}

.divider-line {
    width: 4px;
    background: linear-gradient(to bottom, #ef4444, #25D366);
    position: relative;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.slide-caption {
    padding: 2rem;
    text-align: center;
    background: var(--white);
}

.slide-caption h3 {
    font-size: 1.6rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.slide-caption p {
    color: var(--text-light);
    font-size: 1rem;
}

/* Navigation Controls */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.95);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.slider-nav:hover {
    background: var(--white);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.slider-nav svg {
    color: var(--primary-color);
}

.prev-slide {
    left: 0;
}

.next-slide {
    right: 0;
}

/* Slide Indicators */
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.dot:hover {
    background: rgba(255, 255, 255, 0.6);
    transform: scale(1.2);
}

.dot.active {
    background: #25D366;
    width: 30px;
    border-radius: 6px;
}

/* Responsive */
@media (max-width: 968px) {
    .before-after-slider {
        padding: 0 3rem;
    }

    .image-wrapper {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .before-after-gallery {
        padding: 3rem 0;
    }

    .gallery-header h2 {
        font-size: 2rem;
    }

    .before-after-slider {
        padding: 0 2.5rem;
    }

    .before-after-container {
        flex-direction: column;
    }

    .divider-line {
        width: 100%;
        height: 4px;
    }

    .image-wrapper {
        height: 300px;
    }

    .slider-nav {
        width: 40px;
        height: 40px;
    }

    .slide-caption {
        padding: 1.5rem;
    }

    .slide-caption h3 {
        font-size: 1.3rem;
    }
}

/* ========================================
   WHATSAPP CTA SECTION
   ======================================== */

.callback-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-color) 100%);
    padding: 2rem 0;
    margin: 0;
    position: relative;
    overflow: visible;
}

.callback-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
    box-sizing: border-box;
}

.callback-text {
    flex: 1 1 auto;
    max-width: 60%;
}

.callback-label {
    color: var(--white);
    background: rgba(0, 0, 0, 0.3);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 3px;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    display: inline-block;
    padding: 0.5rem 1.25rem;
    border-radius: 2rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(5px);
}

.callback-text h2 {
    color: var(--white);
    font-size: 2rem;
    margin: 0;
    font-weight: bold;
}

.whatsapp-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.05rem;
    margin-top: 0.75rem;
    line-height: 1.5;
}

.whatsapp-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.1rem 2.5rem;
    background-color: #25D366;
    color: var(--white);
    border: none;
    border-radius: 3rem;
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    white-space: nowrap;
}

.btn-whatsapp svg {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}

.btn-whatsapp:hover {
    background-color: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
}

.btn-whatsapp:active {
    transform: translateY(-1px);
}

/* Responsive Design for Callback */
@media (max-width: 1024px) {
    .callback-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .whatsapp-cta {
        width: 100%;
    }

    .btn-whatsapp {
        width: 100%;
        max-width: 400px;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .callback-section {
        padding: 2rem 0;
    }

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

    .callback-text h2 {
        font-size: 1.6rem;
    }

    .whatsapp-description {
        font-size: 0.95rem;
    }

    .btn-whatsapp {
        padding: 1rem 2rem;
        font-size: 0.95rem;
    }
}

/* ========================================
   WHATSAPP CTA SECTION (Bottom)
   ======================================== */

.whatsapp-cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    margin-bottom: 0;
}

.whatsapp-cta-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: 0 2rem;
}

.cta-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: 50%;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 15px 40px rgba(37, 211, 102, 0.4);
    }
}

.cta-icon svg {
    color: var(--white);
}

.whatsapp-cta-content h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 800;
    line-height: 1.3;
}

.whatsapp-cta-content p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.btn-whatsapp-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.2rem 3rem;
    background-color: #25D366;
    color: var(--white);
    border: none;
    border-radius: 3rem;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp-cta svg {
    width: 28px;
    height: 28px;
}

.btn-whatsapp-cta:hover {
    background-color: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

.btn-whatsapp-cta:active {
    transform: translateY(-1px);
}

/* Responsive */
@media (max-width: 768px) {
    .whatsapp-cta-section {
        padding: 3rem 0;
    }

    .cta-icon {
        width: 80px;
        height: 80px;
    }

    .cta-icon svg {
        width: 50px;
        height: 50px;
    }

    .whatsapp-cta-content h2 {
        font-size: 1.8rem;
    }

    .whatsapp-cta-content p {
        font-size: 1rem;
    }

    .btn-whatsapp-cta {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

/* ========================================
   2. SERVICE HERO SECTION (Original)
   ======================================== */

.service-hero {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-color));
    color: var(--white);
    padding: 3rem 2rem;
    text-align: center;
    border-radius: 0.5rem;
    margin-bottom: 2rem;
}

.service-hero h1 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.service-intro {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto;
}

/* ========================================
   3. SERVICE OVERVIEW
   ======================================== */

.service-overview {
    margin-bottom: 3rem;
}

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

.feature-item {
    background-color: var(--background-light);
    padding: 2rem;
    border-radius: 0.5rem;
    border: 1px solid var(--border-color);
    box-shadow: 0 2px 4px var(--shadow-color);
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(45, 106, 79, 0.15);
}

.feature-item h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

/* ========================================
   3. SERVICE BENEFITS
   ======================================== */

.service-benefits {
    background-color: var(--background-light);
    padding: 2rem;
    border-radius: 0.5rem;
    border-left: 4px solid var(--secondary-color);
}

.service-benefits h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

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

.service-benefits li {
    padding: 0.5rem 0;
    padding-left: 2rem;
    position: relative;
}

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

/* ========================================
   4. SERVICE CTA SECTION
   ======================================== */

.service-cta {
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-dark));
    color: var(--white);
    padding: 3rem 2rem;
    border-radius: 0.5rem;
    margin-top: 3rem;
}

.service-cta h3 {
    color: var(--white);
    margin-bottom: 1rem;
}

.service-cta p {
    color: var(--white);
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* ========================================
   5. RESPONSIVE DESIGN
   ======================================== */

/* Mobile (768px) */
@media (max-width: 768px) {
    .service-hero {
        padding: 2rem 1rem;
    }

    .service-hero h1 {
        font-size: 2rem;
    }

    .service-features {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .feature-item {
        padding: 1.5rem;
    }

    .service-benefits {
        padding: 1.5rem;
    }

    .service-cta {
        padding: 2rem 1rem;
    }
}

/* ========================================
   RECENT PROJECTS SECTION
   ======================================== */

.recent-projects-services {
    padding: 3rem 0 5rem 0;
    background: #f8f9fa;
}

.recent-projects-services .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.recent-projects-services .section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark);
    margin: 0;
}

.projects-gallery-row {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    gap: 1.25rem;
    margin-bottom: 3rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.project-image-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    height: 400px;
    background: white;
    border: 1px solid #e5e7eb;
    cursor: pointer;
}

.project-image-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
    pointer-events: none;
}

.project-image-card:hover::before {
    opacity: 1;
}

.project-image-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(37, 211, 102, 0.3),
        0 0 30px rgba(37, 211, 102, 0.2);
    border-color: rgba(37, 211, 102, 0.3);
}

.project-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(0.85) contrast(1.1) saturate(1.1);
}

.project-image-card:hover img {
    transform: scale(1.15);
    filter: brightness(1) contrast(1.15) saturate(1.2);
}

.project-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(10, 15, 13, 0.95) 0%, rgba(10, 15, 13, 0.7) 50%, transparent 100%);
    padding: 2rem 1.5rem 1.5rem 1.5rem;
    opacity: 1;
    z-index: 2;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.project-image-card:hover .project-overlay {
    transform: translateY(-10px);
}

.project-overlay h3 {
    color: white;
    font-size: 1.4rem;
    font-weight: 800;
    margin: 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    letter-spacing: -0.5px;
    font-family: 'Poppins', sans-serif;
    line-height: 1.2;
    flex: 1;
}

.project-overlay .completion-date {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.85rem;
    font-weight: 600;
    background: rgba(37, 211, 102, 0.15);
    backdrop-filter: blur(10px);
    padding: 0.4rem 0.9rem;
    border-radius: 50px;
    border: 1px solid rgba(37, 211, 102, 0.3);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    flex-shrink: 0;
    margin-left: 1rem;
}

.project-overlay .completion-date svg {
    width: 16px;
    height: 16px;
    color: var(--secondary-color);
    flex-shrink: 0;
}

.projects-cta {
    text-align: center;
}

.projects-cta .btn {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

/* Responsive */
@media (max-width: 968px) {
    .projects-gallery-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }

    .project-image-card {
        max-width: 100%;
    }

    .project-image-card:last-child {
        grid-column: 1 / -1;
        max-width: 50%;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .recent-projects-services {
        padding: 3rem 0;
    }

    .recent-projects-services .section-header h2 {
        font-size: 2rem;
    }

    .projects-gallery-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .project-image-card:last-child {
        max-width: 100%;
    }

    /* Disable hover effects on mobile/touch devices */
    .project-image-card:hover {
        transform: none;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
        border-color: rgba(37, 211, 102, 0.2);
    }

    .project-image-card:hover::before {
        opacity: 0;
    }

    .project-image-card:hover img {
        transform: none;
        filter: brightness(0.85) contrast(1.1) saturate(1.1);
    }

    .project-image-card:hover .project-overlay {
        transform: none;
    }
}