/* =================================
       CSS VARIABLES (DESIGN TOKENS)
       ================================= */
:root {
  /* Colors */
  --primary-blue: #2563eb;
  --primary-blue-dark: #1e40af;
  --primary-blue-darker: #1d4ed8;
  --primary-orange: #ff8c00;
  --text-dark: #1a1a1a;
  --text-medium: #333;
  --text-gray: #666;
  --text-light-gray: #6b6b6b;
  --text-lighter-gray: #888;
  --text-lightest-gray: #999;
  --bg-light: #f8f9fa;
  --bg-lighter: #f5f5f5;
  --bg-white: #ffffff;
  --bg-off-white: #fafbfc;
  --border-gray: #e5e7eb;
  --border-light: #ddd;
  --border-white: #fff;
  --color-black: #000000;

  /* Spacing */
  --gap-xs: 5px;
  --gap-sm: 10px;
  --gap-md: 15px;
  --gap-lg: 20px;
  --gap-xl: 30px;
  --gap-2xl: 40px;
  --gap-3xl: 50px;
  --gap-4xl: 60px;
  --gap-5xl: 80px;

  /* Font Sizes */
  --font-xs: 12px;
  --font-sm: 14px;
  --font-base: 15px;
  --font-md: 16px;
  --font-lg: 17px;
  --font-xl: 18px;
  --font-2xl: 21px;
  --font-3xl: 28px;
  --font-4xl: 36px;
  --font-5xl: 40px;
  --font-6xl: 48px;
  --font-7xl: 52px;
  --font-8xl: 56px;

  /* Border Radius */
  --radius-none: 0;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 10px;
  --radius-xl: 12px;
  --radius-2xl: 25px;
  --radius-full: 50%;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;

  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 4px 16px rgba(0, 0, 0, 0.08);

  /* Container */
  --container-max-width: 1400px;
}

/* =================================
       GLOBAL RESET
       ================================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  font-family: "Roboto", sans-serif;
  line-height: 1.6;
  background-color: var(--bg-lighter);
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Better text rendering and word breaking */
body {
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

/* Ensure all text elements can break properly on mobile */
p,
h1,
h2,
h3,
h4,
h5,
h6,
span,
a,
li {
  word-wrap: break-word;
  overflow-wrap: break-word;
}

/* Prevent long URLs or text from breaking layout */
a,
span {
  overflow-wrap: anywhere;
}

/* =================================
       UTILITY CLASSES
       ================================= */
.container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 var(--gap-4xl);
}

/* Responsive container padding */
@media (max-width: 768px) {
  .container {
    padding: 0 var(--gap-lg);
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 var(--gap-md);
  }
}

.btn {
  padding: var(--gap-md) var(--gap-xl);
  border: none;
  border-radius: var(--radius-md);
  font-size: var(--font-md);
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition-base);
  display: inline-block;
  text-decoration: none;
  text-align: center;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-primary {
  background: var(--primary-blue);
  color: var(--bg-white);
}

.btn-primary:hover {
  background: var(--primary-blue-dark);
}

.section-title {
  font-size: var(--font-6xl);
  font-weight: 600;
  margin-bottom: var(--gap-3xl);
  color: var(--text-dark);
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

/* =================================
       HEADER STYLES
       ================================= */
header {
  background: var(--bg-light);
  padding: 1px 1px;
  box-shadow: var(--shadow-md);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--border-gray);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: var(--container-max-width);
  margin: 0 auto;
}

.logo-section {
  display: flex;
  align-items: center;
  gap: 15px;
  order: 1;
}

.logo {
  width: 180px;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

nav {
  order: 2;
  flex: 1;
  display: flex;
  justify-content: center;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 50px;
  margin: 0;
  padding: 0;
}

nav ul li {
  position: relative;
}

nav ul li a {
  text-decoration: none;
  color: var(--text-dark);
  font-size: var(--font-lg);
  font-weight: 500;
  transition: color var(--transition-base);
  letter-spacing: 0.2px;
}

nav ul li a:hover,
nav ul li a.active {
  color: var(--primary-blue);
}

.header-right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--gap-xs);
  order: 3;
}

