/* ---- Reset & Base ---- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-inter);
  color: var(--color-body);
  background: #fff;
  -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  min-width: 320px;
  -webkit-user-select: none;   /* Safari */
  -moz-user-select: none;      /* Firefox */
  -ms-user-select: none;       /* IE10+ / Edge */
  user-select: none;           /* Standard */
}
input, textarea, [contenteditable="true"] {
  -webkit-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
  user-select: text;
}

a {
  text-decoration: none;
  color: inherit;
}

ul { list-style: none; }

img { display: block; max-width: 100%; }

input, select, textarea, button {
  font-family: inherit;
  font-size: inherit;
}

:root {
  --color-newsletter-bg: #ccd3e2;
  --color-newsletter-card: #e9ebee;
  --font-inter: 'Inter', sans-serif;
  --font-figtree: 'Figtree', sans-serif;
  --radius-lg: 12px;
  --color-black: #000000;
  --color-white: #ffffff;
  --color-text-primary: #000000;
  --color-text-secondary: rgba(0, 0, 0, 0.6);
  --spacing-lg: 30px;
  --spacing-xl: 50px;
  --spacing-3xl: 125px;
  --color-body: #000000;
  --content-max-width: 1440px;
  --border-radius-card: 15px;
}

.top-bar {
    background-color: #f0f0f0;
    background-color: transparent;
    border-bottom: 1.5px solid #fdfbfb;
    box-shadow: 0px -1px 4px 0px rgba(0, 0, 0, 1);
    padding: 20px 10px;
}

.site-header{
position:sticky;
top:0;
z-index:1000;

backdrop-filter:blur(14px);
-webkit-backdrop-filter:blur(14px);

background:rgba(255,255,255,0.65);

border-bottom:1px solid rgba(0,0,0,0.08);
}

.top-bar-content {
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-contact-info {
    display: flex;
    gap: 22px;
    align-items: center;
}

.contact-item{
display:flex;
align-items:center;
gap:8px;
font-size:16px;
}

.contact-item img{
width:22px;
height:22px;
}

.contact-item a{
color:#000;
text-decoration:underline;
white-space:nowrap;
}

.contact-item a:hover{
color:#a18e4f;
}


.social-links {
  display: flex;
  gap: 10px;
  align-items: center;
}

.dot {
  margin: 0 10px;
}

.social-links img {
  width: 25px;
  height: 25px;
  cursor: pointer;
  transition: opacity 0.3s, transform 0.2s;
}

/* ===== Main Header ===== */
.main-header {
    top:0;
    background-color: transparent;
    background: linear-gradient(to right, rgba(15, 19, 26, 0.8), rgba(15, 19, 26, 0.75));
    box-shadow: -1px 4px 4px 0px rgba(0, 0, 0, 0.3), 1px 2px 4px 0px rgba(0, 0, 0, 0.3);
    padding: 10px 82px;
    z-index:1000;
    transition:all .3s ease;
}


.header-content {
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-section {
    display: flex;
    gap: 8px;
    align-items: center;
}


.logo-text {
    display: flex;
    flex-direction: column;
    width: 134px;
}

.company-name {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    line-height: 24px;
}

.company-name .highlight {
    color: #ffffff;
}

.tagline {
    font-size: 16px;
    line-height: 19px;
    font-style: italic;
    color: #e0e0e0;
    font-weight: 400;
}

.logo-accent {
    width: 30px;
    height: 32.397px;
}

.main-nav {
    display: flex;
    gap: 183px;
    align-items: center;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
  position: relative;
    font-size: 17px;
    line-height: 21px;
    font-weight: 400;
    color: #ffffff; /* Slightly dim */
    transition: all 0.4s ease;
    display: inline-block;
}

/* Main hover effect - brighten and lift */
.nav-links a:hover {
    color: #ffffff;
    transform: translateY(-2px);
    text-shadow: 
        0 0 10px rgba(255, 255, 255, 0.8),
        0 0 20px rgba(255, 255, 255, 0.4),
        0 0 30px rgba(255, 255, 182, 0.3); /* Warm light */
}

/* Underline glow effect */
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.8), 
        rgba(255, 255, 182, 0.8), 
        rgba(255, 255, 255, 0.8), 
        transparent
    );
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.4s ease;
    filter: blur(1px);
}

.nav-links a:hover::after {
    transform: scaleX(1);
}

