/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #1e3c72;
  --secondary-color: #2a5298;
  --accent-color: #ffd700;
  --text-dark: #333;
  --text-light: #666;
  --white: #ffffff;
  --gray-light: #f8f9fa;
  --gradient-primary: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
  --gradient-accent: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  --shadow-light: 0 4px 15px rgba(0, 0, 0, 0.1);
  --shadow-medium: 0 8px 25px rgba(0, 0, 0, 0.15);
  --shadow-heavy: 0 15px 35px rgba(0, 0, 0, 0.2);
  --border-radius: 16px;
  --border-radius-small: 12px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header Styles */
.top-bar {
  background: var(--gradient-primary);
  color: var(--white);
  padding: 12px 0;
  position: relative;
  overflow: hidden;
}

.top-bar::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
  pointer-events: none;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 1;
}

.contact-info span {
  margin-right: 25px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 500;
}

.contact-info a {
    color: #fff;
    text-decoration: underline;
}

.contact-info i {
  font-size: 0.8rem;
  opacity: 0.9;
}

.social-links a {
  color: var(--white);
  margin-left: 15px;
  font-size: 18px;
  text-decoration: none;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}

.social-links a:hover {
  background: var(--accent-color);
  color: var(--primary-color);
  transform: translateY(-2px);
}

.navbar {
  background: var(--white);
  box-shadow: var(--shadow-light);
  padding: 18px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 55px;
  transition: var(--transition);
}

.logo img:hover {
  transform: scale(1.05);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 35px;
  align-items: center;
}

.nav-menu a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  position: relative;
  padding: 8px 0;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-accent);
  transition: var(--transition);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
  width: 100%;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--secondary-color);
}

.mobile-menu-btn {
  display: none;
  background: var(--gradient-primary);
  color: #01949d;
  border: none;
  padding: 12px;
  border-radius: var(--border-radius-small);
  cursor: pointer;
  font-size: 18px;
  box-shadow: var(--shadow-light);
  transition: var(--transition);
  margin-left: 70%;
}

.mobile-menu-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

/* Hero Section */
.hero-slider {
  position: relative;
  height: 75vh;
  overflow: hidden;
}

.slider-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-align: center;
}

.slide.active {
  opacity: 1;
}

.slide .hero-content {
  max-width: 800px;
  padding: 0 20px;
}

.slide .hero-content h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.slide .hero-content h2 {
  font-size: 1.3rem;
  color: var(--accent-color);
  margin-bottom: 15px;
  font-weight: 500;
}

.slide .hero-content p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  opacity: 0.95;
  line-height: 1.7;
}

/* Enhanced Button Styles */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gradient-accent);
  color: var(--text-dark);
  padding: 16px 32px;
  text-decoration: none;
  border-radius: var(--border-radius);
  font-weight: 700;
  font-size: 1rem;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-light);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-heavy);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.9rem;
}

/* Page Header */
.page-header {
  background: var(--gradient-primary);
  color: var(--white);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
}

.page-header .container {
  position: relative;
  z-index: 1;
}

.page-header h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.page-header p {
  font-size: 1.2rem;
  opacity: 0.9;
}

/* Section Styles */
.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  font-size: 2.8rem;
  color: var(--primary-color);
  margin-bottom: 20px;
  font-weight: 700;
  position: relative;
}

.section-title h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--gradient-accent);
  border-radius: 2px;
}

.section-title p {
  font-size: 1.2rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

/* ENHANCED SERVICES SECTION */
.services {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
}

.services .container {
  position: relative;
  z-index: 1;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

.service-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: var(--border-radius);
  text-align: center;
  box-shadow: var(--shadow-light);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-primary);
  opacity: 0;
  transition: var(--transition);
  z-index: 1;
}

.service-card:hover::before {
  opacity: 0.05;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-heavy);
}

.service-card > * {
  position: relative;
  z-index: 2;
}

.service-card i {
  font-size: 3.5rem;
  color: var(--secondary-color);
  margin-bottom: 25px;
  transition: var(--transition);
}

.service-card:hover i {
  color: var(--accent-color);
  transform: scale(1.1);
}

.service-card h3 {
  font-size: 1.6rem;
  margin-bottom: 20px;
  color: var(--primary-color);
  font-weight: 700;
}

