/* =========================================================
   ASTROLOGER ATUL LALCHAND BHARGAAV
   RED + CREAM PREMIUM ASTROLOGY WEBSITE
========================================================= */


/* =========================================================
   ROOT VARIABLES
========================================================= */

:root {

    /* PRIMARY RED / WINE */

    --red: #8E2638;
    --red-dark: #641A29;
    --red-deep: #3E111B;
    --red-light: #A83A4B;

    --wine: #541722;
    --wine-light: #702331;


    /* CREAM */

    --cream: #F8F0E4;
    --cream-light: #FFF9F1;
    --cream-dark: #EDE0D0;


    /* GOLD */

    --gold: #C69A55;
    --gold-light: #E1BF7D;
    --gold-dark: #9C7136;


    /* WHITE */

    --white: #FFFFFF;


    /* TEXT */

    --text: #66565A;
    --text-light: #8D7B7F;
    --heading: #3E111B;


    /* BORDERS */

    --border: rgba(62,17,27,.12);
    --border-light: rgba(255,255,255,.16);


    /* SHADOWS */

    --shadow-sm:
        0 8px 25px rgba(62,17,27,.08);

    --shadow-md:
        0 15px 40px rgba(62,17,27,.13);

    --shadow-lg:
        0 25px 70px rgba(62,17,27,.18);


    /* RADIUS */

    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;

}


/* =========================================================
   RESET
========================================================= */

* {

    margin: 0;
    padding: 0;

    box-sizing: border-box;

}


html {

    scroll-behavior: smooth;

}


body {

    margin: 0;

    padding: 0;

    overflow-x: hidden;

    background: var(--cream);

    color: var(--text);

    font-family:
        'DM Sans',
        sans-serif;

}


body,
button,
input,
textarea,
select {

    font-family:
        'DM Sans',
        sans-serif;

}


h1,
h2,
h3,
h4,
h5,
h6 {

    margin: 0;

    font-family:
        'Playfair Display',
        serif;

}


p {

    margin: 0;

}


a {

    text-decoration: none;

}


img {

    max-width: 100%;

    height: auto;

    display: block;

}


button {

    outline: none;

}


::selection {

    background: var(--red);

    color: #fff;

}

/* =========================================================
   SCROLLBAR
========================================================= */

::-webkit-scrollbar {

    width: 7px;

}


::-webkit-scrollbar-track {

    background: var(--cream);

}


::-webkit-scrollbar-thumb {

    background: var(--red);

    border-radius: 20px;

}


::-webkit-scrollbar-thumb:hover {

    background: var(--red-dark);

}


/* =========================================================
   TOP INFORMATION BAR
========================================================= */

.top-info-bar {

    width: 100%;

    background:
        linear-gradient(
            90deg,
            var(--red-deep),
            var(--wine),
            var(--red-dark)
        );

    border-bottom: 1px solid
        rgba(225, 191, 125, 0.25);

    color: var(--cream-light);

}


.top-info-inner {

    min-height: 64px;

    display: flex;

    align-items: center;

    gap: 38px;

}


/* =========================================================
   TOP INFO ITEMS
========================================================= */

.top-info-item {

    display: flex;

    align-items: center;

    gap: 10px;

    font-size: 14px;

    font-weight: 500;

    white-space: nowrap;

}


.top-icon {

    width: 34px;
    height: 34px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color: var(--gold-light);

    border: 1px solid
        rgba(225, 191, 125, 0.45);

    background:
        rgba(255, 255, 255, 0.05);

    font-size: 14px;

}


/* =========================================================
   CONTACT BUTTON
========================================================= */

.top-contact-btn {

    margin-left: auto;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-width: 145px;

    min-height: 48px;

    padding: 0 25px;

    color: var(--red-deep);

    background: var(--gold-light);

    text-decoration: none;

    font-size: 14px;

    font-weight: 700;

    transition: all 0.3s ease;

}


.top-contact-btn:hover {

    color: var(--white);

    background: var(--red-light);

}

/*Header*/
.visual-header {
    width: 100%;
    margin: 0;
    padding: 0;
    background: var(--cream-light);
    overflow: hidden;
}

.visual-header-item {
    width: 100%;
    height: auto;
    overflow: hidden;
    position: relative;
}

.visual-header-item img {
    width: 100%;
    height: 100%;
    display: block;

    object-fit: cover;
    object-position: center;

    transition: transform .6s ease;
}

.visual-header-item:hover img {
    transform: scale(1.04);
}


/* Mobile */

@media (max-width: 575px) {

    .visual-header-item {
    height: auto;
    }

}
/* =========================================================
   CONSULTATION STRIP
========================================================= */

.consultation-strip {

    width: 100%;

    background: var(--cream-light);

    border-bottom:
        1px solid rgba(62, 17, 27, 0.10);

    box-shadow:
        0 8px 25px rgba(62, 17, 27, 0.08);

}


.consultation-strip-inner {

    min-height: 88px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

}


/* =========================================================
   CONSULTATION TITLE
========================================================= */

.consultation-title {

    display: flex;

    align-items: center;

    gap: 15px;

}


.consultation-title > span {

    width: 44px;
    height: 44px;

    flex: 0 0 44px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: var(--red);

    color: var(--gold-light);

}


.consultation-title div {

    display: flex;

    flex-direction: column;

    gap: 2px;

}


.consultation-title small {

    color: var(--red);

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 1.5px;

}


.consultation-title strong {

    color: var(--red-deep);

    font-size: 17px;

    font-weight: 700;

}


/* =========================================================
   CONTACT AREA
========================================================= */

.consultation-contact {

    display: flex;

    align-items: center;

    gap: 25px;

}


.consultation-phone {

    display: flex;

    align-items: center;

    gap: 10px;

}


.consultation-phone > i {

    width: 40px;
    height: 40px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color: var(--red);

    background: var(--cream-light);

}


.consultation-phone div {

    display: flex;

    flex-direction: column;

}


.consultation-phone small {

    color: var(--text-light);

    font-size: 9px;

    letter-spacing: 1px;

}


.consultation-phone strong {

    color: var(--cream-light);

    font-size: 15px;

}


/* =========================================================
   CONSULTATION BUTTON
========================================================= */

.consultation-btn {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    padding: 14px 22px;

    color: var(--red);

    background: var(--gold-light);

    text-decoration: none;

    border: 1px solid var(--red);

    font-size: 13px;

    font-weight: 700;

    transition: all 0.3s ease;

}