/* Optional - light burst on hover */
.nav-links a:hover::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, 
        rgba(255, 255, 255, 0.2) 0%, 
        transparent 70%
    );
    animation: lightBurst 0.6s ease-out;
    z-index: -1;
}

@keyframes lightBurst {
    0% {
        width: 0;
        height: 0;
        opacity: 0.5;
    }
    100% {
        width: 100px;
        height: 100px;
        opacity: 0;
    }
}

.nav-buttons {
    display: flex;
    gap: 12px;
}

.btn-quote {
    background: linear-gradient(to right, rgba(178, 153, 96, 0.6), #090401);
    border: 1px solid #ffffff;
    border-radius: 8px;
    padding: 10px 10px;
    color: #ffffff;
    letter-spacing: 0;
    box-shadow: 0px 0px 4px 0px rgba(9, 4, 1, 0.6);
}


.btn-quote:hover {
    opacity: 0.9;
}

.btn-contact {
    background-color: #000000;
    border: 1px solid #ffffff;
    border-radius: 8px;
    padding: 9px 10px;
    letter-spacing: 0;
    color: #ffffff;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25), inset 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}

.btn-contact:hover {
    background-color: #1a1a1a;
}

.nav-buttons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: inherit;
    font-size: 17px;
    font-weight: 400;
    line-height: 17.5px;
    white-space: nowrap;
    text-decoration: none;
    cursor: pointer;
}


.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: #000;
    color: white;
    padding: 8px;
    z-index: 1001;
    transition: top 0.3s;
}

.skip-link:focus {
    top: 0;
}

/* ===== Newsletter Section ===== */
.newsletter {
    background-color: var(--color-newsletter-bg);
    padding: clamp(2rem, 8vw, 6.25rem) clamp(1rem, 5vw, 13.75rem);
    min-height: 496px;
    position: relative;
}

.newsletter-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    background-color: var(--color-newsletter-card);
    border-radius: var(--radius-lg);
    display: flex;
    flex-wrap: wrap;  /* Allow wrapping on mobile */
    position: relative;
    min-height: 296px;
}

.newsletter-content {
    padding: 32px;
    max-width: 659px;
    z-index: 2;
}


.newsletter-content h3 {
    font-family: 'Figtree', sans-serif;
    font-size: 28px;
    font-weight: 600;
    color: #1e293b;
    line-height: 32px;
    margin-bottom: 12px;
}

.newsletter-content h4 {
    font-family: 'Figtree', sans-serif;
    font-size: 20px;
    font-weight: 500;
    color: #000000;
    line-height: 24px;
    margin-bottom: 12px;
}

.newsletter-content p {
    font-family: 'Figtree', sans-serif;
    font-size: 15.5px;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.65);
    line-height: 24px;
    margin-bottom: 32px;
}

.newsletter-form {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 342px;
}

.form-group input {
    background-color: #ffffff;
    border: 1px solid rgba(148, 163, 184, 0.39);
    border-radius: 8px;
    padding: 16px;
    font-family: 'Figtree', sans-serif;
    font-size: 16px;
    line-height: 16px;
    color: #000000;
    height: 48px;
}

.form-group input::placeholder {
    color: #94a3b8;
}

.form-group input:focus {
    outline: none;
    border-color: #8b5cf6;
}

.form-group small {
    font-family: 'Figtree', sans-serif;
    font-size: 12px;
    font-weight: 400;
    color: #64748b;
    line-height: 16px;
}

.btn-subscribe {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #8b5cf6;
    border-radius: 8px;
    border: none;
    padding: 16px 16px;
    color: #ffffff;
    font-family: 'Figtree', sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 16px;
    height: 48px;
    min-width: 105px;
}

.btn-subscribe:hover {
    background-color: #7c3aed;
}

.newsletter-visual {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.newsletter-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    overflow: hidden;
}
.newsletter-envelope {
    position: relative;
    width: 85%;
    right: -65px;
    max-width: 340px;
    z-index: 2;
}


/* ============================================
   SMART HOURS TOOLTIP – PREMIUM VERSION
   ============================================ */