.service-card p {
  color: var(--text-light);
  margin-bottom: 25px;
  flex-grow: 1;
  line-height: 1.7;
}

.service-link {
  color: var(--secondary-color);
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.service-link:hover {
  color: var(--accent-color);
  transform: translateX(5px);
}

.service-link::after {
  content: "→";
  transition: var(--transition);
}

.service-link:hover::after {
  transform: translateX(5px);
}

/* ENHANCED RECENT PROJECTS SECTION */
.recent-projects-brief,
.recent-projects {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
}

.recent-projects-brief::before,
.recent-projects::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(30,60,114,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
}

.recent-projects-brief .container,
.recent-projects .container {
  position: relative;
  z-index: 1;
}

.projects-grid-brief,
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
  max-width: 1200px;
  margin: 0 auto;
}

.project-card-brief,
.project-card {
  background: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
  box-shadow: var(--shadow-light);
  height: 100%;
  display: flex;
  flex-direction: column;
  transform: translateY(0);
}

.project-card-brief::before,
.project-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(30, 60, 114, 0.05) 0%, rgba(42, 82, 152, 0.05) 100%);
  opacity: 0;
  transition: var(--transition);
  z-index: 1;
  pointer-events: none;
}

.project-card-brief:hover::before,
.project-card:hover::before {
  opacity: 1;
}

.project-card-brief:hover,
.project-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.project-image-brief,
.project-image {
  width: 100%;
  height: 240px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
}

.project-image-brief img,
.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
  filter: brightness(0.9);
}

.project-card-brief:hover .project-image-brief img,
.project-card:hover .project-image img {
  transform: scale(1.1);
  filter: brightness(1.1);
}

.project-image-brief::after,
.project-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.1) 100%);
  opacity: 0;
  transition: var(--transition);
}

.project-card-brief:hover .project-image-brief::after,
.project-card:hover .project-image::after {
  opacity: 1;
}

.project-content-brief,
.project-content {
  padding: 30px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  position: relative;
  z-index: 2;
}

.project-content-brief h3,
.project-content h3 {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-bottom: 15px;
  font-weight: 700;
  line-height: 1.3;
  transition: var(--transition);
}

.project-card-brief:hover .project-content-brief h3,
.project-card:hover .project-content h3 {
  color: var(--secondary-color);
}

.project-content-brief p,
.project-content p {
  color: var(--text-light);
  margin-bottom: 25px;
  flex-grow: 1;
  line-height: 1.7;
  font-size: 0.95rem;
}

.project-content-brief .btn-primary,
.project-content .btn-primary {
  align-self: flex-start;
  padding: 12px 24px;
  font-size: 0.9rem;
  background: var(--gradient-primary);
  color: var(--white);
  border-radius: var(--border-radius-small);
  font-weight: 600;
}

.project-content-brief .btn-primary:hover,
.project-content .btn-primary:hover {
  background: var(--gradient-accent);
  color: var(--text-dark);
}

.project-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--gradient-accent);
  color: var(--text-dark);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  z-index: 3;
  box-shadow: var(--shadow-light);
}

/* SERVICE COUNTRIES SECTION */
/* IMPROVED SERVICE COUNTRIES SLIDER FOR INDEX PAGE */
.service-countries-slider-wrapper {
  width: 100%;
  overflow: hidden;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: var(--border-radius);
  padding: 30px 0;
  position: relative;
}

.service-countries-slider-wrapper::before,
.service-countries-slider-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 50px;
  z-index: 2;
  pointer-events: none;
}

.service-countries-slider-wrapper::before {
  left: 0;
  background: linear-gradient(to right, rgba(248, 249, 250, 1), rgba(248, 249, 250, 0));
}

.service-countries-slider-wrapper::after {
  right: 0;
  background: linear-gradient(to left, rgba(248, 249, 250, 1), rgba(248, 249, 250, 0));
}

.service-countries-slider-track {
  display: flex;
  gap: 40px;
  align-items: center;
  width: max-content;
  animation: none; /* We'll use JavaScript for smooth control */
}

.service-country-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  min-width: 120px;
  padding: 20px 15px;
  background: var(--white);
  border-radius: var(--border-radius-small);
  box-shadow: var(--shadow-light);
  transition: var(--transition);
  flex-shrink: 0;
}

