:root {
  --primary-color-1: #D4AF37; /* Gold */
  --primary-color-2: #2C3E50; /* Dark Blue */
  --primary-color-3: #ECEFF1; /* Light Gray */
  --primary-color-4: #8D6E63; /* Brown */
  --primary-color-5: #263238; /* Dark Gray */
  
  --light-shade-1: #F5F5F5;
  --light-shade-2: #E0E0E0;
  --dark-shade-1: #1A1A1A;
  --dark-shade-2: #333333;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
overflow-x: hidden;
  font-family: 'Montserrat', sans-serif;
  color: var(--dark-shade-1);
  line-height: 1.6;
  overflow-x: hidden;
  background-color: var(--light-shade-1);
}

section {
  padding: 80px 0;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  margin-bottom: 1rem;
  line-height: 1.2;
}

h1 {
  font-size: 3.5rem;
}

h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 2rem;
}

p {
  margin-bottom: 1rem;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 28px;
  background-color: var(--primary-color-1);
  color: var(--dark-shade-1);
  text-decoration: none;
  border-radius: 4px;
  font-weight: 500;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn:hover {
  background-color: var(--primary-color-2);
  color: var(--light-shade-1);
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 15px 0;
  transition: all 0.3s ease;
}

.header.scrolled {
  padding: 10px 0;
  background-color: rgba(255, 255, 255, 0.98);
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-color-2);
  text-decoration: none;
}

.nav-menu {
  display: flex;
  list-style: none;
}

.nav-menu li {
  margin-left: 30px;
}