/* ── Container ── */
.phone-container {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

/* ── Tooltip ── */
.hours-tooltip {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  background: #1a1a2e;
  color: #ffffff;
  padding: 16px 20px;
  border-radius: 14px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.5;
  min-width: 240px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
  opacity: 0;
  visibility: hidden;
  pointer-events: auto;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 100;
  border: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(4px);
   display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* ── Countdown timer text ── */
.hours-tooltip__countdown {
  display: block;
  font-size: 12px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 2px;
  letter-spacing: 0.3px;
}

/* ── Status text (bold & bright) ── */
.hours-tooltip__status-text--open {
  color: #22c55e;
  font-weight: 700;
  font-size: 15px;
}

.hours-tooltip__status-text--closed {
  color: #ff0000;
  font-weight: 700;
  font-size: 15px;
}


/* ── Arrow ── */
.hours-tooltip::before {
  content: '';
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 7px solid transparent;
  border-bottom-color: #1a1a2e;
}

/* ── Show on hover ── */
.phone-container:hover .hours-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

/* ── Status row ── */
.hours-tooltip__status {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 3px;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgb(64, 59, 59)
}

.hours-tooltip__sub-text {
  font-size: 13px;
  font-weight: 350;
  display: block;
  margin-top: 2px;
}

.hours-tooltip__status-text {
  font-weight: 900;
  font-size: 16px;
}


/* ── Rows ── */
.hours-tooltip__row {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 10px;
  padding: 4px 0;
}

.hours-tooltip__icon {
  font-size: 15px;
  width: 20px;
  text-align: center;
  flex-shrink: 0;
}

.hours-tooltip__label {
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
}

.hours-tooltip__value {
  color: #ffffff;
  font-weight: 500;
  font-size: 13px;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .hours-tooltip {
    min-width: 200px;
    padding: 14px 16px;
    font-size: 12px;
    left: 50%;
    transform: translateX(-50%) translateY(6px);
  }
  .hours-tooltip__status-text {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .hours-tooltip {
    min-width: 180px;
    padding: 12px 14px;
    font-size: 11px;
    left: 0;
    transform: translateX(0) translateY(6px);
  }
  .hours-tooltip::before {
    left: 20%;
  }
}

/* ===== Footer ===== */
.footer {
    background-color: #ffffff;
    border-top: 1px solid #e5e7eb;
}

.footer-top {
    max-width: 1440px;
    margin: 0 auto;
    padding: 25px 49px;
    display: flex;
    gap: 69px;
}

.footer-brand {
    max-width: 429px;
}

.brand-logo {
    display: flex;
    gap: 8px;
    align-items: center;
    margin-bottom: 32px;
}

.brand-img {
    width: 50px;
    height: 50px;
    border-radius: 999px;
    object-fit: cover;
}

.brand-text {
    width: 134px;
}

.brand-text h3 {
    font-size: 20px;
    font-weight: 600;
    color: #000000;
    line-height: 1.2;
}

.brand-text h3 .highlight {
    color: #000000;
}

.brand-text p {
    font-size: 16px;
    font-style: italic;
    color: #000000;
    font-weight: 400;
}

.brand-accent {
    width: 30px;
    height: 32.397px;
}

.brand-desc {
    font-size: 16.5px;
    font-weight: 400;
    color: #000000;
    line-height: 20px;
}

.footer-columns {
    display: flex;
    gap: 70px;
    flex: 1;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 26px;
    align-items: center;
}
.footer-contact-col {
    align-items: flex-start;
}

.footer-col h4 {
    font-size: 22px;
    font-weight: 700;
    line-height: 27px;
    color: #000000;
    position: relative;
    padding-left: 12px;
}

.footer-col h4::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 23.5px;
    border-left: 3px solid #000000;
    background-color: #000000;
    border-radius: 999px;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 22px;
    align-items: center;
}

.footer-col ul li a {
    font-size: 16px;
    font-weight: 400;
    line-height: 19px;
    color: #000000;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: #000000;
}

.footer-contacts {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.footer-contact {
    display: flex;
    gap: 12px;
    align-items: center;
}

.icon-box {
    border: 1px solid #000000;
    border-radius: 12px;
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-box img {
    width: 22px;
    height: 22px;
}

.footer-contact .label {
    font-size: 12px;
    font-weight: 500;
    line-height: 15px;
    color: #555b66;
    margin-bottom: 8px;
}

.footer-contact .value {
    font-size: 13px;
    font-weight: 700;
    color: #000000;
    line-height: 16px;
}

.footer-contact .value a {
    display: inline-block;
    word-break: break-all;
    max-width: 150px;
}


.footer-bottom {
    max-width: 1440px;
    margin: 0 auto;
    padding: 25px 35px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    display: flex;
    gap: 12px;
    align-items: center;
    font-weight: 400;
    color: #000000;
}

.copyright span:first-child {
    font-size: 18px;
}

.copyright span:last-child {
    font-size: 15px;
    line-height: 18px;
}


/* --------------------------------------------------------------------------
   5. Main Content Layout
   -------------------------------------------------------------------------- */
.main-content {
  display: flex;
  flex-direction: column;
  gap: 100px;
  padding-bottom: 0;
}

/* ── UNIVERSAL NOSCRIPT FALLBACK (All Screen Sizes) ── */
.noscript-fallback {
  display: flex; /* Always visible when JS is off */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px); /* Safari/iOS support */
  z-index: 999999;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.noscript-fallback__content {
  background: #ffffff;
  padding: 40px 30px;
  border-radius: 24px;
  max-width: 500px; /* Slightly larger for desktop readability */
  width: 100%;
  text-align: center;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
  animation: fadeInUp 0.4s ease;
}

.noscript-fallback__title {
  font-size: 24px; /* Slightly larger for desktop */
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  color: #000000;
  margin-bottom: 16px;
  line-height: 1.3;
}

.noscript-fallback__text {
  font-size: 17px; /* Slightly larger for desktop */
  line-height: 1.6;
  font-family: 'Inter', sans-serif;
  color: #333333;
  margin-bottom: 0;
}

/* ── RESPONSIVE: Optimize for smaller screens ── */
@media (max-width: 768px) {
  .noscript-fallback__content {
    padding: 30px 20px;
    max-width: 400px;
  }
  .noscript-fallback__title {
    font-size: 20px;
  }
  .noscript-fallback__text {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .noscript-fallback__content {
    padding: 24px 16px;
    max-width: 340px;
  }
  .noscript-fallback__title {
    font-size: 18px;
  }
  .noscript-fallback__text {
    font-size: 14px;
  }
}

/* --------------------------------------------------------------------------
   6. ToS Hero
   -------------------------------------------------------------------------- */
.tos-hero {
  display: flex;
  justify-content: center;
  padding: 60px 15px 0;
}

.tos-hero__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  max-width: var(--content-max-width);
  width: 100%;
  padding: 15px;
}

.tos-hero__icon-wrap {
  background-color: var(--color-white);
  border-radius: 20.57px;
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.08);
  flex-shrink: 0;
}

.tos-hero__icon {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

.tos-hero__text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  width: 100%;
  max-width: 1178px;
  text-align: center;
}

.tos-hero__title {
  font-size: 50px;
  font-weight: 800;
  font-family: var(--font-inter);
  color: var(--color-text-primary);
  line-height: 61px;
  white-space: nowrap;
  max-width: 426px;
  
}

.tos-hero__updated {
  font-size: 20px;
  font-weight: 400;
  color: var(--color-text-primary);
}

.tos-hero__intro {
  font-size: 19px;
  font-weight: 500;
  color: var(--color-text-primary);
  line-height: 23px;
  max-width: 100%;
}

/* --------------------------------------------------------------------------
   7. ToS Sections
   -------------------------------------------------------------------------- */
.tos-sections {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-3xl);
  width: 100%;
  max-width: var(--content-max-width);
  margin: 0 auto;
  padding: 0 82px;
}

.tos-section {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xl);
}

/* Section heading row */
.tos-section__heading {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 7px 0;
}

.tos-section__icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 9.38px;
  border-radius: 7.03px;
  flex-shrink: 0;
}