.service-country-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.service-country-item img {
  width: 60px;
  height: 40px;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  border: 2px solid var(--white);
}

.service-country-item span {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary-color);
  text-align: center;
  line-height: 1.3;
}

/* Mobile responsive for service countries slider */
@media (max-width: 768px) {
  .service-countries-slider-wrapper {
    padding: 20px 0;
  }

  .service-countries-slider-track {
    gap: 25px;
  }

  .service-country-item {
    min-width: 100px;
    padding: 15px 10px;
    gap: 8px;
  }

  .service-country-item img {
    width: 50px;
    height: 32px;
  }

  .service-country-item span {
    font-size: 0.8rem;
  }

  .service-countries-slider-wrapper::before,
  .service-countries-slider-wrapper::after {
    width: 30px;
  }
}

@media (max-width: 480px) {
  .service-countries-slider-track {
    gap: 20px;
  }

  .service-country-item {
    min-width: 80px;
    padding: 12px 8px;
  }

  .service-country-item img {
    width: 40px;
    height: 26px;
  }

  .service-country-item span {
    font-size: 0.75rem;
  }
}

/* EXISTING SERVICE COUNTRIES SECTION (for services page) - keep existing styles */
.service-countries-section .service-countries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.service-countries-section .service-country-card {
  background: var(--white);
  padding: 30px 25px;
  border-radius: var(--border-radius);
  text-align: center;
  box-shadow: var(--shadow-light);
  transition: var(--transition);
  border: 2px solid transparent;
}

.service-countries-section .service-country-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-medium);
  border-color: var(--accent-color);
}

.service-countries-section .service-country-card img {
  width: 80px;
  height: 50px;
  object-fit: contain;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: var(--shadow-light);
}

.service-countries-section .service-country-card h3 {
  font-size: 1.3rem;
  color: var(--primary-color);
  margin-bottom: 15px;
  font-weight: 700;
}

.service-countries-section .service-country-card p {
  color: var(--text-light);
  line-height: 1.6;
}

/* TESTIMONIALS SECTION */
.testimonials {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 35px;
}

.testimonial-card {
  background: var(--white);
  padding: 40px 35px;
  border-radius: var(--border-radius);
  text-align: center;
  box-shadow: var(--shadow-light);
  transition: var(--transition);
  position: relative;
}

.testimonial-card::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 30px;
  font-size: 4rem;
  color: var(--accent-color);
  font-family: serif;
  opacity: 0.3;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.quote {
  font-size: 1.1rem;
  font-style: italic;
  margin-bottom: 25px;
  color: var(--text-dark);
  line-height: 1.7;
}

.author {
  font-weight: 700;
  color: var(--primary-color);
  font-size: 1rem;
}

/* CTA VIDEO SECTION */
.cta-video-section {
  background: var(--gradient-primary);
  color: var(--white);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-video-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="ctaPattern" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="2" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23ctaPattern)"/></svg>');
}

.cta-video-section .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
  position: relative;
  z-index: 1;
}

.cta-content {
  max-width: 800px;
}

.cta-content h2 {
  font-size: 2.8rem;
  margin-bottom: 25px;
  color: var(--accent-color);
  font-weight: 700;
}

.cta-content p {
  font-size: 1.2rem;
  margin-bottom: 35px;
  line-height: 1.8;
  opacity: 0.95;
}

.video-wrapper {
  position: relative;
  width: 100%;
  max-width: 800px;
  padding-bottom: 45%;
  background: rgba(0, 0, 0, 0.3);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-heavy);
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* BLOG SECTION */
.blog-section {
  padding: 100px 0;
  background: var(--white);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 35px;
}

.blog-card {
  background: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-light);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-medium);
}

