:root {
  /* Primary Colors */
  --primary-1: #0C4160; /* Deep Sea Blue - main brand color */
  --primary-2: #E0B973; /* Gold - luxury accent */
  --primary-3: #F5F5F5; /* Off-White - background */
  --primary-4: #1A936F; /* Teal - secondary accent */
  --primary-5: #CC7452; /* Terracotta - warm accent */
  
  /* Light/Dark Shades */
  --primary-1-light: #1A5B85;
  --primary-1-dark: #072D45;
  --primary-2-light: #EAC992;
  --primary-2-dark: #C9A256;
  --primary-3-light: #FFFFFF;
  --primary-3-dark: #E8E8E8;
  --primary-4-light: #25B087;
  --primary-4-dark: #0F7958;
  --primary-5-light: #D8907A;
  --primary-5-dark: #B05E3F;
  
  /* Fonts */
  --font-primary: 'Playfair Display', serif;
  --font-secondary: 'Montserrat', sans-serif;
}

/* Base Styles */
body {
  font-family: var(--font-secondary);
  color: #333;
  line-height: 1.6;
  overflow-x: hidden;
  background-color: var(--primary-3);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--primary-1);
}

/* Section Padding */
section {
  padding: 5rem 0;
}

.section-title {
  margin-bottom: 3rem;
  text-align: center;
}

.section-title h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.section-title h2::after {
  content: '';
  position: absolute;
  width: 50px;
  height: 3px;
  background-color: var(--primary-2);
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

/* Buttons */
.btn-primary {
  background-color: var(--primary-1);
  border-color: var(--primary-1);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 0;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: var(--primary-1-dark);
  border-color: var(--primary-1-dark);
}

.btn-secondary {
  background-color: var(--primary-2);
  border-color: var(--primary-2);
  color: var(--primary-1-dark);
  padding: 0.75rem 1.5rem;
  border-radius: 0;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background-color: var(--primary-2-dark);
  border-color: var(--primary-2-dark);
}

/* Header */
header {
  position: fixed;
  width: 100%;
  z-index: 1000;
  background-color: rgba(12, 65, 96, 0.9);
  padding: 1rem 0;
  transition: all 0.3s ease;
}

header.scrolled {
  background-color: var(--primary-1);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

header .navbar-brand {
  font-family: var(--font-primary);
  font-size: 1.8rem;
  color: white;
}

header .nav-link {
  color: white;
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: all 0.3s ease;
}

header .nav-link:hover {
  color: var(--primary-2);
}

/* Hero Section */
#hero {
  height: 100vh;
  display: flex;
  align-items: center;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}

#hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(12, 65, 96, 0.8), rgba(12, 65, 96, 0.4));
}

#hero .container {
  position: relative;
  z-index: 1;
}

#hero h1 {
  color: white;
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
}

#hero p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.2rem;
  margin-bottom: 2rem;
  max-width: 600px;
}

/* About Section */
#about {
  background-color: var(--primary-3-light);
}

.about-feature {
  text-align: center;
  padding: 2rem;
  margin-bottom: 2rem;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.about-feature:hover {
  transform: translateY(-10px);
  border: 1px solid var(--primary-2);
  border-radius: 5px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.about-feature i {
  font-size: 3rem;
  color: var(--primary-4);
  margin-bottom: 1.5rem;
}

.about-feature h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

/* Services Section */
#services {
  position: relative;
  background-color: white;
}

.services-card {
  border: none;
  border-radius: 0;
  overflow: hidden;
  margin-bottom: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.services-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.services-card .card-img-top {
  height: 220px;
  object-fit: cover;
}

.services-card .card-body {
  padding: 2rem;
}

.services-card .card-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--primary-1);
}

.services-card .price {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-2);
  margin-bottom: 1rem;
}

.services-features {
  list-style: none;
  padding-left: 0;
  margin-bottom: 1.5rem;
}

.services-features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #eee;
}

.services-features li:last-child {
  border-bottom: none;
}

.services-features li::before {
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right: 10px;
  color: var(--primary-4);
}

/* Features Section */
#features {
  background-color: var(--primary-3);
}

.feature-item {
  text-align: center;
  margin-bottom: 2rem;
}

.feature-item i {
  font-size: 2.5rem;
  color: var(--primary-4);
  margin-bottom: 1.5rem;
  background-color: rgba(26, 147, 111, 0.1);
  width: 80px;
  height: 80px;
  line-height: 80px;
  border-radius: 50%;
}

.feature-item h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

/* Price Plan Section */
#priceplan {
  background-color: white;
}

.price-card {
  text-align: center;
  padding: 3rem 2rem;
  margin-bottom: 2rem;
  border-radius: 5px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.price-card:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.price-card.featured {
  border: 2px solid var(--primary-2);
}

.price-card.featured::before {
  content: 'Popular';
  position: absolute;
  top: 0;
  right: 0;
  background: var(--primary-2);
  color: white;
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  font-weight: 700;
}

.price-card h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.price-card .price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-2);
  margin-bottom: 2rem;
}

.price-features {
  list-style: none;
  padding-left: 0;
  margin-bottom: 2rem;
}

.price-features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #eee;
}

.price-features li:last-child {
  border-bottom: none;
}

/* Team Section */
#team {
  background-color: var(--primary-3-light);
}

.team-card {
  margin-bottom: 2rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.team-card img {
  width: 100%;
  height: auto;
  transition: all 0.3s ease;
}

.team-card:hover img {
  transform: scale(1.05);
}

.team-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  color: white;
  transform: translateY(0);
  transition: all 0.3s ease;
}

