/* ===== PAGE HERO BANNER ===== */

.page-hero {
    width: 100%;
    background: #fff;
    border-bottom: 1px solid #eee;
}

.page-hero__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    min-height: 220px;
}

/* Left: breadcrumb + title */
.page-hero__text {
    flex: 1;
}

.page-hero__breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #999;
    margin-top: 12px;
    margin-bottom: 0;
}

.page-hero__breadcrumb a {
    color: #777;
    transition: color .2s;
}

.page-hero__breadcrumb a:hover {
    color: #ff2f92;
}

.page-hero__breadcrumb span:last-child {
    color: #ff2f92;
    font-weight: 600;
}

.page-hero__title {
    font-size: 40px;
    font-weight: 800;
    line-height: 1.15;
    color: #111;
    margin: 0;
}

/* Right: featured image */
.page-hero__image {
    flex: 0 0 400px;
    max-width: 400px;
    overflow: hidden;
}

.page-hero__image img {
    display: block;
     border-radius: 17px;
     padding:4px 0px 4px 0px;
}

@media(max-width:768px) {
    .page-hero__inner {
        flex-direction: column;
        padding: 36px 0;
        min-height: auto;
        gap: 24px;
    }

    .page-hero__image {
        flex: none;
        max-width: 100%;
        width: 100%;
    }

    .page-hero__title {
        font-size: 26px;
    }
}

/* ===== END PAGE HERO BANNER ===== */

/* ===== CASE STUDIES PAGE ===== */
.case-studies-page {
    padding: 60px 0 80px;
    background: #f6f6f8;
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 48px;
}

.case-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,.07);
    transition: transform .3s, box-shadow .3s;
    display: flex;
    flex-direction: column;
}

.case-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0,0,0,.12);
}

.case-card__img {
    display: block;
    overflow: hidden;
    height: 220px;
}

.case-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .4s;
}

.case-card:hover .case-card__img img {
    transform: scale(1.04);
}

.case-card__img--placeholder {
    background: linear-gradient(135deg, #8b2cff, #ff2f92);
}

.case-card__body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.case-card__meta {
    font-size: 13px;
    color: #999;
    margin: 0 0 8px;
}

.case-card__title {
    font-size: 19px;
    font-weight: 700;
    margin: 0 0 12px;
    line-height: 1.3;
}

.case-card__title a {
    color: #111;
    transition: color .2s;
}

.case-card__title a:hover {
    color: #ff2f92;
}

.case-card__excerpt {
    font-size: 14px;
    color: #666;
    line-height: 1.65;
    margin: 0 0 20px;
    flex: 1;
}

.case-card__link {
    font-size: 14px;
    font-weight: 600;
    color: #ff2f92;
    transition: gap .2s;
}

.case-card__link:hover {
    color: #8b2cff;
}

.cases-pagination {
    text-align: center;
}

.cases-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    font-size: 14px;
    font-weight: 600;
    color: #555;
    border: 1px solid #ddd;
    margin: 0 3px;
    transition: .2s;
}

.cases-pagination .page-numbers.current,
.cases-pagination .page-numbers:hover {
    background: linear-gradient(90deg, #ff2f92, #8b2cff);
    color: #fff;
    border-color: transparent;
}

.cases-empty {
    text-align: center;
    color: #666;
    font-size: 18px;
    padding: 60px 0;
}

@media(max-width:992px) {
    .cases-grid { grid-template-columns: repeat(2,1fr) }
}

@media(max-width:600px) {
    .cases-grid { grid-template-columns: 1fr }
}
/* ===== END CASE STUDIES PAGE ===== */

/* Page & post content padding */
.page-wrap .container,
.single-post-wrap .container {
    padding-top: 60px;
    padding-bottom: 80px;
}

/* Services full-width white section */
.services-section {
    width: 100%;
    background: #fff;
    padding: 80px 0
}

.services-label {
    text-align: center;
    font-size: 15px;
    font-weight: 600;
    color: #ff2f92;
    margin: 0 0 10px;
    text-transform: uppercase;
    letter-spacing: .05em
}

.services-section .section-title {
    font-size: 28px;
    line-height: 1.3;
    max-width: 760px;
    margin: 0 auto 40px;
    text-align: center
}

/* Service cards with icon, text, arrow */
.services-section .card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px 28px 32px;
    border-radius: 16px
}

