/* === GLOBAL VISA & TRAVEL SERVICES CENTRE LTD - Modern Corporate Theme === */

/* ---- Base Reset ---- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', 'Segoe UI', Roboto, sans-serif;
  color: #1e293b;
  background-color: #ffffff;
  line-height: 1.7;
}

h1,
h2,
h3 {
  color: #0f172a;
  margin-bottom: 12px;
}

a {
  text-decoration: none;
  color: #2563eb;
  transition: color 0.3s ease;
}

a:hover {
  color: #1e40af;
}

/* ---- Layout Containers ---- */
.container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 0;
}

/* ---- Hero Section ---- */
.hero-section {
  background: linear-gradient(135deg, #0f172a, #1e3a8a);
  color: #ffffff;
  text-align: center;
  padding: 60px 20px;
}

.hero-section.hero-section-small {
  padding: 60px 20px;
}

.logo-container {
  margin-bottom: 30px;
}

.logo-container a {
  display: inline-block;
  transition: transform 0.3s ease;
}

.logo-container a:hover {
  transform: scale(1.05);
}

.site-logo {
  max-width: 200px;
  height: auto;
  display: block;
  margin: 0 auto;
}

.hero-section h1 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #ffffff;
}

.hero-section .subheadline {
  font-size: 1.1rem;
  max-width: 800px;
  margin: 0 auto 30px;
  opacity: 0.9;
}

.cta-button {
  background: #2563eb;
  color: #fff;
  padding: 14px 36px;
  border-radius: 8px;
  font-weight: 600;
  display: inline-block;
  transition: background 0.3s ease;
}

.cta-button:hover {
  background: #1e40af;
}

/* ---- About Section ---- */
.about-section {
  background: #f8fafc;
}

.about-section h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.about-section p {
  margin-bottom: 16px;
  font-size: 1.05rem;
}

/* ---- Services Section ---- */
.services-section {
  background: #ffffff;
}

.services-section h2 {
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 40px;
}

.service {
  margin-bottom: 30px;
  background: #f9fafb;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease, box-shadow 0.3s ease;
}

.service:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.service h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #1e3a8a;
}

/* ---- Partnership Section ---- */
.partners-section {
  background: #f8fafc;
}

.partners-section h2 {
  text-align: center;
  margin-bottom: 20px;
}

.partners-section p {
  text-align: center;
  margin-bottom: 20px;
  font-size: 1.05rem;
}

.partners-section ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.partners-section li {
  background: #ffffff;
  padding: 14px 20px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  font-weight: 500;
}

/* ---- Advantages Section ---- */
.advantages-section {
  background: #ffffff;
  text-align: center;
}

.advantages-section h2 {
  margin-bottom: 20px;
}

.advantages-section ul {
  list-style: none;
  max-width: 700px;
  margin: 0 auto;
  text-align: left;
}

.advantages-section li {
  padding: 10px 0;
  font-size: 1.05rem;
}

/* ---- Contact Section ---- */
.contact-section {
  background: #f8fafc;
}

.contact-section h2 {
  text-align: center;
  margin-bottom: 20px;
}

.contact-section p {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 30px;
}

.contact-info {
  text-align: center;
  margin-bottom: 40px;
}

.contact-info p {
  margin-bottom: 10px;
  font-size: 1rem;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  border: 1px solid #cbd5e1;
  border-radius: 6px;
  font-size: 1rem;
  width: 100%;
}

.contact-form button {
  background: #2563eb;
  color: #fff;
  border: none;
  padding: 14px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-form button:hover {
  background: #1e40af;
}

/* ---- Footer ---- */
.footer {
  background: #0f172a;
  color: #e2e8f0;
  text-align: center;
  padding: 30px 0;
  font-size: 0.9rem;
}

.footer-logo {
  margin-bottom: 20px;
}

.footer-logo-img {
  max-width: 150px;
  height: auto;
  opacity: 0.9;
  transition: opacity 0.3s ease;
}

.footer-logo-img:hover {
  opacity: 1;
}

.footer-menu {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-menu a {
  color: #e2e8f0;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  padding: 5px 10px;
}

.footer-menu a:hover {
  color: #60a5fa;
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
  .hero-section h1 {
    font-size: 1.7rem;
  }

  .site-logo {
    max-width: 150px;
  }

  .footer-logo-img {
    max-width: 120px;
  }

  .partners-section ul {
    flex-direction: column;
  }

  .footer-menu {
    flex-direction: column;
    gap: 12px;
  }
}