/*
Theme Name: Hello Elementor Child
Theme URI: https://elementor.com/hello-theme/?utm_source=wp-themes&utm_campaign=theme-uri&utm_medium=wp-dash
Template: hello-elementor
Author: Elementor Team
Author URI: https://elementor.com/?utm_source=wp-themes&utm_campaign=author-uri&utm_medium=wp-dash
Description: Hello Elementor is a lightweight and minimalist WordPress theme that was built specifically to work seamlessly with the Elementor site builder plugin. The theme is free, open-source, and designed for users who want a flexible, easy-to-use, and customizable website. The theme, which is optimized for performance, provides a solid foundation for users to build their own unique designs using the Elementor drag-and-drop site builder. Its simplicity and flexibility make it a great choice for both beginners and experienced Web Creators.
Tags: accessibility-ready,flexible-header,custom-colors,custom-menu,custom-logo,featured-images,rtl-language-support,threaded-comments,translation-ready
Version: 3.4.7.1776098112
Updated: 2026-04-13 16:35:12

*/

html {
    overflow-x: hidden;
}

body {
    /* Use 'clip' instead of 'hidden' — 'hidden' creates a scroll-container BFC
       that clips absolutely-positioned dropdowns; 'clip' does not. */
  
}

:root {
   --ap-header-bg: #152025;
   --ap-header-bg2: #152025;
    --ap-accent: #E9C46A;
    --ap-primary: #152025;
    --ap-text: #ffffff;
    --ap-muted: rgba(255, 255, 255, 0.75);
    --ap-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
    --ap-surface: #ffffff;
    --ap-page: white !important;
}

.ap-header {
    position: sticky;
  top: 0px;
    z-index: 999;
    background: linear-gradient(180deg, var(--ap-header-bg) 0%, var(--ap-header-bg2) 100%) !important;
   
}
.ap-header {
    margin-top: 0;
    padding-top: 0;
}

.ap-header__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.ap-header__brand {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
}

.ap-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.ap-logo__img,
.ap-logo img {
    display: block;
    height: 42px;
    width: auto;
}

.ap-nav {
    flex: 1 1 auto;
    display: flex;
    justify-content: flex-end;
}

.ap-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 6px;
}

.ap-menu>li {
    position: relative;
}

.ap-menu a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 14px;
    color: var(--ap-text);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-weight: 700;
    font-size: 13px;
    border-radius: 10px;
    transition: background-color 160ms ease, color 160ms ease;
    font-family: inherit;
}

.ap-menu>li.current-menu-item>a,
.ap-menu>li.current-menu-ancestor>a,
.ap-menu>li:hover>a {
    background: rgba(255, 255, 255, 0.10);
}

.ap-menu>li.menu-item-has-children>a:after {
    content: "▾";
    font-size: 12px;
    opacity: 0.9;
}

/* ═══════════════════════════════════════════════════════════════
   DESKTOP SUB-MENUS — gaps + all items visible + flyout not clipped
═══════════════════════════════════════════════════════════════ */

