/* ========================================
   HOME PAGE STYLES
   ======================================== */

/* ========================================
   HERO SECTION
   ======================================== */

.hero-section {
    height: 50vh;
    min-height: 400px;
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("/static/images/fencing-hero.3b8054697af8.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    position: relative;
}

.hero-content {
    max-width: 1100px;
    padding: 2rem;
    z-index: 2;
}

.hero-text {
    padding: 0;
}

.hero-badge-home {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 10px 20px;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.3px;
    animation: badgeFloat 3s ease-in-out infinite;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    position: relative;
}

.google-logo {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
}

.badge-content {
    display: flex;
    align-items: center;
    gap: 8px;
}

.google-stars {
    display: flex;
    gap: 2px;
    align-items: center;
}

.google-stars svg {
    filter: drop-shadow(0 1px 2px rgba(251, 188, 4, 0.3));
    width: 14px;
    height: 14px;
}

.rating-text {
    display: flex;
    align-items: center;
    gap: 5px;
}

.rating-number {
    color: #202124;
    font-weight: 700;
    font-size: 0.95rem;
}

.rating-source {
    color: #5f6368;
    font-weight: 500;
    font-size: 0.85rem;
}

.hero-badge-home {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 249, 250, 0.98) 100%);
    color: #5f6368;
    position: relative;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-badge-home::before {
    display: none;
}

.hero-badge-home:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    border-color: rgba(66, 133, 244, 0.5);
}

.hero-badge-home:active {
    transform: translateY(-1px);
}

@keyframes badgeFloat {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-5px);
    }
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    color: var(--white);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
    min-height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.title-main {
    font-size: 1em;
    display: block;
    letter-spacing: -1px;
    animation: fadeInDown 0.8s ease-out;
}

.title-sub {
    font-size: 0.75em;
    display: block;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 700;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

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

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

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

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

#typing-text {
    color: #25D366;
    display: inline-block;
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.7;
    font-weight: 500;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    animation: fadeIn 0.8s ease-out 0.4s both;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.typing-cursor {
    display: inline-block;
    margin-left: 2px;
    animation: blink 1s infinite;
    font-weight: 300;
}

@keyframes blink {

    0%,
    50% {
        opacity: 1;
    }

    51%,
    100% {
        opacity: 0;
    }
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Contact Page Style Buttons */
.btn-hero-primary,
.btn-hero-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.btn-hero-primary {
    background: white;
    color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.btn-hero-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: var(--secondary-color);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    z-index: 0;
}

.btn-hero-primary:hover::before {
    width: 400px;
    height: 400px;
}

.btn-hero-primary:hover {
    color: white !important;
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.btn-hero-primary:hover svg {
    color: white !important;
    stroke: white !important;
}

.btn-hero-primary:hover .btn-text {
    color: white !important;
}

.btn-hero-primary svg,
.btn-hero-primary .btn-text {
    position: relative;
    z-index: 1;
}

.btn-hero-whatsapp {
    background: rgba(37, 211, 102, 0.2);
    backdrop-filter: blur(10px);
    color: white;
    border: 2px solid rgba(37, 211, 102, 0.5);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.2);
    white-space: nowrap;
}

.btn-hero-whatsapp:hover {
    background: #25D366;
    border-color: #25D366;
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.4);
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-large svg {
    transition: transform 0.3s ease;
}

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

.btn-large:hover svg {
    transform: translateX(3px);
}

/* Responsive Hero Section */
@media (max-width: 768px) {
    .hero-section {
        height: 70vh;
        min-height: 400px;
    }

    .hero-text {
        padding: 2.5rem 2rem;
    }

    .hero-text h1 {
        font-size: 2rem;
        white-space: normal;
        min-height: 5.2rem;
    }

    .hero-text p {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    .hero-description-desktop {
        display: none;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        margin-bottom: 1rem;
    }

    .btn-large {
        width: 100%;
        max-width: 300px;
        padding: 0.9rem 2rem;
    }
}

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

.services-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, var(--background-light) 0%, var(--background-color) 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.section-label {
    color: var(--white);
    background: linear-gradient(135deg, var(--primary-color), var(--primary-color));
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.5rem;
    border-radius: 2rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(45, 106, 79, 0.25);
    border: 2px solid var(--primary-color);
}

.section-label::before {
    content: "★";
    font-size: 1rem;
    color: var(--white);
}

.section-header h2 {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.5px;
}

.section-header h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 5px;
    background: linear-gradient(90deg, var(--secondary-color), transparent);
    margin: 1rem auto 0;
    border-radius: 3px;
}

.section-description {
    font-size: 1.15rem;
    color: var(--text-light);
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.7;
}

.services-grid-modern {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.service-card {
    background-color: var(--background-light);
    border-radius: 1rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid var(--border-color);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 450px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(45, 106, 79, 0.05), transparent);
    transition: left 0.6s ease;
    z-index: 1;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-12px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 50px rgba(45, 106, 79, 0.2);
}

.service-image-top {
    width: 100%;
    height: 70%;
    overflow: hidden;
    border-radius: 1rem 1rem 0 0;
    position: relative;
}

/* Home page specific service image styling */
.home-service-image {
    width: 100%;
    height: 70%;
    overflow: hidden;
    border-radius: 1rem 1rem 0 0;
    position: relative;
}

/* Dark overlay for better text contrast */
.home-service-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.15);
    z-index: 1;
    transition: background 0.4s ease;
}

