:root {
  --primary-color-1: #253a47; /* Deep navy blue */
  --primary-color-2: #5c8d76; /* Sage green */
  --primary-color-3: #d4af7a; /* Gold accent */
  --primary-color-4: #f7f3e9; /* Off-white */
  --primary-color-5: #2d2a2e; /* Charcoal */
  
  /* Light/dark variants */
  --primary-color-1-light: #37526a;
  --primary-color-1-dark: #1a2a36;
  --primary-color-2-light: #7ab299;
  --primary-color-2-dark: #3e6b54;
  --primary-color-3-light: #e3c79b;
  --primary-color-3-dark: #b58e54;
  --primary-color-4-light: #ffffff;
  --primary-color-4-dark: #e8e1cf;
  --primary-color-5-light: #403d42;
  --primary-color-5-dark: #1a1819;
}

/* General Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
overflow-x: hidden;
  font-family: 'Montserrat', sans-serif;
  color: var(--primary-color-5);
  background-color: var(--primary-color-4);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--primary-color-1);
}

p {
  margin-bottom: 1rem;
}

a {
  color: var(--primary-color-3);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--primary-color-3-dark);
}

.btn {
  display: inline-block;
  padding: 12px 28px;
  background-color: var(--primary-color-3);
  color: var(--primary-color-5);
  border: none;
  border-radius: 4px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.btn:hover {
  background-color: var(--primary-color-3-dark);
  color: var(--primary-color-4);
  transform: translateY(-2px);
}

.section-padding {
  padding: 100px 0;
}

.section-title {
  margin-bottom: 60px;
  text-align: center;
}

.section-title h2 {
  font-size: 42px;
  position: relative;
  display: inline-block;
  margin-bottom: 20px;
}

.section-title h2:after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: var(--primary-color-3);
}

.section-title p {
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto;
  color: var(--primary-color-5-light);
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(37, 58, 71, 0.9);
  padding: 20px 0;
  transition: all 0.3s ease;
}

header.scrolled {
  padding: 10px 0;
  background-color: var(--primary-color-1);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar-brand {
  font-size: 28px;
  font-weight: 700;
  color: var(--primary-color-4);
  font-family: 'Playfair Display', serif;
}

.navbar-nav {
  flex-direction: row;
  display: flex;
  list-style: none;
}

.nav-item {
  margin-left: 30px;
}

.nav-link {
  color: var(--primary-color-4);
  font-weight: 500;
  position: relative;
  padding: 5px 0;
}

.nav-link:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color-3);
  transition: width 0.3s ease;
}

.nav-link:hover:after {
  width: 100%;
}

.mobile-menu-toggle {
  display: none;
  cursor: pointer;
}

/* Hero Section */
.hero {
  height: 100vh;
  background-image: linear-gradient(rgba(37, 58, 71, 0.7), rgba(37, 58, 71, 0.7)), url('../AUT_images/hero-bg.webp');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  color: var(--primary-color-4);
}

.hero-content {
  max-width: 800px;
}

.hero-content h1 {
  font-size: 60px;
  margin-bottom: 20px;
  color: var(--primary-color-4);
}

.hero-content p {
  font-size: 20px;
  margin-bottom: 40px;
}

/* About Section */
.about {
  position: relative;
  overflow: hidden;
}

.about-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.about-text {
  flex: 0 0 50%;
  padding-right: 40px;
}

.about-image {
  flex: 0 0 45%;
  position: relative;
}

.about-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about-features {
  display: flex;
  flex-wrap: wrap;
  margin-top: 30px;
}