.tos-section__icon-wrap img {
  width: 31.25px;
  height: 31.25px;
  object-fit: contain;
}

.tos-section__icon-img--large {
  width: 40px !important;
  height: 40px !important;
}


.tos-section__title {
  font-size: 30px;
  font-weight: 600;
  font-family: var(--font-inter);
  color: var(--color-text-primary);
  white-space: nowrap;
  line-height: 1.2;
  margin: 0;
}

/* Cards stack */
.tos-section__cards {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
}

/* --------------------------------------------------------------------------
   8. ToS Cards
   -------------------------------------------------------------------------- */
.tos-card {
  border: 1px solid var(--color-black);
  border-radius: var(--border-radius-card);
  padding: 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.tos-card p strong{
  color:#000;
}

.tos-card p {
  font-size: 18px;
  font-weight: 400;
  font-family: var(--font-inter);
  color: var(--color-text-secondary);
  line-height: 22px;
}

.tos-card__subtitle {
  font-size: 23px;
  font-weight: 500;
  font-family: var(--font-inter);
  color: var(--color-text-primary);
  line-height: 28px;
}

.tos-card__list {
  list-style: decimal;
  padding-left: 27px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.tos-card__list li {
  font-size: 18px;
  font-weight: 400;
  color: var(--color-text-secondary);
  line-height: 22px;
  padding-left: 4px;
}

/* --------------------------------------------------------------------------
   9. Acknowledgement Banner
   -------------------------------------------------------------------------- */
.tos-acknowledgement {
  background-color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px 25px;
  box-shadow:
    0 4px 4px 0 rgba(0, 0, 0, 0.25),
    inset 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  width: 100%;
}

.tos-acknowledgement p {
  font-size: 18px;
  font-weight: 400;
  font-family: var(--font-inter);
  color: var(--color-text-primary);
  text-align: center;
  line-height: 22px;
}

/* =========================================================
   RESPONSIVE DESIGN
   ========================================================= */

/* ---------- Large Tablets (1200px) ---------- */
@media (max-width: 1200px){

  .main-header{
    padding: 10px 40px;
  }

  .nav-links{
    gap:20px;
  }

  .main-nav{
    gap:60px;
  }

  .newsletter{
    padding:80px 80px;
  }

  .tos-sections{
    padding:0 40px;
  }

  .footer-top{
    padding:25px 40px;
    gap:40px;
  }

}

/* ===== Device Warning Modal ===== */
.device-warning {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 9999;
}

.device-warning.active {
  opacity: 1;
  visibility: visible;
}

.device-warning__content {
  background: #fff;
  padding: 32px 28px;
  border-radius: 28px;
  text-align: center;
  max-width: 400px;
  width: 90%;
  transform: scale(0.9);
  transition: transform 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  animation: fadeInUp 0.35s ease;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.device-warning.active .device-warning__content {
  transform: scale(1);
}

.device-warning__title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #000;
  font-family: var(--font-inter), sans-serif;
}

.device-warning__text {
  font-size: 15px;
  line-height: 1.4;
  color: #555;
  margin-bottom: 24px;
  font-family: var(--font-inter), sans-serif;
}

.device-warning__btn {
  background: #000;
  color: #fff;
  border: none;
  padding: 12px 28px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.2s ease;
  font-family: var(--font-inter), sans-serif;
}

.device-warning__btn:hover {
  background: #222;
  transform: translateY(-1px);
}

.device-warning__note {
  margin-top: 16px;
  font-size: 12px;
  color: #888;
  font-family: var(--font-inter), sans-serif;
}

/* Responsive small screens */
@media (max-width: 480px) {
  .device-warning__content {
    padding: 24px 20px;
  }
  .device-warning__title {
    font-size: 20px;
  }
  .device-warning__text {
    font-size: 14px;
  }
  .device-warning__btn {
    padding: 10px 24px;
    font-size: 14px;
  }
}

/* ---------- Tablets (992px) ---------- */
@media (max-width: 992px){

  /* NAVBAR */
  .main-nav{
    flex-direction:column;
    gap:20px;
  }

  .nav-links{
    flex-wrap:wrap;
    justify-content:center;
  }

  .header-content{
    flex-direction:column;
    gap:15px;
  }

  /* HERO */
  .tos-hero__title{
    font-size:40px;
  }

  .tos-hero__intro{
    font-size:17px;
  }

  /* SECTIONS */
  .tos-section__title{
    font-size:26px;
  }

  .tos-card p,
  .tos-card__list li{
    font-size:16px;
  }

  /* NEWSLETTER */
  .newsletter-wrapper{
    flex-direction:column;
    align-items:center;
  }

  .newsletter-visual{
    display:none;
  }

  .newsletter{
    padding:80px 40px;
  }

  /* FOOTER */
  .footer-top{
    flex-direction:column;
    align-items:center;
    text-align:center;
  }

  .footer-columns{
    justify-content:center;
    flex-wrap:wrap;
  }

}


/* ---------- Mobile (768px) ---------- */
@media (max-width: 768px){

  .top-bar-content{
    flex-direction:column;
    gap:10px;
  }

  .top-contact-info{
    flex-direction:column;
    gap:10px;
  }

  .contact-item{
    font-size:14px;
  }

  /* NAVBAR */

  .main-header{
    padding:10px 20px;
  }

  .nav-links{
    flex-wrap:wrap;
    gap:15px;
  }

  .nav-buttons{
    flex-direction:column;
    width:100%;
  }

  .nav-buttons a{
    width:100%;
  }

  /* HERO */

  .tos-hero{
    padding:40px 15px 0;
  }

  .tos-hero__title{
    font-size:32px;
    white-space:normal;
  }

  .tos-hero__updated{
    font-size:16px;
  }

  .tos-hero__intro{
    font-size:16px;
  }

  /* SECTIONS */

  .tos-sections{
    padding:0 20px;
    gap:80px;
  }

  .tos-section__heading{
    flex-direction:column;
    text-align:center;
  }

  .tos-section__title{
    white-space:normal;
    font-size:24px;
  }

  .tos-card{
    padding:18px;
  }

  /* NEWSLETTER */

  .newsletter{
    padding:60px 20px;
  }

  .newsletter-content{
    padding:20px;
  }

  .newsletter-form{
    flex-direction:column;
    align-items:stretch;
  }

  .form-group{
    width:100%;
  }

  .btn-subscribe{
    width:100%;
  }

  /* FOOTER */

  .footer-columns{
    flex-direction:column;
    gap:40px;
  }

  .footer-col ul{
    align-items:center;
  }

  .footer-bottom{
    flex-direction:column;
    gap:10px;
    text-align:center;
  }

}


/* ---------- Small Phones (480px) ---------- */
@media (max-width:480px){

  .tos-hero__icon-wrap{
    width:90px;
    height:90px;
  }

  .tos-hero__icon{
    width:60px;
    height:60px;
  }

  .tos-hero__title{
    font-size:26px;
  }

  .tos-section__title{
    font-size:20px;
  }

  .tos-card__subtitle{
    font-size:20px;
  }

  .tos-card p,
  .tos-card__list li{
    font-size:15px;
  }

}

/* ============================================
   PREMIUM COOKIE CONSENT – PROFESSIONAL
   ============================================ */

/* ── Banner ── */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a2e;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 16px 24px;
    z-index: 999998;
    display: none;
    box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.3);
}

