:root {
  /* Main Color Palette */
  --primary-color: #d0a080; /* Warm terracotta */
  --secondary-color: #859a9b; /* Sage green */
  --tertiary-color: #c1b5a7; /* Neutral taupe */
  --accent-color: #e9c46a; /* Muted gold */
  --complementary-color: #6b7d7d; /* Slate blue-gray */
  
  /* Shades */
  --primary-light: #e8d0c0;
  --primary-dark: #a67d60;
  --secondary-light: #b4c4c5;
  --secondary-dark: #617273;
  --tertiary-light: #e2dbd4;
  --tertiary-dark: #968a7d;
  --accent-light: #f3dfa0;
  --accent-dark: #c7a44a;
  --complementary-light: #98a4a4;
  --complementary-dark: #465252;
  
  /* Common Colors */
  --text-dark: #333333;
  --text-light: #ffffff;
  --background-light: #f8f5f2;
  --background-dark: #2c2c2c;
  --border-color: #e0e0e0;
  
  /* Fonts */
  --heading-font: 'Playfair Display', serif;
  --body-font: 'Raleway', sans-serif;
}

/* Base Styles */
html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--body-font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--background-light);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--heading-font);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

section {
  padding: 5rem 0;
}

/* Header Styles */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.3s ease;
  padding: 1rem 0;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-scrolled {
  padding: 0.5rem 0;
  background-color: white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.logo {
  font-family: var(--heading-font);
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary-color);
  text-decoration: none;
}

.nav-link {
  color: var(--text-dark);
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
  padding: 0.5rem 1rem !important;
}

.nav-link:hover {
  color: var(--primary-color);
}

.nav-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 50%;
  background-color: var(--primary-color);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-link:hover::after {
  width: 70%;
}

.active .nav-link {
  color: var(--primary-color);
}

.active .nav-link::after {
  width: 70%;
}

/* Hero Section */
.hero-section {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-slide {
  height: 100%;
  width: 100%;
  position: relative;
}

.hero-slide-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

.hero-slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--text-light);
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1rem;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.5s ease;
}

.swiper-slide-active .hero-title {
  opacity: 1;
  transform: translateY(0);
}

.hero-subtitle {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.5s ease;
  transition-delay: 0.2s;
}

.swiper-slide-active .hero-subtitle {
  opacity: 1;
  transform: translateY(0);
}

.hero-desc {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.5s ease;
  transition-delay: 0.4s;
}

.swiper-slide-active .hero-desc {
  opacity: 1;
  transform: translateY(0);
}

.swiper-pagination {
  bottom: 30px !important;
}

.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.5);
  opacity: 0.5;
}

.swiper-pagination-bullet-active {
  background: var(--primary-color);
  opacity: 1;
}

/* About Section */
.about-section {
  position: relative;
  background-color: var(--background-light);
}

.about-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../OPT_images/OPT_about/pattern.png');
  background-size: cover;
  opacity: 0.05;
  z-index: 0;
}

