/* =========================
   TESTIMONIAL SECTION
========================= */

/* Testimonial Section Container */
.strong-view {
    background: #1a1a1a;
    max-width: 750px;
    margin: 0 auto;
    padding: 50px 40px;
    border-radius: 12px;
}

/* Individual Testimonial */
.strong-view .testimonial {
    background: transparent;
    color: #ffffff;
    border: none;
    box-shadow: none;
    max-width: 650px;
    margin: 0 auto;
    padding: 20px;
}

/* Testimonial Text */
.strong-view .testimonial-content {
    color: #ffffff;
    font-size: 1.25rem;
    line-height: 1.8;
    text-align: center;
    font-style: italic;
}

/* Large Opening Quote */
.strong-view .testimonial-content:before {
    content: "“";
    display: block;
    font-size: 4rem;
    line-height: 1;
    opacity: 0.3;
    margin-bottom: 10px;
}

/* Client Name */
.strong-view .testimonial-client,
.strong-view .testimonial-name,
.strong-view .client-name {
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-align: center;
    margin-top: 25px;
}

/* Hide Photos */
.strong-view img,
.strong-view .testimonial-image,
.strong-view .wp-post-image {
    display: none !important;
}

/* Hide Star Ratings */
.strong-view .testimonial-rating {
    display: none;
}

/* Slider Arrows */
.strong-view .wpmslider-arrow,
.strong-view .strong-prev,
.strong-view .strong-next {
    color: #ffffff;
}

/* Slider Dots */
.strong-view .wpmslider-pager-link,
.strong-view .strong-pager span {
    background: rgba(255,255,255,0.35);
}

.strong-view .wpmslider-pager-link.active,
.strong-view .strong-pager span.active {
    background: #ffffff;
}

/* =========================
   RESPONSIVE TESTIMONIALS
========================= */

@media (max-width: 768px) {
    .strong-view {
        max-width: 95%;
        padding: 35px 25px;
    }

    .strong-view .testimonial-content {
        font-size: 1.1rem;
    }
}

@media (max-width: 650px) {
    .strong-view {
        width: calc(100% - 30px);
        max-width: 100%;
        margin: 0 auto;
        padding: 30px 20px;
        border-radius: 8px;
    }

    .strong-view .testimonial {
        max-width: 100%;
        padding: 10px;
    }

    .strong-view .testimonial-content {
        font-size: 1rem;
        line-height: 1.6;
    }

    .strong-view .testimonial-content:before {
        font-size: 3rem;
        margin-bottom: 5px;
    }

    .strong-view .testimonial-client,
    .strong-view .testimonial-name,
    .strong-view .client-name {
        font-size: 0.8rem;
        letter-spacing: 1px;
        margin-top: 15px;
    }

    .strong-view .strong-prev,
    .strong-view .strong-next,
    .strong-view .wpmslider-arrow {
        transform: scale(0.8);
    }
}

@media (max-width: 768px) {
    .strong-view {
        width: calc(100% - 20px);
        max-width: none;
        padding: 25px 15px;
        margin: 20px auto 40px auto;
    }

    .strong-view .testimonial-content {
        font-size: 1.2rem;
        line-height: 1.7;
        padding: 0 10px;
    }

    .strong-view .testimonial-client,
    .strong-view .testimonial-name,
    .strong-view .client-name {
        font-size: 0.95rem;
        letter-spacing: 1px;
    }
}

/* =========================
   HEADER NAVIGATION (FIXED)
========================= */

/* Desktop default: horizontal menu */
header .main-navigation ul {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
}

/* Ensure normal item behavior */
header .main-navigation li {
    width: auto;
}

/* Menu links */
header .main-navigation li a {
    display: block;
    padding: 10px 12px;
}

/* Mobile: stacked menu */
@media (max-width: 768px) {
    header .main-navigation ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
    }

    header .main-navigation li {
        width: 100%;
    }

    header .main-navigation li a {
        padding: 10px 0;
    }
}

/* =========================
   GLOBAL
========================= */

html {
    scroll-behavior: smooth;
}
/* =========================
   DROPDOWN ANIMATION (HEADER)
========================= */

/* Base dropdown state (hidden) */
header .main-navigation ul ul {
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.25s ease-in-out;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 9999;
}

/* Show dropdown on hover */
header .main-navigation li:hover > ul {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Ensure parent items are positioned correctly */
header .main-navigation li {
    position: relative;
}

/* Optional: style dropdown menu box */
header .main-navigation ul ul li {
    width: 220px;
    background: #ffffff;
}

/* Optional: dropdown links */
header .main-navigation ul ul li a {
    padding: 10px 15px;
    white-space: nowrap;
}