.home-service-card:hover .home-service-image::before {
    background: rgba(0, 0, 0, 0.05);
}

.home-service-title {
    position: absolute;
    bottom: 30px;
    left: 0;
    right: 0;
    font-size: 2.2rem;
    color: #ffffff !important;
    margin: 0;
    font-weight: 900;
    padding: 0 2rem;
    font-family: 'Poppins', sans-serif;
    letter-spacing: -0.8px;
    line-height: 1.1;
    z-index: 10;
    text-shadow:
        0 2px 4px rgba(0, 0, 0, 0.5),
        0 4px 8px rgba(0, 0, 0, 0.4),
        0 8px 16px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(255, 255, 255, 0.3);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    text-transform: capitalize;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.home-service-title::after {
    content: '';
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #666, #999);
    margin-top: 0.5rem;
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    transition: width 0.4s ease;
}

.home-service-card:hover .home-service-title::after {
    width: 80px;
}

.home-service-title.visible {
    opacity: 1;
    transform: translateY(0);
}

.home-service-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.3) 0%,
            rgba(0, 0, 0, 0.15) 30%,
            transparent 60%);
    opacity: 1;
    transition: all 0.4s ease;
    pointer-events: none;
    z-index: 2;
}

.home-service-card:hover .home-service-image::after {
    height: 220px;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.35) 0%,
            rgba(0, 0, 0, 0.18) 30%,
            transparent 60%);
}

.home-service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(0.9) saturate(1.1);
}

.home-service-card:hover .home-service-image img {
    transform: scale(1.1);
    filter: brightness(1) saturate(1.2);
}

.home-service-card:hover .home-service-title {
    transform: translateY(-8px);
    text-shadow:
        0 3px 6px rgba(0, 0, 0, 0.6),
        0 6px 12px rgba(0, 0, 0, 0.5),
        0 12px 24px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(255, 255, 255, 0.4);
}

.service-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.service-icon-wrapper {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-card:hover .service-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-dark));
}

.service-icon {
    font-size: 3rem;
    transition: transform 0.4s ease;
}

.service-icon-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    transition: transform 0.4s ease;
    position: absolute;
    top: 0;
    left: 0;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.service-card:hover .service-icon-image {
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.service-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

.service-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: #ffffff;
    background-color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.95rem;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 2px 8px rgba(45, 106, 79, 0.2);
}

.service-link:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(45, 106, 79, 0.3);
    gap: 0.75rem;
}

.services-cta {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, rgba(45, 106, 79, 0.08), rgba(121, 147, 160, 0.08));
    border-radius: 1.5rem;
    border: none;
    position: relative;
    overflow: hidden;
}

.services-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.services-cta p {
    font-size: 1.4rem;
    color: var(--text-color);
    margin-bottom: 2rem;
    font-weight: 600;
}

/* Responsive Services Section */
@media (max-width: 1024px) {
    .services-grid-modern {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

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

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

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

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

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

    .service-card {
        height: 400px;
    }

    .service-image-top,
    .home-service-image {
        height: 250px;
    }

    .home-service-title {
        font-size: 1.6rem;
        bottom: 20px;
        padding: 0 1.2rem;
        letter-spacing: -0.5px;
    }

    .home-service-title::after {
        width: 50px;
        height: 3px;
        margin-top: 0.4rem;
    }

    .home-service-card:hover .home-service-title::after {
        width: 60px;
    }

    .home-service-image::after {
        height: 120px;
    }

    .home-service-card:hover .home-service-title {
        transform: translateY(-5px);
    }

    .home-service-card:hover .home-service-image::after {
        height: 130px;
    }

    .service-content {
        padding: 1.5rem;
    }

    .service-card h3 {
        font-size: 1.3rem;
    }

    .service-card p {
        font-size: 0.9rem;
    }

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

@media (max-width: 480px) {
    .home-service-title {
        font-size: 1.4rem;
        bottom: 15px;
        padding: 0 1rem;
    }

    .home-service-title::after {
        width: 40px;
        margin-top: 0.3rem;
    }

    .home-service-card:hover .home-service-title::after {
        width: 50px;
    }
}

/* ========================================
   REVIEWS SECTION
   ======================================== */

/* ========================================
   REVIEWS SECTION
   ======================================== */

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

.reviews-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
}

.reviews-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: start;
    margin-bottom: 1.5rem;
}

