* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

.hide {
    display: none !important;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #ffffff;
    overflow: hidden;
}


br {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}


/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
    color: #666;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, #EB1000 0%, #d10000 100%);
    border: 2px solid #800900;
    color: white;
    /* box-shadow: 0 4px 15px rgba(235, 16, 0, 0.4); */
    box-shadow: 0 4px 15px rgba(16, 16, 16, 0.2);
    user-select: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    /* box-shadow: 0 8px 25px rgba(235, 16, 0, 0.6); */
    box-shadow: 0 4px 15px rgba(16, 16, 16, 0.4);
}

.btn-secondary {
    background: #f8f9fa;
    color: #1a1a1a;
    border: 2px solid #e9ecef;
}

.btn-secondary:hover {
    background: #e9ecef;
    transform: translateY(-1px);
}

.btn-outline {
    background: transparent;
    color: #EB1000;
    border: 2px solid #EB1000;
}

.btn-outline:hover {
    background: #EB1000;
    color: white;
    transform: translateY(-1px);
}

.btn-large {
    padding: 16px 32px;
    font-size: 18px;
}

.btn-full {
    width: 100%;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(9px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    background: linear-gradient(132deg, #EB1000 0%, #690700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    font-weight: 500;
    color: #666;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #EB1000;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}
  
  

  
  
  .body_container {
    transition: filter 0.75s ease-in-out;
    -webkit-transition: filter 0.75s ease-in-out;
  }
  
  
  
  .main_div {
    display: block;
    position: relative;
    top: 56px;
    margin: 16px auto 0 auto;
    height: calc(100% - 105px);
    width: 100% !important;
    padding: 0 0 16px 0;
    list-style: none;
    text-align: center;
  }



  .main_container {
    /* max-width: 1200px; */
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}
  
  
  .main_div .highlight {
    /* background: #268BD2; */
    color: #268BD2;
    /* padding: 2px 0; */
  }
  
  
  .main_div h1 {
    line-height: 50px;
    color: #000;
    font-weight: bolder;
    margin: 8px 0;
  }
  
  
  
  
  
  .benefits_div {
    position: relative;
    margin: 70px auto 0 auto;
    width: 80%;
    text-align: left;
    height: 100%;
  }
  
  .loading {
      position: fixed;
      top: calc(50% - 0px);
      left: calc(50% - 15px);
      display: block;
      margin: auto;
      border: 4px solid transparent;
      border-bottom: 4px solid #800900;
      border-left: 4px solid #800900;
      border-radius: 50%;
      width: 30px;
      height: 30px;
      animation: spin 0.45s linear infinite;
      z-index: 99999999999999999999;
  }
  
  @keyframes spin {
      0% { transform: rotate(0deg); }
      100% { transform: rotate(360deg); }
  }
  
  
  .benefits_div .row {
    height: 100%;
  }
  
  .benefits_div h2 {
    font-weight: bolder;
    color: #000;
    line-height: 38px;
  }
  
  .benefits_div h4 {
    color: #000;
    min-height: 116px;
    line-height: 28px;
    margin-top: 0;
    padding: 0 8px 0 0;
  }
  
  .left_div {
    height: auto;
    /* background: url("../../assets/vertical_benefits_pattern.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center 300px; */
    box-sizing: border-box;
    -webkit-box-sizing:border-box;
    -moz-box-sizing: border-box;
    padding: 0 24px !important;
  }
  
  
  .left_div img {
   display: block;
   pointer-events: none;
   width: 90%;
   height: 200px;
   object-fit: cover;
   margin: 0;
   border-radius: 32px;
   padding: 0;
  }
  
  .form_div {
    background: #eee;
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 24px 32px !important;
    box-sizing: border-box;
    -webkit-box-sizing:border-box;
    -moz-box-sizing: border-box;
    box-shadow: 0 3px 8px -3px #0003;
  }
  
  
  .success {
    background: transparent;
    border: none;
    box-shadow: none;
  }
  
  .success * {
    color: #800900 !important;
    text-shadow: 0px 0px 0px #000;
  }
  
  .form_div p {
    color: #000;
    font-size: 15px;
    text-align: left;
  }
  
  
  .form_div input, .form_div textarea {
      padding: 12px 14px;
      margin: 0 0 8px 0;
      border: 2px solid #ccc;
      border-radius: 8px;
      width: 100%;
      color: #000 !important;
      text-align: left !important;
      -webkit-user-select: text;
      -khtml-user-select: text;
      -moz-user-select: text;
      -o-user-select: text;
      -ms-user-select: text;
      user-select: text;
      outline: none;
      box-sizing: border-box;
      -webkit-box-sizing:border-box;
      -moz-box-sizing: border-box;
      box-shadow: 0 3px 8px -3px #0001;
  }
  
  
  textarea {
      background: #fff !important;
      height: 150px;
      min-height: 150px !important;
      max-height: 550px !important;
      min-width: 100% !important;
      max-width: 100% !important;
      /* margin: 0; */
  }
  
  
  textarea:focus, .form_div input:focus, select:focus {
      border-color: #268BD2 !important;
  }
  
  .intl-tel-input {
      width: 100%;
      /* margin: 0px; */
  }
  
  .intl-tel-input {
    width: 100%;
    /* margin: 0px; */
}


/* phone format thing */
.iti-flag {background-image: url("../../assets/flags.png");}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .iti-flag {background-image: url("../../assets/flags@2x.png");}
}

  
  
   .form_div select {
      padding: 12px 30px 12px 14px;
      margin: 0 0 8px 0;
      border: 1px solid #ccc;
      border-radius: 8px;
      color: #000 !important;
      text-align: left !important;
      -webkit-user-select: text;
      -khtml-user-select: text;
      -moz-user-select: text;
      -o-user-select: text;
      -ms-user-select: text;
      user-select: text;
      outline: none;
      box-sizing: border-box;
      -webkit-box-sizing:border-box;
      -moz-box-sizing: border-box;
      box-shadow: 0 3px 8px -3px #0001;
      -moz-appearance:none; /* Firefox */
      -webkit-appearance:none; /* Safari and Chrome */
      appearance:none;
      background: #fff url('../../assets/dropdown_dark.png');
      background-size: 11px;
      background-repeat: no-repeat;
      background-position: calc(100% - 12px) center;
      cursor: pointer;
      width: 100%;
   }
  
  
  
   .form_div .terms {
     font-size: 12px;
   }
  
  
   .form_div .error {
     display: block;
     position: relative;
     color: palevioletred;
     font-size: 13px;
     width: calc(100% - 8px);
     -webkit-user-select: text;
     user-select: text;
   }
  
  
   .form_div .submit {
     display: block;
     position: relative;
     color: #fff;
     font-size: 15px;
     background: #000;
     padding: 16px 32px;
     border-radius: 6px;
     text-align: center;
     text-decoration: none !important;
     opacity: 0.9;
   }
  
  
   .form_div .submit:hover {
     text-decoration: none;
     cursor: pointer;
     opacity: 1;
     box-shadow: 0 3px 12px -3px #0006;
   }
  
  
  
  
  
  /* Footer */
.footer {
    position: relative;
    background: #1a1a1a;
    color: white;
    padding: 0 0 20px 0;
}



.footer_border_div {
    position: relative;
    top: 0px;
    height: 48px;
    margin: 0 0 32px 0;
  }
  
  .footer_border_div svg {
    position: absolute;
    top: -1px;
    z-index: 100;
    display: block;
    height: 48px;
    width: auto;
  }
  

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.footer-social div {
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-social div svg {
    color: #999;
    transition: color 0.2s ease;
    width: 20px;
    height: 18px;
}

.footer-social div svg:hover {
    color: #EB1000;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 0;
    filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(29deg) brightness(170%) contrast(103%);
}

.footer-description {
    color: #999;
    line-height: 1.6;
}

.footer-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #999;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #EB1000;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 2rem;
    text-align: center;
    color: #999;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer .footer-bottom .location {
    display: inline-block;
    /* float: right; */
    /* background: red; */
    margin: 0;
    user-select: none;
  }
  
  .footer .footer-bottom .location * {
    display: inline-block;
    color: #888;
    font-size: 12px;
  }

  .footer .footer-bottom .location p {
    position: relative;
    top: -3px;
  }
  
  .footer .footer-bottom .flag {
    width: 14px;
    height: 14px;
    margin-top: 0;
    margin-left: 12px;
    border-radius: 50%;
    object-position: 50% 50%;
    object-fit: cover;
    outline: none;
    user-select: none;
  }

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .nav-container {
        padding: 0 16px;
    }
    
    .nav-logo .logo-text {
        font-size: 20px;
    }
    
    .nav-logo .logo-img {
        width: 28px;
        height: 28px;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .main_div {
        top: 100px;
        padding: 0 16px 16px 16px;
        height: auto;
        min-height: calc(100vh - 100px);
    }
    
    .main_container {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0;
    }
    
    .benefits_div {
        width: 100%;
        margin: 40px auto 0 auto;
        text-align: center;
    }
    
    .left_div {
        padding: 0 16px !important;
        order: 2;
    }
    
    .left_div h2 {
        font-size: 1.8rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }
    
    .left_div h4 {
        font-size: 1rem;
        line-height: 1.5;
        min-height: auto;
        padding: 0;
        margin-bottom: 1.5rem;
    }
    
    .left_div img {
        width: 100%;
        height: 200px;
        border-radius: 16px;
        margin: 0 auto;
    }
    
    .form_div {
        order: 1;
        padding: 24px 20px !important;
        margin-top: 0;
        border-radius: 12px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    }
    
    .form_div input, 
    .form_div textarea, 
    .form_div select {
        padding: 14px 16px;
        font-size: 16px; /* Prevents zoom on iOS */
        border-radius: 8px;
    }
    
    .form_div .submit {
        width: 100%;
        padding: 16px 24px;
        font-size: 16px;
        font-weight: 600;
        background: linear-gradient(135deg, #EB1000 0%, #d10000 100%);
        border: none;
        border-radius: 8px;
        color: white;
        cursor: pointer;
        transition: all 0.3s ease;
        margin-top: 1rem;
    }
    
    .form_div .submit:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(235, 16, 0, 0.3);
    }
    
    .form_div .error {
        font-size: 14px;
        margin-top: 4px;
        margin-bottom: 8px;
    }
    
    .form_div .terms {
        font-size: 13px;
        line-height: 1.4;
        margin-top: 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 12px;
    }
    
    .nav-logo .logo-text {
        font-size: 18px;
    }
    
    .nav-logo .logo-img {
        width: 24px;
        height: 24px;
    }
    
    .btn {
        padding: 8px 16px;
        font-size: 13px;
    }
    
    .main_div {
        top: 90px;
        padding: 0 12px 12px 12px;
    }
    
    .left_div {
        padding: 40px 12px 0 12px !important;
    }
    
    .left_div h2 {
        font-size: 1.6rem;
    }
    
    .left_div h4 {
        font-size: 0.95rem;
    }
    
    .left_div img {
        height: 160px;
    }
    
    .form_div {
        padding: 20px 16px !important;
        border-radius: 10px;
    }
    
    .form_div input, 
    .form_div textarea, 
    .form_div select {
        padding: 12px 14px;
        font-size: 16px;
    }
    
    .form_div .submit {
        padding: 14px 20px;
        font-size: 15px;
    }
    
    .footer {
        padding: 0 0 16px 0;
    }
    
    .footer-content {
        gap: 1.5rem;
    }
    
    .footer-title {
        font-size: 1rem;
    }
    
    .footer-links a {
        font-size: 0.9rem;
    }
}

@media (max-width: 360px) {
    .left_div h2 {
        font-size: 1.4rem;
    }
    
    .left_div h4 {
        font-size: 0.9rem;
    }
    
    .left_div img {
        height: 140px;
    }
    
    .form_div {
        padding: 16px 12px !important;
    }
    
    .form_div input, 
    .form_div textarea, 
    .form_div select {
        padding: 10px 12px;
    }
    
    .form_div .submit {
        padding: 12px 16px;
        font-size: 14px;
    }
}

/* Tablet specific styles */
@media (min-width: 769px) and (max-width: 1024px) {
    .main_container {
        gap: 3rem;
    }
    
    .benefits_div {
        width: 90%;
    }
    
    .left_div {
        padding: 0 20px !important;
    }
    
    .left_div h2 {
        font-size: 2rem;
    }
    
    .left_div h4 {
        font-size: 1.1rem;
        min-height: 100px;
    }
    
    .left_div img {
        height: 180px;
    }
    
    .form_div {
        padding: 28px 24px !important;
    }
}

/* Landscape mobile orientation */
@media (max-width: 768px) and (orientation: landscape) {
    .main_div {
        top: 80px;
    }
    
    .main_container {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    
    .left_div {
        order: 1;
    }
    
    .form_div {
        order: 2;
    }
    
    .left_div h4 {
        min-height: 60px;
    }
    
    .left_div img {
        height: 120px;
    }
}

/* High DPI displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .left_div img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Accessibility improvements for mobile */
@media (max-width: 768px) {
    .form_div .submit {
        min-height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .btn {
        min-height: 44px;
    }
    
    .nav-link {
        min-height: 44px;
        display: flex;
        align-items: center;
    }
    
    .form_div input, 
    .form_div textarea, 
    .form_div select {
        min-height: 44px;
    }
}

/* Touch-friendly improvements */
@media (hover: none) and (pointer: coarse) {
    .form_div .submit:hover {
        transform: none;
    }
    
    .btn:hover {
        transform: none;
    }
    
    .form_div .submit:active {
        transform: scale(0.98);
    }
    
    .btn:active {
        transform: scale(0.98);
    }
}

/* Form validation and focus states */
@media (max-width: 768px) {
    .form_div input:invalid,
    .form_div textarea:invalid,
    .form_div select:invalid {
        border-color: #800900;
    }
    
    /* Improve select dropdown appearance on mobile */
    .form_div select {
        background-image: url('data:image/svg+xml;utf8,<svg fill="%23666" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>');
        background-size: 20px;
        background-position: right 12px center;
        background-repeat: no-repeat;
        padding-right: 40px;
    }
}

/* Loading state improvements for mobile */
@media (max-width: 768px) {
    .loading {
        top: calc(50% - 15px);
        left: calc(50% - 15px);
        width: 30px;
        height: 30px;
        border-width: 3px;
    }
}

/* Success state improvements */
@media (max-width: 768px) {
    .success {
        text-align: center;
        padding: 2rem 1rem;
    }
    
    .success h2 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .success p {
        font-size: 1rem;
        line-height: 1.5;
    }
}
  