.services-section .card--purple {
    background: linear-gradient(180deg, #6a11cb, #8b2cff)
}

.services-section .card--pink {
    background: linear-gradient(180deg, #ff2f92, #ff4db2)
}

.services-section .card .service-icon {
    object-fit: contain;
    margin-bottom: 20px;
    border-radius: 10px
}

.services-section .card h3 {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 12px
}

.services-section .card p {
    color: rgba(255, 255, 255, .9);
    font-size: 15px;
    flex: 1;
    margin: 0 0 20px
}

.service-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: #fff;
    border-radius: 50%;
    margin-top: auto;
    transition: transform .2s
}

.service-arrow:hover {
    transform: scale(1.1)
}

.service-arrow img {
    width: 12px;
    height: auto
}

/* About section */
.about-section {
    width: 100%;
    background: #f6f6f8;
    padding: 80px 0
}

.about-section .section-title {
    margin-bottom: 16px
}

.about-intro {
    text-align: center;
    color: #555;
    font-size: 18px;
    max-width: 820px;
    margin: 0 auto 48px;
    line-height: 1.7
}

.about-cols {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px
}

.about-col {
    background: #fff;
    border-radius: 16px;
    padding: 32px 24px;
    border-top: 4px solid #ff2f92;
    box-shadow: 0 8px 30px rgba(0, 0, 0, .06)
}

.about-col h3 {
    font-size: 17px;
    font-weight: 700;
    color: #222;
    margin: 0 0 12px
}

.about-col p {
    font-size: 15px;
    color: #555;
    margin: 0;
    line-height: 1.65
}

@media(max-width:992px) {
    .about-cols {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media(max-width:600px) {
    .about-cols {
        grid-template-columns: 1fr
    }
}

/* Case Studies section */
.cases-section {
    width: 100%;
    background: linear-gradient(135deg, #1a0533 0%, #2d0a4e 100%);
    padding: 80px 0
}

.cases-section .services-label {
    color: #ff2f92
}

.cases-section .section-title {
    color: #fff
}

.cases-section .about-intro {
    color: rgba(255, 255, 255, .75);
    margin-bottom: 48px
}

.cases-section .cases {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px
}

.cases-section .case {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .25);
    transition: transform .3s
}

.cases-section .case:hover {
    transform: translateY(-6px)
}

.cases-section .case img,
.cases-section .case a img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    filter: brightness(0.8)
}

.cases-section .case .content {
    padding: 22px 24px
}

.cases-section .case .content h3 {
    margin: 0 0 8px;
    font-size: 18px;
    font-weight: 700
}

.cases-section .case .content h3 a {
    color: #222;
    text-decoration: none
}

.cases-section .case .content h3 a:hover {
    color: #ff2f92
}

.cases-section .case .content p {
    margin: 0;
    color: #666;
    font-size: 14px;
    line-height: 1.6
}

.cases-cta {
    text-align: center;
}

@media(max-width:992px) {
    .cases-section .cases {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media(max-width:600px) {
    .cases-section .cases {
        grid-template-columns: 1fr
    }
}

/* Mobile nav drawer */
#mobile-nav {
    background: #fff;
    border-top: 1px solid #eee;
    padding: 16px 0
}

#mobile-nav .mobile-menu-list {
    list-style: none;
    margin: 0;
    padding: 0
}

#mobile-nav .mobile-menu-list li a {
    display: block;
    padding: 12px 0;
    color: #555;
    font-weight: 500;
    border-bottom: 1px solid #f0f0f0
}

#mobile-nav .mobile-menu-list li a:hover {
    color: #ff2f92
}

#mobile-nav .mobile-menu-list li:last-child a {
    border-bottom: none
}

/* Footer nav */
.footer-nav {
    margin-top: 20px
}

.footer-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap
}

.footer-menu li a {
    color: rgba(255, 255, 255, .65);
    font-size: 14px
}

.footer-menu li a:hover {
    color: #ff2f92
}

/* ===== HERO SLIDER ===== */

.pw-hero-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
}

/* Dark rich background with deep purple/navy gradient */
.pw-hero-slider .swiper-slide.sliderimg {
    position: relative;
    width: 100%;
    min-height: 700px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #0a0014 0%, #180535 55%, #0b1629 100%);
}

