/*
Theme Name: Amix Golf PDF Clone
Theme URI: https://amixgolf.com/
Author: AI Developer
Description: An exact match of the new PDF design.
Version: 2.0
Tags: luxury, golf, tourism, egypt
Text Domain: amixgolf
*/

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&display=swap');

:root {
  --primary-color: #55b948;
  --bg-color: #070733;
  --text-primary: #ffffff;
  --text-dark: #070733;
  --nav-bg: #ffffff;
  --nav-text: #070733;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  background-color: var(--bg-color);
  color: var(--text-primary);
  line-height: 1.5;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

img {
  max-width: 100%;
  border-radius: 8px;
}

/*
======================================================
  NAVIGATION
======================================================
*/
.header-area {
  position: absolute;
  top: 15px;
  left: 0;
  width: 100%;
  z-index: 100;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  padding: 15px 1rem;
  /* adds breathing space */
}

.logo {
  position: absolute;
  left: 20px;
  top: 60px;
  /* نزّله تحت شوية (زوّد الرقم لو عايز ينزل أكتر) */
  width: 65px;
  /* صغّر الحجم (جرّب 60px أو 55px لو عايز أصغر) */
  z-index: 101;
}

.logo img {
  width: 100%;
  height: auto;
}

.nav-pill {
  background: var(--nav-bg);
  padding: 15px 40px;
  border-radius: 50px;
  display: flex;
  gap: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.nav-close {
  display: none;
}

.nav-pill a {
  color: var(--nav-text);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
}

.nav-pill a:hover,
.nav-pill a.active {
  color: var(--primary-color);
}

/*
======================================================
  PAGE HERO BANNER (for all subpages)
======================================================
*/
.page-hero {
  position: relative;
  height: 45vh;
  min-height: 350px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(7, 7, 51, 0.2), rgba(7, 7, 51, 0.5));
  z-index: 1;
}

.page-hero .hero-content {
  position: relative;
  z-index: 2;
}

.page-hero h1 {
  font-size: 4rem;
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
  margin-bottom: 0.5rem;
  letter-spacing: 3px;
}

.page-hero p {
  font-size: 1.1rem;
  color: #fff;
  font-weight: 400;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

/*
======================================================
  HERO SECTION (homepage)
======================================================
*/
.hero {
  height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(to bottom, rgba(7, 7, 51, 0.3), rgba(7, 7, 51, 0.6)), url('./assets/hero_bg.jpg') no-repeat center center/cover;
  position: relative;
  padding-top: 80px;
}

.hero h1 {
  font-size: 3.5rem;
  line-height: 1.2;
  margin-bottom: 2rem;
  max-width: 900px;
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

/*
======================================================
  BUTTONS
======================================================
*/
.btn-outline {
  display: inline-block;
  padding: 12px 30px;
  border: 2px solid #fff;
  border-radius: 30px;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background: #fff;
  color: var(--bg-color);
}

.btn-outline-green {
  display: inline-block;
  padding: 12px 30px;
  border: 2px solid var(--primary-color);
  border-radius: 30px;
  color: var(--primary-color);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  background: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-outline-green:hover {
  background: var(--primary-color);
  color: #fff;
}

.btn-solid-green {
  display: inline-block;
  padding: 14px 40px;
  border-radius: 30px;
  background: var(--primary-color);
  color: #fff;
  border: none;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-solid-green:hover {
  background: #3d9633;
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(85, 185, 72, 0.4);
}

.btn-solid-blue {
  display: inline-block;
  padding: 12px 40px;
  border-radius: 30px;
  background: #020224;
  color: #fff;
  border: 2px solid #fff;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-solid-blue:hover {
  background: #fff;
  color: #020224;
}

/*
======================================================
  LAYOUT
======================================================
*/
.section-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 3rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

/*
======================================================
  HERO SECTION
======================================================
*/
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url('./assets/hero_b1g.jpg') center/cover no-repeat;
  padding-top: 80px;
  /* accommodate header */
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(7, 7, 51, 0.4);
  /* subtle dark overlay for text readability */
  z-index: 1;
}

/*
======================================================
  WHY GOLF IN EGYPT?
======================================================
*/
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 4rem;
}

.why-text {
  font-size: 1.1rem;
  line-height: 1.8;
}

.why-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: left;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.feature-item img {
  width: 50px;
  height: auto;
}

.feature-item p {
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1.3;
}

.full-img-divider {
  width: 100%;
  height: 250px;
  background: url('./assets/course1.jpg') center/cover;
}

/*
======================================================
  SERVICES
======================================================
*/
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  padding: 0 2rem;
}

.service-card {
  position: relative;
  text-align: center;
}

.service-img-wrap {
  position: relative;
  border-radius: 15px;
  overflow: visible;
  margin-bottom: 2rem;
}

.service-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 15px;
}

.service-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem;
}