.team-card:hover .team-info {
  transform: translateY(-10px);
}

.team-info h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: white;
}

.team-info p {
  font-size: 1rem;
  margin-bottom: 0;
  color: var(--primary-2);
}

/* Reviews Section */
#reviews {
  background-color: white;
  position: relative;
}

#reviews .swiper {
  padding: 3rem 1rem;
}

.review-item {
  background-color: var(--primary-3-light);
  padding: 2rem;
  border-radius: 5px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 2rem;
  position: relative;
}

.review-item::before {
  content: '\f10d';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  top: 1rem;
  left: 1rem;
  font-size: 1.5rem;
  color: rgba(12, 65, 96, 0.1);
}

.review-text {
  font-style: italic;
  margin-bottom: 1.5rem;
}

.review-author {
  font-weight: 700;
  color: var(--primary-1);
}

/* Core Info Section */
#coreinfo {
  background-color: var(--primary-3);
}

.info-item {
  text-align: center;
  margin-bottom: 2rem;
  padding: 2rem;
  background-color: white;
  border-radius: 5px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.info-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.info-item i {
  font-size: 2.5rem;
  color: var(--primary-4);
  margin-bottom: 1.5rem;
}

.info-item h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

/* Contact Section */
#contact {
  background-color: white;
}

.contact-form {
  padding: 2rem;
  background-color: var(--primary-3-light);
  border-radius: 5px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-control {
  border: 1px solid #ddd;
  border-radius: 0;
  padding: 0.75rem 1.25rem;
  margin-bottom: 1.5rem;
}

.form-control:focus {
  border-color: var(--primary-2);
  box-shadow: none;
}

/* Blog Section */
#blog {
  background-color: var(--primary-3-light);
}

.blog-card {
  margin-bottom: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  overflow: hidden;
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.blog-img {
  position: relative;
  overflow: hidden;
}

.blog-img img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: all 0.3s ease;
}

.blog-card:hover .blog-img img {
  transform: scale(1.1);
}

.blog-content {
  padding: 2rem;
  background-color: white;
}

.blog-content h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.blog-content p {
  margin-bottom: 1.5rem;
}

/* FAQ Section */
#faq {
  background-color: white;
}

.accordion-item {
  margin-bottom: 1rem;
  border: none;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.accordion-button {
  font-weight: 700;
  color: var(--primary-1);
  background-color: var(--primary-3-light);
  padding: 1.25rem 1.5rem;
}

.accordion-button:not(.collapsed) {
  color: var(--primary-1);
  background-color: var(--primary-3);
}

.accordion-button:focus {
  box-shadow: none;
  border-color: var(--primary-2);
}

.accordion-body {
  padding: 1.5rem;
  background-color: white;
}

/* Gallery Section */
#gallery {
  background-color: var(--primary-3-light);
}

.gallery-item {
  margin-bottom: 2rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: all 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(12, 65, 96, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay i {
  color: white;
  font-size: 2rem;
}

/* Footer */
footer {
  background-color: var(--primary-1);
  color: white;
  padding: 5rem 0 2rem;
}

footer h3 {
  color: white;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

footer p {
  margin-bottom: 1rem;
}

footer a {
  color: var(--primary-3);
  transition: all 0.3s ease;
}

footer a:hover {
  color: var(--primary-2);
  text-decoration: none;
}

footer ul {
  list-style: none;
  padding-left: 0;
}

footer ul li {
  margin-bottom: 0.5rem;
}

#site-copyright {
  text-align: center;
  padding-top: 2rem;
  margin-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Space Page */
#space {
  min-height: calc(100vh - 200px);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.fade-in {
  animation: fadeIn 1s ease-in-out;
}

@keyframes slideUp {
  from { transform: translateY(50px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.slide-up {
  animation: slideUp 0.8s ease-in-out;
}

/* Additional helper classes */
.bg-light-blue {
  background-color: rgba(12, 65, 96, 0.05);
}

.bg-light-gold {
  background-color: rgba(224, 185, 115, 0.1);
}

.text-gold {
  color: var(--primary-2);
}

.shape-decorator {
  position: absolute;
  z-index: 0;
}

.shape-1 {
  top: -50px;
  right: 0;
  width: 300px;
  height: 300px;
  background-color: rgba(224, 185, 115, 0.05);
  border-radius: 50%;
}

.shape-2 {
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background-color: rgba(12, 65, 96, 0.05);
  border-radius: 50%;
}

/* Breadcrumb */
.breadcrumb-section {
  background-color: var(--primary-1);
  padding: 100px 0 30px;
  margin-bottom: 0;
}

.breadcrumb-image {
  max-height: 50px;
  width: auto;
}

/* Transition utilities */
.transition-300 {
  transition: all 0.3s ease;
}

.transition-500 {
  transition: all 0.5s ease;
}

/* Form checkbox styling */
.form-check {
  padding-left: 2rem;
}

.form-check-input {
  margin-left: -2rem;
  width: 1.25rem;
  height: 1.25rem;
  margin-top: 0.125rem;
}

.form-check-input:checked {
  background-color: var(--primary-2);
  border-color: var(--primary-2);
}

.form-check-input:focus {
  border-color: var(--primary-2);
  box-shadow: 0 0 0 0.25rem rgba(224, 185, 115, 0.25);
}

/* Additional Page Styles */
.add-page-section {
  padding: 5rem 0;
}

.add-page-section:nth-child(odd) {
  background-color: var(--primary-3-light);
}

.add-page-section:nth-child(even) {
  background-color: white;
} 