/* Glowing orb — large purple, top-right (behind image) */
.pw-hero-slider .swiper-slide.sliderimg::before {
    content: '';
    position: absolute;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(139, 44, 255, .22) 0%, transparent 65%);
    top: -200px;
    right: 5%;
    z-index: 0;
    pointer-events: none;
}

/* Glowing orb — smaller pink, bottom-left */
.pw-hero-slider .swiper-slide.sliderimg::after {
    content: '';
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 47, 146, .16) 0%, transparent 65%);
    bottom: -120px;
    left: 3%;
    z-index: 0;
    pointer-events: none;
}

/* Image: absolutely pinned top-right with purple glow */
.banner-right {
    position: absolute;
    top: 0;
    right: 0;
    width: 48%;
    height: 90%;
    pointer-events: none;
    line-height: 0;
    z-index: 1;
}

.banner-right img {
    display: block;
    width: auto;
    max-width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: top right;
    margin-left: auto;
    -webkit-mask-image: url(../images/banner-bg.png);
    mask-image: url(../images/banner-bg.png);
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: top right;
    mask-position: top right;
    filter: drop-shadow(-10px 20px 40px rgba(139, 44, 255, .4));
}

/* Text inner — override container max-width so text aligns with the image */
.pw-hero-slider .container.slider-inner {
    position: relative;
    z-index: 3;
    max-width: 80%;
    width: 100%;
    padding-top: 70px;
    padding-bottom: 70px;
    padding-left: clamp(24px, 5vw, 200px);
    padding-right: calc(48% + 32px); /* mirror the image width + small gap */
    box-sizing: border-box;
}

/* Text box */
.sldr-text-box {
    max-width: 100%;
}

/* Badge pill label */
.sldr-text-box .bnr-text {
    color: #CCC;
    padding: 8px 0px 12px;
}

/* Large bold white heading */
.sldr-text-box h2 {
    font-size: 58px;
    font-weight: 800;
    line-height: 1.1;
    color: #fff;
    margin: 0 0 18px;
}

