:root {
  /* Color palette */
  --primary-color-1: #ff6b6b; /* Coral Pink */
  --primary-color-2: #4ecdc4; /* Teal */
  --primary-color-3: #f9d423; /* Yellow */
  --primary-color-4: #7b68ee; /* Medium Slate Blue */
  --primary-color-5: #45b649; /* Green */
  
  /* Light and dark shades */
  --primary-color-1-light: #ff9a9a;
  --primary-color-1-dark: #e54b4b;
  --primary-color-2-light: #7eded6;
  --primary-color-2-dark: #2eada4;
  --primary-color-3-light: #ffe454;
  --primary-color-3-dark: #dab403;
  --primary-color-4-light: #9b8df1;
  --primary-color-4-dark: #5b48ce;
  --primary-color-5-light: #65d669;
  --primary-color-5-dark: #359639;
  
  /* Common colors */
  --white: #ffffff;
  --black: #000000;
  --gray-light: #f8f9fa;
  --gray-medium: #dee2e6;
  --gray-dark: #343a40;
}

/* Base styles */
body {
  font-family: 'Poppins', sans-serif;
  color: var(--gray-dark);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
}

.section-padding {
  padding: 100px 0;
}

.section-title {
  margin-bottom: 60px;
}

.section-title h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.section-title h2:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 50px;
  height: 3px;
  background: var(--primary-color-1);
}

.section-title p {
  font-size: 1.1rem;
}

