/* =========================================================
   AARAV DIGITAL PRO
   PREMIUM HEADER
   FRESH VERSION
========================================================= */


/* =========================================================
   VARIABLES
========================================================= */

:root {

    --adp-gold: #E8B52F;
    --adp-gold-light: #FFD84D;

    --adp-white: #FFFFFF;

    --adp-header-bg: rgba(5,5,5,.94);

}


/* =========================================================
   HEADER
========================================================= */

#adp-header {

    position: relative;

    width: 100%;

    z-index: 99999;

    background: var(--adp-header-bg);

    border-bottom:
        1px solid rgba(232,181,47,.20);

    backdrop-filter: blur(18px);

    -webkit-backdrop-filter: blur(18px);

}


/* =========================================================
   HEADER CONTAINER
========================================================= */

#adp-header .adp-header-container {

    width: min(
        1380px,
        calc(100% - 100px)
    );

    max-width: 1380px;

    min-height: 82px;

    margin: 0 auto;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

}


/* =========================================================
   LOGO
========================================================= */

.adp-header-logo {

    flex: 0 0 auto;

    display: flex;

    align-items: center;

}


.adp-header-logo a {

    display: flex;

    align-items: center;

    text-decoration: none;

}


.adp-header-logo img {

    display: block;

    width: auto;

    height: 58px;

    max-width: 180px;

    object-fit: contain;

    transition:
        transform .28s ease,
        opacity .28s ease;

}


.adp-header-logo a:hover img {

    transform:
        translateY(-1px);

    opacity: .92;

}


/* =========================================================
   DESKTOP NAVIGATION
========================================================= */

.adp-header-nav {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 34px;

    margin-left: auto;

}


.adp-header-nav a {

    position: relative;

    display: inline-flex;

    align-items: center;

    min-height: 40px;

    color: #A9A69F;

    font-size: 13px;

    font-weight: 650;

    line-height: 1;

    white-space: nowrap;

    text-decoration: none;

    transition:
        color .25s ease;

}


.adp-header-nav a::after {

    content: "";

    position: absolute;

    left: 0;

    bottom: 3px;

    width: 0;

    height: 1px;

    background: var(--adp-gold);

    transition:
        width .25s ease;

}


.adp-header-nav a:hover {

    color: var(--adp-white);

}


.adp-header-nav a:hover::after {

    width: 100%;

}


/* =========================================================
   HEADER ACTIONS
========================================================= */

.adp-header-actions {

    display: flex;

    align-items: center;

    gap: 14px;

    flex: 0 0 auto;

}


/* =========================================================
   DESKTOP CTA
========================================================= */

.adp-header-cta {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 12px;

    min-height: 46px;

    padding: 0 22px;

    border-radius: 999px;

    color: #080705;

    background:
        linear-gradient(
            135deg,
            var(--adp-gold-light),
            var(--adp-gold)
        );

    box-shadow:
        0 10px 28px rgba(232,181,47,.15);

    font-size: 12px;

    font-weight: 800;

    text-decoration: none;

    white-space: nowrap;

    transition:
        transform .28s ease,
        box-shadow .28s ease;

}


.adp-header-cta:hover {

    color: #080705;

    transform:
        translateY(-2px);

    box-shadow:
        0 15px 35px rgba(232,181,47,.25);

}


.adp-header-cta-arrow {

    display: flex;

    align-items: center;

    justify-content: center;

    width: 22px;

    height: 22px;

    border-radius: 50%;

    background:
        rgba(0,0,0,.10);

    font-size: 13px;

}


/* =========================================================
   MOBILE BUTTON
========================================================= */

.adp-menu-toggle {

    display: none;

    position: relative;

    width: 46px;

    height: 46px;

    padding: 0;

    border:
        1px solid rgba(244,201,93,.45);

    border-radius: 12px;

    background:
        rgba(244,201,93,.06);

    cursor: pointer;

    appearance: none;

    -webkit-appearance: none;

    align-items: center;

    justify-content: center;

    flex-direction: column;

    gap: 5px;

    z-index: 100002;

    transition:
        background .25s ease,
        border-color .25s ease;

}


.adp-menu-toggle:hover {

    background:
        rgba(244,201,93,.12);

    border-color:
        var(--adp-gold-light);

}


.adp-menu-toggle span {

    display: block;

    width: 20px;

    height: 2px;

    background:
        #F4C95D;

    border-radius: 999px;

    transition:
        transform .3s ease,
        opacity .25s ease;

}


/* =========================================================
   HAMBURGER → X
========================================================= */