/* Gradient text accent */
.sldr-text-box h2 span,
.sldr-text-box h2 .color-class {
    background: linear-gradient(90deg, #ff2f92, #8b2cff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Subtext */
.sldr-text-box .bnr-sub {
    max-width: 480px;
}

/* CTA button row */
.button-section {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Gradient button with pulse glow animation */
.slider-cta {
    background: linear-gradient(90deg, #ff2f92, #8b2cff);
    color: #fff;
    padding: 15px 36px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 16px;
    transition: transform .25s, box-shadow .25s;
    white-space: nowrap;
    animation: hero-btn-pulse 2.8s ease-in-out infinite;
}

@keyframes hero-btn-pulse {

    0%,
    100% {
        box-shadow: 0 8px 30px rgba(255, 47, 146, .45), 0 0 0 0 rgba(255, 47, 146, .35);
    }

    50% {
        box-shadow: 0 8px 30px rgba(255, 47, 146, .45), 0 0 0 14px rgba(255, 47, 146, 0);
    }
}

.slider-cta:hover {
    transform: translateY(-3px);
    color: #fff;
    box-shadow: 0 16px 40px rgba(255, 47, 146, .55);
    animation: none;
}

/* Prev / Next arrows — frosted glass style */
.pw-hero-slider .creative-design-agency-button-prev,
.pw-hero-slider .creative-design-agency-button-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .25);
    backdrop-filter: blur(8px);
    cursor: pointer;
    transition: background .2s, border-color .2s;
}

.pw-hero-slider .creative-design-agency-button-prev {
    left: 20px;
}

.pw-hero-slider .creative-design-agency-button-next {
    right: 20px;
}

.pw-hero-slider .creative-design-agency-button-prev:after,
.pw-hero-slider .creative-design-agency-button-next:after {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
}

.pw-hero-slider .creative-design-agency-button-prev:hover,
.pw-hero-slider .creative-design-agency-button-next:hover {
    background: linear-gradient(90deg, #ff2f92, #8b2cff);
    border-color: transparent;
}

/* Pagination dots */
.creative-design-agency-pagination.swiper-pagination {
    bottom: 24px;
}

.creative-design-agency-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, .35);
    opacity: 1;
    transition: .3s;
}

.creative-design-agency-pagination .swiper-pagination-bullet-active {
    background: linear-gradient(90deg, #ff2f92, #8b2cff);
    width: 32px;
    border-radius: 999px;
}

/* Responsive */
@media(max-width:992px) {
    .pw-hero-slider .swiper-slide.sliderimg {
        flex-direction: column;
        min-height: auto;
    }

    .banner-right {
        position: relative;
        width: 80%;
        top: auto;
        right: 0;
        margin-left: auto;
        margin-right: 0;
    }

    .banner-right img {
        width: 100%;
    }

    .sldr-text-box {
        max-width: 100%;
    }

    .pw-hero-slider .container.slider-inner {
        padding-top: 40px;
        padding-bottom: 24px;
        padding-left: clamp(16px, 4vw, 40px);
        padding-right: clamp(16px, 4vw, 40px);
    }

    .sldr-text-box h2 {
        font-size: 38px;
    }
}

@media(max-width:600px) {
    .sldr-text-box h2 {
        font-size: 28px;
    }

    .button-section {
        flex-direction: column;
        align-items: flex-start;
    }

    .banner-right {
        width: 100%;
        margin-left: auto;
        margin-right: 0;
    }

    .banner-right img {
        max-height: 280px;
        width: auto;
        margin-left: auto;
    }

    .pw-hero-slider .swiper-slide.sliderimg::before,
    .pw-hero-slider .swiper-slide.sliderimg::after {
        display: none;
    }
}

/* ===== END HERO SLIDER ===== */
.footer-cols {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    margin-bottom: 28px;
    text-align: left
}

.footer-col-title {
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    margin: 0 0 20px;
    text-transform: uppercase;
    letter-spacing: .06em
}

/* Col 1 – About */
.footer-logo {
    margin-bottom: 18px;
    font-size: 24px;
    font-weight: 800
}

.footer-logo a {
    color: #fff
}

.footer-logo span {
    color: #ff2f92
}

.footer-logo img {
    max-height: 48px;
    width: auto
}

.footer-about-text {
    color: rgba(255, 255, 255, .6);
    font-size: 15px;
    line-height: 1.7;
    margin: 0
}

/* Col 2 – Nav list */
.footer-nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px
}

.footer-nav-list li a {
    color: rgba(255, 255, 255, .65);
    font-size: 15px;
    transition: .2s
}

.footer-nav-list li a:hover {
    color: #ff2f92;
    padding-left: 4px
}

.footer-nav-list li.current-menu-item>a {
    color: #ff2f92
}

/* Col 3 – Contact */
.footer-contact-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 14px
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: rgba(255, 255, 255, .65);
    font-size: 15px;
    line-height: 1.5
}

.footer-contact-icon {
    flex-shrink: 0;
    font-size: 16px;
    margin-top: 1px
}

.footer-contact-list a {
    color: rgba(255, 255, 255, .65);
    transition: .2s
}

.footer-contact-list a:hover {
    color: #ff2f92
}

/* Footer bottom bar */
.footer-bottom {
    text-align: center;
    color: rgba(255, 255, 255, .45);
    font-size: 14px
}

.footer-bottom a {
    color: #ff2f92
}

/* Responsive */
@media(max-width:768px) {
    .footer-cols {
        grid-template-columns: 1fr
    }
}

@media(max-width:992px) and (min-width:769px) {
    .footer-cols {
        grid-template-columns: 1fr 1fr;
    }

    .footer-col--about {
        grid-column: 1/-1
    }
}

/* Search form */
.search-form {
    display: flex;
    gap: 10px;
    justify-content: center;
    max-width: 400px;
    margin: 0 auto
}

.search-form input[type="search"] {
    flex: 1;
    padding: 12px 16px;
    border-radius: 999px;
    border: 2px solid #eee;
    font-size: 15px;
    outline: none
}

.search-form input[type="search"]:focus {
    border-color: #ff2f92
}