.nav-menu a {
  color: var(--dark-shade-1);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-menu a:hover {
  color: var(--primary-color-1);
}

.mobile-menu-btn {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero Section */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../AID_images/hero-bg.webp');
  background-size: cover;
  background-position: center;
  color: var(--light-shade-1);
  position: relative;
}

.hero-content {
  max-width: 650px;
}

.hero-content h1 {
  margin-bottom: 20px;
  font-size: 3.5rem;
}

.hero-content p {
  margin-bottom: 30px;
  font-size: 1.1rem;
}

/* About Section */
.about {
  background-color: var(--light-shade-1);
}

.about-content {
  display: flex;
  align-items: center;
  gap: 50px;
}

.about-text {
  flex: 1;
}

.about-image {
  flex: 1;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.about-feature-item {
  background-color: var(--light-shade-2);
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.about-feature-item:hover {
  transform: translateY(-5px);
}

.about-feature-item i {
  font-size: 2rem;
  color: var(--primary-color-1);
  margin-bottom: 15px;
}

/* Services Section */
.services {
  background-color: var(--light-shade-2);
  position: relative;
  overflow: hidden;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.service-item {
  background-color: var(--light-shade-1);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.service-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.service-image {
  height: 200px;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-item:hover .service-image img {
  transform: scale(1.1);
}

.service-content {
  padding: 25px;
}

.service-content h3 {
  margin-bottom: 15px;
  color: var(--primary-color-2);
}

.service-price {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-color-1);
  margin: 15px 0;
}

.service-features {
  list-style: none;
  margin-top: 15px;
}

.service-features li {
  margin-bottom: 8px;
  display: flex;
  align-items: center;
}

.service-features li i {
  margin-right: 10px;
  color: var(--primary-color-1);
}

/* Features Section */
.features {
  background-color: var(--light-shade-1);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.feature-item {
  text-align: center;
  padding: 30px 20px;
  background-color: var(--light-shade-2);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-item i {
  font-size: 2.5rem;
  color: var(--primary-color-1);
  margin-bottom: 20px;
}

/* Price Plans */
.price-plans {
  background-color: var(--light-shade-2);
}

.price-plan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.price-plan-item {
  background-color: var(--light-shade-1);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
}

.price-plan-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.price-plan-header {
  background-color: var(--primary-color-2);
  color: var(--light-shade-1);
  padding: 25px;
  text-align: center;
}

.price-plan-content {
  padding: 25px;
}

.price-plan-price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color-1);
  margin: 15px 0;
  text-align: center;
}

.price-plan-features {
  list-style: none;
  margin: 25px 0;
}

.price-plan-features li {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.price-plan-features li i {
  margin-right: 10px;
  color: var(--primary-color-1);
}

/* Team Section */
.team {
  background-color: var(--light-shade-1);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.team-member {
  background-color: var(--light-shade-2);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.team-member:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.team-member-image {
  height: 300px;
  overflow: hidden;
}

.team-member-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-member-info {
  padding: 20px;
  text-align: center;
}

.team-member-info h3 {
  margin-bottom: 5px;
  color: var(--primary-color-2);
}

.team-member-role {
  color: var(--primary-color-1);
  font-style: italic;
}

/* Reviews Section */
.reviews {
  background-color: var(--light-shade-2);
  position: relative;
}

.reviews-slider {
  margin-top: 50px;
}

.review-item {
  background-color: var(--light-shade-1);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin: 15px;
}

.review-text {
  font-style: italic;
  margin-bottom: 20px;
  position: relative;
}

.review-text:before,
.review-text:after {
  content: '"';
  font-size: 2rem;
  color: var(--primary-color-1);
  position: absolute;
  opacity: 0.5;
}

.review-text:before {
  top: -10px;
  left: -15px;
}

.review-text:after {
  bottom: -20px;
  right: -15px;
}

.review-author {
  display: flex;
  align-items: center;
  margin-top: 20px;
}

.review-author-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 15px;
}

.review-author-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.review-author-info h4 {
  margin-bottom: 5px;
  color: var(--primary-color-2);
}

/* Core Info Section */
.core-info {
  background-color: var(--light-shade-1);
}

.core-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.core-info-item {
  background-color: var(--light-shade-2);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.core-info-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.core-info-item i {
  font-size: 2.5rem;
  color: var(--primary-color-1);
  margin-bottom: 20px;
}

/* Contact Section */
.contact {
  background-color: var(--light-shade-2);
  position: relative;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin-top: 50px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-info-item {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.contact-info-item i {
  font-size: 1.5rem;
  color: var(--primary-color-1);
  margin-right: 15px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--light-shade-1);
  border-radius: 50%;
}

.contact-form {
  background-color: var(--light-shade-1);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-group {
  margin-bottom: 20px;
}

.form-control {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--light-shade-2);
  border-radius: 4px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-color-1);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

.services-checkbox {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin: 15px 0;
}

.service-checkbox-item {
  display: flex;
  align-items: center;
}

.service-checkbox-item input {
  margin-right: 10px;
}

/* Blog Section */
.blog {
  background-color: var(--light-shade-1);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.blog-item {
  background-color: var(--light-shade-2);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.blog-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.blog-image {
  height: 200px;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-item:hover .blog-image img {
  transform: scale(1.1);
}

.blog-content {
  padding: 25px;
}

.blog-content h3 {
  margin-bottom: 15px;
  color: var(--primary-color-2);
}

.blog-date {
  color: var(--primary-color-1);
  margin-bottom: 10px;
  font-style: italic;
}

.blog-excerpt {
  margin-bottom: 20px;
}

/* FAQ Section */
.faq {
  background-color: var(--light-shade-2);
}

.faq-content {
  margin-top: 50px;
}

.accordion {
  width: 100%;
}

.accordion-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.accordion-header {
  background-color: var(--light-shade-1);
  padding: 15px 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background-color 0.3s ease;
}

.accordion-header:hover {
  background-color: var(--light-shade-2);
}

.accordion-header.active {
  background-color: var(--primary-color-2);
  color: var(--light-shade-1);
}

.accordion-icon {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.accordion-header.active .accordion-icon {
  transform: rotate(45deg);
}

.accordion-body {
overflow-x: hidden;
  background-color: var(--light-shade-1);
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.accordion-body.active {
  padding: 20px;
  max-height: 500px;
}

/* Gallery Section */
.gallery {
  background-color: var(--light-shade-1);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 15px;
  margin-top: 50px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

/* Footer */
.footer {
  background-color: var(--dark-shade-1);
  color: var(--light-shade-1);
  padding: 60px 0 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  margin-bottom: 40px;
}

.footer-column h3 {
  margin-bottom: 20px;
  color: var(--primary-color-1);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: var(--light-shade-2);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary-color-1);
}

.footer-contact p {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.footer-contact i {
  margin-right: 15px;
  color: var(--primary-color-1);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom small {
  opacity: 0.7;
}

/* Section Title Styles */
.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  color: var(--primary-color-2);
  position: relative;
  display: inline-block;
  margin-bottom: 15px;
}

.section-title h2:after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: var(--primary-color-1);
}

.section-title p {
  max-width: 700px;
  margin: 0 auto;
}

/* Shape Elements */
.shape {
  position: absolute;
  z-index: -1;
}

.shape-1 {
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background-color: var(--primary-color-1);
  opacity: 0.05;
  border-radius: 0 0 0 100%;
}

.shape-2 {
  bottom: 0;
  left: 0;
  width: 200px;
  height: 200px;
  background-color: var(--primary-color-2);
  opacity: 0.05;
  border-radius: 0 100% 0 0;
}

/* Breadcrumb */
.breadcrumb {
  padding: 10px 0;
  background-color: var(--light-shade-2);
  margin-top: 76px;
}

.breadcrumb-content {
  display: flex;
  align-items: center;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate {
  animation: fadeIn 0.6s ease forwards;
}

.delay-1 {
  animation-delay: 0.2s;
}

.delay-2 {
  animation-delay: 0.4s;
}

.delay-3 {
  animation-delay: 0.6s;
}

/* Additional Page Styles */
.page-header {
  height: 40vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../AID_images/page-header-bg.webp');
  background-size: cover;
  background-position: center;
  color: var(--light-shade-1);
  text-align: center;
}

.page-header h1 {
  font-size: 3rem;
  margin-bottom: 0;
}

.page-section {
  padding: 80px 0;
}

.page-section:nth-child(odd) {
  background-color: var(--light-shade-1);
}

.page-section:nth-child(even) {
  background-color: var(--light-shade-2);
}

/* Space Page */
#space {
  min-height: calc(100vh - 200px);
  display: flex;
  align-items: center;
  justify-content: center;
} 