.adp-menu-toggle.is-open
span:nth-child(1) {

    transform:
        translateY(7px)
        rotate(45deg);

}


.adp-menu-toggle.is-open
span:nth-child(2) {

    opacity: 0;

}


.adp-menu-toggle.is-open
span:nth-child(3) {

    transform:
        translateY(-7px)
        rotate(-45deg);

}


/* =========================================================
   MOBILE MENU
========================================================= */

.adp-mobile-menu {

    position: absolute;

    top: 100%;

    left: 12px;

    right: 12px;

    display: block;

    padding: 10px;

    background:
        rgba(8,8,8,.98);

    border:
        1px solid rgba(244,201,93,.20);

    border-radius: 18px;

    box-shadow:
        0 25px 70px rgba(0,0,0,.65);

    backdrop-filter:
        blur(18px);

    -webkit-backdrop-filter:
        blur(18px);

    opacity: 0;

    visibility: hidden;

    pointer-events: none;

    transform:
        translateY(-12px);

    transition:
        opacity .25s ease,
        visibility .25s ease,
        transform .25s ease;

    z-index: 100001;

}


/* =========================================================
   OPEN MOBILE MENU
========================================================= */

.adp-mobile-menu.is-open {

    opacity: 1;

    visibility: visible;

    pointer-events: auto;

    transform:
        translateY(0);

}


/* =========================================================
   MOBILE NAV
========================================================= */

.adp-mobile-menu nav {

    display: flex;

    flex-direction: column;

    width: 100%;

    gap: 4px;

}


.adp-mobile-menu nav a {

    display: flex;

    align-items: center;

    justify-content: space-between;

    width: 100%;

    min-height: 50px;

    padding: 0 18px;

    color: #FFFFFF;

    background: transparent;

    font-size: 15px;

    font-weight: 700;

    text-decoration: none;

    border-radius: 12px;

    transition:
        color .2s ease,
        background .2s ease;

}


.adp-mobile-menu nav a:hover {

    color:
        #F4C95D;

    background:
        rgba(244,201,93,.07);

}


/* =========================================================
   MOBILE CTA
========================================================= */

.adp-mobile-menu
.adp-mobile-cta {

    justify-content: center;

    margin-top: 8px;

    min-height: 52px;

    color: #090806;

    background:
        linear-gradient(
            135deg,
            #F4C95D,
            #D9A62E
        );

    border-radius: 999px;

    font-weight: 800;

    box-shadow:
        0 8px 25px
        rgba(217,166,46,.18);

}