.reviews-heading {
    position: sticky;
    top: 100px;
}

.reviews-heading h2 {
    color: var(--white);
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.reviews-heading p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Carousel Container */
.reviews-carousel {
    position: relative;
}

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

.carousel-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 1.2rem;
}

.review-item {
    display: none;
    background: var(--white);
    padding: 2rem;
    border-radius: 1.2rem;
    border: 1px solid rgba(0, 0, 0, 0.08);
    position: relative;
    animation: fadeIn 0.5s ease;
}

.review-item.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

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

.review-quote {
    position: absolute;
    top: 0.75rem;
    right: 1.5rem;
    font-size: 4rem;
    color: var(--primary-color);
    opacity: 0.1;
    line-height: 1;
    font-family: Georgia, serif;
}

.review-stars {
    color: #FFD700;
    font-size: 1.1rem;
    letter-spacing: 0.15rem;
    margin-bottom: 1.25rem;
}

.review-text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding-top: 1.25rem;
    border-top: 2px solid var(--border-color);
}

.author-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 700;
    flex-shrink: 0;
    overflow: hidden;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.author-details h4 {
    color: var(--primary-color);
    font-size: 0.95rem;
    font-weight: 700;
    margin: 0 0 0.2rem 0;
}

.author-details span {
    color: var(--text-light);
    font-size: 0.85rem;
}

/* Navigation Arrows Container */
.nav-arrows-container {
    display: flex;
    gap: 0.75rem;
    margin-top: 2rem;
}

/* Navigation Arrows */
.nav-arrow {
    width: 50px;
    height: 50px;
    border-radius: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    line-height: 1;
}

.nav-arrow:hover {
    background: var(--white);
    border-color: var(--white);
    color: var(--primary-color);
    transform: scale(1.05);
}

/* Dots Navigation */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.6rem;
    margin-top: 1.5rem;
    margin-bottom: 0;
}

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

.dot.active {
    background: var(--white);
    width: 30px;
    border-radius: 5px;
}

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

/* Bottom CTA */
.reviews-cta {
    text-align: center;
    margin-top: 3rem;
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 1.5rem;
    border: 2px dashed rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.reviews-cta p {
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

/* Google Reviews Button */
.btn-google-reviews {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    margin-top: 1.5rem;
}

.btn-google-reviews:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.btn-google-reviews-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: linear-gradient(135deg, #4285f4, #34a853);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(66, 133, 244, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-google-reviews-primary:hover {
    background: linear-gradient(135deg, #3367d6, #2d8e47);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(66, 133, 244, 0.4);
}

/* No Reviews State */
.no-reviews-message {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    padding: 3rem 2rem;
}

.no-reviews-content {
    text-align: center;
    max-width: 400px;
}

.no-reviews-content .google-logo {
    margin-bottom: 2rem;
    opacity: 0.8;
}

.no-reviews-content h3 {
    color: var(--white);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.1rem 2.5rem;
    background: var(--white);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    background: var(--secondary-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.cta-button svg {
    transition: transform 0.3s ease;
}

.cta-button:hover svg {
    transform: translateX(5px);
}

/* Responsive */
@media (max-width: 1024px) {
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .reviews-heading {
        position: static;
        text-align: center;
    }

    .nav-arrows-container {
        justify-content: center;
    }
}

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

    .reviews-heading h2 {
        font-size: 2rem;
    }

    .reviews-heading p {
        font-size: 1rem;
    }

    .nav-arrow {
        width: 45px;
        height: 45px;
        font-size: 1.75rem;
    }
}


.review-quote {
    font-size: 3.5rem;
    top: 0.5rem;
    right: 1rem;
}

.review-text {
    font-size: 1rem;
}

.reviews-cta {
    padding: 2rem 1.5rem;
    margin-top: 3rem;
}

.reviews-cta p {

    .reviews-cta {
        padding: 2rem 1.5rem;
        margin-top: 3rem;
    }

    .reviews-cta p {
        font-size: 1.1rem;
    }

    .cta-button {
        padding: 1rem 2rem;
        font-size: 0.95rem;
    }
}

/* ========================================
   CALLBACK REQUEST SECTION
   ======================================== */

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

.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;
}

.callback-text {
    flex: 0 0 auto;
}

.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;
}

.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);
}

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

.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);
}

