/* ============================== */
/* 🌐 CARETRIP GLOBAL UI STYLES  */
/* ============================== */

/* Reset & Base */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', 'Segoe UI', sans-serif;
  font-size: 16px;
  background-color: #ffffff;
  color: #222;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  color: #203764;
  margin-bottom: 0.5em;
}

p {
  margin-bottom: 1em;
}

a {
  color: #203764;
  text-decoration: none;
}

a:hover {
  color: #203764;
  text-decoration: none;
}

/* Container */
.cts-container {
  width: 100%;
  max-width: 1200px;
  margin: auto;
}

/* Utilities */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }

.p-1 { padding: 8px; }
.p-2 { padding: 16px; }
.p-3 { padding: 24px; }

/* Buttons */
.btn {
  display: inline-block;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 6px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  border: none;
}

.btn-primary {
  background-color: #203764;
  color: #fff;
}

.btn-primary:hover {
  background-color: #162a52;
}

.btn-outline {
  background: transparent;
  border: 2px solid #203764;
  color: #203764;
}

.btn-outline:hover {
  background-color: #203764;
  color: #fff;
}

/* Forms */
input, select, textarea {
  width: 100%;
  padding: 10px;
  margin-top: 6px;
  margin-bottom: 16px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-family: inherit;
}

input:focus,
select:focus,
textarea:focus {
  border-color: #203764;
  outline: none;
}

/* Header & Navigation */
header, .navbar {
  background-color: #ffffff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  padding: 10px 0;
}

.navbar .logo img {
  height: 40px;
}

.navbar .nav-links {
  display: flex;
  gap: 20px;
}

.navbar .nav-links a {
  color: #203764;
  font-weight: 600;
}

/* Responsive Layout */
@media (max-width: 768px) {
  .container {
    padding: 0 10px;
  }

  .navbar .nav-links {
    flex-direction: column;
    gap: 10px;
  }

  .btn {
    width: 100%;
  }
}