.adp-mobile-menu
.adp-mobile-cta:hover {

    color: #090806;

    background:
        linear-gradient(
            135deg,
            #FFD96A,
            #E2B23A
        );

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

    #adp-header
    .adp-header-container {

        width:
            calc(100% - 40px);

        min-height: 76px;

    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 760px) {

    #adp-header {

        position: relative;

        z-index: 99999;

    }


    #adp-header
    .adp-header-container {

        width:
            calc(100% - 28px);

        min-height: 74px;

        gap: 12px;

    }


    /* LOGO */

    .adp-header-logo {

        min-width: 0;

        flex: 0 1 auto;

    }


    .adp-header-logo img {

        width: auto;

        max-width: 170px;

        max-height: 52px;

        height: auto;

    }


    /* HIDE DESKTOP NAV */

    .adp-header-nav {

        display: none !important;

    }


    /* HEADER ACTIONS */

    .adp-header-actions {

        display: flex;

        align-items: center;

        justify-content: flex-end;

        gap: 10px;

        margin-left: auto;

    }


    /* HIDE DESKTOP CTA */

    .adp-header-cta {

        display: none !important;

    }


    /* SHOW HAMBURGER */

    .adp-menu-toggle {

        display: flex !important;

        flex: 0 0 46px;

    }


    /* MOBILE MENU */

    .adp-mobile-menu {

        display: block;

    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    #adp-header
    .adp-header-container {

        width:
            calc(100% - 22px);

        min-height: 68px;

    }


    .adp-header-logo img {

        max-width: 145px;

        max-height: 46px;

    }


    .adp-menu-toggle {

        width: 44px;

        height: 44px;

        flex-basis: 44px;

    }


    .adp-mobile-menu {

        top: 100%;

        left: 10px;

        right: 10px;

        border-radius: 16px;

        padding: 8px;

    }


    .adp-mobile-menu nav a {

        min-height: 50px;

        padding: 0 16px;

        font-size: 14px;

    }

}


/* =========================================================
   DESKTOP — MOBILE MENU COMPLETELY OFF
========================================================= */

@media (min-width: 761px) {

    .adp-menu-toggle {

        display: none !important;

    }

    .adp-mobile-menu {

        display: none !important;

    }

}
/* =====================================================
   AARAV DIGITAL PRO
   MOBILE MENU — FINAL OVERRIDE
===================================================== */

@media (max-width: 760px) {

    #adp-header {
        position: relative !important;
        z-index: 999999 !important;
    }

    #adp-header .adp-menu-toggle {
        display: flex !important;

        position: relative !important;

        z-index: 1000001 !important;

        width: 46px !important;
        height: 46px !important;

        padding: 0 !important;
        margin: 0 !important;

        align-items: center !important;
        justify-content: center !important;

        flex-direction: column !important;

        gap: 5px !important;

        cursor: pointer !important;

        pointer-events: auto !important;

        border: 1px solid #e8b52f !important;

        border-radius: 12px !important;

        background: #090909 !important;

        appearance: none !important;
    }


    #adp-header .adp-menu-toggle span {
        display: block !important;

        position: relative !important;

        top: auto !important;
        left: auto !important;

        width: 20px !important;
        height: 2px !important;

        margin: 0 !important;

        background: #f4c95d !important;

        transform: none;

        opacity: 1;

        border-radius: 999px !important;

        transition:
            transform .25s ease,
            opacity .25s ease !important;
    }


    /* =========================
       HAMBURGER → X
    ========================= */

    #adp-header
    .adp-menu-toggle.is-open
    span:nth-child(1) {

        transform:
            translateY(7px)
            rotate(45deg) !important;
    }


    #adp-header
    .adp-menu-toggle.is-open
    span:nth-child(2) {

        opacity: 0 !important;
    }


    #adp-header
    .adp-menu-toggle.is-open
    span:nth-child(3) {

        transform:
            translateY(-7px)
            rotate(-45deg) !important;
    }


    /* =========================
       MENU CLOSED
    ========================= */

    #adp-header .adp-mobile-menu {

        display: block !important;

        position: absolute !important;

        top: 100% !important;

        left: 10px !important;
        right: 10px !important;

        width: auto !important;

        max-height:
            calc(100vh - 85px) !important;

        overflow-y: auto !important;

        z-index: 1000000 !important;

        padding: 10px !important;

        background:
            #080808 !important;

        border:
            1px solid
            rgba(244,201,93,.25) !important;

        border-radius: 16px !important;

        box-shadow:
            0 25px 70px
            rgba(0,0,0,.70) !important;

        opacity: 0 !important;

        visibility: hidden !important;

        pointer-events: none !important;

        transform:
            translateY(-10px) !important;

        transition:
            opacity .25s ease,
            visibility .25s ease,
            transform .25s ease !important;
    }


    /* =========================
       MENU OPEN
    ========================= */

    #adp-header
    .adp-mobile-menu.is-open {

        display: block !important;

        opacity: 1 !important;

        visibility: visible !important;

        pointer-events: auto !important;

        transform:
            translateY(0) !important;
    }


    /* =========================
       LINKS
    ========================= */

    #adp-header
    .adp-mobile-menu nav {

        display: flex !important;

        flex-direction: column !important;

        width: 100% !important;

        gap: 3px !important;
    }


    #adp-header
    .adp-mobile-menu nav a {

        display: flex !important;

        align-items: center !important;

        width: 100% !important;

        min-height: 50px !important;

        padding: 0 17px !important;

        color: #ffffff !important;

        background: transparent !important;

        font-size: 15px !important;

        font-weight: 700 !important;

        text-decoration: none !important;

        border: 0 !important;

        border-radius: 10px !important;

        box-sizing: border-box !important;
    }


    #adp-header
    .adp-mobile-menu nav a:hover {

        color: #f4c95d !important;

        background:
            rgba(244,201,93,.07) !important;
    }


    /* CTA */

    #adp-header
    .adp-mobile-menu
    .adp-mobile-cta {

        justify-content: center !important;

        margin-top: 8px !important;

        min-height: 52px !important;

        color: #080705 !important;

        background:
            linear-gradient(
                135deg,
                #f4c95d,
                #d9a62e
            ) !important;

        border-radius: 999px !important;
    }

}


/* =====================================================
   DESKTOP
===================================================== */

@media (min-width: 761px) {

    #adp-header .adp-menu-toggle {

        display: none !important;
    }

    #adp-header .adp-mobile-menu {

        display: none !important;
    }

}
/* =========================================================
   AARAV DIGITAL
   SERVICES DROPDOWN
========================================================= */


/* =========================================================
   DESKTOP SERVICES TRIGGER
========================================================= */