.callback-form {
    display: flex;
    gap: 1rem;
    flex: 1;
    align-items: center;
}

.callback-form input {
    flex: 1;
    padding: 0.9rem 1.25rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.5rem;
    font-size: 0.95rem;
    background-color: rgba(255, 255, 255, 0.95);
    color: var(--text-color);
    transition: all 0.3s ease;
    max-width: 220px;
}

.callback-form input::placeholder {
    color: var(--text-light);
}

.callback-form input:focus {
    outline: none;
    border-color: #A98467;
    background-color: var(--white);
    box-shadow: 0 0 0 3px rgba(169, 132, 103, 0.2);
}

.btn-callback {
    padding: 0.9rem 2rem;
    background-color: var(--white);
    color: #2D6A4F;
    border: 2px solid var(--white);
    border-radius: 0.5rem;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    text-transform: uppercase;
}

.btn-callback:hover {
    background-color: #A98467;
    color: var(--white);
    border-color: #A98467;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
@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;
    }

    .callback-form {
        flex-direction: column;
        width: 100%;
        max-width: 500px;
    }

    .callback-form input {
        max-width: none;
        width: 100%;
    }

    .btn-callback {
        width: 100%;
    }
}

@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;
    }

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

    .callback-form input,
    .btn-callback {
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
    }
}

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

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

.cta-box {
    background: white;
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    max-width: 700px;
    margin: 0 auto;
    border: 1px solid rgba(37, 211, 102, 0.1);
}

.cta-box h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.cta-box p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.btn-whatsapp-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #25D366;
    color: white;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    border: none;
}

.btn-whatsapp-cta:hover {
    background: #20ba5a;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    color: white;
    text-decoration: none;
}

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

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

    .cta-box {
        padding: 2rem 1.5rem;
        border-radius: 15px;
    }

    .cta-box h3 {
        font-size: 1.5rem;
    }

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

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

@media (max-width: 480px) {
    .cta-box h3 {
        font-size: 1.3rem;
    }

    .cta-box p {
        font-size: 0.95rem;
    }

    .btn-whatsapp-cta {
        width: 100%;
        justify-content: center;
    }
}

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

.recent-projects-section {
    padding: 5rem 0;
    background: white;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    gap: 1.25rem;
    margin-top: 3rem;
    margin-bottom: 3rem;
}

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

.project-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-card:hover::before {
    opacity: 1;
}

.project-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);
}

/* Card Image */
.project-image {
    position: relative;
    height: 400px;
    overflow: hidden;
    background: linear-gradient(135deg, #1a2520 0%, #0f1612 100%);
}

.project-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(to top, rgba(10, 15, 13, 0.95) 0%, transparent 100%);
    z-index: 2;
    pointer-events: none;
}

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

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

/* Card Overlay */
.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.15) 0%, rgba(27, 67, 50, 0.25) 100%);
    backdrop-filter: blur(2px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 3;
}

.project-card:hover .card-overlay {
    opacity: 1;
    backdrop-filter: blur(4px);
}

.view-btn {
    background: white;
    color: var(--primary-color);
    border: 2px solid rgba(37, 211, 102, 0.3);
    padding: 1.1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.65rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Poppins', sans-serif;
    transform: translateY(30px) scale(0.9);
    opacity: 0;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.project-card:hover .view-btn {
    transform: translateY(0) scale(1);
    opacity: 1;
}

.view-btn:hover {
    background: var(--secondary-color);
    color: white;
    border-color: var(--secondary-color);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.4);
}

.view-btn svg {
    width: 22px;
    height: 22px;
    transition: transform 0.3s ease;
}

.view-btn:hover svg {
    transform: rotate(90deg);
}

/* Card Content - Overlay on Image */
.card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    z-index: 2;
    transform: translateY(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.project-card:hover .card-content {
    transform: translateY(-8px);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 0.8rem;
}

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

.project-badge {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.25);
}

.card-content p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
    margin: 0 0 1rem 0;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.5);
}

.card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 0.8rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.completion-date {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.875rem;
    font-weight: 600;
}

.completion-date svg {
    color: var(--secondary-color);
}

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

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

    .projects-grid {
        gap: 1.5rem;
        margin-top: 2rem;
        margin-bottom: 2rem;
    }

    .project-image {
        height: 220px;
    }

    .project-info h3 {
        font-size: 1.1rem;
    }

    .project-info p {
        font-size: 0.9rem;
    }

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

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

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

    .project-card:hover .card-content {
        transform: none;
    }

    .project-card:hover .card-overlay {
        opacity: 0;
    }

    .project-card:hover .view-btn {
        transform: translateY(30px) scale(0.9);
        opacity: 0;
    }
}

@media (max-width: 576px) {
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .project-image {
        height: 250px;
    }
}