@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=Playfair+Display:wght@600;700&display=swap');

/* ========================================
   CSS VARIABLES & ROOT STYLES
   ======================================== */
:root {
  /* Premium Palette */
  --color-primary: #1b8a3d;
  --color-primary-dark: #0d5a26;
  --color-secondary: #fcb045;
  --color-secondary-light: #fd1d1d;
  --color-accent: #2aa25d;

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #0d5a26, #1b8a3d, #2aa25d);
  --gradient-gold: linear-gradient(to right, #fcb045, #fd1d1d);
  --gradient-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));

  /* Neutrals (Light Mode) */
  --color-text-main: #1f2937;
  --color-text-light: #6b7280;
  --color-bg-light: #f9fafb;
  --color-white: #ffffff;
  --color-black: #000000;
  --card-bg: #ffffff;
  --border-color: rgba(0, 0, 0, 0.1);
  --navbar-bg: rgba(255, 255, 255, 0.95);

  /* Typography */
  --font-sans: 'Outfit', sans-serif;
  --font-serif: 'Playfair Display', serif;

  /* Spacing */
  --container-width: 1200px;
  --header-height: 90px;

  /* Effects */
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-glow: 0 0 20px rgba(252, 176, 69, 0.3);
  --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Dark Mode */
body.dark-mode {
  --color-text-main: #f9fafb;
  --color-text-light: #e5e7eb;
  --color-bg-light: #111827;
  --color-white: #1f2937;
  --card-bg: #1f2937;
  --color-black: #ffffff;
  --border-color: rgba(255, 255, 255, 0.1);
  --navbar-bg: rgba(17, 24, 39, 0.95);
  --color-primary: #60a5fa;
  --color-primary-dark: #93c5fd;
  --color-secondary: #fbbf24;
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.5);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 20px rgba(252, 176, 69, 0.1);
}

/* ========================================
   GLOBAL STYLES
   ======================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  color: var(--color-text-main);
  line-height: 1.6;
  background-color: var(--color-white);
  overflow-x: hidden;
  transition: background-color 0.3s, color 0.3s;
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1.2;
  font-weight: 700;
}

h1 { font-size: 3.5rem; letter-spacing: -0.02em; }
h2 { font-size: 2.5rem; margin-bottom: 1rem; }
h3 { font-size: 1.5rem; }

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ========================================
   UTILITIES
   ======================================== */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  font-size: 1rem;
}

.btn-primary {
  background: var(--color-primary);
  color: #fff;
}