.service-overlay h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

.service-overlay p {
  font-size: 0.9rem;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
}

.icon-badge {
  position: absolute;
  width: 70px;
  height: 70px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 4px solid var(--bg-color);
  z-index: 10;
}

.icon-badge.top-left {
  top: -20px;
  left: -20px;
}

.icon-badge.top-right {
  top: -20px;
  right: -20px;
}

.icon-badge img {
  width: 35px;
}

/*
======================================================
  SERVICE TABS (Services page)
======================================================
*/
.service-tabs {
  display: flex;
  justify-content: flex-end;
  gap: 2rem;
  margin-bottom: 3rem;
  padding: 0 1rem;
}

.service-tabs a {
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  padding-bottom: 5px;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}

.service-tabs a.active-tab {
  color: var(--primary-color);
  border-bottom-color: var(--primary-color);
}

.service-tabs a:hover {
  color: var(--primary-color);
}

.service-tab-content {
  display: none;
  animation: fadeIn 0.4s ease;
}

.service-tab-content.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.service-detail-img {
  max-width: 500px;
  margin: 0 auto 2rem;
  border-radius: 15px;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.service-detail-desc {
  text-align: center;
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 3rem;
}

.includes-section {
  display: flex;
  align-items: center;
  gap: 3rem;
  margin: 3rem auto;
  max-width: 600px;
}

.includes-section h3 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  white-space: nowrap;
}

.includes-list {
  list-style: none;
  padding: 0;
}

.includes-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.5rem;
}

.includes-list li i {
  font-size: 1.8rem;
  color: var(--primary-color);
  width: 45px;
  text-align: center;
}

.service-cta {
  background: linear-gradient(to right, rgba(7, 7, 51, 0.85), rgba(7, 7, 51, 0.4)), url('./assets/golf_egypt.jpg') center/cover;
  padding: 4rem 2rem;
  text-align: center;
  margin-top: 3rem;
}

.service-cta .btn-outline {
  margin-top: 1rem;
}

/*
======================================================
  GOLF COURSES
======================================================
*/
.courses-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.course-card {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  height: 250px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.course-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.course-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.course-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.5) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding-top: 1.5rem;
}

.course-overlay h3 {
  font-size: 1.5rem;
}

/* Course card enhanced (for courses page) */
.course-card-enhanced {
  border-radius: 15px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.course-card-enhanced:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.course-card-enhanced img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 15px 15px 0 0;
}

.course-card-enhanced .course-info {
  position: relative;
}

.course-card-enhanced .course-name-overlay {
  position: absolute;
  top: -40px;
  left: 0;
  right: 0;
  padding: 10px;
  text-align: center;
  background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.7));
}