.consultation-btn:hover {

    color: var(--red-deep);

    background: var(--cream);

    border-color: var(--gold-light);

}


.consultation-btn i {

    transition: transform 0.3s ease;

}


.consultation-btn:hover i {

    transform: translateX(4px);

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .top-info-inner {

        gap: 20px;

    }


    .top-info-item {

        font-size: 12px;

    }


    .consultation-strip-inner {

        min-height: 80px;

    }


    .consultation-title strong {

        font-size: 15px;

    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .top-info-inner {

        min-height: 55px;

        justify-content: center;

    }


    .top-info-item {

        display: none;

    }


    .top-contact-btn {

        margin-left: 0;

        min-height: 40px;

        min-width: 130px;

        padding: 0 20px;

    }


    /* -----------------------------------------
       CONSULTATION STRIP
    ----------------------------------------- */

    .consultation-strip-inner {

        padding: 15px 0;

        flex-direction: column;

        align-items: stretch;

        gap: 15px;

    }


    .consultation-title {

        justify-content: center;

        text-align: center;

    }


    .consultation-contact {

        justify-content: center;

        flex-wrap: wrap;

    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .consultation-title strong {

        font-size: 14px;

    }


    .consultation-contact {

        flex-direction: column;

        width: 100%;

    }


    .consultation-phone {

        justify-content: center;

    }


    .consultation-btn {

        width: 100%;

        justify-content: center;

    }

}


/* =========================================================
   HERO SECTION
   IMAGE RATIO: 1600 × 780
========================================================= */

.hero-section {
    position: relative;

    width: 100%;

    margin: 0;
    padding: 0;

    overflow: hidden;

    background: #3E111B;
}


/* =========================================================
   SWIPER
========================================================= */

.heroSwiper {
    position: relative;

    width: 100%;

    margin: 0;
    padding: 0;

    overflow: hidden;
}


.heroSwiper .swiper-wrapper {
    width: 100%;
    height: auto;
}


/* =========================================================
   HERO SLIDE
========================================================= */

.hero-slide {
    position: relative;

    width: 100%;

    /*
        Keep exact ratio of your images:
        1600 / 780
    */

    aspect-ratio: 1600 / 680;

    overflow: hidden;

    background: #3E111B;
}


/* =========================================================
   IMAGE WRAPPER
========================================================= */

.hero-image {
    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    margin: 0;
    padding: 0;

    overflow: hidden;

    background: #3E111B;
}


/* =========================================================
   ACTUAL IMAGE

   IMPORTANT:
   Bootstrap .img-fluid normally applies:

   max-width: 100%;
   height: auto;

   We override those properties here.
========================================================= */

.hero-image img {
    position: absolute;

    top: 0;
    left: 0;

    display: block;

    width: 100% !important;
    height: 100% !important;

    max-width: none !important;

    margin: 0;
    padding: 0;

    border: 0;

    /*
        Because the hero itself has the same ratio
        as the image, cover will not crop on desktop.
    */

    object-fit: cover;

    object-position: center center;

    /*
        No zoom
    */

    transform: none;

    /*
        Blur transition
    */

    filter: blur(10px);

    opacity: 0;

    will-change: filter, opacity;

    transition:
        filter 1.2s ease,
        opacity 1.2s ease;
}


/* =========================================================
   ACTIVE IMAGE
========================================================= */

.hero-slide.swiper-slide-active .hero-image img {

    filter: blur(0);

    opacity: 1;

}


/* =========================================================
   VERY SUBTLE OVERLAY
========================================================= */

.hero-slide::after {

    content: "";

    position: absolute;

    inset: 0;

    z-index: 2;

    pointer-events: none;

    background:
        linear-gradient(
            180deg,
            rgba(62, 17, 27, 0.02) 0%,
            rgba(62, 17, 27, 0.02) 50%,
            rgba(62, 17, 27, 0.10) 100%
        );

}


/* =========================================================
   SWIPER ARROWS
========================================================= */

.heroSwiper .swiper-button-prev,
.heroSwiper .swiper-button-next {

    position: absolute;

    top: 50%;

    width: 52px;
    height: 52px;

    margin-top: -26px;

    z-index: 10;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color: #FFFFFF;

    background:
        rgba(62, 17, 27, 0.45);

    border:
        1px solid
        rgba(255, 255, 255, 0.35);

    backdrop-filter: blur(8px);

    -webkit-backdrop-filter: blur(8px);

    transition:
        background 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease;

}


/* =========================================================
   PREVIOUS BUTTON
========================================================= */

.heroSwiper .swiper-button-prev {

    left: 25px;

}


/* =========================================================
   NEXT BUTTON
========================================================= */

.heroSwiper .swiper-button-next {

    right: 25px;

}


/* =========================================================
   ARROW ICON
========================================================= */

.heroSwiper .swiper-button-prev::after,
.heroSwiper .swiper-button-next::after {

    font-size: 16px;

    font-weight: 700;

}


/* =========================================================
   ARROW HOVER
========================================================= */

.heroSwiper .swiper-button-prev:hover,
.heroSwiper .swiper-button-next:hover {

    color: #3E111B;

    background: #E1BF7D;

    border-color: #E1BF7D;

    transform: scale(1.06);

}


/* =========================================================
   PAGINATION
========================================================= */

.heroSwiper .swiper-pagination {

    position: absolute;

    left: 0;

    bottom: 22px;

    width: 100%;

    z-index: 10;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 7px;

}


/* =========================================================
   PAGINATION BULLET
========================================================= */

.heroSwiper .swiper-pagination-bullet {

    width: 9px;
    height: 9px;

    margin: 0 !important;

    opacity: 1;

    border-radius: 50%;

    background:
        rgba(255, 255, 255, 0.65);

    transition:
        width 0.3s ease,
        background 0.3s ease,
        border-radius 0.3s ease;

}


/* =========================================================
   ACTIVE BULLET
========================================================= */

.heroSwiper .swiper-pagination-bullet-active {

    width: 30px;

    border-radius: 20px;

    background: #E1BF7D;

}


/* =========================================================
   LARGE DESKTOP
========================================================= */

@media (min-width: 1600px) {

    .hero-slide {
        aspect-ratio: 1600 / 680;
    }

}


/* =========================================================
   LAPTOP
========================================================= */

@media (max-width: 1199px) {

    .heroSwiper .swiper-button-prev {

        left: 18px;

    }


    .heroSwiper .swiper-button-next {

        right: 18px;

    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .hero-slide {

        /*
            Still keeps the original image ratio.
        */

        aspect-ratio: 1600 / 680;

    }


    .hero-image img {

        object-position: center center;

        filter: blur(8px);

    }


    .hero-slide.swiper-slide-active .hero-image img {

        filter: blur(0);

    }


    /* -----------------------------------------
       ARROWS
    ----------------------------------------- */

    .heroSwiper .swiper-button-prev,
    .heroSwiper .swiper-button-next {

        width: 46px;
        height: 46px;

        margin-top: -23px;

    }


    .heroSwiper .swiper-button-prev {

        left: 15px;

    }


    .heroSwiper .swiper-button-next {

        right: 15px;

    }


    .heroSwiper .swiper-button-prev::after,
    .heroSwiper .swiper-button-next::after {

        font-size: 14px;

    }


    /* -----------------------------------------
       PAGINATION
    ----------------------------------------- */

    .heroSwiper .swiper-pagination {

        bottom: 18px;

    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .hero-slide {

        /*
            Keep exact same ratio so the image
            does not get vertically cropped.
        */

        aspect-ratio: 1600 / 680;

    }


    .hero-image {

        width: 100%;
        height: 100%;

    }


    .hero-image img {

        width: 100% !important;
        height: 100% !important;

        max-width: none !important;

        object-fit: cover;

        object-position: center center;

        filter: blur(7px);

    }


    .hero-slide.swiper-slide-active .hero-image img {

        filter: blur(0);

    }


    /* -----------------------------------------
       MOBILE ARROWS
    ----------------------------------------- */

    .heroSwiper .swiper-button-prev,
    .heroSwiper .swiper-button-next {

        width: 38px;
        height: 38px;

        margin-top: -19px;

    }


    .heroSwiper .swiper-button-prev {

        left: 10px;

    }


    .heroSwiper .swiper-button-next {

        right: 10px;

    }


    .heroSwiper .swiper-button-prev::after,
    .heroSwiper .swiper-button-next::after {

        font-size: 12px;

    }


    /* -----------------------------------------
       MOBILE PAGINATION
    ----------------------------------------- */

    .heroSwiper .swiper-pagination {

        bottom: 12px;

        gap: 5px;

    }


    .heroSwiper .swiper-pagination-bullet {

        width: 7px;
        height: 7px;

    }


    .heroSwiper .swiper-pagination-bullet-active {

        width: 23px;

    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .hero-slide {

        /*
            DO NOT change this ratio.
            Keeping 1600 / 780 prevents
            additional vertical cropping.
        */

        aspect-ratio: 1600 / 680;

    }


    .heroSwiper .swiper-button-prev,
    .heroSwiper .swiper-button-next {

        width: 34px;
        height: 34px;

        margin-top: -17px;

    }


    .heroSwiper .swiper-button-prev {

        left: 7px;

    }


    .heroSwiper .swiper-button-next {

        right: 7px;

    }


    .heroSwiper .swiper-button-prev::after,
    .heroSwiper .swiper-button-next::after {

        font-size: 10px;

    }


    .heroSwiper .swiper-pagination {

        bottom: 9px;

    }

}


/* =========================================================
   VERY SMALL DEVICES
========================================================= */

@media (max-width: 375px) {

    .hero-slide {

        aspect-ratio: 1600 / 780;

    }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .hero-image img {

        filter: none !important;

        opacity: 1 !important;

        transition: none !important;

    }

}
/* =========================================================
   TRUST BAR
========================================================= */

.trust-bar {

    position: relative;

    z-index: 10;

    background: var(--cream-light);

    border-bottom:
        1px solid var(--border);

}


.trust-item {

    min-height: 105px;

    display: flex;

    align-items: center;

    gap: 15px;

    padding: 20px 25px;

    border-right:
        1px solid var(--border);

}


.trust-item i {

    width: 48px;

    height: 48px;

    min-width: 48px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background:
        rgba(142,38,56,.08);

    color: var(--red);

    font-size: 17px;

}


.trust-item strong {

    display: block;

    margin-bottom: 3px;

    color: var(--red-deep);

    font-size: 16px;

    font-weight: 700;

}


.trust-item span {

    display: block;

    color: var(--text-light);

    font-size: 16px;

}


/* =========================================================
   GENERAL
========================================================= */

.section-padding {

    padding: 80px 0;

}


.section-label {

    display: inline-block;

    margin-bottom: 15px;

    color: var(--red);

    font-size: 16px;

    font-weight: 700;

    letter-spacing: 3px;

}


.section-title {

    margin-bottom: 20px;

    color: var(--heading);

    font-size: 52px;

    line-height: 1.15;

    font-weight: 600;

}


.section-title span {

    display: block;

    color: var(--red);

}


.section-heading {

	text-align: center;
}



.section-heading > p {

    margin: 0;

    color: var(--text);

    font-size: 16px;

    line-height: 1.8;

}


.section-heading.text-center {

    display: block;

    text-align: center;

}


.section-heading.text-center > p {

    margin: 0 auto;

}


/* =========================================================
   ABOUT ASTROLOGER
========================================================= */

.about-astrologer {

    position: relative;

    background: var(--cream);

}


.about-astrologer::before {

    content: "";

    position: absolute;

    top: 0;

    right: 0;

    width: 300px;

    height: 300px;

    background:

        radial-gradient(
            circle,
            rgba(142,38,56,.08),
            transparent 70%
        );

}


.astrologer-image-wrap {

    position: relative;

    padding: 25px;

}


.astrologer-image {

    position: relative;

    z-index: 2;

    width: 100%;

    height: 580px;

    overflow: hidden;

    border-radius:
        10px 150px 10px 150px;

    background: var(--red-deep);

    box-shadow:
        var(--shadow-lg);

}


.astrologer-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

}


.image-decoration {

    position: absolute;

    left: 0;

    bottom: 0;

    width: 230px;

    height: 230px;

    border: 2px solid
        var(--gold);

    border-radius: 50%;

    opacity: .55;

}


.gold-seal {

    position: absolute;

    right: 0;

    bottom: 40px;

    z-index: 5;

    width: 155px;

    height: 155px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: var(--gold);

    color: var(--red-deep);

    text-align: center;

    box-shadow:
        var(--shadow-md);

}


.gold-seal i {

    margin-bottom: 8px;

    font-size: 22px;

}


.gold-seal span {

    font-size: 16px;

    font-weight: 700;

    letter-spacing: 2px;

}


.about-astrologer .lead-text {

    margin-bottom: 18px;

    color: var(--red-deep);

    font-family:
        'Playfair Display',
        serif;

    font-size: 21px;

    line-height: 1.65;

}


.about-astrologer p:not(.lead-text) {

    color: var(--text);

    font-size: 16px;

    line-height: 1.85;

}


.signature-box {

    margin: 30px 0;

}


.signature-line {

    width: 70px;

    height: 2px;

    margin-bottom: 10px;

    background: var(--gold);

}


.signature-box strong {

    display: block;

    color: var(--red-deep);

    font-family:
        'Playfair Display',
        serif;

    font-size: 20px;

}


.signature-box span {

    color: var(--text-light);

    font-size: 16px;

}


.dark-gold-btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    padding: 15px 25px;

    border-radius: 50px;

    background: var(--red);

    color: #fff;

    font-size: 16px;

    font-weight: 600;

    transition:
        all .3s ease;

}


.dark-gold-btn:hover {

    background: var(--red-dark);

    color: #fff;

    transform:
        translateY(-2px);

    box-shadow:
        var(--shadow-sm);

}


/* =========================================================
   QUESTION SECTION
========================================================= */

.question-section {

    position: relative;

    padding: 105px 0;

    overflow: hidden;

    background:

        radial-gradient(
            circle at 15% 20%,
            rgba(198,154,85,.16),
            transparent 28%
        ),

        radial-gradient(
            circle at 85% 80%,
            rgba(168,58,75,.22),
            transparent 35%
        ),

        var(--red-deep);

}


.question-section::before {

    content: "";

    position: absolute;

    inset: 0;

/*
    background-image:

        radial-gradient(
            rgba(225,191,125,.25) 1px,
            transparent 1px
        );
*/
	background: url("../images/ganesh-bg.png") left center no-repeat;
    opacity: .2;

}


.question-inner {

    position: relative;

    z-index: 2;

    max-width: 850px;

    margin: auto;

    text-align: center;

}


.question-symbol {

    width: 70px;

    height: 70px;

    margin: 0 auto 25px;

    display: flex;

    align-items: center;

    justify-content: center;

    border: 1px solid var(--gold-light);

    border-radius: 50%;

    color: var(--gold-light);

    font-size: 24px;

}


.question-inner > span {

    color: var(--gold-light);

    font-size: 16px;

    font-weight: 700;

    letter-spacing: 3px;

}


.question-inner h2 {

    margin: 18px 0;

    color: #fff;

    font-size: 52px;

    font-weight: 500;

    line-height: 1.2;

}


.question-inner h2 strong {

    display: block;

    color: var(--gold-light);

    font-weight: 600;

}


.question-inner p {

    max-width: 650px;

    margin: 0 auto 30px;

    color:
        rgba(255,255,255,.67);

    font-size: 16px;

    line-height: 1.8;

}


/* =========================================================
   SERVICES SECTION
========================================================= */

.services-section {
    background: var(--cream-light);
}


/* =========================================================
   SERVICE CARD
========================================================= */

.service-card {

    position: relative;

    height: 100%;

    overflow: hidden;

    background: var(--white);

    border: 1px solid var(--border);

    border-radius: var(--radius-md);

    box-shadow: var(--shadow-sm);

    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease,
        border-color 0.4s ease;
}


.service-card:hover {

    transform: translateY(-8px);

    border-color:
        rgba(142, 38, 56, 0.25);

    box-shadow: var(--shadow-md);

}


/* =========================================================
   SERVICE IMAGE
========================================================= */

.service-image {

    position: relative;

    width: 100%;

    height: 250px;

    overflow: hidden;

    background: var(--cream-dark);
}


.service-image img {

    width: 100%;

    height: 100%;

    display: block;

    object-fit: cover;

    object-position: top;

    transition:
        transform 0.7s ease;
}


/* Image zoom */

.service-card:hover .service-image img {

    transform: scale(1.06);

}


/* =========================================================
   IMAGE OVERLAY
========================================================= */

.service-image::after {

    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            transparent 45%,
            rgba(62, 17, 27, 0.30) 100%
        );

    pointer-events: none;

}


/* =========================================================
   SERVICE NUMBER
========================================================= */

.service-number {

    position: absolute;

    left: 18px;

    bottom: 16px;

    z-index: 3;

    width: 42px;

    height: 42px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color: var(--red-deep);

    background: var(--gold-light);

    border: 2px solid
        rgba(255, 255, 255, 0.75);

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 0.5px;

    box-shadow:
        0 5px 15px rgba(62, 17, 27, 0.18);

}


/* =========================================================
   SERVICE CONTENT
========================================================= */

.service-content {

    padding: 26px 25px 25px;

}


.service-content h3 {

    margin: 0 0 10px;

    color: var(--heading);

    font-size: 21px;

    font-weight: 700;

    line-height: 1.3;

}


.service-content p {

    margin: 0 0 18px;

    color: var(--text);

    font-size: 14px;

    line-height: 1.75;

}


/* =========================================================
   DISCUSS LINK
========================================================= */

.service-content a {

    display: inline-flex;

    align-items: center;

    gap: 9px;

/*    color: var(--red);*/

    text-decoration: none;

    font-size: 13px;

    font-weight: 700;

    transition: all 0.3s ease;

}


.service-content a i {

    font-size: 11px;

    transition:
        transform 0.3s ease;

}


.service-content a:hover i {

    transform: translateX(5px);

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .service-image {

        height: 220px;

    }

    .service-content {

        padding: 22px;

    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .service-image {

        height: 220px;

    }

    .service-content {

        padding: 22px;

    }

    .service-content h3 {

        font-size: 19px;

    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .service-image {

        height: 210px;

    }

}

/* =========================================================
   PROCESS
========================================================= */

.process-section {

    background: var(--cream-dark);

}


.process-line {

    position: relative;

    display: grid;

    grid-template-columns:
        repeat(4,1fr);

    gap: 25px;

    margin-top: 70px;

}


.process-line::before {

    content: "";

    position: absolute;

    top: 40px;

    left: 10%;

    right: 10%;

    height: 1px;

    background:
        rgba(142,38,56,.25);

}


.process-item {

    position: relative;

    z-index: 2;

    text-align: center;

}


.process-number {

    width: 80px;

    height: 80px;

    margin: auto;

    display: flex;

    align-items: center;

    justify-content: center;

    border: 7px solid var(--cream);

    border-radius: 50%;

    background: var(--red);

    color: var(--gold-light);

    font-family:
        'Playfair Display',
        serif;

    font-size: 24px;

    box-shadow:
        0 0 0 1px
        rgba(142,38,56,.25);

}


.process-icon {

    width: 50px;

    height: 50px;

    margin: 20px auto;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: #fff;

    color: var(--red);

    box-shadow:
        var(--shadow-sm);

}


.process-item h3 {

    margin-bottom: 10px;

    color: var(--red-deep);

    font-size: 21px;

}


.process-item p {

    max-width: 230px;

    margin: auto;

    color: var(--text);

    font-size: 16px;

    line-height: 1.75;

}


/* =========================================================
   AREAS
========================================================= */

.areas-section {

    background: var(--red-deep);

}


.areas-section .section-title {

    color: #fff;

}


.areas-section > .container
> .row > .col-lg-5 > p {

    max-width: 500px;

    margin-bottom: 30px;

    color:
        rgba(255,255,255,.65);

    font-size: 16px;

    line-height: 1.8;

}


.areas-grid {

    display: grid;

    grid-template-columns:
        repeat(4,1fr);

    gap: 15px;

}


.area-box {

    min-height: 130px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    gap: 12px;

    border: 1px solid
        rgba(225,191,125,.25);

    color: #fff;

    transition:
        all .3s ease;

}


.area-box i {

    color: var(--gold-light);

    font-size: 23px;

    transition:
        color .3s ease;

}


.area-box span {

    color:
        rgba(255,255,255,.75);

    font-size: 16px;

}


.area-box:hover {

    background: var(--gold);

    border-color: var(--gold);

    color: var(--red-deep);

    transform:
        translateY(-5px);

}


.area-box:hover i,
.area-box:hover span {

    color: var(--red-deep);

}


/* =========================================================
   WHY SECTION
========================================================= */

.why-section {

    background: var(--cream-dark);

}


.feature-list {

    margin-top: 35px;

}


.feature {

    display: flex;

    align-items: flex-start;

    gap: 18px;

    padding: 20px 0;

    border-bottom:
        1px solid var(--border);

}


.feature:first-child {

    border-top:
        1px solid var(--border);

}


.feature-icon {

    width: 50px;

    height: 50px;

    min-width: 50px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background:
        rgba(142,38,56,.08);

    color: var(--red);

}


.feature h4 {

    margin-bottom: 6px;

    color: var(--red-deep);

    font-family:
        'Playfair Display',
        serif;

    font-size: 18px;

}


.feature p {

    margin: 0;

    color: var(--text);

    font-size: 16px;

    line-height: 1.7;

}


/* =========================================
   ASTROLOGY ZODIAC VISUAL
========================================= */

.why-visual {
    position: relative;
    width: 100%;
    min-height: 600px;

    display: flex;
    align-items: center;
    justify-content: center;

/*    background: var(--cream-light);*/
    overflow: hidden;
}


/* =========================================
   ROTATING ZODIAC CIRCLE
========================================= */

.zodiac-circle {
    position: relative;

    width: 500px;
    height: 500px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            #fff9f1 0%,
            #f8f0e4 55%,
            #ede0d0 100%
        );

    border: 2px solid var(--gold);

    box-shadow:
        0 20px 60px rgba(62,17,27,.15),
        inset 0 0 0 12px rgba(198,154,85,.08);

    animation: zodiacRotate 35s linear infinite;
}


/* Outer decorative rings */

.zodiac-circle::before {
    content: "";

    position: absolute;

    inset: 24px;

    border-radius: 50%;

    border: 1px dashed rgba(142,38,56,.35);

    pointer-events: none;
}


.zodiac-circle::after {
    content: "";

    position: absolute;

    inset: 48px;

    border-radius: 50%;

    border: 1px solid rgba(198,154,85,.4);

    pointer-events: none;
}


/* =========================================
   ROTATION
========================================= */

@keyframes zodiacRotate {

    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }

}


/* =========================================
   ZODIAC SIGNS
========================================= */

.zodiac-item {

    position: absolute;

    width: 78px;
    height: 78px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: var(--red);

    border: 1px solid rgba(198,154,85,.65);

    color: var(--cream);

    font-family:
        "Noto Sans Symbols 2",
        "Segoe UI Symbol",
        sans-serif;

    font-size: 34px;

    box-shadow:
        0 7px 20px rgba(62,17,27,.12);

    z-index: 5;
}


/* =========================================
   ZODIAC POSITIONS
========================================= */

.z1 {
    top: 3px;
    left: 50%;
    transform: translateX(-50%);
}

.z2 {
    top: 30px;
    right: 102px;
}

.z3 {
    top: 115px;
    right: 25px;
}

.z4 {
    top: 50%;
    right: 3px;
    transform: translateY(-50%);
}

.z5 {
    bottom: 115px;
    right: 25px;
}

.z6 {
    bottom: 30px;
    right: 102px;
}

.z7 {
    bottom: 3px;
    left: 50%;
    transform: translateX(-50%);
}

.z8 {
    bottom: 30px;
    left: 102px;
}

.z9 {
    bottom: 115px;
    left: 25px;
}

.z10 {
    top: 50%;
    left: 3px;
    transform: translateY(-50%);
}

.z11 {
    top: 115px;
    left: 25px;
}

.z12 {
    top: 30px;
    left: 102px;
}


/* =========================================
   FIXED CENTER
========================================= */

.zodiac-center {

    position: absolute;

    top: 50%;
    left: 50%;

    transform: translate(-50%, -50%);

    width: 300px;
    height: 300px;

    border-radius: 50%;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    background: var(--white);

    border: 4px solid var(--gold);

    box-shadow:
        0 15px 40px rgba(62,17,27,.20);

    z-index: 20;

    /* Important:
       keeps center stationary */
    animation: centerRotate 35s linear infinite;
}


/* Counter rotate center so it stays visually straight */

@keyframes centerRotate {

    from {
        transform:
            translate(-50%, -50%)
            rotate(0deg);
    }

    to {
        transform:
            translate(-50%, -50%)
            rotate(-360deg);
    }

}


/* =========================================
   HOROSCOPE IMAGE
========================================= */

.zodiac-center-image {

    width: 190px;
    height: 190px;

    border-radius: 50%;

    overflow: hidden;

    background: var(--cream);

    border: 2px solid rgba(198,154,85,.5);

}


.zodiac-center-image img {

    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

}


/* Center text */

.zodiac-center span {

    margin-top: 6px;

    color: var(--red);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 2px;

}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 575px) {

    .why-visual {
        min-height: 390px;
    }

    .zodiac-circle {
        width: 330px;
        height: 330px;
    }

    .zodiac-item {
        width: 38px;
        height: 38px;
        font-size: 19px;
    }

    .zodiac-center {
        width: 215px;
        height: 215px;
    }

    .zodiac-center-image {
        width: 65px;
        height: 65px;
    }

    .zodiac-center span {
        font-size: 8px;
    }

    .z2,
    .z12 {
        top: 30px;
    }

    .z2,
    .z6 {
        right: 58px;
    }

    .z8,
    .z12 {
        left: 58px;
    }

    .z3,
    .z4,
    .z5 {
        right: 2px;
    }

    .z9,
    .z10,
    .z11 {
        left: 2px;
    }

    .z3,
    .z11 {
        top: 88px;
    }

    .z5,
    .z9 {
        bottom: 88px;
    }

    .z6,
    .z8 {
        bottom: 30px;
    }

}
/* =========================================================
   INSIGHT
========================================================= */
.insight-section {

    position: relative;

    padding: 80px 0;

    overflow: hidden;
	background: url("../images/cta-bg.jpg") left center no-repeat;
	

}


.insight-section::before {

    content: "";

    position: absolute;

    inset: 0;

    background:
        radial-gradient(
            circle at 15% 20%,
            rgba(198,154,85,.16),
            transparent 28%
        ),

        radial-gradient(
            circle at 85% 80%,
            rgba(168,58,75,.22),
            transparent 35%
        ),

        var(--red-deep);
    opacity: .8;

}

.insight-box {

    position: relative;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 50px;

    padding: 60px;

    overflow: hidden;

    border: 1px solid
        rgba(225,191,125,.25);

}


.insight-box::before {

    content: "";

    position: absolute;

    right: -100px;

    top: -100px;

    width: 300px;

    height: 300px;

    border: 1px solid
        rgba(225,191,125,.13);

    border-radius: 50%;

}


.insight-box h2 {

    margin-bottom: 20px;

    color: #fff;

    font-size: 45px;

    line-height: 1.15;

}


.insight-box h2 span {

    color: var(--gold-light);

}


.insight-box p {

    max-width: 650px;

    margin: 0;

    color:
        rgba(255,255,255,.63);

    font-size: 16px;

    line-height: 1.8;

}


.insight-symbol {

    position: relative;

    z-index: 2;


    display: flex;

    align-items: center;

    justify-content: center;

/*    border: 1px solid var(--gold);*/

    border-radius: 50%;

    color: var(--gold-light);

    font-size: 43px;

}


/* =========================================================
   TESTIMONIALS
========================================================= */

.reviews-section {

    background: var(--cream-dark);

}


.testimonialSwiper {

    margin-top: 50px;

/*    padding-bottom: 65px;*/

}


.testimonial-card {

    position: relative;

/*    max-width: 820px;*/

    min-height: 370px;

    margin: auto;

    padding: 25px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    text-align: center;

    background: var(--cream-light);

    border: 1px solid var(--border);

    box-shadow:
        var(--shadow-sm);

}


.testimonial-card .quote img{
	width: 150px;
	height: 150px;
	border-radius: 50%;

}


.testimonial-card .stars {

    margin: 15px 0;

    color: var(--gold-dark);

    letter-spacing: 4px;

    font-size: 20px;

}


.testimonial-card p {

    max-width: 680px;

    margin-bottom: 25px;

    color: var(--red-deep);

    font-size: 16px;

    line-height: 1.7;

}


.testimonial-card strong {

    display: block;

    margin-bottom: 4px;

    color: var(--red-deep);

    font-size: 16px;

}


.testimonial-card span {

    color: var(--text-light);

    font-size: 16px;

}


.testimonial-pagination {

    bottom: 10px !important;

}


.testimonial-pagination
.swiper-pagination-bullet {

    width: 8px;

    height: 8px;

    background: var(--red);

    opacity: .25;

}


.testimonial-pagination
.swiper-pagination-bullet-active {

    width: 28px;

    border-radius: 10px;

    background: var(--gold);

    opacity: 1;

}


/* =========================================================
   FAQ
========================================================= */

.faq-section {

    background: var(--cream-light);

}


.accordion {

    border-top:
        1px solid var(--border);

}


.accordion-item {

    background: transparent;

    border: 0;

    border-bottom:
        1px solid var(--border);

    border-radius: 0 !important;

}


.accordion-button {

    padding: 20px 0px 20px 20px;

    background: var(--red);

    color: var(--cream);

    box-shadow: none !important;

    font-size: 20px;

    font-weight: 600;

}


.accordion-button:not(.collapsed) {

    color: var(--cream);
	background: var(--red-deep);

}


.accordion-body {

    padding:
        0 35px 25px 0;

    color: var(--text);

    font-size: 16px;

    line-height: 1.85;

}


/* =========================================================
   FINAL CONSULTATION CTA
========================================================= */

.consultation-section {

    position: relative;

    padding: 115px 0;

    overflow: hidden;

    background:

        radial-gradient(
            circle at 10% 90%,
            rgba(198,154,85,.14),
            transparent 30%
        ),

        linear-gradient(
            135deg,
            var(--red),
            var(--red-deep)
        );

	background: url("../images/cta-bg.jpg");
}


.consultation-section::before {

    content: "";

    position: absolute;

    top: 0px;

    right: 0px;

    width: 100%;

    height: 100%;

    border: 1px solid
        rgba(225,191,125,.18);

	background: var(--red-deep);
	opacity: 0.7;
}


.consultation-content {

    position: relative;

    z-index: 3;

    max-width: 850px;

    margin: auto;

    text-align: center;

}


.consultation-content h2 {

    margin-bottom: 20px;

    color: #fff;

    font-size: 62px;

    line-height: 1.1;

    font-weight: 500;

}


.consultation-content h2 span {

    color: var(--gold-light);

}


.consultation-content p {

    max-width: 600px;

    margin:
        0 auto 30px;

    color:
        rgba(255,255,255,.65);

    font-size: 16px;

    line-height: 1.8;

}


.consultation-buttons {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 15px;

    flex-wrap: wrap;

}


.outline-gold-btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    padding: 15px 27px;

    border: 1px solid var(--gold-light);

    border-radius: 50px;

    color: var(--gold-light);

    font-size: 16px;

    font-weight: 600;

    transition:
        all .3s ease;

}