.cookie-banner.show {
    display: block;
    animation: cookieSlideUp 0.5s ease;
}

@keyframes cookieSlideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.cookie-banner__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.cookie-banner__content {
    flex: 1;
}

.cookie-banner__text {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

.cookie-banner__link {
    color: #a18e4f;
    text-decoration: underline;
    font-weight: 500;
    transition: color 0.2s;
}

.cookie-banner__link:hover {
    color: #c9b16a;
}

.cookie-banner__actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-banner__btn {
    padding: 10px 24px;
    border: none;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.cookie-banner__btn--primary {
    background: #a18e4f;
    color: #ffffff;
}

.cookie-banner__btn--primary:hover {
    background: #b8a35e;
}

.cookie-banner__btn--secondary {
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.7);
}

.cookie-banner__btn--secondary:hover {
    background: rgba(255, 255, 255, 0.15);
}

.cookie-banner__btn--outline {
    background: transparent;
    color: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.cookie-banner__btn--outline:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.3);
}

/* ── Modal ── */
.cookie-modal {
    position: fixed;
    inset: 0;
    z-index: 999999;
    display: none;
    align-items: center;
    justify-content: center;
    animation: cookieModalFadeIn 0.3s ease;
}

.cookie-modal.show {
    display: flex;
}

@keyframes cookieModalFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.cookie-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
}