.course-card-enhanced .course-name-overlay h3 {
  color: #fff;
  font-size: 1.3rem;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.course-card-enhanced .course-details {
  background: var(--primary-color);
  color: #fff;
  padding: 12px;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 600;
}

.course-card-enhanced .course-btn {
  text-align: center;
  padding: 15px;
}

.course-card-enhanced .course-btn .btn-outline {
  border: 2px solid #fff;
  border-radius: 25px;
  padding: 8px 25px;
  color: #fff;
  font-weight: 700;
}

.course-section-title {
  font-size: 2rem;
  text-align: center;
  color: #fff;
  margin: 4rem 0 2rem;
  text-transform: uppercase;
}

.course-quote {
  background: linear-gradient(to right, rgba(7, 7, 51, 0.7), rgba(7, 7, 51, 0.4)), url('./assets/golf_egypt.jpg') center/cover;
  padding: 5rem 2rem;
  text-align: center;
  font-size: 1.5rem;
  font-style: italic;
  color: #fff;
  margin-top: 3rem;
}

/*
======================================================
  PACKAGES
======================================================
*/
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 4rem;
  padding-bottom: 4rem;
}

.pack-wrapper {
  position: relative;
  filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.3));
  padding-top: 55px;
}

.pack-bg-accent {
  position: absolute;
  top: 70px;
  left: 20px;
  right: -20px;
  bottom: -15px;
  background: var(--primary-color);
  clip-path: polygon(0 0, 100% 0, 100% 80%, 50% 100%, 0 80%);
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  z-index: 0;
}

.pack-bg-accent.left {
  left: -20px;
  right: 20px;
}

.pack-bg-accent.right {
  left: 20px;
  right: -20px;
}