.adp-nav-dropdown {
    position: relative;
    display: flex;
    align-items: center;
}

.adp-services-trigger {
    display: inline-flex;
    align-items: center;
    gap: 7px;

    padding: 0;
    margin: 0;

    border: 0;
    outline: 0;

    background: transparent;

    color: #ffffff;

    font: inherit;
    font-size: inherit;
    font-weight: inherit;

    cursor: pointer;
}

.adp-services-arrow {
    display: inline-flex;

    font-size: 11px;

    color: #f5b719;

    transition: transform .25s ease;
}

.adp-services-trigger:hover {
    color: #f5b719;
}

.adp-services-trigger:hover .adp-services-arrow {
    transform: translateY(2px);
}


/* =========================================================
   DROPDOWN
========================================================= */

.adp-services-dropdown {
    position: absolute;

    top: calc(100% + 22px);
    left: 50%;

    width: 650px;

    transform:
        translateX(-50%)
        translateY(10px);

    opacity: 0;
    visibility: hidden;

    pointer-events: none;

    transition:
        opacity .25s ease,
        transform .25s ease,
        visibility .25s ease;

    z-index: 99999;
}


/* Small gold connector */

.adp-services-dropdown::before {
    content: "";

    position: absolute;

    top: -7px;
    left: 50%;

    width: 14px;
    height: 14px;

    transform:
        translateX(-50%)
        rotate(45deg);

    background: #0c0c0c;

    border-left: 1px solid #8f6b00;
    border-top: 1px solid #8f6b00;

    z-index: -1;
}


/* OPEN */

.adp-nav-dropdown:hover
.adp-services-dropdown,
.adp-nav-dropdown.adp-services-open
.adp-services-dropdown {

    opacity: 1;

    visibility: visible;

    pointer-events: auto;

    transform:
        translateX(-50%)
        translateY(0);

}


/* =========================================================
   DROPDOWN BOX
========================================================= */

.adp-services-dropdown-inner {

    position: relative;

    padding: 25px;

    border: 1px solid #765900;

    border-radius: 12px;

    background:
        radial-gradient(
            circle at 85% 5%,
            rgba(245,183,25,.09),
            transparent 30%
        ),
        #0a0a0a;

    box-shadow:
        0 25px 70px rgba(0,0,0,.75),
        0 0 35px rgba(245,183,25,.07);

}


/* Top gold line */

.adp-services-dropdown-inner::before {

    content: "";

    position: absolute;

    top: -1px;

    left: 20%;
    right: 20%;

    height: 2px;

    background:
        linear-gradient(
            90deg,
            transparent,
            #f5b719,
            transparent
        );

    box-shadow:
        0 0 12px
        rgba(245,183,25,.7);

}


/* =========================================================
   DROPDOWN HEADER
========================================================= */

.adp-services-dropdown-header {

    margin-bottom: 20px;

    padding-bottom: 16px;

    border-bottom:
        1px solid
        rgba(255,255,255,.10);

}

.adp-services-dropdown-header span {

    display: block;

    color: #f5b719;

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 1.5px;

}

.adp-services-dropdown-header p {

    margin: 6px 0 0;

    color: #999;

    font-size: 13px;

}


/* =========================================================
   SERVICES GRID
========================================================= */

.adp-services-grid {

    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 8px;

}


/* =========================================================
   SERVICE ITEM
========================================================= */

.adp-service-item {

    position: relative;

    min-height: 75px;

    display: grid;

    grid-template-columns: 43px 1fr 20px;

    align-items: center;

    gap: 11px;

    padding: 12px 13px;

    border:
        1px solid
        rgba(255,255,255,.10);

    border-radius: 8px;

    background:
        rgba(255,255,255,.018);

    text-decoration: none !important;

    transition:
        border-color .25s ease,
        background .25s ease,
        transform .25s ease;

}

.adp-service-item:hover {

    border-color:
        rgba(245,183,25,.65);

    background:
        rgba(245,183,25,.055);

    transform: translateY(-2px);

}


/* ICON */

.adp-service-icon {

    width: 40px;
    height: 40px;

    display: flex;

    align-items: center;
    justify-content: center;

    border:
        1px solid
        rgba(245,183,25,.65);

    border-radius: 8px;

    color: #f5b719;

    font-size: 20px;

    font-weight: 800;

    background:
        rgba(245,183,25,.025);

    box-shadow:
        0 0 14px
        rgba(245,183,25,.07);

}


/* CONTENT */

.adp-service-content {

    min-width: 0;

    display: flex;

    flex-direction: column;

    gap: 4px;

}