.blog-image {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.blog-card:hover .blog-image img {
  transform: scale(1.05);
}

.blog-content {
  padding: 30px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-meta {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 15px;
}

.blog-meta i {
  margin-right: 5px;
  color: var(--secondary-color);
}

.blog-content h3 {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-bottom: 15px;
  font-weight: 700;
}

.blog-content p {
  color: var(--text-light);
  margin-bottom: 25px;
  flex-grow: 1;
  line-height: 1.7;
}

.blog-content .btn-primary {
  align-self: flex-start;
}

/* PLANS & OFFERS SECTIONS */
.plans-section,
.offers-section {
  padding: 100px 0;
}

.plans-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.plans-grid,
.offers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 35px;
}

.plan-card,
.offer-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: var(--border-radius);
  text-align: center;
  box-shadow: var(--shadow-light);
  transition: var(--transition);
  position: relative;
  border: 2px solid transparent;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.plan-card:hover,
.offer-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-medium);
}

.plan-card.popular,
.offer-card.popular {
  border-color: var(--accent-color);
}

.popular-badge {
  position: absolute;
  top: -15px;
  right: 20px;
  background: var(--gradient-accent);
  color: var(--primary-color);
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 700;
  box-shadow: var(--shadow-light);
}

.offer-badge {
  background: var(--gradient-primary);
  color: white;
  padding: 6px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  position: absolute;
  top: 20px;
  left: 20px;
}

.offer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.plan-card h3,
.offer-card h3 {
  font-size: 1.8rem;
  color: var(--primary-color);
  margin-bottom: 15px;
  font-weight: 700;
}

.plan-description,
.offer-description {
  color: var(--text-light);
  margin-bottom: 25px;
  flex-grow: 1;
  line-height: 1.7;
}

.price {
  margin: 25px 0;
}

.current-price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  display: block;
}

.original-price {
  text-decoration: line-through;
  color: #999;
  font-size: 1.2rem;
  margin-left: 10px;
}

.discount {
  background: #dc3545;
  color: white;
  padding: 4px 10px;
  border-radius: 8px;
  font-size: 0.9rem;
  margin-left: 10px;
  display: inline-block;
  font-weight: 600;
}

.features-list {
  text-align: left;
  margin-bottom: 30px;
  list-style: none;
}

.features-list li {
  padding: 8px 0;
  display: flex;
  align-items: center;
  gap: 12px;
}

.features-list i {
  color: var(--secondary-color);
  font-size: 0.9rem;
}

.plan-card .btn-primary,
.offer-card .btn-primary {
  width: 100%;
  margin-top: auto;
  justify-content: center;
}

/* CONTACT SECTION */
.contact {
  padding: 100px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-info h2 {
  color: var(--primary-color);
  margin-bottom: 30px;
  font-weight: 700;
  font-size: 2.2rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 35px;
  padding: 25px;
  background: var(--gray-light);
  border-radius: var(--border-radius);
  transition: var(--transition);
}

.contact-item:hover {
  background: var(--white);
  box-shadow: var(--shadow-light);
  transform: translateY(-3px);
}

.contact-item i {
  font-size: 1.8rem;
  color: var(--secondary-color);
  width: 40px;
  flex-shrink: 0;
  margin-top: 5px;
}

.contact-item div h3 {
  color: var(--primary-color);
  margin-bottom: 8px;
  font-weight: 700;
}

.contact-item div p {
  color: var(--text-light);
  margin: 0;
  font-size: 1.05rem;
}

.contact-form {
  background: var(--white);
  padding: 40px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-light);
}

.form-group {
  margin-bottom: 25px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 18px 20px;
  border: 2px solid #e9ecef;
  border-radius: var(--border-radius-small);
  font-size: 1rem;
  font-family: inherit;
  transition: var(--transition);
  background: var(--gray-light);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--secondary-color);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(42, 82, 152, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

/* ABOUT SECTION */
.about-content {
  padding: 100px 0;
}

.about-text h2 {
  color: var(--primary-color);
  margin-bottom: 25px;
  font-weight: 700;
  font-size: 2.5rem;
}

.about-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 40px;
}

.mission-vision {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 50px;
}

.mission,
.vision {
  padding: 40px;
  background: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-light);
  transition: var(--transition);
}

.mission:hover,
.vision:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.mission h3,
.vision h3 {
  color: var(--primary-color);
  margin-bottom: 15px;
  font-weight: 700;
  font-size: 1.5rem;
}

.mission p,
.vision p {
  line-height: 1.7;
  color: var(--text-light);
}

/* TEAM SECTION */
.team {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 35px;
}

