/* Global Styles */
:root {
  --primary-color: #ffbd59;
  --secondary-color: #0c2759;
  --accent-color: #f59e0b;
  --text-color: #1f2937;
  --light-color: #f3f4f6;
  --dark-color: #111827;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: #fff;
}

body.no-scroll {
  overflow: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

section {
  padding: 80px 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.2;
}

h2 {
  font-size: 2.5rem;
  text-align: center;
  position: relative;
  margin-bottom: 50px;
}

h2::after {
  content: "";
  position: absolute;
  width: 80px;
  height: 4px;
  background-color: var(--primary-color);
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
}

.btn {
  display: inline-block;
  background-color: var(--primary-color);
  color: white;
  padding: 12px 30px;
  border-radius: 5px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn:hover {
  background-color: var(--secondary-color);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Hero Section */
.hero {
  height: 100vh;
  padding: 0;
  position: relative;
}

.slider {
  height: 100%;
  overflow: hidden;
  position: relative;
}

.slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  z-index: 10;
  width: 80%;
}

.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  max-width: 600px;
  margin: 0 auto 30px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

/* About Section */
.about {
  background-color: var(--light-color);
}

.about .container {
  display: flex;
  align-items: center;
  gap: 50px;
}

.about-text {
  flex: 1;
}

.about-image {
  flex: 1;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Services Section */
.services {
  background-color: #fff;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.service-card {
  background-color: var(--light-color);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
}

.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.service-content {
  padding: 20px;
}

.service-content h3 {
  color: var(--primary-color);
  margin-bottom: 15px;
}

.service-content p {
  margin-bottom: 15px;
}

/* Testimonials Section */
.testimonials {
  background-color: var(--light-color);
  position: relative;
}

.testimonial-slider {
  margin: 40px auto 0;
  max-width: 900px;
  position: relative;
}

.testimonial-card {
  background-color: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  margin: 20px;
  text-align: center;
}

.testimonial-card img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 20px;
  border: 4px solid var(--primary-color);
}

.testimonial-card q {
  font-style: italic;
  display: block;
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.testimonial-card .client-name {
  font-weight: 700;
  color: var(--primary-color);
}

.testimonial-card .client-title {
  font-size: 0.9rem;
  color: #666;
}

/* Institution Media Section */
.institution-media {
  background-color: #fff;
  padding: 80px 0;
}

.section-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
  color: #666;
  font-size: 1.1rem;
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.media-item {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  background-color: white;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.media-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.media-wrapper {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 Aspect Ratio */
  overflow: hidden;
}

.media-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.media-caption {
  padding: 20px;
}

.media-caption h3 {
  color: var(--primary-color);
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.media-caption p {
  color: #555;
  font-size: 0.9rem;
}

/* TikTok and Facebook specific styles */
.media-wrapper.tiktok,
.media-wrapper.facebook {
  min-height: 500px; /* Adjust based on embed sizes */
  padding-top: 0;
}

.view-more-container {
  text-align: center;
  margin-top: 20px;
}

.btn-outline {
  background-color: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
}

.btn-outline:hover {
  background-color: var(--primary-color);
  color: white;
}

/* Inquiry Form Section */
.inquiry-form {
  background-color: var(--light-color);
  position: relative;
  padding: 100px 0;
}

.inquiry-form::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../assets/images/pattern-bg.png");
  opacity: 0.05;
  z-index: 1;
}

.form-container {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 40px;
  background-color: white;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.form-content {
  padding: 40px;
  flex: 2;
}

.form-content h2 {
  text-align: left;
  margin-bottom: 15px;
}

.form-content h2::after {
  left: 0;
  transform: none;
}

.form-content > p {
  margin-bottom: 30px;
  color: #666;
}

.form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  flex: 1;
}

.full-width {
  width: 100%;
}

label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--text-color);
}

input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-family: "Poppins", sans-serif;
  font-size: 0.95rem;
  transition: border-color 0.3s ease;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--secondary-color);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 15px;
  padding-right: 40px;
}

.checkbox-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 5px;
}

.checkbox-item {
  display: flex;
  align-items: center;
  margin-right: 15px;
}

