/* Disable all animations */
[data-aos], .reveal-left, .reveal-right, .reveal-up, .reveal-down, .reveal-fade, .reveal-scale, 
.animate__animated, .wow, .fadeIn, .fadeInUp, .fadeInDown, .fadeInLeft, .fadeInRight {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
  animation: none !important;
  visibility: visible !important;
}

:root {
  --primary-color: #e6c589; /* Gold */
  --secondary-color: #2a3b4c; /* Deep navy */
  --accent-color: #a36850; /* Copper/bronze */
  --light-color: #f5f0e6; /* Cream */
  --dark-color: #151a21; /* Almost black */
  
  /* Shades */
  --primary-light: #f0ddb3;
  --primary-dark: #c4a056;
  --secondary-light: #3d5471;
  --secondary-dark: #1a2430;
  --accent-light: #c48b76;
  --accent-dark: #844e39;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  color: var(--dark-color);
  background-color: var(--light-color);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  margin-bottom: 1rem;
}

p {
  line-height: 1.6;
  margin-bottom: 1rem;
}

a {
  text-decoration: none;
  color: var(--accent-color);
  transition: all 0.3s ease;
}

a:hover {
  color: var(--accent-dark);
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 100px 0;
  position: relative;
}

.section-title {
  font-size: 2.5rem;
  color: var(--secondary-color);
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--accent-color);
  text-align: center;
  margin-bottom: 3rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.section-desc {
  max-width: 700px;
  margin: 0 auto 4rem;
  text-align: center;
}

/* Header styles */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.4s ease;
  background-color: rgba(21, 26, 33, 0.9);
}

header.scrolled {
  padding: 10px 0;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: var(--primary-color);
  font-weight: 700;
}

.main-menu {
  display: flex;
  list-style: none;
}

.main-menu li {
  margin-left: 2rem;
}

.main-menu a {
  color: var(--light-color);
  font-weight: 500;
  position: relative;
  padding: 5px 0;
}

.main-menu a:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: width 0.3s ease;
}

.main-menu a:hover:after {
  width: 100%;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--light-color);
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero section */
.hero-section {
  height: 100vh;
  position: relative;
  overflow: hidden;
  background-color: var(--secondary-dark);
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.hero-bg:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(21, 26, 33, 0.7);
}

.hero-container {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 100px 0;
}

.hero-content-col {
  flex: 1;
  color: var(--light-color);
  max-width: 600px;
  position: relative;
}

.hero-image-col {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  position: relative;
}

.hero-featured-image {
  max-width: 90%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 3;
}

.hero-title {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 2rem;
}

.hero-desc {
  margin-bottom: 2.5rem;
  font-size: 1.1rem;
}

.hero-detail {
  background-color: rgba(42, 59, 76, 0.85);
  border-radius: 10px;
  padding: 20px;
  color: var(--light-color);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  max-width: 300px;
}

.hero-detail h4 {
  color: var(--primary-color);
  margin-bottom: 10px;
}

/* Hero slider styles (keeping for reference) */
.hero-slider {
  height: 100%;
}

.hero-slide {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
}

.hero-slide:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(21, 26, 33, 0.6);
}

/* About section */
.about-section {
  position: relative;
  overflow: hidden;
}

.about-bg-shape {
  position: absolute;
  width: 600px;
  height: 600px;
  background-color: var(--primary-light);
  opacity: 0.3;
  border-radius: 50%;
  top: -200px;
  left: -200px;
  z-index: -1;
}

.about-content {
  display: flex;
  align-items: center;
  gap: 60px;
}

.about-image {
  flex: 1;
  position: relative;
}

.about-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about-image:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border: 2px solid var(--accent-color);
  border-radius: 10px;
  top: 20px;
  left: 20px;
  z-index: -1;
}

.about-text {
  flex: 1;
}

/* Services section */
.services-section {
  background-color: var(--secondary-color);
  color: var(--light-color);
  position: relative;
  overflow: hidden;
}

.services-section .section-title {
  color: var(--light-color);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-item {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 40px 30px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  background-color: rgba(255, 255, 255, 0.1);
}

.service-item:before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--primary-color);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s ease;
}