.outline-gold-btn:hover {

    background: var(--gold-light);

    color: var(--red-deep);

}


/* =========================================================
   FOOTER
========================================================= */

.footer {

    padding: 75px 0 25px;

    background: #2A0B13;

    color:
        rgba(255,255,255,.55);

}


.footer-logo {

    width: 190px;

    max-height: 70px;

    object-fit: contain;

    margin-bottom: 20px;

}


.footer h3 {

    margin-bottom: 15px;

    color: #fff;

    font-size: 22px;

}


.footer h4 {

    margin-bottom: 20px;

    color: var(--gold-light);

    font-size: 18px;

}


.footer p {

    max-width: 470px;

    color:
        rgba(255,255,255,.52);

    font-size: 16px;

    line-height: 1.85;

}


.footer ul {

    list-style: none;

    padding: 0;

    margin: 0;

}


.footer ul li {

    margin-bottom: 11px;

}


.footer ul li a {

    color:
        rgba(255,255,255,.55);

    font-size: 16px;

    transition:
        color .3s ease;

}


.footer ul li a:hover {

    color: var(--gold-light);

}


.footer-btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    padding: 13px 22px;

    border-radius: 50px;

    background: var(--gold);

    color: var(--red-deep);

    font-size: 16px;

    font-weight: 700;

    transition:
        all .3s ease;

}