/* L2 — first dropdown: NO overflow so L3 flyout is never clipped */
.ap-menu .sub-menu {
    list-style: none;
    margin: 0;
    padding: 6px;
    position: absolute;
    left: 0;
    top: calc(100% + 8px);
    min-width: 240px;
    max-width: 300px;
    background: rgba(15, 15, 18, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
    display: none;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 200ms ease, transform 200ms ease;
    z-index: 1000;
    /* NO overflow here — it would clip the L3 flyout panel */
}

/* Show on hover */
.ap-menu li:hover > .sub-menu {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

/* Gap between L2 items */
.ap-menu .sub-menu > li {
    position: relative;
    margin-bottom: 2px;
}
.ap-menu .sub-menu > li:last-child { margin-bottom: 0; }

/* L2 links */
.ap-menu .sub-menu a {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 8px;
    text-transform: none;
    font-weight: 600;
    font-size: 13px;
    color: var(--ap-muted);
    transition: all 160ms ease;
    white-space: normal;
    word-break: break-word;
}

.ap-menu .sub-menu li:hover > a {
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
}

/* Arrow for L2 parents that have L3 children */
.ap-menu .sub-menu .menu-item-has-children > a::after,
.ap-menu .sub-menu li:has(> .sub-menu) > a::after {
    content: "\25B8";
    flex-shrink: 0;
    font-size: 15px;
    font-weight: 900;
    color: var(--ap-accent);
    margin-left: auto;
}

/* L3 flyout — can scroll since it has no children of its own */
.ap-menu .sub-menu .sub-menu {
    left: 100%;
    top: 0;
    margin-left: 8px;
    border-left: 2px solid var(--ap-accent);
    max-height: 80vh;
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-width: thin;
    scrollbar-color: var(--ap-accent) transparent;
    padding: 6px;
    min-width: 220px;
    max-width: 300px;
}
.ap-menu .sub-menu .sub-menu::-webkit-scrollbar { width: 3px; }
.ap-menu .sub-menu .sub-menu::-webkit-scrollbar-thumb { background: var(--ap-accent); border-radius: 10px; }

/* Gap between L3 items */
.ap-menu .sub-menu .sub-menu > li { margin-bottom: 2px; }
.ap-menu .sub-menu .sub-menu > li:last-child { margin-bottom: 0; }


.ap-nav-toggle {
    display: none;
    border: 1px solid rgba(255, 255, 255, 0.20);
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    border-radius: 12px;
    padding: 10px 12px;
    cursor: pointer;
}

.ap-nav-toggle__bars {
    display: block;
    width: 22px;
    height: 2px;
    background: #fff;
    position: relative;
}

.ap-nav-toggle__bars:before,
.ap-nav-toggle__bars:after {
    content: "";
    position: absolute;
    left: 0;
    width: 22px;
    height: 2px;
    background: #fff;
}

.ap-nav-toggle__bars:before {
    top: -7px;
}

.ap-nav-toggle__bars:after {
    top: 7px;
}

.ap-menu__fallback {
    color: var(--ap-text);
    text-decoration: none;
    font-weight: 700;
}

@media (max-width: 980px) {
    .ap-nav-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .ap-nav {
        display: none;
        width: 100%;
    }



    .ap-nav.ap-nav--open {
        display: block;
    }

    .ap-menu {
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
        padding: 10px 0 0;
    }

    .ap-menu a {
        width: 100%;
        justify-content: space-between;
    }

    .ap-menu .sub-menu {
        position: static;
        display: none;
        padding: 8px;
        margin: 4px 0 0;
        opacity: 1;
        transform: none;
        /* Reset max-height on mobile — sidebar handles scroll */
        max-height: none;
        overflow-y: visible;
    }

    .ap-menu li:hover>.sub-menu {
        display: none;
    }

    .ap-menu li.menu-item-has-children>a:after {
        content: "▸";
    }
}

/* ═══════════════════════════════════════════════════════════════
   FIX 4: MOBILE SIDEBAR — full styling + slide animation
═══════════════════════════════════════════════════════════════ */

/* Overlay */
.ap-sb-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99997;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(2px);
    transition: opacity 0.3s ease;
    opacity: 0;
}

.ap-sb-overlay--on {
    display: block !important;
    opacity: 1;
}

/* Sidebar panel */
.ap-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 300px;
    max-width: 85vw;
    height: 100vh;
    z-index: 99998;
    transform: translateX(-100%);
    transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    overflow-x: hidden;
    background: #0d0d0f;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    scrollbar-width: thin;
    scrollbar-color: var(--ap-accent) transparent;
}

.ap-sidebar::-webkit-scrollbar {
    width: 3px;
}

.ap-sidebar::-webkit-scrollbar-thumb {
    background: var(--ap-accent);
    border-radius: 10px;
}

/* Open state */
.ap-sidebar--open {
    transform: translateX(0) !important;
}

/* Sidebar head: logo + close */
.ap-sb-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 18px 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    flex-shrink: 0;
}

.ap-sb-logo-wrap {
    display: inline-flex;
    align-items: center;
}

.ap-sb-logo,
.ap-sb-logo-wrap img {
    height: 36px;
    width: auto;
    display: block;
}

.ap-sb-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    cursor: pointer;
    flex-shrink: 0;
    transition: background 0.2s ease;
}

.ap-sb-close:hover {
    background: rgba(255, 255, 255, 0.16);
}

/* Sidebar nav list */
.ap-sb-nav {
    list-style: none;
    margin: 0;
    padding: 12px 10px 24px;
    flex: 1;
}

.ap-sb-nav li {
    position: relative;
}

/* Top-level items */
.ap-sb-nav > li > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 14px;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    border-radius: 10px;
    transition: background 0.15s ease;
}

.ap-sb-nav > li > a:hover,
.ap-sb-nav > li.ap-sb-open > a {
    background: rgba(255, 255, 255, 0.08);
}