.service-item:hover:before {
  transform: scaleX(1);
  transform-origin: left;
}

.service-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.service-name {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.service-desc {
  margin-bottom: 20px;
  font-size: 0.95rem;
  color: rgba(245, 240, 230, 0.8);
}

.service-features {
  list-style: none;
}

.service-features li {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.service-features li:before {
  content: '✓';
  color: var(--primary-color);
  margin-right: 10px;
}

/* Features section */
.features-section {
  padding: 120px 0;
  position: relative;
}

.features-bg {
  position: absolute;
  width: 100%;
  height: 80%;
  top: 0;
  left: 0;
  background-color: var(--primary-light);
  opacity: 0.1;
  clip-path: polygon(0 0, 100% 0, 100% 70%, 0 100%);
  z-index: -1;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.feature-icon {
  width: 60px;
  height: 60px;
  background-color: var(--secondary-color);
  color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.feature-content {
  flex: 1;
}

.feature-name {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: var(--secondary-color);
}

.feature-desc {
  color: var(--secondary-light);
  font-size: 0.95rem;
}

/* Price plan section */
.priceplan-section {
  background-color: var(--light-color);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.priceplan-bg-shape {
  position: absolute;
  top: 0;
  right: 0;
  width: 400px;
  height: 400px;
  background-color: var(--accent-light);
  opacity: 0.1;
  border-radius: 50% 0 50% 50%;
  z-index: 0;
}

.price-slider {
  position: relative;
  overflow: hidden;
  padding: 30px 0;
}

.price-item {
  background-color: white;
  border-radius: 15px;
  padding: 40px 30px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.price-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.price-item:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(to right, var(--primary-color), var(--accent-color));
}

.price-name {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: var(--secondary-color);
  position: relative;
  padding-bottom: 15px;
}

.price-name:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: var(--primary-color);
}

.price-desc {
  margin-bottom: 20px;
  font-size: 0.95rem;
  color: var(--secondary-light);
}

.price-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.price-features {
  list-style: none;
  margin-bottom: 30px;
  flex-grow: 1;
}

.price-features li {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  color: var(--secondary-color);
}

.price-features li:before {
  content: '✓';
  color: var(--accent-color);
  margin-right: 10px;
  font-weight: bold;
}

.price-tag {
  font-size: 2rem;
  font-weight: 700;
  color: var(--secondary-color);
  display: flex;
  align-items: flex-start;
  margin-top: auto;
}

.price-tag small {
  font-size: 1rem;
  font-weight: 400;
  margin-left: 5px;
  color: var(--secondary-light);
}

/* Team section */
.team-section {
  padding: 120px 0;
  position: relative;
  background-color: var(--secondary-dark);
  color: var(--light-color);
}

.team-section .section-title {
  color: var(--light-color);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 40px;
}

.team-member {
  text-align: center;
  transition: all 0.3s ease;
}

.team-member-image {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 15px;
  margin-bottom: 20px;
  filter: grayscale(100%);
  transition: all 0.5s ease;
}

.team-member:hover .team-member-image {
  filter: grayscale(0%);
  transform: scale(1.05);
}

.team-member-info {
  padding: 0 15px;
}

.team-member-name {
  font-size: 1.3rem;
  margin-bottom: 5px;
  color: var(--primary-color);
}

.team-member-role {
  color: var(--accent-light);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Reviews section */
.reviews-section {
  padding: 120px 0;
  background-color: var(--light-color);
  position: relative;
  overflow: hidden;
}

.reviews-bg-shape {
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background-color: var(--primary-light);
  opacity: 0.2;
  border-radius: 50%;
  z-index: 0;
}

.reviews-slider {
  position: relative;
  overflow: hidden;
  padding: 40px 0;
}

.review-item {
  background-color: white;
  border-radius: 15px;
  padding: 40px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  margin: 20px;
}

.review-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.review-text {
  font-style: italic;
  margin-bottom: 20px;
  position: relative;
  padding-left: 30px;
}

.review-text:before {
  content: '"';
  position: absolute;
  left: 0;
  top: -10px;
  font-size: 4rem;
  color: var(--primary-color);
  opacity: 0.3;
  font-family: serif;
}

.review-author {
  display: flex;
  align-items: center;
}

.review-author-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 15px;
}

.review-author-name {
  font-weight: 600;
  color: var(--secondary-color);
  font-size: 1.1rem;
}

/* Core info section */
.coreinfo-section {
  padding: 120px 0;
  background-color: var(--secondary-color);
  color: var(--light-color);
  position: relative;
}

.coreinfo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.coreinfo-item {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 30px;
  transition: all 0.3s ease;
}

.coreinfo-item:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-10px);
}

.coreinfo-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.coreinfo-title {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.coreinfo-desc {
  color: rgba(245, 240, 230, 0.8);
  font-size: 0.95rem;
}

/* Contact section */
.contact-section {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.contact-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  background-color: var(--primary-light);
  opacity: 0.1;
  clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
  z-index: -1;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contact-form {
  background-color: white;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--secondary-color);
}

.form-control {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(230, 197, 137, 0.3);
}

textarea.form-control {
  min-height: 150px;
  resize: vertical;
}

.submit-btn {
  background-color: var(--secondary-color);
  color: var(--light-color);
  border: none;
  padding: 12px 30px;
  border-radius: 5px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.submit-btn:hover {
  background-color: var(--secondary-dark);
}

.contact-info {
  padding: 40px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
}

.contact-info-icon {
  width: 50px;
  height: 50px;
  background-color: var(--primary-light);
  color: var(--secondary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-right: 20px;
  flex-shrink: 0;
}

.contact-info-content {
  flex: 1;
}

.contact-info-title {
  font-size: 1.2rem;
  color: var(--secondary-color);
  margin-bottom: 5px;
}

.contact-info-text {
  color: var(--secondary-light);
}

/* Footer */
footer {
  background-color: var(--dark-color);
  color: var(--light-color);
  padding: 80px 0 20px;
}

.footer-widgets {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 60px;
}

.footer-widget-title {
  font-size: 1.2rem;
  color: var(--primary-color);
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}

.footer-widget-title:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--primary-color);
}

.footer-about p {
  margin-bottom: 20px;
  color: rgba(245, 240, 230, 0.7);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(245, 240, 230, 0.7);
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary-color);
  padding-left: 5px;
}

.footer-contact-info {
  list-style: none;
}

.footer-contact-info li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
  color: rgba(245, 240, 230, 0.7);
}

.footer-contact-info li i {
  color: var(--primary-color);
  margin-right: 10px;
  font-size: 1.2rem;
}

.footer-bottom {
  padding-top: 20px;
  border-top: 1px solid rgba(245, 240, 230, 0.1);
  display: flex;
  justify-content: space-between;
  color: rgba(245, 240, 230, 0.5);
  font-size: 0.9rem;
}

/* Space page */
.space-container {
  padding: 100px 0;
  min-height: 600px;
}

/* Animations */
.reveal-left {
  transform: translateX(-50px);
  opacity: 0;
  transition: all 0.8s ease;
}

.reveal-right {
  transform: translateX(50px);
  opacity: 0;
  transition: all 0.8s ease;
}

.reveal-up {
  transform: translateY(50px);
  opacity: 0;
  transition: all 0.8s ease;
}

.reveal-down {
  transform: translateY(-50px);
  opacity: 0;
  transition: all 0.8s ease;
}

.reveal-fade {
  opacity: 0;
  transition: all 0.8s ease;
}

.reveal-scale {
  transform: scale(0.8);
  opacity: 0;
  transition: all 0.8s ease;
}

.active {
  transform: translate(0);
  opacity: 1;
}

/* Shape decorations */
.shape-decoration {
  position: absolute;
  z-index: -1;
  pointer-events: none;
}

.shape-1 {
  width: 100px;
  height: 100px;
  background-color: var(--primary-color);
  opacity: 0.2;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}

.shape-2 {
  width: 150px;
  height: 150px;
  border: 3px solid var(--accent-color);
  opacity: 0.2;
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
}

.shape-3 {
  width: 80px;
  height: 80px;
  background-color: var(--secondary-color);
  opacity: 0.15;
  border-radius: 50%;
} 