.about-title {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.about-subtitle {
  font-size: 1.2rem;
  color: var(--secondary-color);
  margin-bottom: 2rem;
}

.about-desc {
  margin-bottom: 2.5rem;
}

.about-image {
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.about-image img {
  transition: transform 0.5s ease;
}

.about-image:hover img {
  transform: scale(1.05);
}

.about-feature-card {
  background-color: white;
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  height: 100%;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.about-feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background-color: var(--primary-color);
  transition: all 0.3s ease;
}

.about-feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.about-feature-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.about-feature-name {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.about-feature-desc {
  color: #666;
}

/* Services Section */
.services-section {
  background-color: white;
  position: relative;
}

.services-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 200px;
  background: linear-gradient(to top, var(--background-light), transparent);
  z-index: 1;
}

.services-title {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  text-align: center;
}

.services-subtitle {
  font-size: 1.2rem;
  color: var(--secondary-color);
  margin-bottom: 1rem;
  text-align: center;
}

.services-desc {
  max-width: 700px;
  margin: 0 auto 3rem;
  text-align: center;
}

.service-card {
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  margin-bottom: 30px;
  position: relative;
  z-index: 2;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-image {
  height: 200px;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
  transform: scale(1.1);
}

.service-content {
  padding: 2rem;
}

.service-name {
  font-size: 1rem;
  color: var(--primary-dark);
  margin-bottom: 1rem;
}

.service-desc {
  color: #666;
  margin-bottom: 1.5rem;
}

.service-features {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
}

.service-features li {
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: 0.5rem;
}

.service-features li::before {
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 2px;
  color: var(--accent-color);
}

.service-price {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-top: 1rem;
  display: block;
}

/* Features Section */
.features-section {
  background-color: var(--background-light);
  position: relative;
  overflow: hidden;
}

.features-section::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background-color: var(--accent-light);
  opacity: 0.2;
  z-index: 0;
}

.features-section::after {
  content: "";
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background-color: var(--primary-light);
  opacity: 0.15;
  z-index: 0;
}

.features-title {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  text-align: center;
  position: relative;
  z-index: 1;
}

.features-subtitle {
  font-size: 1.2rem;
  color: var(--secondary-color);
  margin-bottom: 1rem;
  text-align: center;
  position: relative;
  z-index: 1;
}

.features-desc {
  max-width: 700px;
  margin: 0 auto 3rem;
  text-align: center;
  position: relative;
  z-index: 1;
}

.feature-card {
  background: white;
  border-radius: 10px;
  padding: 2.5rem;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
  height: 100%;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary-light) 0%, white 300%);
  opacity: 0;
  transition: all 0.3s ease;
  z-index: -1;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-card:hover::before {
  opacity: 0.7;
}

.feature-icon {
  width: 80px;
  height: 80px;
  background-color: var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
  background-color: var(--primary-color);
}

.feature-icon i {
  font-size: 2rem;
  color: var(--primary-color);
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon i {
  color: white;
}

.feature-name {
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.feature-desc {
  color: #666;
}

/* Price Plan Section */
.priceplan-section {
  position: relative;
  background-color: white;
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.priceplan-title {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  text-align: center;
}

.priceplan-subtitle {
  font-size: 1.2rem;
  color: var(--secondary-color);
  margin-bottom: 1rem;
  text-align: center;
}

.priceplan-desc {
  max-width: 700px;
  margin: 0 auto 3rem;
  text-align: center;
}

.price-card {
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
  border: 1px solid var(--border-color);
  height: 100%;
}

.price-card.featured {
  transform: scale(1.05);
  border-color: var(--primary-color);
  z-index: 2;
}

.price-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.price-card.featured:hover {
  transform: scale(1.05) translateY(-10px);
}

.price-header {
  background-color: var(--primary-light);
  padding: 2rem;
  text-align: center;
  border-bottom: 1px solid var(--border-color);
}

.price-card.featured .price-header {
  background-color: var(--primary-color);
  color: white;
}

.price-name {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.price-card.featured .price-name {
  color: white;
}

.price-value {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  display: block;
  margin-bottom: 1rem;
}

.price-card.featured .price-value {
  color: white;
}

.price-period {
  font-size: 0.9rem;
  color: #777;
}

.price-card.featured .price-period {
  color: rgba(255, 255, 255, 0.8);
}

.price-content {
  padding: 2rem;
}

.price-desc {
  margin-bottom: 1.5rem;
  color: #666;
}

.price-features {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}

.price-features li {
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: 0.8rem;
  color: #555;
}

.price-features li::before {
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 2px;
  color: var(--accent-color);
}

/* Team Section */
.team-section {
  background-color: var(--background-light);
  position: relative;
  overflow: hidden;
}

.team-section::before,
.team-section::after {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  z-index: 0;
}

.team-section::before {
  background-color: var(--primary-light);
  top: -50px;
  left: -50px;
  opacity: 0.2;
}

.team-section::after {
  background-color: var(--accent-light);
  bottom: -50px;
  right: -50px;
  opacity: 0.2;
}

.team-title {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  text-align: center;
  position: relative;
  z-index: 1;
}

.team-subtitle {
  font-size: 1.2rem;
  color: var(--secondary-color);
  margin-bottom: 1rem;
  text-align: center;
  position: relative;
  z-index: 1;
}

.team-desc {
  max-width: 700px;
  margin: 0 auto 3rem;
  text-align: center;
  position: relative;
  z-index: 1;
}

.team-member {
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}

.team-member:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.team-member-img {
  position: relative;
  overflow: hidden;
}

.team-member-img img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: all 0.5s ease;
}

.team-member:hover .team-member-img img {
  transform: scale(1.1);
}

.team-member-info {
  padding: 1.5rem;
  text-align: center;
}

.team-member-name {
  font-size: 1.3rem;
  margin-bottom: 0.3rem;
  color: var(--primary-dark);
}

.team-member-role {
  font-size: 0.9rem;
  color: var(--secondary-color);
  margin-bottom: 1rem;
}

/* Reviews Section */
.reviews-section {
  position: relative;
  background-color: white;
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.reviews-title {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  text-align: center;
}

.reviews-subtitle {
  font-size: 1.2rem;
  color: var(--secondary-color);
  margin-bottom: 1rem;
  text-align: center;
}

.reviews-desc {
  max-width: 700px;
  margin: 0 auto 3rem;
  text-align: center;
}

.reviews-slider {
  padding-bottom: 50px;
}

.review-card {
  background-color: white;
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.review-card::before {
  content: "\f10d";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 3rem;
  color: var(--primary-light);
  position: absolute;
  top: 10px;
  left: 10px;
  opacity: 0.2;
}

.review-content {
  flex: 1;
}

.review-text {
  font-style: italic;
  color: #555;
  margin-bottom: 1.5rem;
}

.review-author {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--primary-color);
}

/* Core Info Section */
.coreinfo-section {
  background-color: var(--background-light);
  position: relative;
  overflow: hidden;
}

.coreinfo-title {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  text-align: center;
}

.coreinfo-subtitle {
  font-size: 1.2rem;
  color: var(--secondary-color);
  margin-bottom: 1rem;
  text-align: center;
}

.coreinfo-desc {
  max-width: 700px;
  margin: 0 auto 3rem;
  text-align: center;
}

.coreinfo-item {
  background-color: white;
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.coreinfo-item::after {
  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.5s ease;
}

.coreinfo-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.coreinfo-item:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.coreinfo-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.coreinfo-item-title {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--primary-dark);
}

.coreinfo-item-desc {
  color: #666;
}

/* Contact Section */
.contact-section {
  position: relative;
  background-color: white;
}

.contact-title {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  text-align: center;
}

.contact-subtitle {
  font-size: 1.2rem;
  color: var(--secondary-color);
  margin-bottom: 1rem;
  text-align: center;
}

.contact-desc {
  max-width: 700px;
  margin: 0 auto 3rem;
  text-align: center;
}

.contact-form {
  background-color: white;
  border-radius: 10px;
  padding: 2.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-control {
  border: 1px solid var(--border-color);
  border-radius: 5px;
  padding: 0.8rem 1rem;
  width: 100%;
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(208, 160, 128, 0.25);
}

.form-select {
  border: 1px solid var(--border-color);
  border-radius: 5px;
  padding: 0.8rem 1rem;
  width: 100%;
  transition: all 0.3s ease;
  color: #666;
}

.form-select:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(208, 160, 128, 0.25);
}

textarea.form-control {
  min-height: 150px;
  resize: vertical;
}

.btn-submit {
  background-color: var(--primary-color);
  color: white;
  border: none;
  border-radius: 5px;
  padding: 0.8rem 1.5rem;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-submit:hover {
  background-color: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-info-card {
  background-color: var(--primary-light);
  border-radius: 10px;
  padding: 2.5rem;
  height: 100%;
}

.info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.info-icon {
  font-size: 1rem;
  color: var(--primary-color);
  margin-right: 1rem;
  flex-shrink: 0;
}

.info-content {
  color: var(--text-dark);
}

.info-content h4 {
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
}

.info-content p {
  margin: 0;
}

/* Blog Section */
.blog-section {
  background-color: var(--background-light);
  position: relative;
}

.blog-title {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  text-align: center;
}

.blog-subtitle {
  font-size: 1.2rem;
  color: var(--secondary-color);
  margin-bottom: 1rem;
  text-align: center;
}

.blog-desc {
  max-width: 700px;
  margin: 0 auto 3rem;
  text-align: center;
}

.blog-card {
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  margin-bottom: 30px;
  height: 100%;
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.blog-img {
  height: 200px;
  overflow: hidden;
}

.blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-img img {
  transform: scale(1.1);
}

.blog-content {
  padding: 2rem;
}

.blog-date {
  font-size: 0.9rem;
  color: var(--secondary-color);
  margin-bottom: 0.5rem;
  display: block;
}

.blog-title-link {
  font-size: 1.3rem;
  color: var(--primary-dark);
  margin-bottom: 1rem;
  display: block;
  text-decoration: none;
  transition: color 0.3s ease;
}

.blog-title-link:hover {
  color: var(--primary-color);
}

.blog-excerpt {
  color: #666;
  margin-bottom: 1.5rem;
}

.blog-link {
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: none;
  position: relative;
  transition: all 0.3s ease;
}

.blog-link::after {
  content: "\f178";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-left: 0.5rem;
  transition: all 0.3s ease;
}

.blog-link:hover {
  color: var(--primary-dark);
}

.blog-link:hover::after {
  margin-left: 0.8rem;
}

/* Footer */
.footer {
  background-color: var(--complementary-dark);
  color: var(--text-light);
  padding: 4rem 0 1rem;
}

.footer-widget {
  margin-bottom: 2.5rem;
}

.footer-title {
  font-size: 1.3rem;
  color: white;
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

.footer-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 50px;
  height: 2px;
  background-color: var(--primary-color);
}

.footer-logo {
  font-family: var(--heading-font);
  font-size: 1rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
  display: inline-block;
}

.footer-desc {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.5rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  padding-left: 15px;
}

.footer-links a::before {
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 2px;
  color: var(--primary-color);
}

.footer-links a:hover {
  color: white;
  padding-left: 20px;
}

.contact-info p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1rem;
  padding-left: 30px;
  position: relative;
}

.contact-info p i {
  position: absolute;
  left: 0;
  top: 5px;
  color: var(--primary-color);
}

.copyright {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fadeInUp {
  animation: fadeInUp 1s ease forwards;
}

/* Utility Classes */
.section-padding {
  padding: 100px 0;
}

.section-padding-small {
  padding: 70px 0;
}

.mb-30 {
  margin-bottom: 30px;
}

.z-1 {
  position: relative;
  z-index: 1;
}

.text-primary {
  color: var(--primary-color) !important;
}

.bg-primary {
  background-color: var(--primary-color) !important;
}

.bg-light-primary {
  background-color: var(--primary-light) !important;
}

.bg-pattern {
  background-image: url('../OPT_images/pattern.png');
  background-repeat: repeat;
  background-size: 200px;
  background-opacity: 0.05;
}

.overlay-dark {
  position: relative;
}

.overlay-dark::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 0;
}

.overlay-dark > * {
  position: relative;
  z-index: 1;
}

/* Shape Dividers */
.shape-divider {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.shape-divider svg {
  width: calc(100% + 1.3px);
  height: 70px;
}

.shape-divider-top {
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg);
}

.shape-divider-top svg {
  width: calc(100% + 1.3px);
  height: 70px;
} 