.b2b-login {
  color: var(--primary-blue);
  text-decoration: none;
  font-weight: 600;
  font-size: var(--font-sm);
  transition: opacity var(--transition-base);
}

.b2b-login:hover {
  opacity: 0.8;
}

.country-select {
  padding: var(--gap-xs) var(--gap-lg);
  border: 2px solid var(--text-medium);
  border-radius: var(--radius-2xl);
  font-size: var(--font-sm);
  cursor: pointer;
  background: var(--bg-white);
  color: var(--text-medium);
  font-weight: 500;
  min-width: 180px;
  transition: all var(--transition-base);
  outline: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23FFA500' d='M10.293 3.293L6 7.586 1.707 3.293A1 1 0 00.293 4.707l5 5a1 1 0 001.414 0l5-5a1 1 0 10-1.414-1.414z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  padding-right: 40px;
}

.country-select:hover {
  border-color: var(--primary-blue);
}

.country-select:focus {
  border-color: var(--primary-blue);
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: var(--gap-sm);
  z-index: 1001;
  background: none;
  border: none;
  position: relative;
  transition: transform 0.3s ease;
}

.mobile-menu-btn:hover {
  transform: scale(1.05);
}

.mobile-menu-btn:active {
  transform: scale(0.95);
}

.mobile-menu-btn span {
  width: 25px;
  height: 3px;
  background-color: var(--text-dark);
  margin: 3px 0;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  border-radius: 3px;
  display: block;
}

.mobile-menu-btn.active span {
  background-color: var(--primary-blue);
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(-10px);
}

.mobile-menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Better touch targets for mobile */
@media (hover: none) and (pointer: coarse) {
  /* Ensure minimum touch target size */
  a,
  button,
  input,
  select,
  textarea {
    min-height: 44px;
    min-width: 44px;
  }

  nav ul li a {
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .carousel-nav {
    min-width: 48px;
    min-height: 48px;
  }

  /* Prevent text selection on touch devices */
  .mobile-menu-btn,
  .carousel-nav,
  .service-card {
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    user-select: none;
  }

  /* Improve scrolling on touch devices */
  .carousel-content {
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
  }
}
/* =================================
          FOOTER STYLES
          ================================= */
footer {
  background: linear-gradient(
    135deg,
    var(--primary-blue),
    var(--primary-orange)
  );
  padding: var(--gap-4xl) var(--gap-lg);
  color: var(--bg-white);
  text-align: left;
}

.footer-content {
  max-width: var(--container-max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(320px, 480px));
  gap: var(--gap-4xl);
  column-gap: clamp(120px, 15vw, 280px);
  padding: 0 var(--gap-lg);
  justify-content: center;
  align-items: start;
}

.footer-left {
  order: 1;
  grid-column: 1;
  justify-self: stretch;
  max-width: 480px;
  width: 100%;
  margin: 0;
  text-align: left;
}

.footer-left h3 {
  font-size: 28px;
  margin-bottom: 20px;
  margin-right: 0;
  margin-left: 0;
}

.footer-left p {
  margin-bottom: 15px;
  margin-right: 0;
  margin-left: 0;
  line-height: 1.8;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
  justify-content: flex-start;
  margin-left: 0;
}

.social-links a {
  color: white;
  font-size: 24px;
  transition: opacity 0.3s;
}

.social-links a:hover {
  opacity: 0.7;
}

.footer-right {
  order: 2;
  grid-column: 2;
  justify-self: end;
  max-width: 380px;
  width: 100%;
  margin: 0;
  text-align: left;
}

.footer-right h3 {
  font-size: 26px;
  margin-bottom: 18px;
  margin-right: 0;
  margin-left: 0;
}

.mailing-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-left: 0;
  margin-right: 0;
  width: 100%;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.form-group label {
  font-size: 13px;
  font-weight: 500;
  text-align: left;
}

.mailing-form input {
  padding: 10px 12px;
  border: 1px solid #fff;
  border-radius: 8px;
  font-size: 15px;
  background: #ffffff;
  color: #333;
  min-height: 42px;
  width: 100%;
  box-sizing: border-box;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  margin-top: 5px;
}

.checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  cursor: pointer;
  transform: scale(1);
}