.btn-primary:hover {
  background: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-secondary {
  background: var(--color-secondary);
  color: #000;
}

.btn-secondary:hover {
  background: #f9a835;
  transform: translateY(-2px);
}

.btn-outline-white {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}

.btn-outline-white:hover {
  background: #fff;
  color: var(--color-primary);
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 2.5rem;
  color: var(--color-primary);
}

/* ========================================
   TOP BAR
   ======================================== */
.top-bar {
  background: var(--gradient-primary);
  color: #fff;
  padding: 10px 0;
  font-size: 0.9rem;
  font-weight: 500;
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.contact-info span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.email-info a {
  color: #fff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: opacity 0.3s;
}

.email-info a:hover {
  opacity: 0.8;
  text-decoration: underline;
}

.top-right-utilities {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.theme-toggle {
  background: none;
  border: none;
  color: #fff;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  transition: opacity 0.3s;
  padding: 5px;
}

.theme-toggle:hover {
  opacity: 0.8;
  transform: rotate(15deg);
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icons a {
  color: #fff;
  transition: opacity 0.3s;
}

.social-icons a:hover {
  opacity: 0.8;
}

/* ========================================
   NAVBAR
   ======================================== */
.navbar {
  background: var(--navbar-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  height: 90px;
  box-shadow: var(--shadow-sm);
  display: flex;
  justify-content: center;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 999;
  border-bottom: 1px solid var(--border-color);
}

.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  gap: 20px;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  height: 100%;
}

.nav-logo-img {
  height: 70px;
  width: auto;
  object-fit: contain;
}

.menu-icon {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: var(--color-text-main);
  background: none;
  border: none;
}

.nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 20px;
  flex: 1;
}

.nav-item { position: relative; }

.nav-links {
  color: var(--color-text-main);
  text-decoration: none;
  font-weight: 500;
  padding: 10px 0;
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
}

.nav-links:hover {
  color: var(--color-primary);
}

.admin-btn {
  background: none;
  border: none;
  cursor: pointer;
}

.nav-links-mobile { display: none; }

.dropdown-menu {
  position: absolute;
  top: 70px;
  background: var(--card-bg);
  width: 180px;
  list-style: none;
  border-radius: 4px;
  box-shadow: var(--shadow-md);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.nav-item:hover .dropdown-menu {
  opacity: 1;
  pointer-events: auto;
}

.dropdown-link {
  display: block;
  padding: 10px 16px;
  color: var(--color-text-main);
  text-decoration: none;
  transition: background 0.2s;
}

.dropdown-link:hover {
  background: var(--color-bg-light);
  color: var(--color-primary);
}

.nav-btn {
  margin-left: 20px;
}

/* ========================================
   ADMIN MODAL
   ======================================== */
.admin-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  animation: fadeIn 0.3s;
}

.admin-modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.admin-modal-content {
  background-color: var(--card-bg);
  padding: 2rem;
  border-radius: 8px;
  width: 90%;
  max-width: 400px;
  box-shadow: var(--shadow-lg);
}

.admin-modal-close {
  color: var(--color-text-main);
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

.admin-modal-close:hover {
  color: var(--color-primary);
}

.admin-modal-form {
  margin: 1.5rem 0;
}

.admin-modal-form .form-group {
  margin-bottom: 1rem;
}

.admin-modal-form label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.admin-modal-form input {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  font-size: 1rem;
}

.admin-modal-form button {
  width: 100%;
  margin-top: 1rem;
}

.modal-error {
  color: #ef4444;
  font-size: 0.9rem;
  margin-top: 1rem;
}

.modal-link {
  text-align: center;
  margin-top: 1rem;
}

.modal-link a {
  color: var(--color-primary);
  font-weight: 600;
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero-container {
  position: relative;
  height: 90vh;
  max-height: 800px;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-bg-image {
  position: absolute;
  top: 0;
  right: 0;
  width: 70%;
  height: 100%;
  z-index: 1;
}

.hero-bg-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay-green {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: var(--gradient-primary);
  clip-path: polygon(0 0, 55% 0, 35% 100%, 0% 100%);
  opacity: 0.95;
  mix-blend-mode: multiply;
}

.hero-overlay-yellow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-secondary);
  z-index: 1;
  clip-path: polygon(55% 0, 65% 0, 35% 100%, 25% 100%);
}

.hero-content {
  position: relative;
  z-index: 10;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-text-box {
  max-width: 600px;
  padding-left: 2rem;
  color: #fff;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
  font-size: 1.3rem;
  font-family: var(--font-sans);
  font-weight: 300;
  margin-bottom: 2.5rem;
  max-width: 80%;
  opacity: 0.9;
}

.hero-cta {
  display: flex;
  gap: 1.5rem;
}

.hero-bottom-text {
  position: absolute;
  bottom: 30px;
  right: 50px;
  color: #fff;
  font-size: 1.2rem;
}

.text-secondary {
  color: var(--color-secondary);
}

/* ========================================
   ABOUT SECTION
   ======================================== */
.about-section {
  padding: 4rem 0;
  background: var(--color-white);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-text h2 {
  color: var(--color-primary);
  margin-bottom: 1.5rem;
}

.about-text p {
  color: var(--color-text-light);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.feature-item i {
  color: var(--color-primary);
  font-size: 1.5rem;
}

.about-image img {
  border-radius: 8px;
  box-shadow: var(--shadow-lg);
}

/* ========================================
   DESTINATIONS SECTION
   ======================================== */
.destinations-section {
  padding: 4rem 0;
  background: var(--color-bg-light);
}

.destinations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.destination-card {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  height: 300px;
}

.destination-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.destination-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.destination-card:hover img {
  transform: scale(1.1);
}

.destination-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  color: #fff;
  padding: 2rem 1rem 1rem;
}

.destination-info h3 {
  margin-bottom: 0.5rem;
}

/* ========================================
   SERVICES SECTION
   ======================================== */
.services-section {
  padding: 4rem 0;
  background: var(--color-white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.service-card {
  background: var(--card-bg);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: var(--shadow-md);
  text-align: center;
  transition: var(--transition);
  border: 1px solid var(--border-color);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-primary);
}

.service-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
}

.service-card h3 {
  color: var(--color-primary);
  margin-bottom: 1rem;
}

.service-card p {
  color: var(--color-text-light);
}

/* ========================================
   TESTIMONIALS SECTION
   ======================================== */
.testimonials-section {
  padding: 4rem 0;
  background: var(--color-bg-light);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background: var(--card-bg);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: var(--shadow-md);
  border-left: 4px solid var(--color-secondary);
}

.testimonial-stars {
  color: var(--color-secondary);
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.testimonial-text {
  color: var(--color-text-light);
  font-style: italic;
  margin-bottom: 1rem;
  line-height: 1.8;
}

.testimonial-author {
  color: var(--color-primary);
  font-weight: 600;
}

/* ========================================
   FAQ SECTION
   ======================================== */
.faq-section {
  padding: 4rem 0;
  background: var(--color-white);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 1.5rem;
}

.faq-item {
  background: var(--card-bg);
  border-radius: 8px;
  border: 1px solid var(--border-color);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.faq-question {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  transition: background 0.3s;
  font-weight: 600;
  color: var(--color-primary);
  touch-action: manipulation;
  -webkit-user-select: none;
  -webkit-touch-callout: none;
  background: var(--card-bg);
  border: none;
  width: 100%;
  text-align: left;
}

.faq-question:hover,
.faq-question:active,
.faq-question:focus {
  background: var(--color-bg-light);
  outline: none;
}

.faq-answer {
  padding: 0 1.5rem 1.5rem;
  display: none;
  color: var(--color-text-light);
  line-height: 1.8;
  visibility: visible;
  height: auto;
  overflow: visible;
}

.faq-item.active .faq-answer {
  display: block !important;
  visibility: visible !important;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-question i {
  transition: transform 0.3s;
}

/* ========================================
   CONTACT SECTION
   ======================================== */
.contact-section {
  padding: 4rem 0;
  background: var(--color-bg-light);
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-info-box h3 {
  color: #fcb045;
  margin-bottom: 2rem;
  font-weight: 700;
  font-size: 1.5rem;
}

.contact-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.contact-item i {
  color: #fcb045;
  font-size: 1.5rem;
  margin-top: 0.5rem;
}

.contact-item h4 {
  margin-bottom: 0.5rem;
  color: #fcb045;
  font-weight: 600;
  font-size: 1.1rem;
}

.contact-item p {
  color: #fcb045;
  font-weight: 500;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  font-family: var(--font-sans);
  color: var(--color-text-main);
  background: var(--card-bg);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(27, 138, 61, 0.1);
}

/* ========================================
   MAP CONTAINER
   ======================================== */
.map-container {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
  width: 100%;
  height: 450px;
  border-radius: 8px;
  display: block;
}

@media (max-width: 768px) {
  .map-container iframe {
    height: 300px;
  }
}

@media (max-width: 480px) {
  .map-container iframe {
    height: 250px;
  }
}

/* ========================================
   APPLICATION MODAL
   ======================================== */
.application-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  animation: fadeIn 0.3s ease-in;
}

.application-modal.active {
  display: flex;
  justify-content: center;
  align-items: center;
}

.application-modal-content {
  background: var(--card-bg);
  padding: 2rem;
  border-radius: 15px;
  width: 90%;
  max-width: 600px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  animation: slideIn 0.3s ease-out;
}

.application-modal-content h2 {
  color: var(--color-primary);
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
}

.application-modal-close {
  float: right;
  font-size: 2rem;
  font-weight: bold;
  color: var(--color-text-light);
  cursor: pointer;
  transition: var(--transition);
}

.application-modal-close:hover {
  color: var(--color-primary);
}

.application-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.application-form .form-group {
  display: flex;
  flex-direction: column;
}

.application-form .form-group label {
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--color-text-main);
}

.application-form .form-group input,
.application-form .form-group select {
  padding: 0.75rem;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  font-family: var(--font-sans);
  font-size: 1rem;
  background-color: var(--card-bg);
  color: var(--color-text-main);
  transition: var(--transition);
}

.application-form .form-group input:focus,
.application-form .form-group select:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(27, 138, 61, 0.1);
}

.radio-group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.radio-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  font-weight: 500;
}

.radio-label input[type="radio"] {
  cursor: pointer;
  width: 20px;
  height: 20px;
  accent-color: var(--color-primary);
}

.form-message {
  padding: 1rem;
  border-radius: 8px;
  text-align: center;
  font-weight: 600;
}

.form-message.success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.form-message.error {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

.btn-lg {
  padding: 15px 50px;
  font-size: 1.1rem;
}

.apply-button-container {
  text-align: center;
  margin-top: 40px;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  background: linear-gradient(135deg, #0d5a26 0%, #1b8a3d 50%, #0a4620 100%);
  color: #fff;
  padding: 60px 0 0;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 300px;
  height: 300px;
  background: rgba(252, 176, 69, 0.05);
  border-radius: 50%;
  pointer-events: none;
}

.footer::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: -50px;
  width: 400px;
  height: 400px;
  background: rgba(252, 176, 69, 0.03);
  border-radius: 50%;
  pointer-events: none;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1.2fr 1.5fr;
  gap: 40px;
  padding: 50px 0;
  position: relative;
  z-index: 1;
  border-bottom: 2px solid rgba(252, 176, 69, 0.2);
}

.footer-section {
  animation: fadeInUp 0.8s ease-out;
}

.footer-logo-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

.footer-logo-icon {
  width: 70px;
  height: 70px;
  background: rgba(252, 176, 69, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.footer-logo-icon i {
  font-size: 2.2rem;
  color: #fcb045;
}

.footer-company-name {
  font-size: 1.3rem;
  font-weight: 700;
  color: #fcb045;
  margin-bottom: 5px;
  line-height: 1.2;
}

.footer-tagline {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  font-style: italic;
  margin-bottom: 20px;
}

.footer-about p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 15px;
  line-height: 1.6;
}

.footer-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fcb045;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-title i {
  font-size: 1rem;
}

.footer-list {
  list-style: none;
}

.footer-list li {
  margin-bottom: 12px;
}

.footer-list a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: relative;
}

.footer-list a::before {
  content: '→';
  color: #fcb045;
  font-weight: bold;
  opacity: 0;
  transform: translateX(-5px);
  transition: all 0.3s ease;
}

.footer-list a:hover {
  color: #fcb045;
  padding-left: 8px;
}

.footer-list a:hover::before {
  opacity: 1;
  transform: translateX(0);
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.contact-item i {
  color: #fcb045;
  font-size: 1.1rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.contact-item p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
}

.contact-item a {
  color: #fcb045;
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-item a:hover {
  text-decoration: underline;
  opacity: 0.8;
}

.footer-bottom-section {
  padding: 30px 0;
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-social-wrapper {
  display: flex;
  align-items: center;
  gap: 15px;
}

.social-text {
  color: #fcb045;
  font-weight: 600;
  font-size: 0.95rem;
}

.footer-social {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.social-link {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(252, 176, 69, 0.15);
  border: 2px solid rgba(252, 176, 69, 0.4);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  color: #fcb045;
  font-size: 1.1rem;
  text-decoration: none;
}

.social-link:hover {
  background: #fcb045;
  color: #0d5a26;
  border-color: #fcb045;
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(252, 176, 69, 0.3);
}

.footer-copyright {
  text-align: right;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
}

.footer-copyright p {
  margin: 0;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 40px 0;
  }
  
  .footer-bottom-section {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  
  .footer-copyright {
    text-align: center;
  }
}

/* ========================================
   ANIMATIONS
   ======================================== */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media screen and (max-width: 960px) {
  .nav-menu {
    display: flex;
    flex-direction: column;
    width: 100%;
    position: absolute;
    top: 90px;
    left: -100%;
    opacity: 1;
    transition: all 0.5s ease;
    background: var(--card-bg);
    z-index: 999;
  }

  .nav-menu.active {
    left: 0;
    opacity: 1;
    transition: all 0.5s ease;
    z-index: 999;
  }

  .nav-links {
    text-align: center;
    padding: 2rem;
    width: 100%;
    display: table;
  }

  .nav-links:hover {
    background-color: var(--color-bg-light);
    color: var(--color-primary);
    transform: translateX(0);
  }

  .dropdown-menu {
    position: static;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    background: var(--color-bg-light);
    width: 100%;
    transition: all 0.3s;
  }

  .nav-item.active .dropdown-menu {
    opacity: 1;
    max-height: 200px;
  }

  .dropdown-link {
    width: 100%;
    padding: 1.5rem;
  }

  .menu-icon {
    display: block;
  }

  .nav-btn {
    margin-left: 0;
    width: auto;
    text-align: center;
    padding: 0.6rem 1rem !important;
    font-size: 0.85rem !important;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .nav-links-mobile {
    display: block;
  }

  .navbar-logo {
    position: absolute;
    top: 0;
    left: 50px;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-bottom-text {
    display: none;
  }

  .hero-bg-image {
    width: 100%;
  }

  .about-content {
    grid-template-columns: 1fr;
  }

  .contact-content {
    grid-template-columns: 1fr;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }

  .top-bar-content {
    flex-direction: column;
    gap: 0.5rem;
  }

  .contact-info,
  .email-info,
  .top-right-utilities {
    font-size: 0.8rem;
  }

  h1 { font-size: 2.5rem; }
  h2 { font-size: 2rem; }
  .section-title { font-size: 2rem; }
}

@media screen and (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }

  .top-bar {
    padding: 0.5rem 0 !important;
  }

  .top-bar-content {
    flex-direction: column;
    gap: 0.5rem;
  }

  .contact-info span,
  .email-info a {
    font-size: 0.75rem;
  }

  .navbar {
    height: 70px;
    padding: 0.5rem 0;
  }

  .nav-logo-img {
    height: 40px;
  }

  .hero-container {
    height: 65vh;
    max-height: 500px;
    padding: 2rem 0;
  }

  .hero-title {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    line-height: 1.2;
  }

  .hero-subtitle {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    max-width: 100%;
  }

  .hero-text-box {
    padding-left: 0;
  }

  .about-section,
  .destinations-section,
  .services-section,
  .testimonials-section,
  .faq-section,
  .contact-section {
    padding: 1.5rem 0;
  }

  .destinations-grid,
  .services-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .hero-cta {
    flex-direction: column;
    gap: 1rem;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

  .contact-form .form-group {
    margin-bottom: 1rem;
  }
}

@media screen and (max-width: 480px) {
  .navbar {
    height: 60px;
    padding: 0.3rem 0;
  }

  .nav-logo-img {
    height: 35px;
  }

  .nav-btn {
    padding: 0.2rem 0.4rem !important;
    font-size: 0.45rem !important;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 50px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hero-container {
    height: 55vh;
    min-height: 400px;
    padding: 1rem 0;
  }

  .hero-title {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    line-height: 1.15;
  }

  .hero-subtitle {
    font-size: 0.8rem;
    margin-bottom: 1rem;
    max-width: 100%;
  }

  .section-title {
    font-size: 1.4rem;
    margin-bottom: 1.2rem;
  }

  h1 { font-size: 1.6rem; }
  h2 { font-size: 1.3rem; }
  h3 { font-size: 1rem; }

  .contact-info span,
  .email-info a {
    font-size: 0.65rem;
  }

  .social-icons {
    gap: 8px;
  }

  .social-icons a {
    width: 28px;
    height: 28px;
    font-size: 0.9rem;
  }

  .admin-modal-content {
    width: 95%;
    padding: 1.5rem;
  }

  .application-modal-content {
    width: 95%;
    padding: 1.5rem;
  }

  .service-card,
  .destination-card,
  .testimonial-card,
  .university-card {
    padding: 1.2rem;
  }

  .testimonial-text {
    font-size: 0.85rem;
  }

  .faq-question {
    font-size: 0.9rem;
    padding: 1.2rem;
    min-height: 50px;
    touch-action: manipulation;
  }

  .faq-item {
    margin-bottom: 1rem;
  }

  .footer-section {
    flex-basis: 100%;
  }
}

/* ========================================
   UNIVERSITIES SECTION
   ======================================== */
.universities-section {
  background: linear-gradient(135deg, rgba(27, 138, 61, 0.05), rgba(42, 162, 93, 0.05));
  padding: 5rem 0;
  border-top: 2px solid var(--border-color);
}

.universities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.university-card {
  background: var(--card-bg);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  height: 100%;
  cursor: pointer;
}

.university-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(27, 138, 61, 0.2);
}

.university-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
}

.university-image-placeholder {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: white;
}

.university-content {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.university-name {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
  font-family: var(--font-serif);
}

.university-country {
  color: var(--color-text-light);
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.university-country i {
  color: var(--color-secondary);
}

.university-ranking {
  color: var(--color-text-light);
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.university-ranking i {
  color: var(--color-secondary);
}

.university-description {
  color: var(--color-text-light);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  flex-grow: 1;
}

.university-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 600;
  padding: 0.5rem 0;
  border-bottom: 2px solid transparent;
  transition: var(--transition);
  margin-top: auto;
}

.university-link:hover {
  color: var(--color-secondary);
  border-bottom-color: var(--color-secondary);
}

@media (max-width: 768px) {
  .universities-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
  }

  .universities-section {
    padding: 3rem 0;
  }
}