.pack-inner {
  background: #fff;
  position: relative;
  z-index: 1;
  clip-path: polygon(0 0, 100% 0, 100% 80%, 50% 100%, 0 80%);
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  padding: 4rem 2rem 6rem;
  text-align: center;
  height: 100%;
  color: var(--text-dark);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pack-circle-img {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  border: 5px solid #fff;
  object-fit: cover;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.pack-inner h3 {
  color: var(--primary-color);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.pack-inner .pack-desc {
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.pack-inner .pack-courses {
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  color: #444;
}

/*
======================================================
  CLIENTS / TESTIMONIALS
======================================================
*/
.clients-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.client-card {
  background: #fff;
  color: var(--text-dark);
  border-radius: 15px;
  padding: 3rem 1.5rem 1.5rem;
  position: relative;
  text-align: center;
}

.client-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  border: 4px solid var(--bg-color);
}

.client-card h4 {
  color: var(--primary-color);
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.client-card p {
  font-weight: 700;
  font-size: 0.9rem;
  font-style: italic;
  margin-bottom: 1rem;
}

.stars {
  color: var(--primary-color);
  font-size: 1.5rem;
}

/*
======================================================
  CTA SECTION (Ready To Tee Off)
======================================================
*/
.cta-section {
  background: linear-gradient(to right, rgba(7, 7, 51, 0.85), rgba(7, 7, 51, 0.5)), url('./assets/golf_egypt.jpg') center/cover;
  padding: 6rem 2rem;
  text-align: left;
}

.cta-section .container {
  padding: 0 2rem;
}

.cta-section h2 {
  font-size: 3rem;
  color: #fff;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.cta-section p {
  font-size: 1.1rem;
  color: #ccc;
  margin-bottom: 2rem;
  max-width: 500px;
}

/*
======================================================
  TRUSTED / STRIP
======================================================
*/
/* Logo Sections Refinement - Styles now handled directly in index.html for precision */
.trusted-strip,
.partners-section {
  display: none !important;
}

/*
======================================================
  ABOUT US & BOTTOM HERO
======================================================
*/
.about-section {
  background: linear-gradient(to right, rgba(7, 7, 51, 0.9), rgba(7, 7, 51, 0.3)), url('./assets/course1.jpg') center/cover;
  padding: 5rem 0;
}

.about-content {
  max-width: 600px;
}

.about-content p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

/* About page specific */
.about-who-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 4rem;
}

.about-who-text p {
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.about-who-img {
  position: relative;
}

.about-who-img img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.about-who-img .circle-accent {
  position: absolute;
  width: 50px;
  height: 50px;
  border: 3px solid var(--primary-color);
  border-radius: 50%;
}

.about-who-img .circle-accent.top-right {
  top: -15px;
  right: -15px;
}

.about-who-img .circle-accent.bottom-right {
  bottom: -15px;
  right: 30px;
}

/* Mission & Vision Pin Cards */
.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 2rem;
}

.mv-card {
  position: relative;
  text-align: center;
}

.mv-pin {
  background: #fff;
  color: var(--text-dark);
  padding: 3rem 2rem 4rem;
  border-radius: 20px;
  position: relative;
  clip-path: polygon(0 0, 100% 0, 100% 80%, 50% 100%, 0 80%);
  min-height: 350px;
}

.mv-pin-icon {
  width: 70px;
  height: 70px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  position: relative;
  top: -35px;
  border: 5px solid var(--bg-color);
}

.mv-pin-icon i {
  font-size: 1.8rem;
  color: #fff;
}

.mv-pin h3 {
  color: var(--primary-color);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  margin-top: -20px;
}

.mv-pin p {
  font-size: 0.95rem;
  line-height: 1.7;
  font-weight: 500;
}

/* About gallery grid */
.about-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.about-gallery-grid .gallery-item {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  height: 200px;
  transition: transform 0.3s ease;
}

.about-gallery-grid .gallery-item:hover {
  transform: translateY(-5px);
}

.about-gallery-grid .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
}

.about-gallery-grid .gallery-item .gallery-label {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
}

.about-gallery-grid .gallery-item .gallery-label h4 {
  color: #fff;
  font-size: 1.2rem;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

/*
======================================================
  GALLERY PAGE
======================================================
*/
.gallery-carousel {
  position: relative;
  max-width: 600px;
  margin: 3rem auto;
}

.gallery-carousel img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: transparent;
  border: 2px solid var(--primary-color);
  border-radius: 50%;
  color: var(--primary-color);
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-nav:hover {
  background: var(--primary-color);
  color: #fff;
}

.carousel-nav.prev {
  left: -80px;
}

.carousel-nav.next {
  right: -80px;
}

.carousel-location {
  text-align: center;
  margin-top: 1.5rem;
}

.carousel-location h3 {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
}

/* Wave Divider */
.wave-divider {
  position: relative;
  background: var(--primary-color);
  padding: 2rem 0;
  text-align: center;
  margin: 3rem 0;
  overflow: hidden;
}

.wave-divider::before {
  content: '';
  position: absolute;
  top: -30px;
  left: 0;
  right: 0;
  height: 40px;
  background: var(--primary-color);
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
}

.wave-divider::after {
  content: '';
  position: absolute;
  bottom: -30px;
  left: 0;
  right: 0;
  height: 40px;
  background: var(--primary-color);
  border-radius: 0 0 50% 50% / 0 0 100% 100%;
}

.wave-divider h2 {
  color: var(--text-dark);
  font-size: 2rem;
  font-weight: 800;
  text-transform: uppercase;
}

.gallery-highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 3rem;
}

.gallery-highlights-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-highlights-grid img:hover {
  transform: scale(1.03);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

/*
======================================================
  CONTACT PAGE
======================================================
*/
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin: 3rem 0 4rem;
  text-align: center;
}

.contact-info-item i {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  display: block;
}

.contact-info-item p {
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
}

.contact-form-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: flex-start;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 20px;
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 10px;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--primary-color);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  font-weight: 600;
  font-size: 0.85rem;
}

.contact-form textarea {
  min-height: 200px;
  resize: vertical;
}