.subscribe-btn {
  background: #2563eb;
  color: white;
  padding: 12px 15px;
  border: none;
  border-radius: 8px;
  font-size: 17px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
  margin-top: 10px;
  min-height: 44px;
  width: 100%;
  touch-action: manipulation;
}

.subscribe-btn:hover {
  background: #1e40af;
}

.copyright {
  text-align: center;
  margin-top: 40px;
  opacity: 0.9;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 40px;
  padding-top: 30px;
  text-align: center;
}

.legal-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  margin-bottom: 20px;
  flex-wrap: nowrap;
}

.legal-links a {
  color: white;
  text-decoration: none;
  font-size: 14px;
  transition: opacity 0.3s;
  white-space: nowrap;
}

.legal-links a:hover {
  opacity: 0.8;
}

.carousel-content {
  display: flex;
  transition: transform 0.5s ease;
  width: 100%;
}

.partner-logo {
  min-width: 150px;
  height: 150px;
  background: transparent;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin: 0 5px;
  box-shadow: none;
  flex-shrink: 0;
}

.partner-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.fallback-text {
  font-size: 14px;
  font-weight: bold;
  color: #333;
  text-align: center;
  display: none;
}

.partner-logo img:not([src]),
.partner-logo img[src=""] {
  display: none !important;
}

.partner-logo:has(img[style*="display: none"]) .fallback-text {
  display: block;
}

/* Responsive Design - Tablets and below */
@media (max-width: 968px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: var(--gap-xl);
    justify-items: center;
  }

  .footer-left,
  .footer-right {
    grid-column: auto;
    max-width: 520px;
    margin: 0 auto;
    text-align: center;
    justify-self: stretch;
  }

  .footer-left h3,
  .footer-left p,
  .social-links {
    margin-left: 0;
    margin-right: 0;
  }

  .footer-right h3,
  .mailing-form {
    margin-left: 0;
    margin-right: 0;
  }

  nav ul {
    gap: 20px;
  }

  nav ul li a {
    font-size: var(--font-md);
  }

  .hero h1 {
    font-size: 35px;
  }

  .header-container {
    flex-wrap: wrap;
    padding: 10px 20px;
  }

  .logo {
    width: 150px;
  }
}

/* Responsive Design - Mobile landscape and below */
@media (max-width: 768px) {
  header {
    padding: 5px 0;
  }

  .header-container {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px;
    row-gap: 10px;
    padding: 12px 15px;
    position: relative;
    align-items: center;
  }

  .logo-section {
    order: 1;
    flex: 0 0 auto;
    justify-content: flex-start;
    align-items: center;
  }

  .logo {
    width: 120px;
  }

  .mobile-menu-btn {
    display: flex;
    order: 3;
    margin-left: auto;
    padding-right: 0;
    align-self: center;
  }

  .header-right {
    order: 2;
    flex: 0 1 180px;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 6px;
    margin: 0 auto;
    width: auto;
    min-width: 0;
    justify-content: center;
  }

  .b2b-login {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border-radius: 0;
    border: none;
    background: transparent;
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 0;
    line-height: 1.2;
  }

  .country-select {
    padding: var(--gap-xs) 10px;
    padding-right: 28px;
    min-width: 0;
    max-width: 160px;
    width: 100%;
    background-position: right 12px center;
    margin: 0 auto;
  }

  nav {
    order: 4;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    position: absolute;
    top: calc(100% + 8px);
    left: 12px;
    right: 12px;
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(37, 99, 235, 0.12);
    padding: 0;
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    z-index: 10;
    transition: max-height 0.35s ease, opacity 0.2s ease, transform 0.2s ease;
  }

  nav.active {
    max-height: 500px;
    overflow: visible;
    padding: 12px 0;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  nav ul {
    flex-direction: column;
    gap: 0;
    padding: 0;
    text-align: center;
  }

  nav ul li {
    width: 100%;
    border-bottom: 1px solid var(--border-gray);
  }

  nav ul li:last-child {
    border-bottom: none;
  }

  nav ul li a {
    font-size: 15px;
    padding: 13px 24px;
    display: block;
    width: 100%;
    border-radius: 0;
  }

  nav ul li a:hover,
  nav ul li a.active {
    background-color: rgba(37, 99, 235, 0.08);
  }

  footer {
    padding: 40px 20px;
    text-align: center;
  }

  .footer-content {
    gap: 32px;
  }

  .footer-left,
  .footer-right {
    width: 100%;
  }

  .footer-left h3,
  .footer-left p,
  .footer-right h3,
  .mailing-form,
  .social-links {
    margin-left: 0;
    margin-right: 0;
  }

  .social-links {
    justify-content: center;
  }

  .mailing-form {
    width: 100%;
    align-items: stretch;
  }

  .footer-left h3,
  .footer-right h3 {
    font-size: 24px;
    margin-bottom: 18px;
  }

  .footer-left p {
    font-size: 14px;
    margin-bottom: 12px;
    line-height: 1.7;
  }

  .social-links {
    margin-top: 18px;
  }

  .social-links a {
    font-size: 22px;
  }

  .mailing-form input {
    font-size: 14px;
    padding: 12px;
  }

  .form-group label {
    font-size: 14px;
    margin-bottom: 5px;
  }

  .checkbox-label {
    font-size: 13px;
    align-items: center;
  }

  .checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 0;
    flex-shrink: 0;
  }

  .subscribe-btn {
    font-size: 16px;
    padding: 14px;
    margin-top: 10px;
  }

  .legal-links {
    gap: 16px;
  }

  .legal-links a {
    font-size: 13px;
  }

  .copyright {
    font-size: 13px;
    margin-top: 20px;
  }

  .footer-bottom {
    padding-top: 25px;
    margin-top: 30px;
  }
}