/* Sub-menu items inside sidebar */
.ap-sb-nav .sub-menu {
    list-style: none;
    margin: 4px 0 6px 12px;
    padding: 4px 0;
    display: none;
    border-left: 2px solid rgba(233, 196, 106, 0.35);
}

/* FIX 4: Show sub-menu when parent has ap-sb-open */
.ap-sb-nav .menu-item-has-children.ap-sb-open > .sub-menu {
    display: block !important;
}

.ap-sb-nav .sub-menu a {
    display: block;
    padding: 9px 14px;
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.15s ease;
}

.ap-sb-nav .sub-menu a:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
}

/* Level 3 sub-sub-menu */
.ap-sb-nav .sub-menu .sub-menu {
    margin-left: 12px;
    border-left: 2px solid rgba(233, 196, 106, 0.20);
}

/* Chevron arrow toggle */
.ap-sb-arrow {
    position: absolute;
    right: 0;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    color: rgba(255, 255, 255, 0.55);
    font-size: 18px;
    cursor: pointer;
    border-radius: 8px;
    transition: transform 0.2s ease, color 0.2s ease, background 0.15s ease;
    z-index: 1;
    line-height: 1;
}

.ap-sb-arrow:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.06);
}

/* Rotate arrow when open */
.ap-sb-nav .menu-item-has-children.ap-sb-open > .ap-sb-arrow {
    transform: rotate(180deg);
    color: var(--ap-accent);
}

/* Services Template */
.ap-services-page {
    background: var(--ap-page);
}

.ap-services__container,
.ap-hero__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 28px 16px;
}

.ap-services__title {
    margin: 0 0 10px;
    font-size: clamp(28px, 2.6vw, 40px);
    line-height: 1.15;
    font-weight: 800;
    color: #0b0b0f;
}

.ap-services__lead {
    margin: 0 0 22px;
    color: #4a4a55;
    font-size: 15px;
}

.ap-hero {
    position: relative;
    background: radial-gradient(circle at 18% 12%, rgba(0, 167, 214, 0.45), transparent 70%),
        linear-gradient(145deg, var(--ap-primary) 0%, #072746 45%, var(--ap-primary) 100%);
    background-size: cover;
    background-position: center;
    color: var(--ap-text);
    overflow: hidden;
}

.ap-hero--service,
.ap-hero--index {
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    width: 100vw;
    height: 380px;
    display: flex;
    align-items: center;
}

.ap-hero--index {
    align-items: center;
    background-image: url('https://sandybrown-seahorse-270890.hostingersite.com/wp-content/uploads/2026/04/2150169955-1.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.ap-hero__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    pointer-events: none;
}

.ap-hero__container {
    position: relative;
    padding: 40px 16px;
    width: 100%;
    animation: apHeroFadeUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

@keyframes apHeroFadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.ap-hero__back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-weight: 700;
    font-size: 13px;
    margin-bottom: 14px;
    margin-right: 20px !important;
}

.ap-hero__back:hover {
    color: #fff;
}

.ap-hero__kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 900;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.18);
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    margin-bottom: 14px;
}

.ap-hero__title {
    margin: 10px 0 0;
    font-size: clamp(30px, 3.5vw, 52px);
    line-height: 1.1;
    font-weight: 850;
    color: white !important;
    letter-spacing: -0.01em;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.ap-hero__lead-premium {
    margin: 18px 0 0;
    font-size: clamp(16px, 1.2vw, 19px);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    max-width: 650px;
}

.ap-hero__meta {
    margin-top: 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.ap-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    border-radius: 999px;
    font-weight: 800;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(10px);
}

.ap-pill--price {
    background: rgba(0, 167, 214, 0.20);
    border-color: rgba(0, 167, 214, 0.35);
}

.ap-pill--dur .dashicons {
    font-size: 16px;
    width: 16px;
    height: 16px;
}

.ap-pill--tag {
    background: rgba(255, 255, 255, 0.08);
}

.ap-hero__crumbs {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    margin-top: 40px;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.10);
    font-size: 12px;
    color: rgba(255, 255, 255, 0.75);
}