.contact-talk h3 {
  color: #fff;
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.contact-talk h4 {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.contact-talk p {
  color: #ccc;
  font-size: 0.95rem;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.contact-talk .social-label {
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.contact-social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border: 2px solid var(--primary-color);
  border-radius: 10px;
  color: var(--primary-color);
  font-size: 1.3rem;
  margin-right: 10px;
  transition: all 0.3s ease;
}

.contact-social-icons a:hover {
  background: var(--primary-color);
  color: #fff;
}

/* Partners Section handled by generic logo-strip classes */

/*
======================================================
  FOOTER
======================================================
*/
.footer {
  background: #02021A;
  padding: 4rem 0 1rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto 3rem;
  padding: 0 2rem;
}

.footer-logo {
  width: 80px;
  margin-bottom: 1rem;
}

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

.footer-links ul li {
  margin-bottom: 0.8rem;
  font-size: 0.9rem;
  font-weight: 600;
}

.footer-contact p {
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.footer-bottom {
  text-align: center;
  font-size: 0.85rem;
  padding: 1.5rem;
  background: var(--primary-color);
  color: #fff;
  font-weight: 600;
}

.social-icons a {
  display: inline-block;
  margin-right: 15px;
  border: 1px solid #fff;
  border-radius: 5px;
  width: 30px;
  height: 30px;
  text-align: center;
  line-height: 28px;
}

/*
======================================================
  RESPONSIVE
======================================================
*/
@media (max-width: 768px) {
  .nav-pill {
    padding: 10px 15px;
    gap: 0.8rem;
    font-size: 0.7rem;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .page-hero h1 {
    font-size: 2.5rem;
  }

  .why-grid,
  .services-grid,
  .about-who-grid,
  .contact-form-section {
    grid-template-columns: 1fr;
  }

  .courses-grid,
  .packages-grid,
  .clients-grid,
  .contact-info-grid,
  .mv-grid,
  .about-gallery-grid,
  .gallery-highlights-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .carousel-nav.prev {
    left: -50px;
  }

  .carousel-nav.next {
    right: -50px;
  }

  .includes-section {
    flex-direction: column;
    text-align: center;
  }

  .cta-section h2 {
    font-size: 2rem;
  }
}

/* PAYMENT MODAL */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
}

.modal-content {
  background: #fff;
  border-radius: 15px;
  width: 90%;
  max-width: 600px;
  padding: 30px;
  position: relative;
  color: var(--text-dark);
  text-align: center;
  animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.close-modal {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 1.5rem;
  font-weight: bold;
  cursor: pointer;
  color: #888;
}

.close-modal:hover {
  color: #000;
}

.payment-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
  justify-content: center;
}

.pay-tab {
  flex: 1;
  padding: 10px;
  border: none;
  background: #f0f0f0;
  color: #555;
  font-weight: bold;
  cursor: pointer;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.pay-tab.active {
  background: var(--primary-color);
  color: #fff;
}

.pay-methods-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.pay-method-card {
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 15px;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.pay-method-card:hover {
  border-color: var(--primary-color);
  background: #f9fdf8;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.pay-method-card i {
  color: var(--primary-color);
}

.payment-form-view {
  display: none;
  text-align: left;
}

.payment-form-view h3 {
  color: var(--primary-color);
  margin-bottom: 15px;
  text-align: center;
}

.payment-form-group {
  margin-bottom: 15px;
}

.payment-form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 5px;
  color: #333;
  font-size: 0.9rem;
}

.payment-form-group input,
.payment-form-group textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.9rem;
}

.payment-form-group input[type="file"] {
  padding: 8px;
  background: #f9f9f9;
}

.back-btn {
  background: none;
  border: none;
  color: #888;
  font-weight: bold;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 15px;
  font-size: 0.9rem;
}

.back-btn:hover {
  color: var(--text-dark);
}

#payment-success-view {
  display: none;
  text-align: center;
  padding: 40px 20px;
}

#payment-success-view i {
  color: var(--primary-color);
  margin-bottom: 20px;
}

/*
======================================================
  MISSION & VISION (ABOUT PAGE)
======================================================
*/
.mv-grid {
  display: flex;
  justify-content: center;
  gap: 4rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.mv-card {
  width: 300px;
  position: relative;
  text-align: center;
  margin-bottom: 2rem;
}

/* Base pentagon/pin shape using clip-path on wrapper */
.mv-pin {
  background: #fff;
  color: var(--text-dark);
  padding: 80px 30px 50px;
  border-radius: 20px 20px 0 0;
  clip-path: polygon(0 0, 100% 0, 100% 70%, 50% 100%, 0 70%);
  position: relative;
  min-height: 380px;
}

/* Green shadow/backdrop to mimic the 3D layer effect */
.mv-card::before {
  content: '';
  position: absolute;
  top: 15px;
  left: -15px;
  right: 15px;
  bottom: -15px;
  background: var(--primary-color);
  border-radius: 20px 20px 0 0;
  clip-path: polygon(0 0, 100% 0, 100% 70%, 50% 100%, 0 70%);
  z-index: -1;
}

.mv-pin-icon {
  width: 100px;
  height: 100px;
  background: #fff;
  border-radius: 50%;
  border: 10px solid var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
}

.mv-pin-icon i {
  font-size: 2.5rem;
  color: var(--primary-color);
}

.mv-pin h3 {
  color: var(--primary-color);
  font-size: 1.8rem;
  margin-bottom: 1rem;
  margin-top: 20px;
}

.mv-pin p {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.5;
}


/*
======================================================
  HAMBURGER MENU (mobile only)
======================================================
*/
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 200;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background: var(--nav-text);
  margin: 5px 0;
  border-radius: 3px;
  transition: all 0.3s ease;
}

/*
======================================================
  ADDITIONAL RESPONSIVE FIXES (GLOBAL)
======================================================
*/

/* Reset box-sizing for all elements */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Fluid images */
img {
  max-width: 100%;
  height: auto;
}

/* Stack major grids on tablet/mobile */
@media (max-width: 900px) {

  .mv-grid,
  .packages-grid,
  .clients-grid,
  .courses-grid,
  .services-grid,
  .footer-grid,
  .why-grid,
  .why-features,
  .contact-info-grid,
  .about-gallery-grid,
  .gallery-highlights-grid {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 2rem !important;
  }
}

/* Remove fixed widths and align text on smaller screens */
@media (max-width: 768px) {

  /* HERO TYPOGRAPHY */
  .hero h1,
  .page-hero h1 {
    font-size: 2rem !important;
    line-height: 1.2 !important;
  }

  .hero {
    height: auto !important;
    min-height: 80vh !important;
    padding-top: 120px !important;
  }

  /* NAVIGATION */
  .hamburger {
    display: block !important;
    z-index: 200;
  }

  .nav-pill {
    display: none !important;
    flex-direction: column !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background: #fff !important;
    z-index: 150 !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 2rem !important;
    padding: 2rem !important;
    border-radius: 0 !important;
    width: 100% !important;
    height: 100vh !important;
  }

  .nav-pill.open {
    display: flex !important;
  }

  .nav-close {
    display: block !important;
    position: absolute !important;
    top: 20px !important;
    right: 20px !important;
    font-size: 2.5rem !important;
    color: var(--nav-text) !important;
  }

  .nav-pill a {
    font-size: 1.5rem !important;
  }

  /* LAYOUT BLOCKS */
  .pack-wrapper,
  .client-card,
  .service-card,
  .mv-card,
  .course-card,
  .course-card-enhanced,
  .feature-item,
  .about-who-img {
    width: 100% !important;
    max-width: 100% !important;
  }

  /* Reset container padding for narrow screens */
  .container {
    padding: 2rem 1rem !important;
  }

  .logo {
    left: 10px !important;
    width: 80px !important;
  }

  /* Trusted logos scaling */
  .trusted-logos img {
    height: 40px !important;
  }
}

/* Fix for specific flex sections with inline styles */
.mv-pin {
  min-height: auto !important;
}

/* WhatsApp Floating Button Integration */
:root {
  --whatsapp-color: #25D366;
  --whatsapp-dark: #128C7E;
  --whatsapp-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
}

.whatsapp-float {
  position: fixed;
  bottom: 40px;
  right: 40px;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.whatsapp-icon-container {
  width: 70px;
  height: 70px;
  background-color: var(--whatsapp-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--whatsapp-shadow);
  transition: transform 0.3s ease, background-color 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  animation: whatsapp-pulse 2s infinite;
}

.whatsapp-icon-container::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.4) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.whatsapp-float:hover .whatsapp-icon-container {
  transform: scale(1.1) rotate(5deg);
  background-color: var(--whatsapp-dark);
}

.whatsapp-float:hover .whatsapp-icon-container::before {
  opacity: 1;
}

/* Tooltip / Label */
.whatsapp-tooltip {
  position: absolute;
  right: 85px;
  background-color: white;
  color: var(--whatsapp-dark);
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateX(20px);
  transition: all 0.3s ease;
  white-space: nowrap;
  border: 1px solid rgba(37, 211, 102, 0.1);
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

@keyframes whatsapp-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }

  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
  }

  .whatsapp-icon-container {
    width: 60px;
    height: 60px;
  }

  .whatsapp-tooltip {
    display: none;
  }
}