/* Responsive Design - Mobile portrait */
@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .header-container {
    padding: 10px 12px;
    gap: 10px;
    row-gap: 10px;
    align-items: center;
  }

  .footer-right,
  .mailing-form {
    display: none;
  }

  .footer-left {
    text-align: center;
  }

  .logo {
    width: 100px;
  }

  .logo-section {
    flex: 0 0 auto;
  }

  .mobile-menu-btn {
    padding-right: 0;
    margin-left: auto;
    align-self: center;
  }

  .header-right {
    order: 2;
    flex: 0 1 170px;
    gap: 6px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: auto;
    margin: 0 auto;
  }

  .b2b-login {
    font-size: 13px;
    padding: 0;
  }

  .country-select {
    padding: var(--gap-xs) 10px;
    padding-right: 26px;
    min-width: 0;
    max-width: 150px;
    width: 100%;
    background-position: right 12px center;
    margin: 0 auto;
  }

  .mobile-menu-btn span {
    width: 22px;
    height: 2.5px;
  }

  nav ul {
    padding: 0;
  }

  nav ul li a {
    font-size: 14px;
    padding: 12px 20px;
  }

  footer {
    padding: 35px 15px;
  }

  .footer-content {
    gap: 30px;
  }

  .footer-left,
  .footer-right {
    width: 100%;
    text-align: center;
  }

  .footer-left h3,
  .footer-left p,
  .footer-right h3,
  .mailing-form,
  .social-links {
    margin-left: 0;
    margin-right: 0;
  }

  .footer-left h3,
  .footer-right h3 {
    font-size: 21px;
    margin-bottom: 14px;
  }

  .footer-left p {
    font-size: 14px;
    margin-bottom: 12px;
    line-height: 1.6;
  }

  .social-links {
    justify-content: center;
    margin-top: 15px;
  }

  .social-links a {
    font-size: 22px;
  }

  .mailing-form {
    width: 100%;
    max-width: 100%;
  }

  .mailing-form input {
    font-size: 14px;
    padding: 12px;
  }

  .form-group label {
    font-size: 14px;
    margin-bottom: 5px;
  }

  .checkbox-label {
    font-size: 13px;
    align-items: center;
  }

  .checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 0;
    flex-shrink: 0;
  }

  .subscribe-btn {
    font-size: 16px;
    padding: 14px;
    margin-top: 12px;
  }

  .legal-links {
    gap: 14px;
  }

  .legal-links a {
    font-size: 12px;
  }

  .copyright {
    font-size: 12px;
    margin-top: 20px;
  }

  .footer-bottom {
    padding-top: 20px;
    margin-top: 25px;
  }
}