.adp-service-content strong {

    color: #ffffff;

    font-size: 14px;

    font-weight: 700;

    line-height: 1.25;

}

.adp-service-content small {

    color: #888;

    font-size: 10px;

    line-height: 1.3;

}


/* ARROW */

.adp-service-arrow {

    color: #f5b719;

    font-size: 17px;

    transition:
        transform .25s ease;

}

.adp-service-item:hover
.adp-service-arrow {

    transform:
        translateX(4px);

}


/* =========================================================
   VIEW ALL SERVICES
========================================================= */

.adp-all-services {

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 10px;

    margin-top: 16px;

    padding-top: 15px;

    border-top:
        1px solid
        rgba(255,255,255,.10);

    color: #f5b719 !important;

    text-decoration: none !important;

    font-size: 13px;

    font-weight: 700;

}

.adp-all-services span {

    font-size: 18px;

    transition:
        transform .25s ease;

}

.adp-all-services:hover span {

    transform:
        translateX(5px);

}


/* =========================================================
   MOBILE SERVICES
========================================================= */

.adp-mobile-services {

    width: 100%;

    border-bottom:
        1px solid
        rgba(255,255,255,.08);

}


/* MOBILE TRIGGER */

.adp-mobile-services-trigger {

    width: 100%;

    min-height: 52px;

    display: flex;

    align-items: center;
    justify-content: space-between;

    padding: 0;

    border: 0;
    outline: 0;

    background: transparent;

    color: #ffffff;

    font: inherit;

    font-size: 16px;

    font-weight: 600;

    cursor: pointer;

}

.adp-mobile-services-trigger:hover {

    color: #f5b719;

}

.adp-mobile-services-arrow {

    display: flex;

    align-items: center;
    justify-content: center;

    width: 28px;
    height: 28px;

    border:
        1px solid
        #765900;

    border-radius: 50%;

    color: #f5b719;

    font-size: 18px;

    transition:
        transform .25s ease,
        background .25s ease;

}

.adp-mobile-services-trigger.is-open
.adp-mobile-services-arrow {

    background: #f5b719;

    color: #000;

}


/* MOBILE LIST */

.adp-mobile-services-list {

    display: none;

    padding:
        4px 0
        12px;

}

.adp-mobile-services-list.is-open {

    display: block;

}


/* MOBILE SERVICE LINK */

.adp-mobile-services-list > a {

    min-height: 46px;

    display: flex !important;

    align-items: center;

    gap: 12px;

    padding: 8px 12px;

    margin: 3px 0;

    border:
        1px solid
        rgba(255,255,255,.08);

    border-radius: 7px;

    color: #ffffff !important;

    background:
        rgba(255,255,255,.02);

    font-size: 14px !important;

    text-decoration: none !important;

}

.adp-mobile-services-list > a:hover {

    border-color:
        rgba(245,183,25,.6);

    color: #f5b719 !important;

    background:
        rgba(245,183,25,.05);

}


/* MOBILE ICON */

.adp-mobile-services-list > a > span {

    width: 30px;
    height: 30px;

    display: flex;

    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    border:
        1px solid
        rgba(245,183,25,.6);

    border-radius: 6px;

    color: #f5b719;

    font-size: 13px;

}


/* ALL SERVICES */

.adp-mobile-services-list
.adp-mobile-all-services {

    justify-content: center;

    color: #f5b719 !important;

    border-color:
        rgba(245,183,25,.45);

    font-weight: 700;

}


/* =========================================================
   MOBILE BREAKPOINT
========================================================= */

@media (max-width: 900px) {

    .adp-header-nav {
        display: none;
    }

    .adp-header-actions {
        margin-left: auto;
    }

    .adp-header-cta {
        display: none;
    }

    .adp-mobile-menu {

        position: absolute;

        top: 100%;

        left: 0;
        right: 0;

        width: 100%;

        max-height:
            calc(100vh - 80px);

        overflow-y: auto;

        opacity: 0;

        visibility: hidden;

        pointer-events: none;

        transform:
            translateY(-10px);

        transition:
            opacity .25s ease,
            transform .25s ease,
            visibility .25s ease;

        z-index: 99998;

    }

    .adp-mobile-menu.is-open {

        opacity: 1;

        visibility: visible;

        pointer-events: auto;

        transform:
            translateY(0);

    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 500px) {

    .adp-mobile-services-trigger {

        min-height: 50px;

        font-size: 15px;

    }

    .adp-mobile-services-list > a {

        min-height: 44px;

        font-size: 13px !important;

    }

}