/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700&display=swap');

:root {
  --primary: #044d29;
  --primary-light: #066b3a;
  --accent: #d4af37;
  --bg-color: #f8f9fa;
  --text-dark: #212529;
  --text-light: #6c757d;
  --white: #ffffff;
}

body {
  font-family: 'Outfit', sans-serif;
  background-color: var(--bg-color);
  color: var(--text-dark);
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  color: var(--primary);
}

/* Navbar */
.navbar {
  background-color: var(--white);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  padding: 0.5rem 0;
}
.navbar-brand img {
  height: 50px;
  object-fit: contain;
}
.navbar-brand span {
  color: var(--accent);
}
.nav-link {
  font-weight: 600;
  color: var(--text-dark) !important;
  transition: color 0.3s ease;
}
.nav-link:hover, .nav-link.active {
  color: var(--accent) !important;
}

/* Hero Section */
.hero-section {
  position: relative;
  height: 80vh;
  min-height: 500px;
  border-bottom: 5px solid var(--accent);
  overflow: hidden;
}
.hero-bg-img {
  object-fit: cover;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(4, 77, 41, 0.7); /* Dark emerald overlay for readability */
  z-index: 2;
}
.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  width: 100%;
}
.hero-content h1 {
  color: var(--accent);
  font-size: 4rem;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
  animation: fadeInDown 1s ease;
}
.hero-content p {
  font-size: 1.5rem;
  font-weight: 300;
  margin-bottom: 2rem;
  color: #fff;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
  animation: fadeInUp 1s ease;
}

.btn-primary-custom {
  background-color: var(--accent);
  color: var(--white);
  font-weight: 600;
  padding: 0.75rem 2.5rem;
  border-radius: 50px;
  border: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(212, 175, 55, 0.3);
  text-decoration: none;
  display: inline-block;
}
.btn-primary-custom:hover {
  background-color: #c09e32;
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(212, 175, 55, 0.4);
}

/* Section Shared */
.section-padding {
  padding: 80px 0;
}
.section-title {
  text-align: center;
  margin-bottom: 50px;
}
.section-title h2 {
  font-size: 2.5rem;
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
}
.section-title h2::after {
  content: '';
  position: absolute;
  width: 60px;
  height: 4px;
  background-color: var(--accent);
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
}

/* Services */
.service-card {
  background: var(--white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
  border-bottom: 4px solid transparent;
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-10px);
  border-bottom: 4px solid var(--accent);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}
.service-img-wrapper {
  height: 200px;
  overflow: hidden;
}
.service-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.service-card:hover .service-img {
  transform: scale(1.1);
}
.service-content {
  padding: 30px 20px;
  text-align: center;
  flex-grow: 1;
}
.service-card h4 {
  font-size: 1.35rem;
  margin-bottom: 15px;
}
.service-card p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 0;
}

/* Umrah Package */
.package-wrapper {
  background-color: var(--primary);
  border-radius: 20px;
  color: var(--white);
  padding: 50px;
  box-shadow: 0 20px 50px rgba(4, 77, 41, 0.2);
  position: relative;
  overflow: hidden;
}
.package-wrapper::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background-color: rgba(212, 175, 55, 0.1);
  border-radius: 50%;
}
.package-wrapper h3 {
  color: var(--accent);
  margin-bottom: 30px;
  font-size: 2rem;
}
.package-wrapper h5 {
  color: var(--accent);
  margin-bottom: 20px;
  font-size: 1.25rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding-bottom: 10px;
}
.feature-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}
.feature-list li {
  margin-bottom: 15px;
  font-size: 1.05rem;
  display: flex;
  align-items: flex-start;
  color: #e2e8f0;
}
.feature-list li i {
  color: var(--accent);
  margin-right: 15px;
  font-size: 1.25rem;
  margin-top: 3px;
}

/* Contact Section */
.contact-section {
  background-color: var(--white);
}
.contact-info {
  background: var(--white);
  border-radius: 15px;
  padding: 40px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  height: 100%;
}
.contact-item {
  display: flex;
  margin-bottom: 30px;
  align-items: center;
}
.contact-item:last-child {
  margin-bottom: 0;
}
.contact-item-icon {
  width: 60px;
  height: 60px;
  background-color: rgba(212, 175, 55, 0.1);
  color: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-right: 20px;
  flex-shrink: 0;
}
.contact-item-content h5 {
  font-size: 1.1rem;
  margin-bottom: 5px;
  color: var(--text-dark);
}
.contact-item-content p {
  margin-bottom: 0;
  color: var(--text-light);
  line-height: 1.5;
}

/* Footer */
.footer {
  background-color: #111;
  color: #fff;
  padding: 60px 0 20px;
  border-top: 5px solid var(--accent);
}
.footer h5 {
  color: var(--accent);
  margin-bottom: 25px;
  font-size: 1.25rem;
}
.footer p {
  color: #aaa;
  line-height: 1.6;
}
.footer ul {
  list-style: none;
  padding: 0;
}
.footer ul li {
  margin-bottom: 12px;
}
.footer ul li a {
  color: #aaa;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer ul li a:hover {
  color: var(--accent);
}
.footer-bottom {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #333;
  text-align: center;
  color: #777;
  font-size: 0.9rem;
}

/* Privacy Policy page specific */
.page-header {
  background-color: var(--primary);
  padding: 80px 0 40px;
  text-align: center;
  color: var(--white);
  border-bottom: 5px solid var(--accent);
}
.page-header h1 {
  color: var(--accent);
  margin-bottom: 10px;
}
.content-wrapper {
  background: var(--white);
  border-radius: 15px;
  padding: 40px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  margin-top: -30px;
  margin-bottom: 50px;
}

/* Animations */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    .hero-content p {
        font-size: 1.2rem;
    }
}