.checkbox-item input[type="checkbox"] {
  margin-right: 8px;
  width: 16px;
  height: 16px;
  accent-color: var(--primary-color);
}

.consent-check {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

.consent-check input {
  margin-right: 10px;
  margin-top: 5px;
  accent-color: var(--primary-color);
}

.consent-check label {
  font-size: 0.9rem;
  line-height: 1.4;
}

.form-submit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 30px;
}

.required-fields {
  font-size: 0.85rem;
  color: #888;
}

.btn-submit {
  padding: 12px 40px;
  background-color: var(--primary-color);
}

.btn-submit:hover {
  background-color: var(--secondary-color);
}

.form-image {
  flex: 1;
  position: relative;
  min-height: 400px;
}

.form-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.quick-contact {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.7);
  color: white;
}

.quick-contact h3 {
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.quick-contact p {
  margin-bottom: 5px;
  font-size: 0.9rem;
}

.quick-contact i {
  margin-right: 10px;
  color: var(--accent-color);
}

.availability {
  font-style: italic;
  margin-top: 15px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
}

/* Form validation styles */
input:invalid,
select:invalid {
  border-color: #ff4d4d;
}

.error-message {
  color: #ff4d4d;
  font-size: 0.85rem;
  margin-top: 5px;
}

.form-success {
  display: none;
  text-align: center;
  padding: 40px;
}

.form-success i {
  font-size: 50px;
  color: #22c55e;
  margin-bottom: 20px;
}

.form-success h3 {
  margin-bottom: 15px;
  font-size: 1.5rem;
}

.form-success p {
  color: #666;
  margin-bottom: 20px;
}

/* Footer */
footer {
  background-color: var(--dark-color);
  color: white;
  padding: 50px 0 20px;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

footer ul {
  display: flex;
  gap: 20px;
}

footer ul li a:hover {
  color: var(--accent-color);
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-column h3 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: var(--accent-color);
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  font-size: 0.9rem;
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

social-icons a {
  display: inline-block;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background-color: var(--accent-color);
  transform: translateY(-3px);
}

/* Six Dream Destinations Section */
.destinations {
  background-color: #f8f9fa;
  padding: 90px 0;
  position: relative;
}

.destinations::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("assets/images/world-map-dots.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.05;
  z-index: 1;
}

.destinations .container {
  position: relative;
  z-index: 2;
}

.destinations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.destination-card {
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.destination-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.destination-img {
  position: relative;
  height: 320px;
  overflow: hidden;
}

.destination-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.destination-card:hover .destination-img img {
  transform: scale(1.05);
}

.destination-flag {
  position: absolute;
  bottom: 70px;
  right: 20px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: white;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
  z-index: 2;
}

.destination-flag img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
}

.destination-title {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(255, 255, 255, 0.9);
  color: var(--primary-color);
  padding: 15px;
  margin: 0;
  font-size: 1.4rem;
  text-align: center;
  z-index: 2;
  transition: transform 0.3s ease;
}

.destination-card:hover .destination-title {
  transform: translateY(-100%);
  opacity: 0;
}

.destination-content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.8);
  color: white;
  opacity: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.destination-card:hover .destination-content {
  opacity: 1;
}

.content-inner {
  max-width: 100%;
  text-align: center;
  overflow: auto;
  max-height: 100%;
  padding: 10px;
}

.destination-content p {
  color: white;
  margin-bottom: 15px;
  font-size: 0.95rem;
}

.destination-features {
  margin: 15px 0 20px;
  list-style: none;
  padding: 0;
}

.destination-features li {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
}

.destination-features li i {
  color: var(--accent-color);
  margin-right: 10px;
  font-size: 0.85rem;
  width: 20px;
  text-align: center;
}

.btn-sm {
  padding: 8px 20px;
  font-size: 0.9rem;
  margin-top: 10px;
}

/* Responsive adjustments for mobile devices */
@media (max-width: 767px) {
  .destination-img {
    height: 280px;
  }
  
  .destination-content {
    padding: 15px;
  }
  
  .content-inner {
    padding: 5px;
  }
  
  .destination-features li {
    font-size: 0.8rem;
  }
}

.destinations-cta {
  text-align: center;
  margin-top: 50px;
  padding: 30px;
  background-color: var(--primary-color);
  border-radius: 10px;
  color: white;
}

/* About Page Styles */
.page-banner {
  height: 400px;
  background-image: url("../assets/images/about-banner.jpg");
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
}

.banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
}

.banner-content {
  position: relative;
  z-index: 1;
  color: white;
  text-align: center;
}

.banner-content h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.banner-content p {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto;
}

/* About Story Section */
.about-story {
  padding: 100px 0;
  background-color: #fff;
}

.about-grid {
  display: flex;
  align-items: center;
  gap: 50px;
}

.about-content {
  flex: 1;
}

.about-image {
  flex: 1;
  position: relative;
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.experience-badge {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 120px;
  height: 120px;
  background-color: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.experience-badge span:first-child {
  font-size: 2rem;
  line-height: 1;
}

.lead-text {
  font-size: 1.2rem;
  color: var(--primary-color);
  font-weight: 500;
  margin-bottom: 20px;
}

/* Mission Vision Section */
.mission-vision {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.mission-vision-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.mission-card,
.vision-card,
.values-card {
  background-color: white;
  padding: 40px 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.mission-card:hover,
.vision-card:hover,
.values-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.mission-card .icon,
.vision-card .icon,
.values-card .icon {
  width: 80px;
  height: 80px;
  background-color: var(--light-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.mission-card .icon i,
.vision-card .icon i,
.values-card .icon i {
  font-size: 2rem;
  color: var(--primary-color);
}

/* Our Approach Section */
.our-approach {
  padding: 100px 0;
  background-color: white;
}

.approach-steps {
  margin-top: 50px;
}

.step-card {
  display: flex;
  margin-bottom: 40px;
  position: relative;
}

.step-card:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 60px;
  left: 25px;
  width: 2px;
  height: calc(100% + 20px);
  background-color: var(--light-color);
  z-index: 1;
}

.step-number {
  width: 50px;
  height: 50px;
  background-color: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin-right: 30px;
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}

.step-content {
  padding-top: 5px;
}

.step-content h3 {
  color: var(--primary-color);
  margin-bottom: 10px;
}

/* Achievement Stats Section */
.achievement-stats {
  padding: 100px 0;
  background-color: var(--primary-color);
  color: white;
  position: relative;
}

.achievement-stats::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../assets/images/pattern.png");
  opacity: 0.05;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.stat-card {
  text-align: center;
  padding: 30px 20px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  backdrop-filter: blur(5px);
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1;
}

.stat-label {
  font-size: 1.1rem;
  opacity: 0.9;
}

/* Team Section */
.team-section {
  padding: 100px 0;
  background-color: #f8f9fa;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.team-card {
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.team-card:hover {
  transform: translateY(-10px);
}

.team-image {
  position: relative;
  overflow: hidden;
  height: 280px;
}

.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-image .social-icons {
  position: absolute;
  bottom: -50px;
  left: 0;
  right: 0;
  padding: 15px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  display: flex;
  justify-content: center;
  gap: 15px;
  transition: bottom 0.3s ease;
}

.team-card:hover .social-icons {
  bottom: 0;
}

.team-image .social-icons a {
  width: 35px;
  height: 35px;
  background-color: white;
  color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.team-image .social-icons a:hover {
  background-color: var(--primary-color);
  color: white;
}

.team-info {
  padding: 20px;
}

.team-info h3 {
  margin-bottom: 5px;
  color: var(--primary-color);
}

.team-info .designation {
  color: #666;
  font-style: italic;
  margin-bottom: 15px;
}

.team-info .bio {
  font-size: 0.9rem;
  color: #555;
}

.team-cta {
  margin-top: 50px;
  text-align: center;
}

.team-cta p {
  margin-bottom: 15px;
  font-size: 1.1rem;
}

/* Partners Section */
.partners-section {
  padding: 80px 0;
  background-color: white;
}

.partners-slider {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 40px;
  margin: 40px 0;
}

.partner-logo {
  width: 150px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.3s ease;
}

.partner-logo:hover {
  filter: grayscale(0);
  opacity: 1;
}

.partner-logo img {
  max-width: 100%;
  max-height: 100%;
}

.partners-note {
  text-align: center;
  color: #666;
  font-style: italic;
}

/* About Page Testimonials */
.about-testimonials {
  background-color: #f8f9fa;
  padding: 80px 0;
}

.testimonial-quote {
  max-width: 800px;
  margin: 0 auto 50px;
  position: relative;
  padding: 40px;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.testimonial-quote blockquote {
  border: none;
  padding: 0;
}

.testimonial-quote blockquote p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #444;
  margin-bottom: 20px;
}

.testimonial-quote i.fa-quote-left {
  margin-right: 10px;
  color: var(--primary-color);
}

.testimonial-quote i.fa-quote-right {
  margin-left: 10px;
  color: var(--primary-color);
}

.testimonial-quote cite {
  display: flex;
  align-items: center;
}

.testimonial-quote cite img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 15px;
  border: 3px solid var(--primary-color);
}

.testimonial-quote cite strong {
  display: block;
  color: var(--primary-color);
  font-size: 1.1rem;
}

.testimonial-quote cite span {
  font-size: 0.9rem;
  color: #666;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 50px;
}

.testimonial-item {
  background-color: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.testimonial-item p {
  font-size: 1rem;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.testimonial-author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 15px;
}

.testimonial-author strong {
  display: block;
  font-size: 1rem;
  color: var(--primary-color);
}

.testimonial-author span {
  font-size: 0.8rem;
  color: #666;
}

.testimonial-cta {
  text-align: center;
}

/* Contact CTA */
.contact-cta {
  background-color: var(--primary-color);
  color: white;
  padding: 80px 0;
  text-align: center;
}

.contact-cta h2 {
  color: white;
}

.contact-cta h2::after {
  background-color: var(--accent-color);
}

.contact-cta p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.btn-outline {
  background-color: transparent;
  border: 2px solid white;
}

.btn-outline:hover {
  background-color: white;
  color: var(--primary-color);
}

/* Services Page Styles */

/* Value Proposition Section */
.value-proposition {
  padding: 80px 0;
  background-color: #fff;
}

.value-proposition .container {
  display: flex;
  align-items: center;
  gap: 40px;
}

.value-content {
  flex: 1;
}

.value-image {
  flex: 1;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  position: relative;
}

.value-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.value-image:hover img {
  transform: scale(1.03);
}

.value-list {
  margin-top: 25px;
  list-style: none;
  padding: 0;
}

.value-list li {
  margin-bottom: 15px;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
}

.value-list li i {
  color: var(--accent-color);
  margin-right: 15px;
  font-size: 1.2rem;
}

/* Main Services Section */
.services-main {
  background-color: #f8f9fa;
  padding: 90px 0;
  position: relative;
}

.services-main::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../assets/images/pattern-light.png");
  opacity: 0.08;
  z-index: 1;
}

.services-main .container {
  position: relative;
  z-index: 2;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.service-card {
  background-color: white;
  border-radius: 10px;
  padding: 35px 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--secondary-color) 100%
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  position: relative;
  z-index: 1;
}

.service-icon::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: inherit;
  border-radius: 50%;
  z-index: -1;
  opacity: 0.3;
  transform: scale(1.2);
  transition: transform 0.3s ease-out;
}

.service-card:hover .service-icon::after {
  transform: scale(1.4);
}

.service-icon i {
  font-size: 2rem;
  color: white;
}

.service-card h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.service-card p {
  color: #666;
  margin-bottom: 20px;
  line-height: 1.6;
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 0 0 25px;
}

.service-features li {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  color: #555;
  font-size: 0.95rem;
}

.service-features li i {
  color: var(--accent-color);
  margin-right: 10px;
  font-size: 0.8rem;
}

.service-card .btn {
  margin-top: auto;
  align-self: flex-start;
}

/* Service Detail Sections */
.service-detail {
  padding: 90px 0;
  background-color: #fff;
}

.service-detail.alternate {
  background-color: #f9f9f9;
}

.service-detail-content {
  display: flex;
  align-items: center;
  gap: 50px;
  margin-bottom: 40px;
}

.service-detail-text {
  flex: 6;
}

.service-detail-text h2 {
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.service-detail-text h2:after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: var(--accent-color);
}

.service-detail-image {
  flex: 5;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-detail-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.service-detail-image:hover img {
  transform: scale(1.02);
}

.service-process {
  background-color: #f8f9fa;
  border-radius: 8px;
  padding: 25px;
  margin-top: 30px;
}

.service-process h3 {
  margin-bottom: 15px;
  font-size: 1.2rem;
  color: var(--primary-color);
}

.process-steps {
  padding-left: 20px;
  margin: 0;
}

.process-steps li {
  margin-bottom: 10px;
  padding-left: 10px;
}

.service-highlights {
  margin-top: 30px;
}

.service-highlights h3 {
  margin-bottom: 15px;
  font-size: 1.2rem;
  color: var(--primary-color);
}

.highlight-list {
  list-style: none;
  padding: 0;
}

.highlight-list li {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}

.highlight-list li i {
  color: var(--accent-color);
  margin-right: 12px;
}

.service-testimonial {
  background-color: rgba(var(--primary-rgb), 0.05);
  border-left: 4px solid var(--primary-color);
  padding: 30px;
  border-radius: 0 8px 8px 0;
}

.service-testimonial blockquote {
  margin: 0;
  font-style: italic;
  color: #555;
  position: relative;
  padding: 0 20px;
}

.service-testimonial blockquote::before {
  content: '"';
  font-size: 4rem;
  position: absolute;
  left: -20px;
  top: -30px;
  opacity: 0.1;
  color: var(--primary-color);
}

.service-testimonial cite {
  display: block;
  margin-top: 15px;
  font-weight: 600;
  font-style: normal;
  text-align: right;
  color: var(--primary-color);
}

.service-cta {
  text-align: center;
  margin-top: 40px;
}

/* Service Packages */
.service-packages {
  background-color: #f9f9f9;
  padding: 90px 0;
  position: relative;
}

.service-packages::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../assets/images/pattern-light.png");
  opacity: 0.05;
  z-index: 1;
}

.service-packages .container {
  position: relative;
  z-index: 2;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.package-card {
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  border: 1px solid #f1f1f1;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.package-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.package-card.featured {
  border: 2px solid var(--accent-color);
  transform: scale(1.05);
  z-index: 2;
}

.package-card.featured:hover {
  transform: translateY(-10px) scale(1.05);
}

.featured-tag {
  position: absolute;
  top: 15px;
  right: 0;
  background-color: var(--accent-color);
  color: white;
  padding: 8px 15px;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 4px 0 0 4px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  z-index: 1;
}

.package-header {
  padding: 30px;
  text-align: center;
  border-bottom: 1px solid #f1f1f1;
  background-color: rgba(var(--primary-rgb), 0.02);
}

.package-header h3 {
  margin-bottom: 10px;
  color: var(--primary-color);
  font-size: 1.6rem;
}

.package-price {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--text-color);
}

.package-features {
  padding: 30px;
  flex-grow: 1;
}

.package-features ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.package-features li {
  padding: 10px 0;
  border-bottom: 1px solid #f1f1f1;
  display: flex;
  align-items: center;
}

.package-features li:last-child {
  border-bottom: none;
}

.package-features li i {
  margin-right: 10px;
  font-size: 0.8rem;
}

.package-features li i.fa-check {
  color: #28a745;
}

.package-features li i.fa-times {
  color: #dc3545;
}

.package-features li.not-included {
  color: #999;
}

.package-cta {
  padding: 0 30px 30px;
  text-align: center;
}

.custom-package {
  background-color: white;
  border-radius: 10px;
  padding: 30px;
  margin-top: 50px;
  text-align: center;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  border: 2px dashed #ddd;
}

.custom-package h3 {
  margin-bottom: 15px;
  color: var(--primary-color);
}

.custom-package p {
  margin-bottom: 20px;
}

/* FAQ Section */
.faq-section {
  padding: 90px 0;
  background-color: #fff;
}

.accordion {
  margin-top: 40px;
}

.accordion-item {
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.accordion-header {
  background-color: white;
  padding: 20px 25px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
  border-left: 4px solid transparent;
}

.accordion-item.active .accordion-header {
  background-color: rgba(var(--primary-rgb), 0.03);
  border-left: 4px solid var(--primary-color);
}

.accordion-header h3 {
  font-size: 1.1rem;
  margin: 0;
  font-weight: 600;
  color: var(--text-color);
}

.accordion-icon {
  font-size: 0.9rem;
  color: var(--primary-color);
  transition: transform 0.3s ease;
}

.accordion-item.active .accordion-icon {
  transform: rotate(45deg);
}

.accordion-content {
  background-color: white;
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}

.accordion-item.active .accordion-content {
  padding: 20px 25px;
  max-height: 1000px;
  border-top: 1px solid #f1f1f1;
}

.faq-cta {
  text-align: center;
  margin-top: 40px;
  padding: 30px;
  background-color: rgba(var(--primary-rgb), 0.05);
  border-radius: 8px;
}

.faq-cta p {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: var(--primary-color);
}

/* Service Testimonials */
.service-testimonials {
  padding: 90px 0;
  background-color: #f9f9f9;
  position: relative;
}

.service-testimonials::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../assets/images/testimonial-bg.png");
  opacity: 0.03;
  z-index: 1;
}

.service-testimonials .container {
  position: relative;
  z-index: 2;
}

.testimonial-slider {
  margin-top: 40px;
  position: relative;
}

.testimonial-slide {
  padding: 20px;
}

.testimonial-content {
  background-color: white;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.testimonial-image {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--primary-color);
}

.testimonial-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-content blockquote {
  margin: 0;
  font-style: italic;
  color: #555;
  line-height: 1.6;
}

.testimonial-content cite {
  display: block;
  margin-top: 15px;
  font-weight: 600;
  color: var(--primary-color);
  font-style: normal;
}

/* Contact Page Styles */

/* Contact Info Cards */
.contact-info-section {
  padding: 80px 0 40px;
  background-color: #fff;
}

.info-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.info-card {
  background-color: #fff;
  padding: 40px 30px;
  border-radius: 10px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  text-align: center;
  flex: 1;
  min-width: 240px;
  max-width: 280px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.info-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.info-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--secondary-color) 100%
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

.info-card:hover .info-icon {
  transform: rotateY(180deg);
}

.info-icon i {
  font-size: 1.8rem;
  color: white;
}

.info-card h3 {
  margin-bottom: 15px;
  color: var(--primary-color);
}

.info-card p {
  margin-bottom: 15px;
  color: #666;
  line-height: 1.6;
}

.info-link {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  margin-top: auto;
  transition: color 0.3s ease;
}

.info-link:hover {
  color: var(--primary-color);
}

.info-link i {
  margin-left: 5px;
  font-size: 0.8rem;
}

.availability,
.response-time {
  font-size: 0.85rem;
  color: #888;
  font-style: italic;
  margin-top: auto;
}

.chat-button {
  background-color: var(--accent-color);
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin: 10px 0;
}

.chat-button:hover {
  background-color: var(--secondary-color);
}

/* Contact Main Section */
.contact-main {
  padding: 60px 0 80px;
  background-color: #f9f9f9;
  position: relative;
}

.contact-main::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../assets/images/pattern-light.png");
  opacity: 0.05;
  z-index: 1;
}

.contact-main .container {
  position: relative;
  z-index: 2;
}

.contact-grid {
  display: grid;
  grid-template-columns: 6fr 5fr;
  gap: 40px;
}

.contact-form-container {
  background-color: white;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}

.contact-form-container h2 {
  margin-bottom: 10px;
  color: var(--primary-color);
}

.contact-form-container > p {
  margin-bottom: 25px;
  color: #666;
}

.contact-form {
  margin-top: 30px;
}

.form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  flex: 1;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border-radius: 5px;
  border: 1px solid #ddd;
  font-family: "Poppins", sans-serif;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 2px rgba(var(--accent-rgb), 0.1);
  outline: none;
}

.form-buttons {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}

.form-note {
  font-size: 0.85rem;
  color: #888;
  margin-top: 15px;
}

.consent-check {
  display: flex;
  align-items: flex-start;
  margin-top: 20px;
}

.consent-check input {
  margin-right: 10px;
  margin-top: 4px;
  min-width: 16px;
  height: 16px;
}

.consent-check label {
  font-size: 0.9rem;
  line-height: 1.4;
}

/* Map Container */
.map-container {
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}

.map-container h2 {
  padding: 30px;
  margin: 0;
  background-color: var(--primary-color);
  color: white;
}

.map-wrapper {
  width: 100%;
  height: 350px;
  border: none;
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.office-info {
  padding: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.office-hours,
.public-transport {
  flex: 1;
  min-width: 200px;
}

.office-hours h3,
.public-transport h3 {
  display: flex;
  align-items: center;
  color: var(--primary-color);
  margin-bottom: 15px;
  font-size: 1.1rem;
}

.office-hours h3 i,
.public-transport h3 i {
  margin-right: 10px;
  color: var(--accent-color);
}

.office-hours ul {
  list-style: none;
  padding: 0;
}

.office-hours li {
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
}

.office-hours li span {
  font-weight: 500;
  color: #444;
}

/* Appointment Section */
.appointment-section {
  padding: 80px 0;
  background-color: #fff;
}

.appointment-container {
  display: flex;
  align-items: center;
  gap: 40px;
  background-color: #f8f9fa;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}

.appointment-content {
  padding: 40px;
  flex: 1;
}

.appointment-content h2 {
  margin-bottom: 15px;
  color: var(--primary-color);
}

.appointment-content p {
  margin-bottom: 20px;
  color: #666;
}

.appointment-benefits {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
}

.appointment-benefits li {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.appointment-benefits li i {
  color: #22c55e;
  margin-right: 10px;
}

.appointment-image {
  flex: 1;
  height: 100%;
}

.appointment-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* FAQ Section */
.contact-faq {
  padding: 80px 0;
  background-color: #f9f9f9;
}

.faq-container {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.faq-item {
  background-color: white;
  border-radius: 8px;
  margin-bottom: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.faq-question {
  padding: 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question h3 {
  margin: 0;
  font-size: 1.1rem;
  color: var(--text-color);
}

.faq-toggle {
  background-color: #f0f0f0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.faq-item.active .faq-toggle {
  background-color: var(--primary-color);
  transform: rotate(45deg);
}

.faq-item.active .faq-toggle i {
  color: white;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-in-out;
}

.faq-item.active .faq-answer {
  max-height: 1000px;
}

.faq-answer p {
  padding: 0 20px 20px;
  color: #666;
  line-height: 1.6;
}

/* Contact CTA */
.contact-cta {
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--secondary-color) 100%
  );
  padding: 80px 0;
  color: white;
  text-align: center;
}

.contact-cta h2 {
  color: white;
  margin-bottom: 15px;
}

.contact-cta p {
  margin-bottom: 30px;
  font-size: 1.1rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.social-connect {
  margin-top: 40px;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 15px;
}

.social-icons a {
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background-color: white;
  color: var(--primary-color);
  transform: translateY(-3px);
}

/* Contact Form Error Messages */
.error-message {
  color: #dc3545;
  font-size: 0.85rem;
  margin-top: 5px;
  display: block;
}

input.invalid,
textarea.invalid,
select.invalid {
  border-color: #dc3545;
  background-color: rgba(220, 53, 69, 0.05);
}

/* Form Success Message */
.form-success {
  text-align: center;
  padding: 40px 20px;
}

.form-success i {
  font-size: 60px;
  color: #28a745;
  margin-bottom: 20px;
}

.form-success h3 {
  color: var(--primary-color);
  margin-bottom: 15px;
}

.form-success p {
  color: #666;
  margin-bottom: 25px;
}

/* Modal Styles */
.modal {
  /* Hide the modal by default */
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.6);
  animation: fadeIn 0.3s ease-out forwards;
}

.modal-content {
  background-color: #fff;
  margin: 10% auto;
  padding: 25px;
  border-radius: 8px;
  width: 70%;
  max-width: 800px;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  animation: slideIn 0.4s ease-out forwards;
}

.close {
  position: absolute;
  right: 25px;
  top: 15px;
  color: #aaa;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.2s ease;
}
.close:hover,
.close:focus {
  color: #333;
  text-decoration: none;
}

/* Modal Animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes slideIn {
  from { transform: translateY(-50px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
