/* Global Styling */
:root {

    --max-container-width: 1480px;      /* GLOBAL WIDTH */

    /* Brand Colors */
    --primary-color: #FC9118;
    --primary-dark: #FC9118;
    --secondary-color: #333;
    --accent-color: #ffffff;

    /* Text Colors */
    --text-dark: #222;
    --text-light: #ababab;

    /* Backgrounds */
    --bg-light: #f9f9f9;
    --bg-dark: #1e1e1e;

    
    
}



* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* font-family: sans-serif; */
}

body {
    background-color: #fff;
    /* margin-top: -25px !important; */
    scrollbar-width: none;
}

html, body {
    overflow-x: hidden;
    width: 100%;
}


/* Headings */
h1, h2, h3, h4, h5, h6 {
    font-weight: bold;
    line-height: 1.3;
    color: var(--bg-dark);
}

/* Responsive Heading Sizes */
h1 {
    font-size: 2.5rem;
    /* 40px */
    font-weight: 700;
    text-align: center;
}

h2 {
    font-size: 2rem;
    /* 32px */
    font-weight: 700;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.4rem;
    /* 28px */
    margin-bottom: 1rem;
    margin-top: 1rem;
}

h4 {
    font-size: 1.25rem;
    /* 24px */
}

h5 {
    font-size: 1.1rem;
    /* 20px */
}

h6 {
    font-size: 1rem;
    /* 16px */
}

/* Paragraphs */
p {
    font-size: 1rem;
    padding-bottom: 1rem;
    color: var(--text-dark);
}


/* Smooth Transitions */
h1, h2, h3, h4, h5, h6, p {
    transition: all 0.3s ease-in-out;
}


/* Responsive Design */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    h3 {
        font-size: 1.4rem;
    }

    h4 {
        font-size: 1.25rem;
    }

    h5 {
        font-size: 1.1rem;
    }

    h6 {
        font-size: 1rem;
    }

    p {
        font-size: 0.95rem;
    }
}

/* GLOBAL CONTAINER CLASS */
  .container-98 {
    max-width: var(--max-container-width);
    width:98%;
    margin-inline: auto;
  }


.whatsapp-icon {
    position: fixed;
    bottom: 20px;
    left: 35px;
    z-index: 2000;
    /* Add other styles as desired */
}

.whatsapp-container {
    position: relative;
    display: inline-block;
}

@media screen and (max-width: 768px) {
    .whatsapp-icon {
        visibility: hidden;
    }
}



.whatsapp-container:hover .tooltip {
    visibility: visible;
    opacity: 1;
}

.whatsapp-icon img {
    width: 60px;
    /* Adjust as needed */
    height: 60px;
    /* Adjust as needed */
}

.container{
    align-content: center;
    align-items: center;
}

.outer-container{
        width:100%;
        max-width:1400px !important;
        margin:auto;
        padding:0px 15px !important;
    }



/* ===== Monochrome Luxury Back-to-Top Button ===== */
.back-to-top-mono {
    position: fixed;
    bottom: 35px;
    right: 35px;
    width: 56px;
    height: 56px;
    background: #0f0f0f;
    color: #ffffff;
    border: 2px solid #333;
    border-radius: 50%;
    font-size: 28px;
    font-weight: 900;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.9);
    overflow: hidden;
}

/* Arrow */
.back-to-top-mono .arrow {
    position: relative;
    z-index: 3;
    transition: transform 0.3s ease;
}

/* Pulsating Ring Effect */
.back-to-top-mono .pulse-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid #ffffff;
    border-radius: 50%;
    opacity: 0;
    transform: scale(0.6);
    animation: pulseRing 2.5s ease-out infinite;
}

@keyframes pulseRing {
    0% {
        transform: scale(0.6);
        opacity: 0.7;
    }
    80%, 100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

/* Show button when scrolled */
.back-to-top-mono.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

/* Hover Effects */
.back-to-top-mono:hover {
    background: #ffffff;
    color: #000000;
    border-color: #ffffff;
    transform: translateY(-8px) scale(1.1);
    box-shadow: 0 15px 35px rgba(255, 255, 255, 0.15);
}

.back-to-top-mono:hover .arrow {
    transform: translateY(-4px);
}

/* Mobile Adjustment */
@media (max-width: 768px) {
    .back-to-top-mono {
        bottom: 80px;
        right: 20px;
        width: 52px;
        height: 52px;
        font-size: 26px;
    }
}

@media (max-width: 480px) {
    .back-to-top-mono {
        bottom: 90px;
        right: 15px;
        width: 48px;
        height: 48px;
        font-size: 24px;
    }
}

/* cta */
/* Small, elegant centered CTA */
.fantas-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 20px auto 0;
  padding: 13px 36px;
  border: 1.6px solid rgba(255,255,255,0.6);
  border-radius: 50px;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.5s ease;
  width: fit-content;
  backdrop-filter: blur(4px);
}
.fantas-cta:hover {
  background:#fff;
  color:#000;
  box-shadow:0 0 20px rgba(255,255,255,0.4);
  transform:translateY(-2px);
}
.fantas-cta svg {
  transition: transform 0.5s;
}
.fantas-cta:hover svg {
  transform: translateX(6px);
}
@media (max-width: 480px) {
  .fantas-cta { padding: 12px 32px; font-size: 12.5px; }
}