* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    transition: all 0.3s ease;
  }
  
  :root {
    --primary-color: rgb(13, 20, 26);
    --secondary-color: #e2e0fb;
    --text-color: rgb(86, 88, 94);
    --white: #ffffff;
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
  }
  
  body {
    font-family: "Poppins", sans-serif;
    background-color: #f8f9fa;
  }
  
  .main-header {
    width: 100%;
  }
  /* .hero-banner {
    background-image: url(./assets/);
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    color: white;
  } */
  .hero-banner h1 {
    text-shadow: 0px 3px 5px rgba(0, 0, 0, 0.46);
    font-size: 30px;
    font-weight: 700;
  }
  
  .hero-banner p {
    max-width: 69%;
    /* text-shadow: 0px 3px 5px rgba(0, 0, 0, 0.46); */
    font-size: 64px;
    font-weight: 700;
    color: rgb(13, 20, 26);
    line-height: 83px;
  }
  
  .hero-banner {
    position: relative;
    width: 100%;
    height: 100%;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    overflow: hidden;
    margin-top: 0;
    background: linear-gradient(135deg, rgba(13, 20, 26, 0.9), rgba(85, 82, 192, 0.8));
  }
  .tint{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(13, 20, 26, 0.7), rgba(85, 82, 192, 0.6));
    z-index: 1;
  }
  
  .background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
  }
  
  /* .hero-banner p,
  .hero-banner .second-details {
    z-index: 1;
  } */
  
  
  .second-details {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    gap: 40px;
    z-index: 10;
    color: white !important;
    padding-top: 0px;
    animation: fadeInUp 1s ease-out;
  }
  .second-details p {
    max-width: 69%;
    font-size: 64px;
    font-weight: 700;
    color: rgb(255, 255, 255);
    line-height: 83px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: slideInLeft 1s ease-out;
  }
  .second-details h1 {
    text-shadow: 0px 3px 5px rgba(0, 0, 0, 0.46);
    background: rgba(13, 20, 26, 0.8);
    backdrop-filter: blur(10px);
    color: white;
    padding: 15px 30px;
    border-radius: 15px;
    border: 1px solid var(--glass-border);
    transform: translateY(0);
    transition: all 0.3s ease;
  }
  
  .second-details h1:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  }
  
  .second-details h3 {
    text-shadow: 0px 3px 5px rgba(0, 0, 0, 0.46);
    font-size: 20px;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 20px;
    border-radius: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: slideInRight 1s ease-out;
  }
  
  .second-details h3 a {
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    padding: 5px 10px;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
  }
  
  .second-details h3 a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
  }
  
  .second-details a.numberphone {
    text-shadow: 0px 3px 5px rgba(0, 0, 0, 0.46);
    background: rgba(13, 20, 26, 0.8);
    backdrop-filter: blur(10px);
    color: white;
    padding: 15px 30px;
    border-radius: 15px;
    border: 1px solid var(--glass-border);
    transform: translateY(0);
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    font-size: 30px;
    font-weight: 700;
    cursor: pointer;
  }
  
  .second-details a.numberphone:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    background: rgba(13, 20, 26, 0.9);
    border-color: rgba(255, 255, 255, 0.4);
  }
  
  .second-details a.reserve-cta {
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    padding: 10px 20px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    display: inline-block;
    margin-top: 10px;
    cursor: pointer;
  }
  
  .second-details a.reserve-cta:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
  }
  
  .top-header {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #1a1b1c;
    padding: 7px 0;
    color: white;
  }
  .top-header h3 {
    font-size: 20px;
    font-weight: 500;
  }
  
  .top-header h3 a {
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    padding: 2px 5px;
    border-radius: 4px;
  }
  
  .top-header h3 a:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-1px);
  }
  
  .header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }
  .header a {
    text-decoration: none;
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
  }
  .header a:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
  }
  .numberphone{
    text-decoration: none;
  
  }
  
  .right-main {
      margin: 30px;
      border-radius: 15px;
      background-image: url(./assets/bghg.jpg);
      background-size: cover;
      background-position: center;
      width: 600px;
      height: 500px;
      display: flex;
      justify-content: flex-start;
      align-items: flex-end;
  }
  .second-cotianer {
    max-width: 1300px;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
  }
  .right-numbers{
    display: flex;
    background: rgba(13, 20, 26, 0.9);
    backdrop-filter: blur(10px);
    color: var(--white);
    padding: 40px;
    border-radius: 20px;
    gap: 30px;
    position: relative;
    top: -50px;
    left: -50px;
    border: 1px solid var(--glass-border);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  }
  .left-details{
    max-width: 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 40px;
  }
  .left-details h1{
    font-size: 45px;
    font-weight: 500;
    line-height: 55px;
  }
  .left-details p{
    color: rgb(86, 88, 94);
    line-height: 24px;
    font-size: 18px;
    font-weight: 400;
  }
  .left-details a,
  .col-1t-main a {
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    padding: 12px 30px;
    border-radius: 12px;
    margin-top: 20px;
    display: inline-block;
    font-weight: 500;
    letter-spacing: 0.5px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    text-align: center;
    min-width: 140px;
  }
  .left-details a:hover,
  .col-1t-main a:hover {
    background: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }
  .third-container{
    max-width: 1300px;
    margin: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-top: 100px;
  }
  .main-third{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
  }
  
  .whyh2{
    color: rgb(13, 20, 26);
    max-width: 80%;
    font-size: 45px;
    font-weight: 500;
    line-height: 55px;
  }
  .whyh1{
    text-align: center;
    max-width: 80%;
    color: rgb(40, 41, 42);
    line-height: 24px;
    font-size: 18px;
    font-weight: 400;
  }
  .col-1t{
    width: 100%;
    min-height: 100%;
    padding: 30px;
    background: linear-gradient(135deg, var(--secondary-color), #f0f0ff);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
  }
  .col-1t:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  }
  .col-1t::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3));
    pointer-events: none;
  }
  .col-1t-main a{
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 12px;
    margin-top: 20px;
    display: inline-block;
    font-weight: 500;
    letter-spacing: 0.5px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
  }
  .col-1t-main a:hover {
    background: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-2px);
  }
  .col-1t-main{
    width: 350px;
    min-height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 20px;
  }
  .col-1t-main h1{
    font-size: 30px;
    font-weight: 500;
    color: #252246;
  }
  .col-1t-main p{
    color: #252246;
    line-height: 30px;
    font-size: 18px;
    font-weight: 300;
  }
  
  
  .faq{
    max-width: 1200px;
    margin: auto;
  }
  
  .faq-h1{
    line-height: 64px;
    margin-top: 100px;
    text-align: center;
    color: rgb(13, 20, 26);
    font-size: 45px;
    font-weight: 500;
    line-height: 55px;
  }
  .faq-p{
   margin: 30px auto;
    text-align: center;
    color: rgb(40, 41, 42);
    line-height: 24px;
    font-size: 18px;
    font-weight: 400;
  }
  .faq-item {
    background: var(--white);
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.3s ease;
  }
  
  .faq-question {
    padding: 20px;
    cursor: pointer;
    position: relative;
    font-weight: 500;
    transition: all 0.3s ease;
  }
  
  .faq-question:hover {
    background: rgba(226, 224, 251, 0.3);
  }
  
  .faq-question::after {
    content: '+';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    transition: all 0.3s ease;
  }
  
  .faq-question.active::after {
    transform: translateY(-50%) rotate(45deg);
  }
  
  .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
    background: rgba(248, 249, 250, 0.5);
  }
  
  .faq-answer.show {
    max-height: 500px;
    padding: 20px;
  }
  .footer{
    background: linear-gradient(135deg, #1a1b1c, #2a2b2c);
    color: white;
    padding: 30px 0;
    position: relative;
    overflow: hidden;
  }
  .footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  }
  .footer p{
    text-decoration: none;
    font-size: 14px;
    text-align: center;
    line-height: 1.8;
    position: relative;
    z-index: 1;
  }
  .footer a{
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
    position: relative;
  }
  .footer a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: #e2e0fb;
    transition: width 0.3s ease;
  }
  .footer a:hover {
    color: #e2e0fb;
  }
  .footer a:hover::after {
    width: 100%;
  }
  
  .privacy-policy h1{
    font-size: 45px;
    font-weight: 500;
    line-height: 55px;
    color: rgb(13, 20, 26);
    margin-bottom: 30px;
  }
  
  .privacy-policy, .terms-conditions-container{
    max-width: 1200px;
    margin: 100px auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 20px;
  }
  
  /* Tablet Devices (768px and below) */
  @media (max-width: 768px) {
    .hero-banner p,
    .second-details p {
      font-size: 40px;
      line-height: 50px;
      max-width: 90%;
    }
  
    .left-details h1 {
      font-size: 32px;
      line-height: 42px;
    }
  
    .left-details p {
      font-size: 16px;
    }
  
    .right-main {
      width: 100%;
    }
  
    .second-cotianer,
    .main-third {
      flex-direction: column;
      align-items: center;
    }
  
    .right-numbers {
      left: 0;
      flex-direction: column;
      align-items: center;
    }
  
    .header {
      display: flex;
      padding: 15px 20px;
      flex-direction: row-reverse;
      position: fixed;
      width: 100%;
    }
  
    .hero-banner {
      padding-top: 80px;
    }
  
    .second-details {
      padding-top: 100px;
      gap: 30px;
    }
  
    .faq-h1 {
      font-size: 32px;
      line-height: 42px;
    }
  
    .faq-p {
      font-size: 16px;
    }
  
    .col-1t {
      margin: 10px;
    }
  
    .left-details a,
    .col-1t-main a {
      padding: 10px 25px;
      font-size: 14px;
      min-width: 120px;
    }
  
    .second-details a.numberphone {
      font-size: 24px;
      padding: 12px 25px;
    }
  
    .second-details a.reserve-cta {
      font-size: 16px;
      padding: 8px 16px;
    }
  
    .second-details h3 a {
      font-size: 16px;
      padding: 4px 8px;
    }
  
    .top-header h3 a {
      font-size: 16px;
    }
  }
  
  /* Mobile Devices (480px and below) */
  @media (max-width: 480px) {
    .hero-banner p,
    .second-details p {
      font-size: 28px;
      line-height: 36px;
      max-width: 95%;
    }
  
    .hero-banner h1,
    .second-details h1 {
      font-size: 24px;
    }
  
    .left-details h1 {
      font-size: 24px;
      line-height: 32px;
    }
  
    .left-details p {
      font-size: 14px;
    }
  
    .left-details a,
    .col-1t-main a {
      padding: 8px 20px;
      font-size: 13px;
      min-width: 100px;
    }
    .privacy-policy, .terms-conditions-container{
      padding : 0 20px;
    }
  
    .second-details {
      padding-top: 0px;
      gap: 20px;
    }
  
    .top-header h3,
    .header a {
      font-size: 14px;
    }
  
    .col-1t-main {
      width: 100%;
      min-height: auto;
      padding: 10px;
    }
  
    .faq-h1 {
      font-size: 28px;
      line-height: 36px;
    }
  
    .faq-p {
      font-size: 14px;
      line-height: 20px;
    }
  
    .faq-question {
      font-size: 16px;
    }
  
    .footer p {
      font-size: 12px;
      padding: 0 15px;
    }
    .left-details {
      text-align: center;
      margin: 50px auto;
      align-items: center;
      gap: 10px;
  
  }
  
  .right-details{
    width: 100%;
   
  }
  .right-main{
    margin: unset;
  
  }
  
  .second-details a.numberphone {
    font-size: 20px;
    padding: 10px 20px;
  }
  
  .second-details a.reserve-cta {
    font-size: 14px;
    padding: 6px 12px;
  }
  
  .second-details h3 a {
    font-size: 14px;
    padding: 3px 6px;
  }
  
  .top-header h3 a {
    font-size: 14px;
  }
  }
  
  .number-col {
    text-align: center;
    transition: all 0.3s ease;
  }
  
  .number-col:hover {
    transform: translateY(-5px);
  }
  
  .number-col h1 {
    font-size: 3rem;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #fff, #e2e0fb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  
  /* Scroll Animations */
  .col-1t, .faq-item, .right-numbers {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  
  .animate-in {
    opacity: 1;
    transform: translateY(0);
  }
  
  /* Stagger animations for multiple elements */
  .col-1t:nth-child(1) { transition-delay: 0.1s; }
  .col-1t:nth-child(2) { transition-delay: 0.2s; }
  .col-1t:nth-child(3) { transition-delay: 0.3s; }
  
  .faq-item:nth-child(n) {
    transition-delay: calc(0.1s * var(--i, 1));
  }
  
  .disclaimer-container {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
  }
  
  .disclaimer-container h1 {
    font-size: 45px;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 40px;
    text-align: center;
  }
  
  .disclaimer-content {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }
  
  .disclaimer-intro {
    font-size: 20px;
    color: var(--text-color);
    margin-bottom: 40px;
    text-align: center;
    font-weight: 500;
  }
  
  .disclaimer-section {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }
  
  .disclaimer-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
  }
  
  .disclaimer-section h2 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 600;
  }
  
  .disclaimer-section p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 15px;
  }
  
  .disclaimer-section ul {
    list-style-type: disc;
    margin-left: 20px;
    margin-top: 15px;
  }
  
  .disclaimer-section li {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 10px;
  }
  
  @media (max-width: 768px) {
    .disclaimer-container {
      margin: 40px auto;
    }
  
    .disclaimer-container h1 {
      font-size: 32px;
      margin-bottom: 30px;
    }
  
    .disclaimer-content {
      padding: 30px 20px;
    }
  
    .disclaimer-intro {
      font-size: 18px;
      margin-bottom: 30px;
    }
  
    .disclaimer-section {
      margin-bottom: 30px;
      padding-bottom: 20px;
    }
  
    .disclaimer-section h2 {
      font-size: 20px;
      margin-bottom: 15px;
    }
  
    .disclaimer-section p,
    .disclaimer-section li {
      font-size: 15px;
      line-height: 1.6;
    }
  }
  
  @media (max-width: 480px) {
    .disclaimer-container h1 {
      font-size: 28px;
    }
  
    .disclaimer-intro {
      font-size: 16px;
    }
  
    .disclaimer-section h2 {
      font-size: 18px;
    }
  
    .disclaimer-section p,
    .disclaimer-section li {
      font-size: 14px;
    }
  }
  
  .mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 100;
    margin-left: auto;
  }
  
  .mobile-menu-btn span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
    border-radius: 3px;
  }
  
  .mobile-menu-btn.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }
  
  .mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
  }
  
  .mobile-menu-btn.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }
  
  .nav-links {
    display: flex;
    gap: 20px;
  }
  
  @media (max-width: 768px) {
    .header {
      display: flex;
      padding: 15px 20px;
      flex-direction: row-reverse;
    }
  
  
    .mobile-menu-btn {
      display: flex;
      position: relative;
      right: 0;
    }
  
    .nav-links {
      position: fixed;
      top: 0;
      right: -100%;
      width: 250px;
      height: 100vh;
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(10px);
      flex-direction: column;
      padding: 80px 20px 20px;
      transition: right 0.3s ease;
      box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    }
  
    .nav-links.active {
      right: 0;
    }
  
    .nav-links a {
      padding: 15px !important;
      width: 100%;
      text-align: left;
      border-radius: 8px;
    }
  
    .nav-links a:hover {
      background: var(--primary-color);
      color: white;
      transform: translateX(5px);
    }
  }
  
  @media (max-width: 480px) {
    .nav-links {
      width: 100%;
    }
  }
  
  .logo {
    display: flex;
    align-items: center;
    position: relative;
  }
  
  .logo-text {
    display: flex;
    align-items: center;
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
  }
  
  .logo-text:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(85, 82, 192, 0.2);
    background: rgba(85, 82, 192, 0.05);
    border: 1px solid rgba(85, 82, 192, 0.2);
  }
  
  .logo-icon {
    font-size: 42px;
    margin-right: 18px;
    background: linear-gradient(135deg, #5552C0, #8B89E3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    transform: rotate(-15deg);
    transition: transform 0.3s ease;
  }
  
  .logo-text:hover .logo-icon {
    transform: rotate(15deg);
  }
  
  .logo-content {
    display: flex;
    flex-direction: column;
    line-height: 1;
  }
  
  .logo-main {
    font-size: 22px;
    font-weight: 700;
    background: linear-gradient(135deg, #5552C0, #8B89E3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.5px;
    text-transform: uppercase;
  }
  
  .logo-domain {
    font-size: 12px;
    font-weight: 500;
    color: #666;
    letter-spacing: 1px;
    margin-top: 2px;
  }
  
  @media (max-width: 768px) {
    .logo-text {
      padding: 6px 10px;
    }
    
    .logo-icon {
      font-size: 36px;
      margin-right: 15px;
    }
    
    .logo-main {
      font-size: 18px;
    }
    
    .logo-domain {
      font-size: 10px;
    }
  }
  
  @media (max-width: 480px) {
    .logo-text {
      padding: 4px 8px;
    }
    
    .logo-icon {
      font-size: 30px;
      margin-right: 10px;
    }
    
    .logo-main {
      font-size: 16px;
    }
    
    .logo-domain {
      font-size: 9px;
    }
  }
  
  /* Animations */
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @keyframes slideInLeft {
    from {
      opacity: 0;
      transform: translateX(-50px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }
  
  @keyframes slideInRight {
    from {
      opacity: 0;
      transform: translateX(50px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }
  
  @keyframes bounceIn {
    0% {
      opacity: 0;
      transform: scale(0.3);
    }
    50% {
      opacity: 0.9;
      transform: scale(1.1);
    }
    80% {
      opacity: 1;
      transform: scale(0.89);
    }
    100% {
      opacity: 1;
      transform: scale(1);
    }
  }
  
  /* Global link color fix */
  a {
    color: inherit;
    text-decoration: none;
  }
  
  /* Specific styles for phone number links */
  .top-header h3 a,
  .second-details h3 a,
  .second-details a.numberphone,
  .second-details a.reserve-cta,
  .left-details a,
  .col-1t-main a {
    color: white !important;
    text-decoration: none;
  }
  
  /* Override for non-phone links in header */
  .header a {
    color: var(--primary-color);
  }
  
  .header a:hover {
    color: var(--white);
  }
  
  /* Override for footer links */
  .footer a {
    color: white;
  }
  
  