.team-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: var(--border-radius);
  text-align: center;
  box-shadow: var(--shadow-light);
  transition: var(--transition);
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-medium);
}

.team-card img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 25px;
  border: 4px solid var(--accent-color);
}

.team-card h3 {
  color: var(--primary-color);
  margin-bottom: 10px;
  font-weight: 700;
}

.position {
  color: var(--secondary-color);
  font-weight: 600;
  margin-bottom: 15px;
}

.bio {
  color: var(--text-light);
  line-height: 1.6;
}

/* NO CONTENT MESSAGE */
.no-content-message {
  grid-column: 1 / -1;
  text-align: center;
  padding: 80px 40px;
  background: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-light);
}

.no-content-message i {
  font-size: 4rem;
  color: var(--primary-color);
  margin-bottom: 25px;
  opacity: 0.7;
}

.no-content-message h3 {
  font-size: 1.8rem;
  color: var(--primary-color);
  margin-bottom: 15px;
  font-weight: 700;
}

.no-content-message p {
  font-size: 1.1rem;
  color: var(--text-light);
}

/* STATS SECTION */
.stats {
  padding: 80px 0;
  background: #1e3c72;
  color: #ffd700;
  position: relative;
}

.stats .container {
  position: relative;
  z-index: 1;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.stat-item {
  text-align: center;
  padding: 40px 20px;
  transition: var(--transition);
}

.stat-item:hover {
  transform: translateY(-5px);
}

.stat-item h3 {
  font-size: 4rem;
  font-weight: 800;
  color: #ffd700;
  margin-bottom: 15px;
  line-height: 1;
}

.stat-item p {
  font-size: 1.2rem;
  font-weight: 600;
  color: #ffd700;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.4;
}

/* Mobile Stats */
@media (max-width: 768px) {
  .stats {
    padding: 60px 0;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .stat-item {
    padding: 30px 15px;
  }

  .stat-item h3 {
    font-size: 3rem;
    margin-bottom: 10px;
  }

  .stat-item p {
    font-size: 1rem;
    letter-spacing: 0.5px;
  }
}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .stat-item {
    padding: 30px 20px;
  }

  .stat-item h3 {
    font-size: 3.5rem;
  }

  .stat-item p {
    font-size: 1.1rem;
  }
}

/* Footer */
.footer {
  background: var(--gradient-primary);
  color: var(--white);
  padding: 60px 0 30px;
  position: relative;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="footerPattern" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="2" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23footerPattern)"/></svg>');
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}

.footer-section h3 {
  margin-bottom: 25px;
  color: var(--accent-color);
  font-weight: 700;
  font-size: 1.2rem;
}

.footer-section p {
  margin-bottom: 15px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: var(--transition);
}

.footer-section a:hover {
  color: var(--accent-color);
}

.contact-details p {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 30px;
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
  position: relative;
  z-index: 1;
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: var(--gradient-primary);
  color: var(--white);
  border: none;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  z-index: 1000;
  transition: var(--transition);
  box-shadow: var(--shadow-medium);
}

.back-to-top:hover {
  background: var(--gradient-accent);
  color: var(--text-dark);
  transform: translateY(-3px);
  box-shadow: var(--shadow-heavy);
}

/* Alert Messages */
.alert {
  background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
  color: #155724;
  padding: 18px 24px;
  border-radius: var(--border-radius);
  margin-bottom: 25px;
  text-align: center;
  border: 1px solid #c3e6cb;
  box-shadow: var(--shadow-light);
  font-weight: 500;
}

