/* Legal Pages CSS - Privacy Policy, Terms of Use, Terms of Entry */

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    margin: 0;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    /* Hide scrollbar for IE, Edge and Firefox */
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Hide scrollbar for Chrome, Safari and Opera */
html::-webkit-scrollbar {
    display: none;
}

body {
    font-family: 'Inter', Tahoma, Geneva, Verdana, sans-serif !important;
    line-height: 1.6;
    background-color: #121212;
    opacity: 0;
    animation: pageLoad 0.8s ease 0.1s both;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    /* Hide scrollbar for IE, Edge and Firefox */
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Hide scrollbar for Chrome, Safari and Opera */
body::-webkit-scrollbar {
    display: none;
}

/* Force Inter font on all elements */
* {
    font-family: 'Inter', Tahoma, Geneva, Verdana, sans-serif !important;
}

/* Page container for flexbox layout */
.page-container {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 0;
}

/* Animations */
@keyframes pageLoad {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    0% {
        opacity: 0;
        transform: translateX(-50px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    0% {
        opacity: 0;
        transform: translateX(50px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Header and Navigation */
.header {
    background: #121212;
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 0.5px solid;
    border-image-source: linear-gradient(90deg, rgba(255, 81, 0, 0.05) 14.9%, #FF5100 50%, rgba(255, 81, 0, 0.05) 82.21%);
    border-image-slice: 1;
    animation: fadeInUp 1s ease 0.2s both;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5vw 2vw 0.5vw 2vw;
    height: 5.5vw;
}

.nav-brand {
    display: flex;
    align-items: center;
    animation: fadeInLeft 1s ease 0.4s both;
}

.logo {
    width: 3vw;
    height: 3vw;
    margin-right: 0.5vw;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: rotate(360deg) scale(1.1);
}

.brand-text {
    font-size: 1.7vw;
    color: #fff;
    transition: color 0.3s ease;
}

.nav-brand:hover .brand-text {
    background: linear-gradient(90deg, #FF5100 0%, #FF0D00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    gap: 0.5vw;
    list-style: none;
    animation: fadeInRight 1s ease 0.6s both;
}

.nav-link {
    font-size: 1.1vw;
    color: #fff;
    text-decoration: none;
    padding: 0.5vw 1vw;
    position: relative;
    transition: all 0.3s ease;
    transform: translateY(0);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    background: linear-gradient(180deg, #FF8F00 3.33%, #FF0D00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transform: translateY(-2px);
    font-weight: 700;
}

/* Main content */
main {
    flex: 1;
    padding: 2vw 0;
}

/* Hero Section */
.hero {
    padding: 1vw 2vw 2vw 2vw;
    text-align: center;
    animation: fadeInUp 1s ease 0.4s both;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.03);
    filter: blur(33.8px);
    -webkit-filter: blur(33.8px);
    z-index: -1;
}

.hero-heading {
    font-size: 4.55vw;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(90deg, #FF8F00 0%, #FF5100 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subheading {
    font-size: 1.71vw;
    color: #969696;
    /* max-width: 60vw; */
    margin: 0 auto;
    line-height: 1.6;
}

.content-section {
    padding: 4vw 2vw;
    max-width: 100vw;
    margin: 0 3vw;
}

.content-wrapper {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 3vw;
    padding: 3vw;
    border: 1px solid rgba(255, 81, 0, 0.1);
    box-shadow: 0 0 35.5px 0 rgba(255, 143, 0, 0.4);
    -webkit-box-shadow: 0 0 35.5px 0 rgba(255, 143, 0, 0.4);
}

.content-text {
    color: #969696;
    line-height: 1.4;
    font-weight: 400;
}

.content-text h1 {
    font-size: 1.83vw;
    /* margin-bottom: 2vw; */
    color: #969696;
    font-weight: 400;
}

.content-text h2 {
    font-size: 1.83vw;
    /* margin: 1.5vw 0 0.8vw 0; */
    color: #969696;
    font-weight: 400;
}

.content-text h3 {
    font-size: 1.83vw;
    /* margin: 1.5vw 0 0.8vw 0; */
    color: #969696;
    font-weight: 400;
}

.content-text p {
    /* margin-bottom: 1vw; */
    font-size: 1.83vw;
    font-weight: 400;
}

.content-text ul,
.content-text ol {
    margin: 0 0 0 2vw;
}

.content-text li {
    /* margin-bottom: 0.5vw; */
    font-size: 1.83vw;
    font-weight: 400;
}

.content-text strong {
    color: #969696;
 font-weight: 400;
}

.content-text a {
    color: #969696;
    text-decoration: none;
    transition: color 0.3s ease;
}

.content-text a:hover {
    color: #969696;
    text-decoration: underline;
}

.content-text h5 {
    font-size: 2.24vw;
    font-weight: 600;
    color: #FF5100;
    text-align: center;
}

.content-text-important {
    border: 2px solid #FF5100;
    padding: 2vw;
    margin: 2vw 11vw;
    border-radius: 10px;
    /* background: rgba(255, 81, 0, 0.1); */
}

.content-text-important p {
    font-size: 1.72vw;
    font-weight: 400;
    color: #969696;
    line-height: 1.2;
}

.content-text h6 {
    font-size: 1.83vw;
    font-weight: 600;
    color: #fff;
    line-height: 2.04;
}

.content-text h7 {
    font-size: 1.75vw;
    font-weight: 600;
    color: #969696;
    
}

.content-text-under {
    padding: 0 11vw 2vw 11vw;
}

/* Footer */
.footer {
    background-image: url('../assets/service/hero-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
    padding: 5vw 0 3vw 0;
    font-size: 1vw;
    letter-spacing: 0.01vw;
    opacity: 0;
    animation: fadeInUp 1s ease 0.5s both;
    margin-top: auto;
}

.footer-container {
    display: grid;
    grid-template-columns: 2.8fr 1.2fr 1.2fr 1.8fr;
    gap: 3vw;
    width: 90vw;
    margin: 0 auto;
    align-items: flex-start;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 1vw;
}

.footer-logo-row {
    display: flex;
    align-items: center;
    gap: 0.7vw;
    margin-bottom: 1vw;
}

.footer-logo-svg {
    width: 2.2vw;
    height: 2.2vw;
}

.footer-brand-text {
    font-size: 1.5vw;
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.05vw;
}

.footer-info p {
    margin: 0 0 0.5vw 0;
    color: #ccc;
    font-size: 0.8vw;
}

.footer-info h3 {
    margin: 0 0 0.5vw 0;
    color: #ccc;
    font-weight: 500;
    font-size: 1vw;
}

.footer-icon img {
    width: 1.1vw;
    height: 1.1vw;
    vertical-align: middle;
    transition: transform 0.3s ease;
}

.footer-icon img:hover {
    transform: scale(1.1);
}

.footer-link.highlight {
    color: #FF8F00;
}

.footer-note {
    color: #aaa;
    font-size: 0.85vw;
    margin-top: 0.5vw;
}

.footer-col h4 {
    color: #fff;
    font-size: 1.1vw;
    font-weight: 600;
    margin-bottom: 1vw;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.7vw;
}

.footer-col ul li {
    color: #ccc;
    font-size: 1vw;
}

.footer-col ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-col ul li a:hover,
.footer-link.highlight:hover {
    color: #FF8F00;
}

.footer-icon {
    color: #FF8F00;
    font-size: 1.1vw;
    vertical-align: middle;
    margin-right: 0.5vw;
}

.footer-bottom {
    text-align: center;
    padding-top: 3vw;
    padding-bottom: 2vw;
    color: #aaa;
    font-size: 0.95vw;
}

.footer-bg-text {
  position: relative;
  left: 0;
  right: 0;
  bottom: 0.5vw; /* Adjust so it sits just under the footer, or 0 for very bottom */
  z-index: -1; /* Lower than footer */
  text-align: center;
  font-size: 6vw; /* Responsive size */
  font-weight: 800;
  color: #ff5100;
  opacity: 0.5;
  pointer-events: none;
  user-select: none;
  line-height: auto;
  white-space: nowrap;
  width: 100vw;
  /* Gradient text color as requested */
  background: linear-gradient(90deg, rgba(255, 13, 0, 0.2) 0%, rgba(255, 143, 0, 0.2) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        padding: 0.5vw 2vw 0.5vw 2vw;
        height: 5.5vw;
    }

    .logo {
        width: 3vw;
        height: 3vw;
        margin-right: 0.5vw;
    }

    .brand-text {
        font-size: 1.7vw;
    }

    .nav-link {
        font-size: 1.1vw;
        padding: 0.5vw 1vw;
    }

    .hero-heading {
        font-size: 3.5vw;
    }

    .hero-subheading {
        font-size: 1.2vw;
    }

    .content-section {
        padding: 2vw;
    }

    .content-wrapper {
        padding: 2vw;
    }

    .content-text h1 {
        font-size: 2.5vw;
    }

    .content-text h2 {
        font-size: 2.2vw;
    }

    .content-text h3 {
        font-size: 2vw;
    }

    .content-text p,
    .content-text li {
        font-size: 1.8vw;
    }


}

/* Utility classes */
.desktop-only {
    display: block !important;
}

.mobile-only {
    display: none !important;
}

@media (max-width: 768px) {
    .desktop-only {
        display: none !important;
    }

    .mobile-only {
        display: block !important;
    }

    /* Mobile viewport height fixes */
    html {
        height: 100%;
        min-height: 100vh;
        min-height: -webkit-fill-available;
    }

    body {
        min-height: 100vh;
        min-height: -webkit-fill-available;
        min-height: calc(var(--vh, 1vh) * 100);
        -webkit-overflow-scrolling: touch;
        overflow-scrolling: touch;
    }

    .page-container {
        min-height: 100vh;
        min-height: -webkit-fill-available;
        min-height: calc(var(--vh, 1vh) * 100);
    }

    .header {
        position: sticky;
        top: 0;
        z-index: 1000;
        transform: translateZ(0);
        -webkit-transform: translateZ(0);
    }

    .footer {
        position: relative;
        z-index: 1;
        transform: translateZ(0);
        -webkit-transform: translateZ(0);
    }
}

@media (min-width: 1440px) {
    .content-section {
        max-width: 1440px;
        margin: 0 auto;
        padding:79px 0;
        width: calc(100% - 176px);
        box-sizing: border-box;
    }

    .content-wrapper {
    
    }
    
    .content-text {
     
        line-height: 33px;
    }
    
    .content-text h1 {
        font-size: 24px;
        /* margin-bottom: 2vw; */
  
    }
    
    .content-text h2 {
        font-size: 24px;
        /* margin: 1.5vw 0 0.8vw 0; */
     
       
    }
    
    .content-text h3 {
        font-size: 24px;
        /* margin: 1.5vw 0 0.8vw 0; */
  
    
    }
    
    .content-text p {
        /* margin-bottom: 1vw; */
        font-size: 24px;
    }
    
    .content-text ul,
    .content-text ol {
        margin: 0 0 0 2vw;
    }
    
    .content-text li {
        /* margin-bottom: 0.5vw; */
        font-size: 24px;
    }
    
    .content-text strong {
   
       
    }
    
    .content-text a {
    
        text-decoration: none;
        transition: color 0.3s ease;
    }
    
    .content-text a:hover {
    
        text-decoration: underline;
    }

    .content-text h5 {
        font-size: 32px;
      
    }

    .content-text h6 {
        font-size: 24px;
        line-height: 49px;
    }

    .content-text-important {
        padding: 34px;
        margin: 34px 157px;
    
    }

    .content-text h7 {
        font-size: 24px;
      
        
    }
    
    .content-text-under {
        padding: 0 157px 34px 157px;
    }

    .hero {
        padding: 14px 28px 28px 28px;
 
    }
    
    
    .hero-heading {
        font-size: 64px;
 
    }
    
    .hero-subheading {
        font-size: 24px;
  
    }

    /* Header and Navigation */
    .header {
        width: 100vw; /* Full width for background */
        display: flex;
        justify-content: center;
    }

    .navbar {
        padding: 6px 24px 6px 24px; /* 0.5vw and 2vw at 1440px */
        height: 66px; /* 5.5vw at 1440px */
        max-width: 1440px;
        width: 100%;
    }

    .logo {
        width: 36px; /* 3vw at 1440px */
        height: 36px; /* 3vw at 1440px */
        margin-right: 6px; /* 0.5vw at 1440px */
    }

    .brand-text {
        font-size: 20.4px; /* 1.7vw at 1440px */
    }

    .nav-menu {
        gap: 6px; /* 0.5vw at 1440px */
    }

    .nav-link {
        font-size: 13.2px; /* 1.1vw at 1440px */
        padding: 6px 12px; /* 0.5vw and 1vw at 1440px */
    }

    /* Footer */
    .footer {
        padding: 60px 0 36px 0; /* 5vw and 3vw at 1440px */
        font-size: 12px; /* 1vw at 1440px */
        letter-spacing: 0.12px; /* 0.01vw at 1440px */
        width: 100vw; /* Keep full width for background */
        display: flex;
        justify-content: center;
    }

    .footer-container {
        gap: 36px; /* 3vw at 1440px */
        width: 1080px; /* 90vw at 1440px */
        max-width: 1440px;
        margin: 0 auto;
    }

    .footer-col {
        gap: 12px; /* 1vw at 1440px */
    }

    .footer-logo-row {
        gap: 8.4px; /* 0.7vw at 1440px */
        margin-bottom: 12px; /* 1vw at 1440px */
    }

    .footer-logo-svg {
        width: 26.4px; /* 2.2vw at 1440px */
        height: 26.4px; /* 2.2vw at 1440px */
    }

    .footer-brand-text {
        font-size: 18px; /* 1.5vw at 1440px */
        letter-spacing: 0.6px; /* 0.05vw at 1440px */
    }

    .footer-info p {
        margin: 0 0 6px 0; /* 0.5vw at 1440px */
        font-size: 9.6px; /* 0.8vw at 1440px */
    }

    .footer-info h3 {
        margin: 0 0 6px 0; /* 0.5vw at 1440px */
        font-size: 12px; /* 1vw at 1440px */
    }

    .footer-icon img {
        width: 13.2px; /* 1.1vw at 1440px */
        height: 13.2px; /* 1.1vw at 1440px */
    }

    .footer-note {
        font-size: 10.2px; /* 0.85vw at 1440px */
        margin-top: 6px; /* 0.5vw at 1440px */
    }

    .footer-col h4 {
        font-size: 13.2px; /* 1.1vw at 1440px */
        margin-bottom: 12px; /* 1vw at 1440px */
    }

    .footer-col ul {
        gap: 8.4px; /* 0.7vw at 1440px */
    }

    .footer-col ul li {
        font-size: 12px; /* 1vw at 1440px */
    }

    .footer-icon {
        font-size: 13.2px; /* 1.1vw at 1440px */
        margin-right: 6px; /* 0.5vw at 1440px */
    }

    .footer-bottom {
        padding-top: 36px; /* 3vw at 1440px */
        padding-bottom: 24px; /* 2vw at 1440px */
        font-size: 11.4px; /* 0.95vw at 1440px */
    }

    .footer-bg-text {
        /* bottom: -7.2px;  */
        /* -0.6vw at 1440px */
        font-size: 86.4px; /* Fixed size instead of 6vw */
        width: 100vw; /* Keep full width */
    }
}