/* Mission & Vision Section Styles - Restored Pin Design */
.mv-section {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.mv-section h2 {
  text-align: center;
  color: #fff !important;
  margin-bottom: 3rem;
  font-size: 2.5rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.mv-grid {
  display: flex !important;
  justify-content: center !important;
  gap: 6rem !important;
  flex-wrap: wrap !important;
  margin-top: 4rem !important;
}

.mv-card {
  width: 350px !important;
  position: relative !important;
  text-align: center !important;
  margin-bottom: 3rem;
  z-index: 10;
}

/* Green shadow/backdrop to mimic the 3D layer effect */
.mv-card::before {
  content: '';
  position: absolute;
  top: 15px;
  left: -15px;
  width: 100%;
  height: 100%;
  background: var(--primary-color);
  border-radius: 20px 20px 0 0;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 40px), 50% 100%, 0 calc(100% - 40px));
  z-index: -1;
}

/* Base pentagon/pin shape */
.mv-pin {
  background: #fff !important;
  color: var(--text-dark);
  padding: 80px 30px 60px;
  border-radius: 20px 20px 0 0;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 40px), 50% 100%, 0 calc(100% - 40px));
  position: relative;
  min-height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 2;
}

.mv-pin-icon {
  width: 100px;
  height: 100px;
  background: #fff;
  border-radius: 50%;
  border: 10px solid var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
}