.cookie-modal__panel {
    position: relative;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    background: #1a1a2e;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 32px 36px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
    overflow-y: auto;
    animation: cookieModalPanelIn 0.4s ease;
}

@keyframes cookieModalPanelIn {
    from {
        transform: translateY(20px) scale(0.97);
        opacity: 0;
    }
    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

.cookie-modal__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.cookie-modal__title {
    font-family: 'Inter', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

.cookie-modal__close {
    background: rgba(255, 255, 255, 0.06);
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.2s;
}

.cookie-modal__close:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
}

.cookie-modal__description {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin: 0 0 24px 0;
}

.cookie-modal__options {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 28px;
}

.cookie-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.04);
    transition: background 0.2s;
}

.cookie-option:hover {
    background: rgba(255, 255, 255, 0.06);
}

.cookie-option--essential {
    opacity: 0.7;
    cursor: not-allowed;
}

.cookie-option__info {
    flex: 1;
}

.cookie-option__name {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 2px;
}

.cookie-option__desc {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}

.cookie-option__status {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 500;
}

.cookie-option__control {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    margin-left: 16px;
}

/* ── Toggle Switch ── */
.toggle-switch {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 24px;
    cursor: pointer;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 999px;
    transition: background 0.3s ease;
}

.toggle-slider::before {
    content: '';
    position: absolute;
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background: #ffffff;
    border-radius: 50%;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.toggle-switch input:checked + .toggle-slider {
    background: #a18e4f;
}

.toggle-switch input:checked + .toggle-slider::before {
    transform: translateX(20px);
}

.toggle-switch input:disabled + .toggle-slider {
    opacity: 0.5;
    cursor: not-allowed;
}

.toggle-switch input:disabled + .toggle-slider::before {
    background: rgba(255, 255, 255, 0.5);
}

/* ── Modal Footer ── */
.cookie-modal__footer {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.cookie-modal__btn {
    padding: 10px 28px;
    border: none;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.cookie-modal__btn--primary {
    background: #a18e4f;
    color: #ffffff;
}

.cookie-modal__btn--primary:hover {
    background: #b8a35e;
}

.cookie-modal__btn--secondary {
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.7);
}

.cookie-modal__btn--secondary:hover {
    background: rgba(255, 255, 255, 0.15);
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .cookie-banner__inner {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
    }

    .cookie-banner__actions {
        flex-wrap: wrap;
        justify-content: stretch;
    }

    .cookie-banner__btn {
        flex: 1;
        text-align: center;
        justify-content: center;
        min-width: 0;
        padding: 10px 16px;
        font-size: 12px;
    }

    .cookie-modal__panel {
        padding: 24px 20px;
        width: 95%;
    }

    .cookie-modal__title {
        font-size: 18px;
    }

    .cookie-option {
        padding: 12px;
        flex-wrap: wrap;
        gap: 8px;
    }

    .cookie-option__control {
        margin-left: 0;
        width: 100%;
        justify-content: flex-end;
    }

    .cookie-modal__footer {
        flex-direction: column-reverse;
        gap: 8px;
    }

    .cookie-modal__btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .cookie-banner {
        padding: 12px 16px;
    }

    .cookie-banner__text {
        font-size: 12px;
    }

    .cookie-banner__btn {
        font-size: 11px;
        padding: 8px 12px;
        flex: 1 1 auto;
    }

    .cookie-modal__panel {
        padding: 20px 16px;
        border-radius: 12px;
    }

    .cookie-modal__title {
        font-size: 16px;
    }

    .cookie-modal__description {
        font-size: 13px;
    }
}

/* ── Floating WhatsApp Button (Glass – More Visible) ── */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px 12px 16px;
    
    /* ── Glass Effect (More Opaque & Vibrant) ── */
    background: rgba(37, 211, 102, 0.45);   /* Increased from 0.2 to 0.45 */
    backdrop-filter: blur(6px);              /* Slightly less blur to keep it sharper */
    -webkit-backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.35); /* Slightly brighter border */
    
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.25); /* Stronger shadow */
    text-decoration: none;
    
    transition: all 0.3s ease;
}

/* ── Solid Green (On Hover) ── */
.whatsapp-float:hover {
    background: #25D366;
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
    border: 1px solid transparent;
    transform: scale(1.05);
    box-shadow: 0 6px 28px rgba(37, 211, 102, 0.6);
}

/* ── Icon (White) ── */
.whatsapp-float-icon {
    width: 28px;
    height: 28px;
    display: block;
    filter: brightness(0) invert(1);
    transition: transform 0.3s ease;
}

.whatsapp-float:hover .whatsapp-float-icon {
    transform: scale(1.08);
}

/* ── Text (White) ── */
.whatsapp-float-text {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 0.3px;
}

/* ── Mobile Responsiveness ── */
@media (max-width: 480px) {
    .whatsapp-float {
        bottom: 16px;
        right: 16px;
        padding: 10px 16px 10px 12px;
        gap: 8px;
    }
    .whatsapp-float-icon {
        width: 22px;
        height: 22px;
    }
    .whatsapp-float-text {
        font-size: 13px;
    }
}