/* MOBILE RESPONSIVE DESIGN */
@media (max-width: 768px) {
  .container {
    padding: 0 16px;
  }

  /* MOBILE HEADER */
  .top-bar {
    padding: 8px 0;
  }

  .top-bar .container {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .contact-info {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }

  .contact-info span {
    margin-right: 0;
    font-size: 0.85rem;
    justify-content: center;
  }

  .social-links {
    margin-top: 8px;
  }

  .social-links a {
    width: 32px;
    height: 32px;
    font-size: 14px;
    margin: 0 6px;
  }

  /* MOBILE NAVIGATION */
  .navbar {
    padding: 12px 0;
  }

  .mobile-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    margin-left: 70%;
  }

  /* MOBILE HERO */
  .hero-slider {
    height: 60vh;
  }

  .slide .hero-content h1 {
    font-size: 2rem;
    margin-bottom: 15px;
  }

  .slide .hero-content h2 {
    font-size: 1.1rem;
    margin-bottom: 12px;
  }

  .slide .hero-content p {
    font-size: 1rem;
    margin-bottom: 25px;
    line-height: 1.6;
  }

  /* MOBILE PAGE HEADER */
  .page-header {
    padding: 80px 0 60px;
  }

  .page-header h1 {
    font-size: 2.2rem;
    margin-bottom: 15px;
  }

  .page-header p {
    font-size: 1rem;
  }

  /* MOBILE SECTION TITLES */
  .section-title {
    margin-bottom: 40px;
  }

  .section-title h2 {
    font-size: 2rem;
    margin-bottom: 15px;
  }

  .section-title p {
    font-size: 1rem;
  }

  /* MOBILE SERVICES */
  .services {
    padding: 60px 0;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 0 4px;
  }

  .service-card {
    padding: 30px 25px;
    margin-bottom: 8px;
  }

  .service-card i {
    font-size: 3rem;
    margin-bottom: 20px;
  }

  .service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
  }

  .service-card p {
    font-size: 0.95rem;
    margin-bottom: 20px;
  }

  /* MOBILE PROJECTS */
  .recent-projects-brief,
  .recent-projects {
    padding: 60px 0;
  }

  .projects-grid-brief,
  .projects-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 0 4px;
  }

  .project-card-brief,
  .project-card {
    margin-bottom: 8px;
  }

  .project-image-brief,
  .project-image {
    height: 200px;
  }

  .project-content-brief,
  .project-content {
    padding: 24px 20px;
  }

  .project-content-brief h3,
  .project-content h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
  }

  .project-content-brief .btn-primary,
  .project-content .btn-primary {
    width: 100%;
    justify-content: center;
  }

  /* MOBILE SERVICE COUNTRIES */
  .service-countries-section {
    padding: 60px 0;
  }

  .service-countries-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .service-country-card {
    padding: 25px 20px;
  }

  /* MOBILE TESTIMONIALS */
  .testimonials {
    padding: 60px 0;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .testimonial-card {
    padding: 30px 25px;
  }

  /* MOBILE CTA VIDEO */
  .cta-video-section {
    padding: 60px 0;
  }

  .cta-video-section .container {
    gap: 30px;
  }

  .cta-content h2 {
    font-size: 2rem;
    margin-bottom: 20px;
  }

  .cta-content p {
    font-size: 1rem;
    margin-bottom: 25px;
  }

  .video-wrapper {
    padding-bottom: 56.25%;
  }

  /* MOBILE BLOG */
  .blog-section {
    padding: 60px 0;
  }

  .blog-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .blog-image {
    height: 200px;
  }

  .blog-content {
    padding: 25px 20px;
  }

  .blog-content .btn-primary {
    width: 100%;
    justify-content: center;
  }

  /* MOBILE PLANS & OFFERS */
  .plans-section,
  .offers-section {
    padding: 60px 0;
  }

  .plans-grid,
  .offers-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .plan-card,
  .offer-card {
    padding: 30px 25px;
  }

  /* MOBILE CONTACT */
  .contact {
    padding: 60px 0;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-info h2 {
    font-size: 1.8rem;
    margin-bottom: 25px;
  }

  .contact-item {
    padding: 20px;
    margin-bottom: 20px;
  }

  .contact-item i {
    font-size: 1.5rem;
  }

  .contact-form {
    padding: 30px 25px;
  }

  .form-group input,
  .form-group textarea {
    padding: 15px 18px;
  }

  /* MOBILE ABOUT */
  .about-content {
    padding: 60px 0;
  }

  .about-text h2 {
    font-size: 2rem;
    margin-bottom: 20px;
  }

  .about-text p {
    font-size: 1rem;
    margin-bottom: 30px;
  }

  .mission-vision {
    grid-template-columns: 1fr;
    gap: 25px;
    margin-top: 30px;
  }

  .mission,
  .vision {
    padding: 30px 25px;
  }

  .mission h3,
  .vision h3 {
    font-size: 1.3rem;
  }
}