/* Buttons */
.btn-primary {
  background-color: var(--primary-color-1);
  border-color: var(--primary-color-1);
  padding: 12px 30px;
  font-weight: 600;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: var(--primary-color-1-dark);
  border-color: var(--primary-color-1-dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-secondary {
  background-color: var(--primary-color-2);
  border-color: var(--primary-color-2);
  padding: 12px 30px;
  font-weight: 600;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background-color: var(--primary-color-2-dark);
  border-color: var(--primary-color-2-dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Header */
.navbar {
  padding: 20px 0;
  transition: all 0.3s ease;
}

.navbar-brand {
  font-weight: 700;
  font-size: 1.8rem;
  color: var(--primary-color-1);
}

.navbar-nav .nav-link {
  font-weight: 600;
  padding: 10px 15px;
  position: relative;
}

.navbar-nav .nav-link:after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  background: var(--primary-color-1);
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover:after,
.navbar-nav .nav-link.active:after {
  width: 70%;
}

.navbar.scrolled {
  background-color: var(--white);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  padding: 15px 0;
}

/* Hero Section */
.hero-section {
  height: 100vh;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../TRA_images/hero-bg.webp');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-content {
  color: var(--white);
  position: relative;
  z-index: 2;
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 1.25rem;
  margin-bottom: 30px;
}

.hero-img {
  position: relative;
}

.hero-img img {
  border-radius: 10px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.hero-shape {
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background-color: var(--primary-color-3);
  border-radius: 50%;
  z-index: -1;
}

/* About Section */
.about-section {
  position: relative;
  overflow: hidden;
}

.about-img {
  position: relative;
}

.about-img img {
  border-radius: 10px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about-shape {
  position: absolute;
  width: 300px;
  height: 300px;
  background-color: var(--primary-color-2-light);
  border-radius: 50%;
  top: -150px;
  left: -150px;
  z-index: -1;
  opacity: 0.3;
}

.about-feature {
  margin-bottom: 30px;
  padding: 30px;
  background-color: var(--white);
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.about-feature:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.about-feature i {
  font-size: 2.5rem;
  color: var(--primary-color-2);
  margin-bottom: 20px;
}

.about-feature h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

/* Services Section */
.services-section {
  background-color: var(--gray-light);
  position: relative;
  overflow: hidden;
}

.service-item {
  background-color: var(--white);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.service-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.service-img {
  height: 200px;
  overflow: hidden;
}

.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}

.service-item:hover .service-img img {
  transform: scale(1.1);
}

.service-content {
  padding: 30px;
}

.service-content h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.service-content .price {
  display: inline-block;
  background-color: var(--primary-color-1-light);
  color: var(--gray-dark);
  padding: 5px 15px;
  border-radius: 30px;
  font-weight: 600;
  margin-bottom: 15px;
}

.service-features {
  margin-top: 20px;
}

.service-features ul {
  padding-left: 20px;
}

.service-features li {
  margin-bottom: 10px;
}

/* Features Section */
.features-section {
  position: relative;
}

.feature-item {
  text-align: center;
  padding: 40px 30px;
  margin-bottom: 30px;
  background-color: var(--white);
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  width: 80px;
  height: 80px;
  line-height: 80px;
  margin: 0 auto 25px;
  background-color: var(--primary-color-4-light);
  border-radius: 50%;
  font-size: 2rem;
  color: var(--white);
}

.feature-item h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

/* Price Plan Section */
.priceplan-section {
  background-color: var(--gray-light);
  position: relative;
}

.price-item {
  background-color: var(--white);
  border-radius: 10px;
  padding: 40px 30px;
  margin-bottom: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.price-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.price-item.featured {
  border: 2px solid var(--primary-color-1);
}

.price-item.featured:before {
  content: 'Popular';
  position: absolute;
  top: 20px;
  right: -30px;
  background-color: var(--primary-color-1);
  color: var(--white);
  padding: 5px 40px;
  transform: rotate(45deg);
  font-size: 0.8rem;
  font-weight: 600;
}

.price-item h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.price-item .price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color-1);
  margin-bottom: 20px;
}

.price-features {
  margin-bottom: 30px;
}

.price-features ul {
  padding: 0;
  list-style: none;
}

.price-features li {
  padding: 10px 0;
  border-bottom: 1px solid var(--gray-medium);
}

.price-features li:last-child {
  border-bottom: none;
}

/* Team Section */
.team-section {
  position: relative;
}

.team-member {
  background-color: var(--white);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.team-member:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.team-img {
  position: relative;
  overflow: hidden;
}

.team-img img {
  width: 100%;
  transition: all 0.5s ease;
}

.team-member:hover .team-img img {
  transform: scale(1.1);
}

.team-content {
  padding: 20px;
  text-align: center;
}

.team-content h3 {
  font-size: 1.3rem;
  margin-bottom: 5px;
}

.team-content span {
  font-size: 0.9rem;
  color: var(--gray-dark);
}

/* Reviews Section */
.reviews-section {
  background-color: var(--gray-light);
  position: relative;
}

.swiper-reviews {
  padding-bottom: 50px;
}

.review-item {
  background-color: var(--white);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.review-text {
  font-size: 1.1rem;
  font-style: italic;
  margin-bottom: 20px;
  position: relative;
}

.review-text:before {
  content: '"';
  font-size: 4rem;
  color: var(--primary-color-1-light);
  position: absolute;
  top: -20px;
  left: -10px;
  opacity: 0.3;
}

.review-author {
  display: flex;
  align-items: center;
}

.review-author img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 15px;
}

.review-author h4 {
  margin-bottom: 5px;
  font-size: 1.1rem;
}

.swiper-pagination-bullet-active {
  background-color: var(--primary-color-1);
}

/* Core Info Section */
.coreinfo-section {
  position: relative;
}

.coreinfo-item {
  text-align: center;
  padding: 40px 30px;
  margin-bottom: 30px;
  background-color: var(--white);
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.coreinfo-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.coreinfo-icon {
  width: 80px;
  height: 80px;
  line-height: 80px;
  margin: 0 auto 25px;
  background-color: var(--primary-color-3-light);
  border-radius: 50%;
  font-size: 2rem;
  color: var(--primary-color-3-dark);
}

.coreinfo-item h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

/* Contact Section */
.contact-section {
  background-color: var(--gray-light);
  position: relative;
}

.contact-form {
  background-color: var(--white);
  border-radius: 10px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.form-group {
  margin-bottom: 20px;
}

.form-control {
  height: 50px;
  border: 1px solid var(--gray-medium);
  border-radius: 5px;
  padding: 10px 15px;
}

textarea.form-control {
  height: 150px;
}

.form-check {
  margin-bottom: 20px;
}

/* Blog Section */
.blog-section {
  position: relative;
}

.blog-item {
  background-color: var(--white);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 30px;
  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 15px 35px rgba(0, 0, 0, 0.1);
}

.blog-img {
  height: 200px;
  overflow: hidden;
}

.blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}

.blog-item:hover .blog-img img {
  transform: scale(1.1);
}

.blog-content {
  padding: 20px;
}

.blog-content h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.blog-content p {
  margin-bottom: 15px;
}

.blog-content a {
  color: var(--primary-color-1);
  font-weight: 600;
  text-decoration: none;
}

.blog-content a:hover {
  color: var(--primary-color-1-dark);
}

/* FAQ Section */
.faq-section {
  background-color: var(--gray-light);
  position: relative;
}

.accordion-item {
  border: none;
  border-radius: 10px !important;
  margin-bottom: 15px;
  overflow: hidden;
}

.accordion-button {
  background-color: var(--white);
  border: none;
  border-radius: 10px !important;
  padding: 20px;
  font-weight: 600;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.accordion-button:not(.collapsed) {
  color: var(--primary-color-1);
  background-color: var(--white);
}

.accordion-button:focus {
  box-shadow: none;
  border: none;
}

.accordion-button::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ff6b6b'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
}

.accordion-body {
  padding: 20px;
  background-color: var(--white);
}

/* Gallery Section */
.gallery-section {
  position: relative;
}

.gallery-item {
  margin-bottom: 30px;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: all 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

/* Footer */
.footer {
  background-color: var(--gray-dark);
  color: var(--white);
  padding: 80px 0 30px;
  position: relative;
}

.footer-title {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: var(--white);
}

.footer p {
  margin-bottom: 15px;
}

.footer ul {
  padding: 0;
  list-style: none;
}

.footer ul li {
  margin-bottom: 10px;
}

.footer ul li a {
  color: var(--gray-medium);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer ul li a:hover {
  color: var(--primary-color-1);
  padding-left: 5px;
}

.contact-info p {
  display: flex;
  align-items: center;
}

.contact-info p i {
  margin-right: 10px;
  color: var(--primary-color-1);
  font-size: 1.2rem;
}

.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  margin-top: 50px;
  text-align: center;
}

.copyright small {
  color: var(--gray-medium);
}

/* Breadcrumb */
.breadcrumb-section {
  padding: 100px 0;
  background-color: var(--primary-color-1-light);
  position: relative;
  overflow: hidden;
}

.breadcrumb-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 5rem;
  color: rgba(255, 255, 255, 0.1);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 40px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.fadeInUp {
  animation-name: fadeInUp;
}

.animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}

/* Additional page sections */
.add-page-section {
  padding: 100px 0;
}

.add-page-section:nth-child(even) {
  background-color: var(--gray-light);
}

/* Space page */
#space {
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
} 