.footer-btn:hover {

    background: var(--gold-light);

    color: var(--red-deep);

    transform:
        translateY(-2px);

}


.footer-bottom {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    margin-top: 50px;

    padding-top: 20px;

    border-top:
        1px solid
        rgba(255,255,255,.10);

    color:
        rgba(255,255,255,.35);

    font-size: 16px;

}


.footer-bottom a {

    margin-left: 20px;

    color:
        rgba(255,255,255,.45);

    transition:
        color .3s ease;

}


.footer-bottom a:hover {

    color: var(--gold-light);

}


/* =========================================================
   FLOATING CONSULTATION
========================================================= */

.floating-consult {

    position: fixed;

    right: 25px;

    bottom: 25px;

    z-index: 9999;

    width: 58px;

    height: 58px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    color: var(--white);

    background-color: #00C958;

    font-size: 39px;

    box-shadow:
        0 12px 35px
        rgba(62,17,27,.30);

    transition:
        all .3s ease;

}


.floating-consult:hover {

    background: var(--gold);

    color: var(--red-deep);

    transform:
        translateY(-5px);

}


.floating-consult::before {

    content: "";

    position: absolute;

    inset: -6px;

    border: 1px solid
        rgba(142,38,56,.4);

    border-radius: 50%;

    animation:
        floatingPulse 2s infinite;

}