/* Additional mobile improvements for small screens */
@media (max-width: 600px) {
  .footer-right h3,
  .mailing-form {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .footer-left h3,
  .footer-left p,
  .social-links {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .footer-content {
    padding: 0 var(--gap-md);
  }
}

/* Responsive Design - Small mobile devices */
@media (max-width: 480px) {
  .header-container {
    gap: 8px;
    row-gap: 10px;
    padding: 10px 12px;
    align-items: center;
  }

  .logo {
    width: 90px;
  }

  .logo-section {
    flex: 0 0 auto;
  }

  .mobile-menu-btn {
    padding-right: 0;
    margin-left: auto;
    align-self: center;
  }

  .header-right {
    order: 2;
    flex: 0 1 160px;
    gap: 6px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: auto;
    margin: 0 auto;
  }

  .b2b-login {
    font-size: 13px;
    padding: 0;
  }

  .country-select {
    width: 100%;
    max-width: 140px;
    font-size: 13px;
    padding: 6px 12px;
    padding-right: 26px;
    min-width: 110px;
    background-position: right 10px center;
    margin: 0 auto;
  }

  nav ul li a {
    font-size: 14px;
    padding: 12px 18px;
  }

  footer {
    padding: 32px 14px;
    text-align: center;
  }

  .footer-content {
    gap: 28px;
  }

  .footer-left,
  .footer-right {
    text-align: center;
  }

  .footer-left h3,
  .footer-right h3 {
    font-size: 20px;
    margin-bottom: 12px;
  }

  .footer-left h3,
  .footer-left p,
  .footer-right h3,
  .mailing-form,
  .social-links {
    margin-left: 0;
    margin-right: 0;
  }

  .social-links {
    justify-content: center;
  }

  .mailing-form {
    width: 100%;
    align-items: stretch;
  }

  .footer-left p {
    font-size: 13px;
    margin-bottom: 12px;
    line-height: 1.6;
  }

  .legal-links {
    gap: 12px;
  }

  .legal-links a {
    font-size: 12px;
  }

  .social-links {
    margin-top: 12px;
  }

  .social-links a {
    font-size: 20px;
  }

  .mailing-form input {
    font-size: 13px;
    padding: 11px;
  }

  .form-group label {
    font-size: 13px;
    margin-bottom: 4px;
  }

  .checkbox-label {
    font-size: 12px;
    align-items: center;
  }

  .checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 0;
    flex-shrink: 0;
  }

  .subscribe-btn {
    font-size: 15px;
    padding: 13px;
    margin-top: 10px;
  }

  .legal-links a {
    font-size: 12px;
  }

  .copyright {
    font-size: 11px;
    margin-top: 18px;
  }

  .footer-bottom {
    padding-top: 18px;
    margin-top: 22px;
  }

  .section-title {
    font-size: var(--font-4xl);
  }
}

/* Prevent horizontal scroll on all elements */
* {
  max-width: 100%;
}

/* Better image rendering */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Fix for map and iframe elements */
iframe {
  max-width: 100%;
}

.map-section {
  width: 100%;
  overflow: hidden;
}

.map-section iframe {
  width: 100% !important;
  max-width: 100% !important;
}

/* Optimize form inputs for mobile */
input,
select,
textarea {
  font-size: 16px; /* Prevents zoom on iOS */
  max-width: 100%;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

input[type="checkbox"] {
  -webkit-appearance: checkbox;
  -moz-appearance: checkbox;
  appearance: checkbox;
  width: 18px;
  height: 18px;
  cursor: pointer;
}

/* Improve select dropdown on mobile */
select {
  background-color: white;
  cursor: pointer;
}

/* Better button styling */
button {
  cursor: pointer;
  touch-action: manipulation;
}

/* Prevent content shift on page load */
.services-grid,
.partners-carousel {
  will-change: auto;
}

/* Responsive map fixes */
@media (max-width: 768px) {
  .map-section iframe {
    height: 300px !important;
  }
}

@media (max-width: 600px) {
  .map-section iframe {
    height: 250px !important;
  }
}

@media (max-width: 480px) {
  .map-section iframe {
    height: 200px !important;
  }
}