.feature-item {
  flex: 0 0 48%;
  margin-bottom: 20px;
  margin-right: 2%;
  background-color: var(--primary-color-4-light);
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.feature-item h4 {
  color: var(--primary-color-1);
  margin-bottom: 10px;
  font-size: 20px;
}

/* Services Section */
.services {
  background-color: var(--primary-color-4-dark);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-item {
  background-color: var(--primary-color-4-light);
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.service-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.service-image {
  height: 220px;
  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: 30px;
}

.service-content h3 {
  font-size: 22px;
  margin-bottom: 15px;
}

.service-content p {
  margin-bottom: 20px;
  color: var(--primary-color-5-light);
}

.service-price {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-color-3);
  margin-bottom: 20px;
}

.service-features {
  list-style: none;
}

.service-features li {
  margin-bottom: 8px;
  position: relative;
  padding-left: 25px;
}

.service-features li:before {
  content: "✓";
  color: var(--primary-color-2);
  position: absolute;
  left: 0;
}

/* Features Section */
.features {
  position: relative;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.feature-box {
  display: flex;
  align-items: flex-start;
  background-color: var(--primary-color-4-light);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.feature-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  flex: 0 0 60px;
  height: 60px;
  margin-right: 20px;
  background-color: var(--primary-color-3-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color-1);
  font-size: 24px;
}

.feature-content {
  flex: 1;
}

.feature-content h4 {
  margin-bottom: 10px;
  font-size: 20px;
}

/* Price Plans */
.price-plans {
  background-color: var(--primary-color-4-dark);
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.plan-item {
  background-color: var(--primary-color-4-light);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  text-align: center;
  position: relative;
}

.plan-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.plan-header {
  background-color: var(--primary-color-1);
  color: var(--primary-color-4);
  padding: 30px 20px;
}

.plan-header h3 {
  color: var(--primary-color-4);
  margin-bottom: 5px;
}

.plan-price {
  font-size: 40px;
  font-weight: 700;
  color: var(--primary-color-3);
  margin-bottom: 5px;
}

.plan-content {
  padding: 30px;
}

.plan-features {
  list-style: none;
  margin-bottom: 30px;
}

.plan-features li {
  margin-bottom: 15px;
  position: relative;
  padding-left: 25px;
}

.plan-features li:before {
  content: "✓";
  color: var(--primary-color-2);
  position: absolute;
  left: 0;
}

/* Team Section */
.team-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
}

.team-member {
  background-color: var(--primary-color-4-light);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  text-align: center;
}

.team-member:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.team-image {
  position: relative;
  overflow: hidden;
}

.team-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.team-member:hover .team-image img {
  transform: scale(1.1);
}

.team-info {
  padding: 20px;
}

.team-info h4 {
  font-size: 20px;
  margin-bottom: 5px;
}

.team-info p {
  color: var(--primary-color-5-light);
  font-size: 14px;
}

/* Reviews Section */
.reviews {
  background-color: var(--primary-color-4-dark);
  position: relative;
}

.reviews-slider {
  overflow: hidden;
}

.review-item {
  background-color: var(--primary-color-4-light);
  border-radius: 10px;
  padding: 30px;
  margin: 20px 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.review-text {
  font-style: italic;
  margin-bottom: 20px;
  position: relative;
  padding-left: 25px;
}

.review-text:before {
  content: '\201C';
  font-size: 60px;
  color: var(--primary-color-3-light);
  position: absolute;
  top: -20px;
  left: -10px;
  opacity: 0.3;
}

.review-author {
  display: flex;
  align-items: center;
}

.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 h5 {
  margin-bottom: 5px;
}

.review-author-info p {
  font-size: 14px;
  color: var(--primary-color-5-light);
}

/* Core Info Section */
.core-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.core-info-item {
  background-color: var(--primary-color-4-light);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  text-align: center;
}

.core-info-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.core-info-icon {
  width: 80px;
  height: 80px;
  background-color: var(--primary-color-3-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--primary-color-1);
  font-size: 30px;
}

.core-info-item h4 {
  font-size: 20px;
  margin-bottom: 15px;
}

/* Contact Section */
.contact {
  position: relative;
}

.contact-wrapper {
  display: flex;
  gap: 50px;
}

.contact-form {
  flex: 0 0 60%;
  background-color: var(--primary-color-4-light);
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.form-group {
  margin-bottom: 20px;
}

.form-control {
  width: 100%;
  padding: 15px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  transition: all 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-color-3);
  box-shadow: 0 0 0 2px rgba(212, 175, 122, 0.2);
}

textarea.form-control {
  min-height: 150px;
  resize: vertical;
}

.form-check {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

.form-check-input {
  margin-right: 10px;
  margin-top: 5px;
}

.contact-info {
  flex: 0 0 35%;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
}

.contact-info-icon {
  flex: 0 0 40px;
  height: 40px;
  background-color: var(--primary-color-3-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  color: var(--primary-color-1);
  font-size: 18px;
}

.contact-info-content {
  flex: 1;
}

.contact-info-content h5 {
  margin-bottom: 5px;
}

.services-selection {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-bottom: 20px;
}

.service-option {
  display: flex;
  align-items: center;
}

.service-option input {
  margin-right: 10px;
}

/* Gallery Section */
.gallery {
  overflow: hidden;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  height: 250px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

/* FAQ Section */
.faq {
  background-color: var(--primary-color-4-dark);
}

.accordion {
  max-width: 800px;
  margin: 0 auto;
}

.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(--primary-color-4-light);
  padding: 20px;
  cursor: pointer;
  position: relative;
  font-weight: 600;
  transition: all 0.3s ease;
}

.accordion-header:after {
  content: '+';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  transition: all 0.3s ease;
}

.accordion-header.active:after {
  content: '-';
}

.accordion-body {
overflow-x: hidden;
  background-color: var(--primary-color-4);
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.accordion-header.active + .accordion-body {
overflow-x: hidden;
  padding: 20px;
  max-height: 300px;
}

/* Blog Section */
.blog {
  position: relative;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.blog-item {
  background-color: var(--primary-color-4-light);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.blog-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.blog-image {
  height: 220px;
  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: 30px;
}

.blog-content h3 {
  font-size: 22px;
  margin-bottom: 15px;
}

.blog-content p {
  margin-bottom: 20px;
  color: var(--primary-color-5-light);
}

.blog-link {
  display: inline-block;
  color: var(--primary-color-3);
  font-weight: 600;
  transition: all 0.3s ease;
}

.blog-link:hover {
  color: var(--primary-color-3-dark);
  transform: translateX(5px);
}

/* Footer */
footer {
  background-color: var(--primary-color-1);
  color: var(--primary-color-4);
  padding: 80px 0 30px;
}

.footer-top {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 50px;
}

.footer-widget h4 {
  color: var(--primary-color-4);
  margin-bottom: 25px;
  font-size: 22px;
  position: relative;
  padding-bottom: 10px;
}

.footer-widget h4:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background-color: var(--primary-color-3);
}

.footer-about p {
  margin-bottom: 20px;
}

.footer-links ul {
  list-style: none;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  color: var(--primary-color-4-dark);
  transition: all 0.3s ease;
}

.footer-links ul li a:hover {
  color: var(--primary-color-3);
  padding-left: 5px;
}

.footer-contact p {
  margin-bottom: 15px;
  display: flex;
  align-items: flex-start;
}

.footer-contact i {
  margin-right: 15px;
  color: var(--primary-color-3);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  text-align: center;
}

.footer-bottom p {
  font-size: 14px;
  color: var(--primary-color-4-dark);
}

/* Decorative Shapes */
.shape {
  position: absolute;
  z-index: -1;
}

.shape-1 {
  width: 300px;
  height: 300px;
  background-color: rgba(92, 141, 118, 0.1);
  border-radius: 50%;
  top: 100px;
  left: -150px;
}

.shape-2 {
  width: 200px;
  height: 200px;
  background-color: rgba(212, 175, 122, 0.1);
  border-radius: 50%;
  bottom: 100px;
  right: -100px;
}

.blob {
  position: absolute;
  z-index: -1;
  opacity: 0.1;
}

/* Space Page */
#space {
  min-height: calc(100vh - 200px);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Additional Pages */
.add-page-section {
  padding: 100px 0;
}

.add-page-section:nth-child(even) {
  background-color: var(--primary-color-4-dark);
}

/* Breadcrumb */
.breadcrumb {
  padding: 120px 0 30px;
  background-color: var(--primary-color-1-light);
  color: var(--primary-color-4);
  position: relative;
} 