@keyframes floatingPulse {

    0% {

        transform: scale(.9);

        opacity: .8;

    }

    70% {

        transform: scale(1.2);

        opacity: 0;

    }

    100% {

        transform: scale(1.2);

        opacity: 0;

    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width:1199px) {


    .section-title {

        font-size: 46px;

    }


    .nav-link {

        margin-left: 15px;

    }


    .header-btn {

        margin-left: 15px;

        padding:
            12px 18px;

    }


    .zodiac-circle {

        width: 400px;

        height: 400px;

    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width:991px) {

    .main-header {

        padding: 16px 0;

    }


    .navbar-brand img {

        width: 165px;

    }




    .trust-item {

        min-height: 90px;

        padding: 15px;

    }


    .section-padding {

        padding: 60px 0;

    }


    .section-heading {

        display: block;

    }


    .section-heading > p {

        margin-top: 20px;

    }


    .section-title {

        font-size: 43px;

    }


    .astrologer-image {

        height: 520px;

    }


    .process-line {

        grid-template-columns:
            repeat(2,1fr);

        row-gap: 50px;

    }


    .process-line::before {

        display: none;

    }


    .areas-grid {

        grid-template-columns:
            repeat(2,1fr);

    }


    .why-visual {

        min-height: 500px;

        margin-top: 30px;

    }


    .insight-box {

        padding: 45px;

    }


    .consultation-content h2 {

        font-size: 52px;

    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width:767px) {

    .main-header {

        padding: 13px 0;

    }


    .main-header.scrolled {

        padding: 10px 0;

    }


    .navbar-brand img {

        width: 150px;

        max-height: 55px;

    }


    /* TRUST */

    .trust-item {

        min-height: 85px;

        padding: 13px;

        border-right: 0;

        border-bottom:
            1px solid var(--border);

    }


    .trust-item i {

        width: 40px;

        height: 40px;

        min-width: 40px;

        font-size: 16px;

    }


    .trust-item strong {

        font-size: 16px;

    }


    .trust-item span {

        font-size: 16px;

    }


    /* GENERAL */

    .section-padding {

        padding: 55px 0;

    }


    .section-label {

        font-size: 16px;

        letter-spacing: 2px;

    }


    .section-title {

        font-size: 35px;

    }


    /* ABOUT */

    .astrologer-image-wrap {

        padding: 15px;

    }


    .astrologer-image {

        height: 430px;

        border-radius:
            10px 100px 10px 100px;

    }


    .gold-seal {

        width: 140px;

        height: 140px;

        right: -5px;

        bottom: 25px;

    }


    .gold-seal i {

        font-size: 17px;

    }


    .gold-seal span {

        font-size: 16px;

    }


    .about-astrologer .lead-text {

        font-size: 18px;

    }


    /* QUESTION */

    .question-section {

        padding: 80px 0;

    }


    .question-inner h2 {

        font-size: 36px;

    }


    .question-inner p {

        font-size: 16px;

    }


    /* SERVICES */

    .service-card {

        min-height: auto;

        padding: 35px 28px;

    }


    .service-card h3 {

        font-size: 23px;

    }


    /* PROCESS */

    .process-line {

        grid-template-columns: 1fr;

        row-gap: 35px;

        margin-top: 50px;

    }


    /* AREAS */

    .areas-grid {

        grid-template-columns:
            repeat(2,1fr);

        margin-top: 20px;

    }


    .area-box {

        min-height: 110px;

    }


    .area-box i {

        font-size: 19px;

    }


    .area-box span {

        font-size: 16px;

    }


    /* FEATURES */

    .feature {

        gap: 13px;

    }


    .feature-icon {

        width: 44px;

        height: 44px;

        min-width: 44px;

    }


    /* ZODIAC */

    .why-visual {

        min-height: 390px;

    }


    .zodiac-circle {

        width: 315px;

        height: 315px;

    }


    .zodiac-circle::before {

        inset: 25px;

    }


    .zodiac-circle::after {

        inset: 65px;

    }


    .zodiac-center {

        width: 195px;

        height: 195px;

    }


    .zodiac-center i {

        font-size: 20px;

    }


    .zodiac-center span {

        font-size: 16px;

    }


 /* =========================================
   ZODIAC CIRCLE
========================================= */

.zodiac-circle {
    position: relative;

    width: 355px;
    height: 355px;

    border-radius: 50%;
}


/* =========================================
   ZODIAC ICON
========================================= */

.zodiac-item {
    position: absolute;

    top: 50%;
    left: 50%;

    width: 56px;
    height: 56px;

    margin-left: -28px;
    margin-top: -28px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    font-size: 34px;
    line-height: 1;

    z-index: 5;
}


/* =========================================
   PERFECT CIRCLE POSITIONS
   Radius = 140px
========================================= */


/* 01 - 12 O'CLOCK */
.z1 {
    transform:
        rotate(0deg)
        translateY(-140px)
        rotate(0deg);
}


/* 02 - 1 O'CLOCK */
.z2 {
    transform:
        rotate(30deg)
        translateY(-140px)
        rotate(-30deg);
}


/* 03 - 2 O'CLOCK */
.z3 {
    transform:
        rotate(60deg)
        translateY(-140px)
        rotate(-60deg);
}


/* 04 - 3 O'CLOCK */
.z4 {
    transform:
        rotate(90deg)
        translateY(-140px)
        rotate(-90deg);
}


/* 05 - 4 O'CLOCK */
.z5 {
    transform:
        rotate(120deg)
        translateY(-140px)
        rotate(-120deg);
}


/* 06 - 5 O'CLOCK */
.z6 {
    transform:
        rotate(150deg)
        translateY(-140px)
        rotate(-150deg);
}


/* 07 - 6 O'CLOCK */
.z7 {
    transform:
        rotate(180deg)
        translateY(-140px)
        rotate(-180deg);
}


/* 08 - 7 O'CLOCK */
.z8 {
    transform:
        rotate(210deg)
        translateY(-140px)
        rotate(-210deg);
}


/* 09 - 8 O'CLOCK */
.z9 {
    transform:
        rotate(240deg)
        translateY(-140px)
        rotate(-240deg);
}


/* 10 - 9 O'CLOCK */
.z10 {
    transform:
        rotate(270deg)
        translateY(-140px)
        rotate(-270deg);
}


/* 11 - 10 O'CLOCK */
.z11 {
    transform:
        rotate(300deg)
        translateY(-140px)
        rotate(-300deg);
}


/* 12 - 11 O'CLOCK */
.z12 {
    transform:
        rotate(330deg)
        translateY(-140px)
        rotate(-330deg);
}

    /* INSIGHT */

    .insight-section {

        padding:
            20px 0 75px;

    }


    .insight-box {

        display: block;

        padding: 35px 25px;

    }


    .insight-box h2 {

        font-size: 34px;

    }


    .insight-symbol {

        margin-top: 30px;

        font-size: 32px;

    }


    /* TESTIMONIAL */

    .testimonial-card {

        min-height: 330px;

        padding: 35px 20px;

    }


    .testimonial-card .quote {

        font-size: 65px;

    }


    .testimonial-card p {

        font-size: 18px;

        line-height: 1.65;

    }


    /* FAQ */

    .accordion-button {

        padding: 20px 0 20px 20px;

        font-size: 16px;

    }


    .accordion-body {

        padding:
            0 0 20px;

        font-size: 16px;

    }


    /* CTA */

    .consultation-section {

        padding: 85px 0;

    }


    .consultation-content h2 {

        font-size: 42px;

    }


    .consultation-content p {

        font-size: 16px;

    }


    .consultation-buttons {

        flex-direction: column;

    }


    .consultation-buttons .gold-btn,
    .consultation-buttons .outline-gold-btn {

        width: 100%;

        max-width: 280px;

    }


    /* FOOTER */

    .footer {

        padding:
            60px 0 20px;

    }


    .footer-logo {

        width: 160px;

    }


    .footer h3 {

        font-size: 19px;

    }


    .footer-bottom {

        display: block;

        margin-top: 35px;

        line-height: 1.8;

    }


    .footer-bottom div {

        margin-top: 8px;

    }


    .footer-bottom a {

        margin-left: 0;

        margin-right: 15px;

    }


    /* FLOATING */

    .floating-consult {

        right: 17px;

        bottom: 17px;

        width: 52px;

        height: 52px;

        font-size: 17px;

    }

}


/* =========================================================
   EXTRA SMALL MOBILE
========================================================= */

@media (max-width:400px) {

    .section-title {

        font-size: 31px;

    }


    .areas-grid {

        gap: 10px;

    }


    .area-box {

        min-height: 100px;

    }


    .zodiac-circle {

        width: 285px;

        height: 285px;

    }



}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    * {

        animation-duration: .01ms !important;

        animation-iteration-count: 1 !important;

        scroll-behavior: auto !important;

        transition-duration: .01ms !important;

    }

}

.gold-btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    padding: 15px 27px;

    border: 1px solid var(--gold-light);

    border-radius: 50px;

    color: var(--red-deep);

    background-color: var(--gold-light);

	font-size: 16px;

    font-weight: 600;

    transition: all .3s ease;

}


.gold-btn:hover {

    background: var(--red-deep);

    color: var(--gold-light);

}