.search-form button {
    background: linear-gradient(90deg, #ff2f92, #8b2cff);
    color: #fff;
    border: none;
    padding: 12px 22px;
    border-radius: 999px;
    font-weight: 700;
    cursor: pointer
}

/* ===== RECENT PROJECTS SECTION (matches CDA style.css) ===== */

/*projects slider start*/
.project-section.wp-block-section {
    padding: 60px 4% 60px;
    overflow: hidden;
}

.projects-slider {
    overflow: hidden;
    position: relative;
}

.projects-slider .swiper-wrapper {
    gap: 0;
    /* spaceBetween handled by Swiper JS */
    align-items: stretch;
}

.projects-slider .swiper-slide {
    margin-block-start: 0 !important;
    transition: all 0.4s ease;
}

/* Heading row inside slider */
.projects-heading {
    padding: 0 0 30px;
    max-width: 100%;
    text-align: center;
}

.projects-heading .sec-main-heading {
    font-size: 25px;
    font-style: normal;
    font-weight: 700;
    margin: 0;
}

/* Nav controls — absolute top-right on desktop */
.projects-slider-controls {
    position: absolute;
    top: 10px;
    right: 0;
    display: flex;
    gap: 10px;
    width: 15%;
    justify-content: flex-end;
    z-index: 10;
}

.projects-slider-controls .projects-swiper-button-prev,
.projects-slider-controls .projects-swiper-button-next {
    width: 35px;
    height: 35px;
    border-radius: 50px;
    border: 1px solid #000;
    background: #000;
    color: #fff;
    transition: all ease 0.23s;
    opacity: 1;
    margin: 0 !important;
    position: static;
}

.projects-slider-controls .projects-swiper-button-prev:after,
.projects-slider-controls .projects-swiper-button-next:after {
    font-size: 16px;
}

.projects-slider-controls .projects-swiper-button-prev:hover,
.projects-slider-controls .projects-swiper-button-next:hover {
    background: #fff;
    color: #000;
    border: 1px solid #000;
}

/* Cover block inside each slide */
.projects-slider .swiper-slide .wp-block-cover {
    position: relative;
    overflow: hidden;
    border-radius: 7px;
    min-height: 500px;
}

.projects-slider .swiper-slide .wp-block-cover .wp-block-cover__image-background {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Gradient overlay span (from theme: projects-overlay gradient) */
.projects-slider .swiper-slide .wp-block-cover .wp-block-cover__background.has-projects-overlay-gradient-background {
    background: none;
    /* rely on ::before for gradient */
}

/* Bottom gradient via ::before */
.projects-slider .swiper-slide .wp-block-cover:before {
    content: '';
    height: 60%;
    width: 100%;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    background: linear-gradient(357.95deg, #000000 1.72%, rgba(255, 255, 255, 0) 85.46%);
}

/* Inner container sits above gradient */
.projects-slider .swiper-slide .wp-block-cover__inner-container {
    position: relative;
    z-index: 2;
    height: 100%;
}

/* Content box: full height, text at bottom */
.project-content-box {
    height: 480px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    z-index: 2;
    position: relative;
    padding: 20px;
}

/* Arrow circle at top of content box */
.arrow-img-projects {
    background-color: #780CAB !important;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    text-align: center;
    justify-content: center;
    align-items: center;
    z-index: 99;
    display: flex;
    margin: 0 0 auto 0 !important;
}

.arrow-img-projects:hover {
    background-color: #000 !important;
}

.arrow-img-projects a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.arrow-img-projects img {
    margin-top: -3px;
    width: 14px;
    height: auto;
}

/* Project title/description at bottom */
.projects-slider .swiper-slide .project-content-box-inner {
    display: inline-block;
    padding: 20px 20px 20px !important;
    border-top: 1px solid #fff;
}

.projects-slider .swiper-slide .project-content-box-inner h2,
.projects-slider .swiper-slide .project-content-box-inner p {
    color: #fff;
}

/* Hide text on non-active slides (prev/next) */
.swiper-slide-prev .project-content-box-inner,
.swiper-slide-next .project-content-box-inner {
    display: none !important;
}

/* ── Desktop 992+ active-slide expand ── */
@media screen and (min-width: 992px) {
    .projects-slider .swiper-slide {
        width: 25% !important;
    }

    .projects-slider .swiper-slide.swiper-slide-active {
        width: 50% !important;
        z-index: 2;
    }

    .projects-slider .swiper-slide .project-content-box-inner {
        border-top: 1px solid transparent;
    }

    .projects-slider .swiper-slide-active .project-content-box-inner {
        border-top: 1px solid #fff;
    }

    .projects-slider .swiper-slide .project-content-box p,
    .projects-slider .swiper-slide .arrow-img-projects {
        display: none;
        transition: all 0.4s ease;
    }

    .projects-slider .swiper-slide-active .project-content-box p {
        display: block;
    }

    .projects-slider .swiper-slide-active .arrow-img-projects {
        display: flex;
    }
}

/* ── Tablet ── */
@media screen and (max-width: 991px) {
    .projects-slider .swiper-slide .wp-block-cover {
        min-height: 450px !important;
    }

    .project-content-box {
        height: 420px;
    }
}

/* ── Mobile ── */
@media screen and (max-width: 767px) {
    .project-section.wp-block-section {
        padding-bottom: 50px !important;
    }

    .projects-slider-controls {
        bottom: 0;
        top: auto;
        left: 0;
        right: 0;
        margin: auto;
        width: auto;
        justify-content: center;
    }

    .projects-heading {
        padding-right: 0 !important;
        text-align: center;
        max-width: 100%;
    }

    .project-content-box {
        text-align: center;
    }

    .arrow-img-projects {
        margin: auto !important;
    }
}

/*projects slider end*/
/* ===== CONTACT PAGE ===== */

.contact-section {
    background: #f6f6f8;
    padding: 70px 0 90px;
}

/* Two-column layout */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 56px;
    align-items: start;
}

/* ── Left: Info ── */
.contact-info__heading {
    font-size: 32px;
    font-weight: 800;
    color: #111;
    margin: 0 0 16px;
}

.contact-info__intro {
    font-size: 15px;
    color: #555;
    line-height: 1.75;
    margin: 0 0 36px;
}

.contact-details {
    list-style: none;
    margin: 0 0 32px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-details li {
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-details__icon {
    font-size: 18px;
    flex-shrink: 0;
}

.contact-details li span,
.contact-details li a {
    font-size: 15px;
    color: #555;
}


/* ===== LOCAL SEO FULL-WIDTH CTA SECTION ===== */

.local-seo-cta {
    background: #1a0a12;
    padding: 90px 0;
    overflow: hidden;
    position: relative;
    border-bottom: 4px solid #7a0f42;
}

.local-seo-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 80% at 70% 50%, rgba(255, 47, 146, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.local-seo-cta__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    position: relative;
    z-index: 1;
}

/* Text column */
.local-seo-cta__text {
    flex: 1;
    max-width: 560px;
}

.local-seo-cta__label {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #ff2f92;
    margin-bottom: 16px;
}

.local-seo-cta__heading {
    font-size: 46px;
    font-weight: 800;
    line-height: 1.15;
    color: #fff;
    margin: 0 0 20px;
}

.local-seo-cta__accent {
    color: #ff2f92;
}

.local-seo-cta__sub {
    font-size: 18px;
    line-height: 1.7;
    color: #bbb;
    margin: 0 0 28px;
}

.local-seo-cta__list {
    list-style: none;
    padding: 0;
    margin: 0 0 36px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.local-seo-cta__list li {
    font-size: 15px;
    color: #ddd;
    padding-left: 24px;
    position: relative;
}

.local-seo-cta__list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #ff2f92;
    font-weight: 700;
}

.local-seo-cta__btn {
    display: inline-block;
    background: #ff2f92;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    padding: 16px 36px;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
}

.local-seo-cta__btn:hover {
    background: #e0007a;
    transform: translateY(-2px);
}

/* Graphic / info card column */
.local-seo-cta__graphic {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.local-seo-cta__badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 40px;
    padding: 10px 18px;
    width: fit-content;
}

.local-seo-cta__badge-icon {
    font-size: 18px;
    line-height: 1;
}

.local-seo-cta__badge-text {
    font-size: 14px;
    font-weight: 600;
    color: #eee;
}

.local-seo-cta__card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.local-seo-cta__card-row {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: #ccc;
}

.local-seo-cta__card-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}

.local-seo-cta__card-dot--green  { background: #22c55e; }
.local-seo-cta__card-dot--pink   { background: #ff2f92; }
.local-seo-cta__card-dot--blue   { background: #38bdf8; }
.local-seo-cta__card-dot--yellow { background: #facc15; }

/* Responsive */
@media (max-width: 900px) {
    .local-seo-cta__inner {
        flex-direction: column;
        gap: 40px;
    }
    .local-seo-cta__text {
        max-width: 100%;
    }
    .local-seo-cta__graphic {
        flex: none;
        width: 100%;
    }
    .local-seo-cta__heading {
        font-size: 34px;
    }
}

@media (max-width: 480px) {
    .local-seo-cta {
        padding: 60px 0;
    }
    .local-seo-cta__heading {
        font-size: 28px;
    }
    .local-seo-cta__sub {
        font-size: 16px;
    }
}

/* ===== END LOCAL SEO CTA SECTION ===== */

.contact-details li a:hover {
    color: #ff2f92;
}

.contact-services p {
    font-size: 14px;
    font-weight: 700;
    color: #111;
    margin: 0 0 10px;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.contact-services ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-services ul li {
    font-size: 15px;
    color: #555;
    padding-left: 18px;
    position: relative;
}

.contact-services ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #ff2f92;
    font-size: 13px;
}

/* ── Right: Form card ── */
.contact-form-card {
    background: #fff;
    border-radius: 24px;
    padding: 44px 40px;
    box-shadow: 0 20px 60px rgba(0,0,0,.08);
}

.contact-form-card__title {
    font-size: 22px;
    font-weight: 800;
    color: #111;
    margin: 0 0 28px;
}

/* ── CF7 Form Styling ── */
.contact-form-card .wpcf7-form label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #444;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.contact-form-card .wpcf7-form .wpcf7-form-control-wrap {
    display: block;
    margin-bottom: 20px;
}

.contact-form-card .wpcf7-form input[type="text"],
.contact-form-card .wpcf7-form input[type="email"],
.contact-form-card .wpcf7-form textarea {
    width: 100%;
    padding: 13px 16px;
    border: 2px solid #eee;
    border-radius: 12px;
    font-size: 15px;
    font-family: inherit;
    color: #111;
    background: #fafafa;
    transition: border-color .2s, background .2s;
    outline: none;
    box-sizing: border-box;
}

.contact-form-card .wpcf7-form input[type="text"]:focus,
.contact-form-card .wpcf7-form input[type="email"]:focus,
.contact-form-card .wpcf7-form textarea:focus {
    border-color: #ff2f92;
    background: #fff;
}

.contact-form-card .wpcf7-form textarea {
    min-height: 140px;
    resize: vertical;
}

.contact-form-card .wpcf7-form input[type="submit"],
.contact-form-card .wpcf7-form .wpcf7-submit {
    background: linear-gradient(90deg, #ff2f92, #8b2cff);
    color: #fff;
    border: none;
    padding: 14px 36px;
    border-radius: 999px;
    font-size: 16px;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    transition: transform .2s, box-shadow .2s;
    box-shadow: 0 8px 24px rgba(255,47,146,.3);
    width: 100%;
}

.contact-form-card .wpcf7-form input[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(255,47,146,.45);
}

/* Validation messages */
.contact-form-card .wpcf7-not-valid-tip {
    font-size: 12px;
    color: #e53935;
    margin-top: 4px;
    display: block;
}

.contact-form-card .wpcf7-response-output {
    margin-top: 16px;
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    border: none !important;
}

.contact-form-card .wpcf7-mail-sent-ok {
    background: #e8f5e9;
    color: #2e7d32;
}

.contact-form-card .wpcf7-mail-sent-ng,
.contact-form-card .wpcf7-aborted {
    background: #fdecea;
    color: #c62828;
}

.contact-form-card .wpcf7-validation-errors,
.contact-form-card .wpcf7-acceptance-missing {
    background: #fff8e1;
    color: #f57f17;
}

/* Responsive */
@media(max-width:900px) {
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media(max-width:600px) {
    .contact-form-card {
        padding: 28px 20px;
    }
}
/* ===== END CONTACT PAGE ===== */


.contact-form-divider {
    border: none;
    border-top: 1px solid #eee;
    margin: 28px 0;
}

.contact-info__subheading {
    font-size: 18px;
    font-weight: 700;
    color: #111;
    margin: 28px 0 8px;
}

.contact-services__list {
    list-style: none;
    margin: 0 0 24px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-services__list li {
    font-size: 15px;
    color: #555;
    padding-left: 20px;
    position: relative;
}

.contact-services__list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #ff2f92;
    font-size: 13px;
}

.contact-info__note {
    font-size: 14px;
    color: #888;
    font-style: italic;
    margin: 0;
}

.contact-form-card__intro {
    font-size: 15px;
    color: #555;
    margin: -8px 0 20px;
}

.contact-form-card__note {
    font-size: 14px;
    color: #888;
    margin: 16px 0 0;
}