/* Create the green background extension for the icon so it doesn't look cut off if offset */
.mv-pin-icon::after {
  content: '';
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  border-radius: 50%;
  background: var(--primary-color);
  z-index: -1;
}

.mv-pin-icon i {
  font-size: 2.5rem;
  color: var(--primary-color);
  position: relative;
  z-index: 2;
  background: #fff;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mv-pin h3 {
  color: var(--primary-color) !important;
  font-size: 1.8rem !important;
  margin-bottom: 1rem !important;
  margin-top: 20px !important;
  font-weight: 700;
}

.mv-pin p {
  font-size: 1rem !important;
  font-weight: 700 !important;
  color: var(--text-dark) !important;
  line-height: 1.5 !important;
  text-align: center !important;
}

@media (max-width: 900px) {
  .mv-grid {
    flex-direction: column !important;
    align-items: center !important;
    gap: 8rem !important;
  }

  .mv-card {
    width: 90% !important;
    max-width: 350px !important;
  }

  .mv-card::before {
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 30px), 50% 100%, 0 calc(100% - 30px)) !important;
    top: 15px;
    left: -10px;
    width: 100%;
    height: 100%;
  }

  .mv-pin {
    padding: 80px 20px 60px !important;
    min-height: auto !important;
    height: auto !important;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 30px), 50% 100%, 0 calc(100% - 30px)) !important;
  }

  .mv-pin p {
    font-size: 0.95rem !important;
    padding: 0 5px !important;
  }
}