.ap-hero__crumb {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ap-hero__crumb--left {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-weight: 800;
}

.ap-hero__crumb--left:hover {
    color: #fff;
}

.ap-hero__crumb--right {
    opacity: 0.85;
}

.ap-services--single .ap-services__desc {
    max-width: 850px;
    font-size: 15px;
    line-height: 1.8;
    color: #2a2a33;
}

.ap-services__subtitle {
    margin: 30px 0 14px;
    font-size: 20px;
    font-weight: 900;
    color: #0b0b0f;
}

/* Card grid (3 per row desktop) */
.ap-svc-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.ap-svc-card {
    background: var(--ap-surface);
    border-radius: 18px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    border: 1px solid rgba(8, 24, 48, 0.10);
    box-shadow: 0 18px 40px rgba(7, 23, 44, 0.08);
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
    display: grid;
    grid-template-rows: 1fr auto;
    min-height: 380px;
}

.ap-svc-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 26px 60px rgba(7, 23, 44, 0.14);
    border-color: rgba(0, 167, 214, 0.30);
}

.ap-svc-card__body {
    padding: 22px 22px 10px;
}

.ap-svc-card__title {
    margin: 0 0 12px;
    font-size: 22px !important;
    line-height: 1.15;
    font-weight: 900;
    color: #091a2f;
}

.ap-svc-card__pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 14px;
}

.ap-svc-card__pills .ap-pill {
    font-size: 11px;
    padding: 7px 10px;
    background: rgba(6, 26, 51, 0.04);
    border-color: rgba(6, 26, 51, 0.10);
    color: rgba(6, 26, 51, 0.86);
    backdrop-filter: none;
}

.ap-svc-card__pills .ap-pill--price {
    background: rgba(0, 167, 214, 0.10);
    border-color: rgba(0, 167, 214, 0.20);
    color: rgba(6, 26, 51, 0.92);
}

.ap-svc-card__desc {
    color: #475063;
    font-size: 14px;
    line-height: 1.75;
    margin-bottom: 16px;
    max-width: 38ch;
}

.ap-svc-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(6, 26, 51, 0.92);
    font-size: 12px;
    padding-bottom: 6px;
    border-bottom: 2px solid rgba(0, 167, 214, 0.55);
    width: fit-content;
}

.ap-svc-card__media {
    height: 210px;
    background: linear-gradient(180deg, rgba(0, 167, 214, 0.08), rgba(6, 26, 51, 0.06));
}

.ap-svc-card__media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ap-svc-card__media--placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(6, 26, 51, 0.45);
}

.ap-svc-card__media--placeholder .dashicons {
    font-size: 46px;
    width: 46px;
    height: 46px;
}

@media (max-width: 980px) {
    .ap-svc-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ap-hero--service {
        min-height: 460px;
    }
}

@media (max-width: 640px) {
    .ap-svc-grid {
        grid-template-columns: 1fr;
    }

    .ap-hero__crumbs {
        margin-top: 38px;
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 900px) {
    .ap-hero__container {
        padding: 44px 16px;
    }
}

/* Single Service Layout */
.ap-services-layout {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.ap-services-layout__main {
    flex: 1;
    min-width: 0;
}

.ap-services-layout__sidebar {
    flex: 0 0 340px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: sticky;
    top: 100px;
}

.ap-sidebar-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.ap-sidebar-card--specialisations {
    padding: 24px;
}

.ap-sidebar-card__header {
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.ap-sidebar-card__kicker {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--ap-accent);
}

.ap-sidebar-card__kicker:before {
    content: "";
    width: 24px;
    height: 2px;
    background: var(--ap-accent);
}

.ap-sidebar-card__list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ap-sidemenu-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    text-decoration: none;
    background: #f8fafc;
    border-radius: 14px;
    transition: all 0.2s ease;
    border: 1px solid transparent;
}

.ap-sidemenu-item:hover {
    background: #fff;
    border-color: rgba(0, 167, 214, 0.2);
    box-shadow: 0 8px 20px rgba(0, 167, 214, 0.08);
    transform: translateX(4px);
}

.ap-sidemenu-item__icon {
    flex: 0 0 40px;
    height: 40px;
    background: rgba(0, 167, 214, 0.08);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ap-diamond {
    width: 8px;
    height: 8px;
    background: var(--ap-accent);
    transform: rotate(45deg);
}

.ap-sidemenu-item__content {
    flex: 1;
}

.ap-sidemenu-item__title {
    margin: 0;
    font-size: 15px;
    font-weight: 800;
    color: #061a33;
}

.ap-sidemenu-item__desc {
    margin: 2px 0 0;
    font-size: 12px;
    color: #64748b;
    line-height: 1.4;
}

.ap-sidemenu-item__arrow {
    font-size: 16px;
    color: #cbd5e1;
    transition: color 0.2s ease;
}

.ap-sidemenu-item:hover .ap-sidemenu-item__arrow {
    color: var(--ap-accent);
}

/* CTA Card */
.ap-sidebar-card--cta {
    background: linear-gradient(135deg, #0a2342 0%, #061a33 100%);
    padding: 34px 28px;
    text-align: center;
    color: #fff;
}

.ap-cta-title {
    font-size: 24px;
    font-weight: 900;
    margin: 0 0 14px;
    color: #fff !important;
}

.ap-cta-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 24px;
    line-height: 1.6;
}

.ap-cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    background: var(--ap-accent);
    color: #fff;
    text-decoration: none;
    font-weight: 800;
    border-radius: 99px;
    font-size: 14px;
    transition: all 0.2s ease;
    box-shadow: 0 8px 20px rgba(0, 167, 214, 0.3);
}

.ap-cta-button:hover {
    background: #008eb7;
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(0, 167, 214, 0.4);
    color: #fff;
}

@media (max-width: 980px) {
    .ap-services-layout {
        flex-direction: column;
    }

    .ap-services-layout__sidebar {
        flex: 1 1 auto;
        width: 100%;
        position: static;
    }
}

/* Contact Form Section */
.ap-form-section {
    margin-top: 50px;
    padding: 40px;
    background: #fdfdfd;
    border: 1px solid rgba(21, 32, 37, 0.08);
    border-radius: 20px;
}

.ap-form-title {
    margin: 0 0 10px;
    font-size: 24px;
    font-weight: 900;
    color: var(--ap-primary);
}

.ap-form-note {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 30px;
}

.ap-contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.ap-form-group {
    display: flex;
    flex-direction: column;
}

.ap-form-group:nth-child(4) {
    grid-column: span 2;
}

.ap-contact-form input,
.ap-contact-form textarea {
    padding: 14px 18px;
    border: 1px solid rgba(21, 32, 37, 0.12);
    border-radius: 12px;
    font-size: 14px;
    background: #fff;
    transition: all 0.2s ease;
    font-family: inherit;
}

.ap-contact-form input:focus,
.ap-contact-form textarea:focus {
    outline: none;
    border-color: var(--ap-accent);
    box-shadow: 0 0 0 4px rgba(233, 196, 106, 0.15);
}

.ap-form-submit {
    grid-column: span 2;
    padding: 16px;
    background: var(--ap-primary);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-weight: 800;
    cursor: pointer;
    font-size: 15px;
    transition: all 0.2s ease;
}

.ap-form-submit:hover {
    background: #23343d;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(21, 32, 37, 0.2);
}

/* Bottom CTA */
.ap-bottom-cta {
    margin-top: 100px;
    margin-bottom: 120px;
    background: linear-gradient(135deg, #152025 0%, #1c2b32 100%);
    padding: 100px 0;
    color: #fff;
    border-radius: 40px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.ap-bottom-cta::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(233, 196, 106, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.ap-bottom-cta__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.ap-bottom-cta__content {
    flex: 1;
}

.ap-bottom-cta__title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 950;
    color: #fff !important;
    margin: 0 0 20px;
    line-height: 1.05;
    letter-spacing: -0.03em;
}

.ap-bottom-cta__title span {
    color: var(--ap-accent);
}

.ap-bottom-cta__desc {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.9;
    max-width: 700px;
}

.ap-bottom-cta__action {
    flex: 0 0 auto;
}

.ap-bottom-cta__button {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 22px 50px;
    background: var(--ap-accent);
    color: var(--ap-primary);
    text-decoration: none;
    font-weight: 950;
    border-radius: 20px;
    font-size: 18px;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 15px 35px rgba(233, 196, 106, 0.35);
}

.ap-bottom-cta__button:hover {
    background: #fce7a2;
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 25px 45px rgba(233, 196, 106, 0.45);
    color: var(--ap-primary);
}

.ap-bottom-cta__button .dashicons {
    font-size: 24px;
    width: 24px;
    height: 24px;
}

@media (max-width: 768px) {
    .ap-bottom-cta__container {
        flex-direction: column;
        text-align: center;
    }

    .ap-contact-form {
        grid-template-columns: 1fr;
    }

    .ap-form-group:nth-child(4),
    .ap-form-submit {
        grid-column: span 1;
    }
}