* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  color: #1e1e1e;
  background-color: #ffffff;
}

a {
    text-decoration : none;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 29px 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo-text {
  font-family: "Century Gothic", sans-serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 39.2px;
  letter-spacing: 0.96px;
  color: #ffffff;
  background: #c9a44c;
  padding: 2px 8px;
  border-radius: 5px;
}

.logo-text-accent {
  font-family: "Century Gothic", sans-serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 39.2px;
  letter-spacing: 0.96px;
  color: #0f4c5c;
}

.nav {
  display: flex;
  align-items: center;
  gap: 51px;
}

.nav-link {
  font-weight: 300;
  font-size: 16px;
  line-height: 23.98px;
  color: #1e1e1e;
  text-decoration: none;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #c9a44c;
}

.btn-primary {
  background: #c9a44c;
  color: #0a1f33;
  border: none;
  padding: 15px 30px;
  font-weight: 500;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: #b08d57;
  transform: translateY(-2px);
}

/* Navbar overrides */
.navbar {
  padding: 0;
}

.navbar-toggler {
  border: none;
}

.navbar-toggler:focus {
  box-shadow: none;
}

/* Mobile menu styling */
@media (max-width: 991px) {
  .navbar-collapse {
    background: #ffffff;
    padding: 20px;
    margin-top: 15px;
    border-radius: 10px;
  }

  .nav {
    gap: 20px;
  }

  .nav-link {
    font-size: 18px;
    padding: 10px 0;
  }

  .logo-text,
  .logo-text-accent {
    font-size: 24px;
  }

  .btn-primary {
    text-align: center;
  }
}

/* Hero Section */
/* .hero {
  background-image: url("../image/banner.png");
  background-size: cover;
  background-position: center;
  min-height: 100vh;
  position: relative;
} */

/* Overlay */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 2rem 1rem;
}

/* Typography */
.hero-title {
  font-weight: 600;
  font-size: 32px;
  line-height: 1.3;
  letter-spacing: 1px;
  color: #ffffff;
  margin-bottom: 1.5rem;
}

.hero-description {
  font-size: 18px;
  line-height: 1.6;
  color: #ffffff;
  margin-bottom: 2rem;
}

/* Buttons */
.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Tablet */
@media (min-width: 768px) {
  .hero-title {
    font-size: 48px;
    line-height: 1.2;
  }

  .hero-description {
    font-size: 22px;
  }
}

/* Desktop */
@media (min-width: 992px) {
  .hero {
    min-height: 850px;
  }

  .hero-content {
    padding-left: 0;
  }

  .hero-title {
    font-size: 65px;
    line-height: 75px;
    letter-spacing: 1.95px;
  }

  .hero-description {
    font-size: 32px;
    line-height: 40px;
  }
}

/* About Section */
.about {
  background-color: #ffffff;
}

.about-image img {
  width: 100%;
  height: auto;
  max-height: 504px;
  object-fit: cover;
}

/* Typography */
.about-subtitle {
  font-size: 24px;
  line-height: 1.3;
  color: #1e1e1e;
  margin-bottom: 10px;
}

.about-title {
  font-size: 36px;
  line-height: 1.3;
  color: #1e1e1e;
  margin-bottom: 20px;
}

.about-description {
  font-size: 16px;
  color: #1e1e1e;
  line-height: 1.6;
  margin-bottom: 30px;
}

/* Mobile Optimization */
@media (max-width: 767px) {
  .about-subtitle {
    font-size: 20px;
  }

  .about-title {
    font-size: 28px;
  }

  .about-description {
    font-size: 15px;
  }

  .about-text {
    text-align: center;
  }
}

/* Statistics Section */
.stats {
  padding: 80px 0;
}

.stats-row {
  background-color: #c9a44c;
  padding: 80px 84px;
  row-gap: 40px;
}

.stat-item {
  text-align: left;
}

.stat-number {
  font-weight: 600;
  font-size: 48px;
  line-height: 65px;
  color: #000000;
  margin-bottom: 10px;
}

.stat-label {
  font-weight: 400;
  font-size: 20px;
  color: #1e1e1e;
  line-height: 1.5;
}

/* Mobile Adjustments */
@media (max-width: 767px) {
  .stats {
    padding: 40px 0;
  }

  .stats-row {
    padding: 40px 20px;
  }

  .stat-number {
    font-size: 32px;
    line-height: 42px;
  }

  .stat-label {
    font-size: 16px;
  }
}

/* What We Offer Section */
.what-we-offer {
  padding: 80px 0;
  background-color: #ffffff;
}

.service-item {
  text-align: left;
}

/* Image */
.service-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  margin-bottom: 20px;
}

/* Titles */
.section-title {
  font-size: 45px;
  line-height: 65px;
  text-align: center;
  color: #1e1e1e;
  margin-bottom: 60px;
}

.service-title {
  font-size: 24px;
  color: #000000;
  margin-bottom: 15px;
  line-height: 1.3;
}

.service-title.white {
  color: #fff;
}

.service-description {
  font-size: 16px;
  color: #555555;
  line-height: 1.5;
}

/* Mobile adjustments */
@media (max-width: 767px) {
  .section-title {
    font-size: 30px;
    line-height: 40px;
    margin-bottom: 40px;
  }

  .service-image {
    height: 220px;
  }

  .service-title {
    font-size: 20px;
  }

  .service-description {
    font-size: 15px;
  }
}

/* Benefits Section */
.benefits {
  padding: 80px 0;
  background-image: url("../image/about-bg.png");
  background-size: cover;
  background-position: center;
  position: relative;
}

.benefits::before {
  content: "";
  position: absolute;
  inset: 0;
}

.benefits .container {
  position: relative;
  z-index: 2;
}

/* Benefit Card */
.benefit-item {
  text-align: left;
}

.benefit-image {
  width: 100%;
  height: 333px;
  object-fit: cover;
  margin-bottom: 20px;
}

.benefit-title {
  font-size: 36px;
  line-height: 45px;
  color: #ffffff;
  margin-bottom: 15px;
}

.benefit-description {
  font-size: 16px;
  color: #ffffff;
  line-height: 1.5;
}

/* Responsive adjustments */
@media (max-width: 767px) {
  .benefits {
    padding: 60px 0;
  }

  .benefit-image {
    height: 220px;
  }

  .benefit-title {
    font-size: 24px;
    line-height: 32px;
  }

  .benefit-description {
    font-size: 15px;
  }
}

/* Succeed Section */
.succeed-section {
  padding: 80px 0;
  background-color: #ffffff;
}

.succeed-item {
  text-align: left;
}

.succeed-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  margin-bottom: 20px;
}

.succeed-title {
  font-size: 24px;
  color: #000000;
  margin-bottom: 15px;
}

.succeed-description {
  font-size: 20px;
  color: #555555;
  line-height: 1.3;
}

/* Mobile adjustments */
@media (max-width: 767px) {
  .succeed-section {
    padding: 60px 0;
  }

  .succeed-image {
    height: 220px;
  }

  .succeed-title {
    font-size: 20px;
  }

  .succeed-description {
    font-size: 16px;
  }
}

/* Testimonials Section */
.testimonials {
  padding: 80px 0;
  background-color: #ffffff;
}

.testimonial-item {
  background-color: #eef4f6;
  padding: 40px;
  position: relative;
  height: 100%;
}

.quote-icon {
  margin-bottom: 20px;
}

.quote-icon img {
  width: 36px !important;
  height: 36px !important;
}

.testimonial-text {
  font-size: 16px;
  line-height: 27px;
  color: #555555;
  margin-bottom: 20px;
}

.testimonial-author {
  font-size: 20px;
  color: #000000;
  font-weight: 500;
}

/* Owl dots */
.owl-dot span {
  width: 16px !important;
  height: 16px !important;
  border-radius: 50% !important;
  background: #e0e0e0 !important;
  transition: background 0.3s ease;
}

.owl-dot.active span {
  background: #c9a44c !important;
}

/* Mobile adjustments */
@media (max-width: 767px) {
  .testimonials {
    padding: 60px 0;
  }

  .testimonial-item {
    padding: 25px;
  }

  .testimonial-text {
    font-size: 15px;
    line-height: 24px;
  }

  .testimonial-author {
    font-size: 18px;
  }
}

/* News Section */
.news {
  padding: 80px 0;
  background-color: #ffffff;
}

.news-description {
  font-size: 20px;
  color: #555555;
  margin-bottom: 60px;
}

/* News Card */
.news-item {
  border: 1px solid #808386;
  overflow: hidden;
  height: 100%;
}

.news-image {
  width: 100%;
  height: 333px;
  object-fit: cover;
}

.news-content {
  padding: 30px 25px;
}

.news-title {
  font-size: 18px;
  line-height: 25px;
  color: #1e1e1e;
  margin-bottom: 20px;
}

.news-meta {
  display: flex;
  align-items: center;
  gap: 8px;
}

.calendar-icon {
  width: 20px;
  height: 20px;
}

.news-date {
  font-size: 14px;
  color: #555555;
}

/* Mobile adjustments */
@media (max-width: 767px) {
  .news {
    padding: 60px 0;
  }

  .news-description {
    font-size: 16px;
    margin-bottom: 40px;
  }

  .news-image {
    height: 220px;
  }

  .news-content {
    padding: 20px;
  }
}

/* Newsletter Section */
.newsletter {
  padding: 80px 0;
}

.newsletter-content {
  background-color: #d9d9d9;
  padding: 80px;
}

/* Text */
.newsletter-title {
  font-weight: 600;
  font-size: 50px;
  line-height: 65px;
  color: #000000;
  margin-bottom: 20px;
}

.newsletter-description {
  font-size: 24px;
  line-height: 36px;
  color: #000000;
}

/* Form */
.newsletter-form {
  display: flex;
  gap: 16px;
  align-items: center;
}

.newsletter-input {
  width: 100%;
  max-width: 525px;
  height: 70px;
  padding: 0 31px;
  border: 1px solid #555555;
  background-color: #ffffff;
  font-size: 16px;
  color: #808386;
}

.newsletter-input::placeholder {
  color: #808386;
}

.newsletter-form .btn {
  height: 70px;
  padding: 20px 40px;
  font-size: 20px;
  text-transform: uppercase;
  color: #1e1e1e;
}

/* Mobile adjustments */
@media (max-width: 767px) {
  .newsletter {
    padding: 60px 0;
  }

  .newsletter-content {
    padding: 40px 20px;
  }

  .newsletter-title {
    font-size: 30px;
    line-height: 40px;
  }

  .newsletter-description {
    font-size: 18px;
    line-height: 28px;
  }

  .newsletter-form {
    flex-direction: column;
    align-items: stretch;
  }

  .newsletter-form .btn {
    width: 100%;
  }
}

/* Footer */
.footer {
  background-image: url("../image/about-bg.png");
  background-size: cover;
  background-position: center;
  padding: 80px 0 0;
  color: #ffffff;
}

.footer-social {
  display: flex;
  gap: 20px;
}

.social-link {
  position: relative;
  display: inline-block;
  width: 54px;
  height: 54px;
}

.social-bg {
  width: 100%;
  height: 100%;
}

.social-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 32px;
  height: 32px;
}

.footer-info p {
  font-weight: 300;
  line-height: 32px;
  letter-spacing: 0.9px;
}

.footer-links {
  margin-top: 20px;
}

.divider {
  border: 6px solid;
  border-color: #c9a44c;
}

.footer-link {
  color: #ffffff;
  font-weight: 300;
  letter-spacing: 0.9px;
  /* text-decoration: none; */
}

.footer-link:hover {
  color: #c9a44c;
}

/* Mobile adjustments */
@media (max-width: 767px) {
  .footer {
    padding: 60px 0 0px;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-links {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .footer-info p {
    line-height: 28px;
  }
}

/* About Hero Section */
.about-hero {
  position: relative;
  height: 504px;
  overflow: hidden;
  margin-top: 100px;
}

.hero-background {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-hero .hero-content {
  z-index: 2;
  color: #ffffff;
}

/* Typography */
.about-hero .hero-title {
  font-weight: 600;
  font-size: 80px;
  line-height: 1.2;
  margin-bottom: 10px;
}

.hero-breadcrumb {
  font-weight: 300;
  font-size: 20px;
}

/* ---------- Responsive Adjustments ---------- */
/* Tablets (≤ 992px) */
@media (max-width: 992px) {
  .about-hero {
    height: 400px;
    margin-top: 80px;
  }

  .about-hero .hero-title {
    font-size: 56px;
  }

  .hero-breadcrumb {
    font-size: 18px;
  }
}

/* Mobile (≤ 576px) */
@media (max-width: 576px) {
  .about-hero {
    height: 300px;
    margin-top: 70px;
  }

  .about-hero .hero-title {
    font-size: 36px;
  }

  .hero-breadcrumb {
    font-size: 14px;
  }
}

/* About Section */
.about-section {
  padding: 71px 0;
}

/* Text */
.about-text h2 {
  font-weight: 500;
  font-size: 45px;
  line-height: 1.4;
  color: #1e1e1e;
  margin-bottom: 18px;
}

.about-text p {
  font-size: 18px;
  line-height: 30px;
  color: #1e1e1e;
  margin-bottom: 0;
}

/* ---------- Responsive ---------- */
/* Tablets */
@media (max-width: 992px) {
  .about-text h2 {
    font-size: 36px;
  }

  .about-text p {
    font-size: 16px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .about-section {
    padding: 50px 0;
  }

  .about-text h2 {
    font-size: 28px;
    line-height: 1.3;
  }

  .about-text p {
    font-size: 15px;
  }
}

/* Statistics Section */
.statistics-section {
  padding: 80px 0;
  background-color: #ffffff;
}

/* ---------- Responsive ---------- */
/* Mobile */
@media (max-width: 576px) {
  .statistics-section {
    padding: 50px 0;
  }

  .stat-item {
    text-align: center;
  }
}

/* Region Section */
.region-section {
  padding: 80px 0;
  background-color: #d9d9d9;
  margin-bottom: 82px;
}

/* Content */
.region-content {
  text-align: center;
}

/* Heading */
.region-content h2 {
  font-weight: 500;
  font-size: 45px;
  line-height: 65px;
  color: #1e1e1e;
  margin-bottom: 40px;
  max-width: 1182px;
  margin-left: auto;
  margin-right: auto;
}

/* Selector */
.region-selector {
  margin-bottom: 40px;
}

/* Dropdown */
.region-dropdown {
  max-width: 543px;
  width: 100%;
  height: 80px;
  border: 1px solid #555555;
  border-radius: 3px;
  background-color: #ffffff;
  font-size: 20px;
  line-height: 40px;
  color: #555555;
  padding: 20px 50px 20px 20px;
  text-align: center;
  appearance: none;
  background-image: url("../image/down.png");
  background-repeat: no-repeat;
  background-position: right 20px center;
  background-size: 24px 24px;
}

/* ---------- Responsive ---------- */
/* Tablets */
@media (max-width: 992px) {
  .region-content h2 {
    font-size: 34px;
    line-height: 48px;
  }

  .region-dropdown {
    height: 70px;
    font-size: 18px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .region-section {
    padding: 50px 0;
    margin-bottom: 50px;
  }

  .region-content h2 {
    font-size: 26px;
    line-height: 38px;
    margin-bottom: 30px;
  }

  .region-dropdown {
    height: 60px;
    font-size: 16px;
    padding: 10px 45px 10px 15px;
  }
}

/* Mission Section */
.mission-section {
  padding: 80px 0;
  background-color: #ffffff;
}

/* Image Area */
.mission-images {
  position: relative;
  height: 1000px;
}

.mission-image-1 {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Text Background */
.mission-text-bg {
  background-color: #c9a44c;
  height: 100%;
  position: relative;
}

/* Text Box */
.mission-text {
  background-color: #ffffff;
  width: 600px;
  padding: 40px 20px;
  position: absolute;
  left: -100px;
  top: 30%;
}

/* Heading */
.mission-text h2 {
  font-weight: 500;
  font-size: 45px;
  line-height: 65px;
  color: #1e1e1e;
  margin-bottom: 18px;
}

/* Paragraph */
.mission-text p {
  font-size: 18px;
  line-height: 1.6;
  color: #1e1e1e;
}

/* ---------- Responsive ---------- */
/* Tablets */
@media (max-width: 992px) {
  .mission-images {
    height: 600px;
  }

  .mission-text {
    position: static;
    width: 100%;
    margin: 40px 0;
    padding: 50px 30px;
  }

  .mission-text-bg {
    padding: 30px;
  }

  .mission-text h2 {
    font-size: 34px;
    line-height: 48px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .mission-section {
    padding: 50px 0;
  }

  .mission-images {
    height: 400px;
  }

  .mission-text {
    padding: 30px 20px;
  }

  .mission-text h2 {
    font-size: 26px;
    line-height: 36px;
  }

  .mission-text p {
    font-size: 16px;
  }
}

/* Values Section */
.values-section {
  padding: 80px 0;
  background-color: #ffffff;
}

/* Header */
.values-header {
  margin-bottom: 80px;
}

.values-header h2 {
  font-weight: 500;
  font-size: 45px;
  line-height: 65px;
  color: #1e1e1e;
  margin-bottom: 20px;
}

.values-header p {
  font-size: 18px;
  line-height: 1.6;
  color: #1e1e1e;
  max-width: 1266px;
  margin: 0 auto;
}

/* Value Item */
.value-item h3 {
  font-weight: 500;
  font-size: 45px;
  line-height: 65px;
  color: #1e1e1e;
  margin-bottom: 15px;
}

.value-item p {
  font-size: 18px;
  line-height: 1.6;
  color: #1e1e1e;
}

/* ---------- Responsive ---------- */
/* Tablet */
@media (max-width: 992px) {
  .values-header {
    margin-bottom: 60px;
  }

  .values-header h2 {
    font-size: 36px;
    line-height: 48px;
  }

  .value-item h3 {
    font-size: 32px;
    line-height: 44px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .values-section {
    padding: 50px 0;
  }

  .values-header h2 {
    font-size: 28px;
    line-height: 38px;
  }

  .values-header p {
    font-size: 16px;
  }

  .value-item h3 {
    font-size: 22px;
    line-height: 32px;
  }

  .value-item p {
    font-size: 16px;
  }
}

/* Leadership Section */
.leadership-section {
  padding: 80px 0;
  background-color: #ffffff;
}

.leadership-header {
  text-align: center;
  margin-bottom: 80px;
}

.leadership-header h2 {
  font-weight: 500;
  font-size: 45px;
  line-height: 65px;
  color: #1e1e1e;
  margin-bottom: 20px;
}

.leadership-header p {
  font-size: 18px;
  line-height: 1.6;
  color: #1e1e1e;
  max-width: 1174px;
  margin: 0 auto;
}

.leadership-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 21px;
  margin-bottom: 40px;
}

.leader-card {
  text-align: center;
}

.leader-image {
  width: 385px;
  height: 416px;
  object-fit: cover;
  border: 1px solid #8b8b8b;
  margin-bottom: 25px;
}

.leader-card h3 {
  font-size: 24px;
  color: #000000;
  margin-bottom: 10px;
}

.leader-card p {
  font-size: 20px;
  color: #555555;
  line-height: 1.5;
}

.pagination {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.pagination-dots {
  display: flex;
  gap: 36px;
}

.dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: #d9d9d9;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.dot.active {
  background-color: #c9a44c;
}

/* Membership Plans Section */
.membership-plans {
  padding: 100px 0;
  background-color: #ffffff;
}

.membership-plans .section-title {
  font-weight: 700;
  font-size: 60px;
  line-height: 110px;
  text-transform: uppercase;
  text-align: center;
  color: #0f4c5c;
  margin-bottom: 100px;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 503px);
  gap: 46px;
  justify-content: center;
}

.plan-card {
  border: 1px solid #555555;
  border-radius: 0;
  overflow: hidden;
  position: relative;
}

.plan-card.silver {
  background-color: #f1eff0;
}

.plan-card.gold {
  background-color: #f9f3ee;
}

.plan-card.platinum {
  background-color: #edece8;
}

.plan-header {
  height: 151px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.plan-card.silver .plan-header {
  background-color: #cacbcf;
}

.plan-card.gold .plan-header {
  background-color: #c9a44c;
}

.plan-card.platinum .plan-header {
  background-color: #23423c;
}

.plan-name {
  font-weight: 700;
  font-size: 35px;
  line-height: 70px;
  text-transform: uppercase;
  color: #0a1f33;
}

.gold-name,
.platinum-name {
  color: #ffffff;
}

.plan-price-section {
  background-color: #ffffff;
  height: 87px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 2px;
}

.plan-price {
  font-size: 36px;
  line-height: 20px;
  text-align: center;
  color: #1e1e1e;
  font-weight: 500;
}

.plan-description {
  padding: 20px;
  text-align: center;
}

.plan-description p {
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: #000000;
}

.plan-features {
  padding: 20px;
}

.plan-features h4 {
  font-size: 24px;
  line-height: 39px;
  text-align: center;
  color: #000000;
  margin-bottom: 20px;
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  line-height: 40px;
  color: #455a64;
}

.check-icon {
  width: 24.52px;
  height: 24.52px;
  flex-shrink: 0;
  margin-top: 8px;
}

.additional-costs {
  padding: 20px;
  border-top: 1px solid #e0e0e0;
}

.additional-costs h4 {
  font-size: 20px;
  line-height: 30px;
  color: #000000;
  margin-bottom: 10px;
}

.additional-costs p {
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: #555555;
}

.buy-btn {
  width: 199.24px;
  height: 55.17px;
  margin: 20px auto;
  display: block;
  border: none;
  border-radius: 0;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 24.2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
}

.silver-btn {
  background-color: #cbcbcf;
  color: #0a1f33;
}

.gold-btn {
  background-color: #c9a44c;
  color: #ffffff;
}

.platinum-btn {
  background-color: #23433c;
  color: #ffffff;
}

.buy-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Intro Section */
.intro {
  padding: 80px 0;
}

.intro-title {
  font-weight: 500;
  font-size: 45px;
  line-height: 65px;
  max-width: 1280px;
  margin: 0 auto 60px;
}

/* Space Types */
.space-type {
  font-weight: 500;
  font-size: 24px;
  color: #000000;
}

.space-img {
  width: 100%;
  height: 304px;
  margin-bottom: 15px;
}

.space-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---------- Responsive ---------- */
/* Tablet */
@media (max-width: 992px) {
  .intro-title {
    font-size: 36px;
    line-height: 52px;
    margin-bottom: 40px;
  }

  .space-type {
    font-size: 20px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .intro {
    padding: 60px 0;
  }

  .intro-title {
    font-size: 24px;
    line-height: 36px;
    margin-bottom: 30px;
    padding: 0 10px;
  }

  .space-img {
    height: 220px;
  }

  .space-type {
    text-align: center;
    font-size: 18px;
  }
}

/* Content Sections */
.office-space,
.office-rental,
.private-offices,
.private-office-benefits,
.meeting-rooms,
.event-space,
.event-benefits,
.membership {
  padding: 80px 0;
}

/* Dark Sections */
.private-offices,
.private-office-benefits,
.meeting-rooms {
  background-color: #0f4c5c;
  color: #ffffff;
}

.private-offices .section-title,
.private-office-benefits .section-title,
.meeting-rooms .section-title,
.private-offices .section-description,
.private-office-benefits .section-description,
.meeting-rooms .section-description {
  color: #ffffff;
}

.section-description {
  font-size: 18px;
  line-height: 30px;
  margin-bottom: 30px;
}

.section-image {
  width: 100%;
  max-width: 565px;
  height: 385px;
  object-fit: cover;
}

/* ---------- Responsive ---------- */
/* Tablet */
@media (max-width: 992px) {
  .section-title {
    font-size: 36px;
    line-height: 52px;
  }

  .section-image {
    max-width: 100%;
    height: 320px;
  }
}

/* Mobile */
@media (max-width: 576px) {

  .office-space,
  .office-rental,
  .private-offices,
  .private-office-benefits,
  .meeting-rooms,
  .event-space,
  .event-benefits,
  .membership {
    padding: 60px 0;
  }

  .section-title {
    font-size: 26px;
    line-height: 38px;
    text-align: center;
  }

  .section-description {
    font-size: 16px;
    line-height: 26px;
    text-align: center;
  }

  .section-image {
    height: 220px;
    margin-bottom: 20px;
  }
}

/* Office Images */
.office-img {
  width: 100%;
  height: 460px;
  object-fit: cover;
}

.office-img-height {
  height: 220px;
}

/* ---------- Responsive ---------- */
@media (max-width: 992px) {
  .office-img {
    height: 360px;
  }

  .office-img-height {
    height: 200px;
  }
}

@media (max-width: 576px) {
  .office-img {
    height: 220px;
  }

  .office-img-height {
    height: 180px;
  }
}

.private-office-img-1 {
  height: 385px;
  object-fit: cover;
}

.private-office-img {
  height: 420px;
  object-fit: cover;
}

.pvt-description {
  font-size: 32px;
  line-height: 50px;
  padding: 80px 0;
}

.line {
  border: 1px solid #ffffff;
  margin: 80px 0;
}

/* Rooms */
.room-image {
  height: 224px;
  object-fit: cover;
  width: 100%;
}

.room-title {
  font-size: 28px;
  line-height: 42px;
}

/* ---------- Mobile ---------- */
@media (max-width: 768px) {
  .pvt-description {
    font-size: 22px;
    line-height: 34px;
    padding: 50px 0;
  }

  .private-office-img,
  .private-office-img-1 {
    height: 240px;
    width: 100%;
  }

  .room-title {
    font-size: 22px;
    line-height: 34px;
  }
}

.section-center-title {
  font-weight: 500;
  font-size: 32px;
  line-height: 50px;
  text-align: center;
  margin-bottom: 60px;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}

.black-line {
  border: 1px solid #000000;
  width: 100%;
}

/* Membership Button */
.membership-btn {
  background-color: #c9a44c;
  color: #1e1e1e;
  font-weight: 500;
  font-size: 24px;
  line-height: 36px;
  padding: 17px 30px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.membership-btn:hover {
  background-color: #b8934a;
}

/* Responsive tweaks */
@media (max-width: 767px) {
  .membership-btn {
    font-size: 18px;
    line-height: 28px;
    padding: 14px 22px;
  }

  .section-center-title {
    font-size: 24px;
    line-height: 36px;
  }
}

/* Intro Section */
.intro-text {
  font-weight: 500;
  font-size: 24px;
  line-height: 45px;
  text-align: center;
  margin: 0 auto;
}

/* Mobile adjustments */
@media (max-width: 767px) {
  .intro {
    padding: 40px 0;
  }

  .intro-text {
    font-size: 18px;
    line-height: 30px;
  }
}

/* Franchise Benefits Section */
.franchise-benefits {
  padding: 80px 0;
}

.section-text {
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
  color: #1e1e1e;
}

/* Mobile adjustments */
@media (max-width: 767px) {
  .franchise-benefits {
    padding: 40px 0;
  }

  .section-text {
    font-size: 16px;
    line-height: 26px;
  }
}

/* Franchise Requirements Section */
.franchise-requirements {
  padding: 80px 0;
}

/* Mobile adjustments */
@media (max-width: 767px) {
  .franchise-requirements {
    padding: 40px 0;
  }
}

/* Testimonials Section */
.testimonials-title {
  font-weight: 500;
  font-size: 45px;
  line-height: 65px;
  margin-bottom: 60px;
  max-width: 666px;
  margin-left: auto;
  margin-right: auto;
}

/* Card Layout */
.testimonial-card {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

/* Image */
.testimonial-photo {
  width: 326px;
  height: 326px;
  object-fit: cover;
}

/* Text */
.testimonial-text {
  font-size: 24px;
  line-height: 40px;
  color: #555555;
  margin-bottom: 20px;
}

.testimonial-name {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 4px;
}

.testimonial-title {
  font-size: 18px;
  color: #000;
}

/* ===== Mobile Adjustments ===== */
@media (max-width: 767px) {
  .testimonials-title {
    font-size: 28px;
    line-height: 38px;
    margin-bottom: 30px;
  }

  .testimonial-card {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .testimonial-photo {
    width: 160px;
    height: 160px;
    margin: 0 auto;
  }

  .testimonial-text {
    font-size: 16px;
    line-height: 26px;
  }

  .testimonial-name {
    font-size: 18px;
  }

  .testimonial-title {
    font-size: 14px;
  }
}

/* Application Form Section */
.application-form {
  padding: 116px 0;
}

.application-bg {
  background-color: #c9a44c;
  padding: 116px 40px 78px;
  text-align: center;
}

/* Title */
.application-title {
  font-weight: 500;
  font-size: 45px;
  line-height: 65px;
  margin-bottom: 20px;
}

/* Text */
.application-text {
  font-size: 24px;
  line-height: 40px;
  max-width: 1392px;
  margin: 0 auto 40px;
}

/* Button */
.apply-btn {
  background-color: #23433c;
  color: #ffffff;
  border: none;
  padding: 18px 40px;
  font-weight: 700;
  font-size: 20px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.apply-btn:hover {
  background-color: #1a332e;
}

/* ===== Mobile Adjustments ===== */
@media (max-width: 767px) {
  .application-form {
    padding: 60px 0;
  }

  .application-bg {
    padding: 50px 20px;
  }

  .application-title {
    font-size: 26px;
    line-height: 36px;
  }

  .application-text {
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 30px;
  }

  .apply-btn {
    width: 100%;
    font-size: 16px;
    padding: 14px 20px;
  }
}

/* Regions Section */
.regions {
  padding: 80px 0;
}

.regions-title {
  font-weight: 500;
  font-size: 45px;
  line-height: 65px;
}

/* Columns */
.region-column {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Items */
.region-item {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 48px;
}

.region-item span {
  font-weight: 500;
  font-size: 20px;
  color: #455a64;
}

/* ===== Mobile Adjustments ===== */
@media (max-width: 767px) {
  .regions {
    padding: 50px 0;
  }

  .regions-title {
    font-size: 26px;
    line-height: 36px;
    margin-bottom: 30px;
  }

  .region-item span {
    font-size: 16px;
  }
}

.section-subtitle {
  font-size: 32px;
  line-height: 42px;
  text-align: center;
  margin-bottom: 60px;
}

.region-card {
  background-color: rgba(255, 255, 255, 0.95);
  padding: 24px;
  border: 1px solid black;
  height: 100%;
}

.region-name {
  font-size: 20px;
  font-weight: 600;
  color: #0f4c5c;
  margin-bottom: 16px;
}

.region-contact {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 16px;
  color: #555;
}

.chapter-info {
  font-size: 18px;
  font-weight: 600;
  color: #0f4c5c;
  margin-bottom: 6px;
}

.website {
  font-size: 15px;
  color: #555;
}

@media (max-width: 767px) {
  .section-subtitle {
    font-size: 22px;
    line-height: 30px;
    margin-bottom: 40px;
  }

  .region-card {
    padding: 20px;
  }
}

/* Map Section */
.map-section {
  padding-top: 80px;
  padding-bottom: 90px;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .map-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

/* Contact Section */
.contact-section {
  padding: 80px 0;
  background-color: #ffffff;
}

.contact-content {
  display: flex;
  gap: 120px;
  align-items: flex-start;
}

.contact-details {
  flex: 1;
  max-width: 600px;
}

.contact-details h2 {
  font-weight: 500;
  font-size: 45px;
  line-height: 60px;
  color: #000000;
  margin-bottom: 40px;
}

.contact-description {
  font-weight: 500;
  line-height: 35px;
  color: #000000;
  margin-bottom: 60px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 17px;
  margin-bottom: 50px;
}

.contact-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

.contact-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.contact-info h3 {
  font-weight: 500;
  font-size: 24px;
  line-height: 30px;
  color: #1e1e1e;
  margin-bottom: 8px;
}

.contact-info p {
  font-weight: 400;
  line-height: 25px;
  color: #555555;
}

/* Contact Form */
.contact-form-section {
  flex: 1;
  max-width: 739px;
}

.contact-form-section h2 {
  font-weight: 500;
  font-size: 45px;
  line-height: 60px;
  color: #000000;
  margin-bottom: 40px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.form-row {
  display: flex;
  gap: 17px;
}

.form-group.full-width {
  width: 100%;
}

.form-group input,
.form-group textarea,
.form-input,
.form-select,
.select-wrapper select {
  width: 100%;
  height: 48px;
  padding: 20px;
  border: 1px solid #808386;
  border-radius: 3px;
  background-color: #ffffff;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 40px;
  color: #808386;
}

@media (min-width: 768px) {

  .form-group input,
  .form-input,
  .form-select,
  .select-wrapper select {
    height: 54px;
    font-size: 16px;
  }

  .upload-content {
    padding: 16px;
  }
}

@media (min-width: 1200px) {

  .form-group input,
  .form-input,
  .form-select,
  .select-wrapper select {
    height: 50px;
    font-size: 17px;
  }
  .upload-content{
    padding: 18px;
  }
}

@media (min-width: 1920px) {

  .form-group input,
  .form-input,
  .form-select,
  .select-wrapper select {
    height: 90px;
    font-size: 18px;
  }
  .upload-content {
    padding: 24px;
  }
}


.form-group textarea {
  height: 144px;
  resize: vertical;
  padding-top: 20px;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #c9a44c;
  color: #1e1e1e;
}

.select-wrapper {
  position: relative;
  width: 100%;
}

.select-wrapper select {
  width: 100%;
  padding: 20px;
  border: 1px solid #808386;
  border-radius: 3px;
  background-color: #ffffff;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 40px;
  color: #808386;
  appearance: none;
  cursor: pointer;
}

.select-wrapper select:focus {
  outline: none;
  border-color: #c9a44c;
  color: #1e1e1e;
}

.select-arrow {
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  pointer-events: none;
}

.submit-btn {
  background-color: #c9a44c;
  color: #000000;
  font-weight: 500;
  font-size: 20px;
  line-height: 30px;
  padding: 16.5px 20px;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
  align-self: flex-start;
  min-width: 133px;
}

.submit-btn:hover {
  background-color: #b8934a;
}

/* Intro Section - Careers */
.intro {
  padding: 60px 0 40px;
}

.intro-title {
  font-weight: 500;
  color: var(--text-medium);
  margin-bottom: 20px;
  line-height: 1.3;
}

.intro-subtitle {
  font-weight: 500;
  color: #1e1e1e;
  margin-bottom: 30px;
  line-height: 1.3;
}

.intro-description {
  font-size: 1.1rem;
  max-width: 900px;
  margin: 0 auto;
}

/* Job Listings */
.job-listings {
  padding: 40px 0;
}

.job-card {
  border: 1px solid #808386 !important;
  border-radius: 10px;
  padding: 25px;
  position: relative;
  background-color: #ffffff;
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.job-card:hover {
  transform: translateY(-5px);
  border-color: #c9a44c;
}

.job-title {
  font-weight: 500;
  color: #0f4c5c;
  margin-bottom: 15px;
  font-size: 1.5rem;
}

.job-details {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  align-items: center;
}

.job-positions,
.job-location {
  font-size: 1.1rem;
}

.job-arrow {
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
}

.job-arrow img {
  width: 28px;
  height: 28px;
}

/* Job Description */
.job-description {
  padding: 40px 0;
}

.job-overview {
  font-size: 1.1rem;
  margin-bottom: 40px;
}

.job-section {
  margin-bottom: 40px;
}

.subsection-title {
  font-weight: 500;
  color: #1e1e1e;
  margin-bottom: 20px;
  font-size: 1.5rem;
}

.job-subtitle {
  font-weight: 500;
  color: #1e1e1e;
  margin-bottom: 15px;
  font-size: 1.3rem;
}

.job-text {
  font-size: 1.1rem;
  margin-bottom: 25px;
}

.requirements-section {
  margin: 40px 0;
}

.requirements-list {
  font-size: 1.1rem;
  padding-left: 20px;
}

.requirements-list li {
  margin-bottom: 8px;
}

.email-link,
.website-link {
  color: #c9a44c;
  text-decoration: none;
}

.email-link:hover,
.website-link:hover {
  text-decoration: underline;
  color: #b8934a;
}

/* Application Form */
.career-application-form {
  padding: 60px 0;
  margin-top: 40px;
}

.form-divider {
  width: 100%;
  height: 1px;
  background-color: #000000;
  margin: 0 auto 50px;
}

.job-form {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.form-section {
  margin-bottom: 40px;
}

.form-section-title {
  font-weight: 500;
  color: #000000;
  margin-bottom: 25px;
  font-size: 1.4rem;
}

.form-input,
.form-select {
  width: 100%;
  padding: 5px;
  /* height: 60px; */
  border: 1px solid #E0E0E0;
  border-radius: 5px;
  font-size: 1rem;
  color: #808386;
  background-color: #ffffff;
}

.form-input:focus,
.form-select:focus {
  outline: none;
  border-color: #c9a44c;
  box-shadow: 0 0 0 0.2rem rgba(201, 164, 76, 0.25);
}

.phone-group {
  display: flex;
  align-items: center;
  border: 1px solid #E0E0E0;
  border-radius: 5px;
  background-color: #ffffff;
  overflow: hidden;
}

.phone-prefix {
  padding: 15px;
  color: #1e1e1e;
  border-right: 1px solid #555555;
  font-size: 1rem;
  background-color: #f8f9fa;
}

.phone-input {
  border: none;
  flex: 1;
  height: 58px;
}

.upload-area {
  border: 2px dashed #E0E0E0;
  border-radius: 10px;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
}

.upload-area:hover {
  border-color: #c9a44c;
  background-color: #f8f8f8;
}

.upload-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding: 14px;
  flex-wrap: wrap;
}

.upload-icon {
  width: 32px;
  height: 32px;
}

.upload-text {
  font-size: 1.1rem;
  color: #1e1e1e;
  margin: 0;
}

.upload-note {
  font-size: 0.9rem;
  color: #555555;
  margin: 0;
}

.career-submit-btn {
  background-color: #c9a44c;
  color: #1e1e1e;
  font-weight: 500;
  font-size: 1.2rem;
  padding: 15px 35px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  width: 100%;
  margin-top: 20px;
}

.career-submit-btn:hover {
  background-color: #b8934a;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .intro {
    padding: 40px 0 30px;
  }

  .intro-title,
  .intro-subtitle {
    font-size: 1.8rem;
  }

  .job-title {
    font-size: 1.3rem;
  }

  .job-arrow {
    position: static;
    transform: none;
    margin-top: 15px;
  }

  .job-arrow img {
    width: 24px;
    height: 24px;
  }

  .job-card {
    padding: 20px;
  }

  .job-form {
    padding: 20px;
  }

  .form-group input,
  .form-group textarea,
  .form-input,
  .form-select,
  .select-wrapper select {
    font-size: 14px;
  }

  .form-select,
  .select-wrapper select {
    padding: 5px;
  }

  .phone-input {
    height: 53px;
  }

  .upload-area {
    padding: 20px;
  }

  .upload-text {
    font-size: 1rem;
  }

  .career-submit-btn {
    font-size: 1.1rem;
    padding: 12px 25px;
  }
}

@media (max-width: 576px) {

  .intro-title,
  .intro-subtitle {
    font-size: 1.5rem;
  }

  .subsection-title {
    font-size: 1.3rem;
  }

  .job-subtitle {
    font-size: 1.2rem;
  }

  .intro-description,
  .job-overview,
  .job-text,
  .requirements-list {
    font-size: 1rem;
  }

  .form-section-title {
    font-size: 1.2rem;
  }

  .upload-content {
    flex-direction: column;
    gap: 10px;
  }
}

/* Custom spacing for mobile */
.mobile-spacing {
  padding-top: 20px;
  padding-bottom: 20px;
}

/* Make sure images are responsive */
img {
  max-width: 100%;
  height: auto;
}

/* Login Section */
.login-section {
  min-height: 100vh;
  background-color: #ffffff;
  padding: 80px 0;
}

.login-container {
  width: 100%;
}

/* Title */
.login-title {
  font-weight: 700;
  font-size: 60px;
  text-transform: uppercase;
  color: #0f4c5c;
}

/* Inputs */
.login-form-input {
  width: 100%;
  height: 90px;
  border: 1px solid #808386;
  background-color: transparent;
  padding: 20px 44px;
  font-size: 20px;
  color: #000;
}

.login-form-input::placeholder {
  color: #8b8b8b;
}

.login-form-input:focus {
  border-color: #c9a44c;
  outline: none;
}

/* Password toggle */
.password-toggle {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  padding: 0;
}

.eye-icon {
  width: 22px;
  height: 22px;
}

/* Links */
.forgot-link,
.signup-text {
  font-size: 20px;
  color: #000;
}

.signup-link,
.forgot-link:hover {
  color: #c9a44c;
  text-decoration: none;
}

/* Button */
.login-btn {
  /* height: 100px; */
  background-color: #c9a44c;
  border: none;
  font-size: 29px;
  font-weight: 500;
  text-transform: uppercase;
  color: #000;
  border-radius: 5px;
}

.login-btn:hover {
  background-color: #b8934a;
}

/* -------------------------
   Mobile Adjustments
-------------------------- */
@media (max-width: 768px) {
  .login-title {
    font-size: 36px;
  }

  .login-form-input {
    height: 60px;
    font-size: 16px;
    padding: 15px 40px;
  }

  .login-btn {
    height: 60px;
    font-size: 20px;
  }

  .forgot-link,
  .signup-text {
    font-size: 16px;
  }
}

/* Booking Form */
.main-content {
  padding: 80px 0;
}

.form-title {
  font-size: 60px;
  text-align: center;
  margin-bottom: 80px;
  color: #0f4c5c;
}

/* Form layout */
.booking-form {
  max-width: 804px;
  margin: auto;
}

.form-label {
  font-size: 20px;
  margin-bottom: 12px;
}

/* Inputs */
.booking-form-input,
.booking-form-select {
  height: 90px;
  padding: 20px;
  font-size: 18px;
}

.booking-form-textarea {
  height: 220px;
  padding: 20px;
}

/* Checkbox */
.checkbox-group {
  display: flex;
  gap: 15px;
  margin-bottom: 40px;
}

.checkbox-label {
  font-size: 18px;
}

/* Button */
.submit-button {
  font-size: 36px;
  padding: 20px 50px;
  min-width: 280px;
}

/* ------------------------
   Mobile Responsive Rules
------------------------- */
@media (max-width: 768px) {
  .main-content {
    padding: 50px 0;
  }

  .form-title {
    font-size: 32px;
    margin-bottom: 40px;
    line-height: 1.2;
  }

  .form-label {
    font-size: 16px;
  }

  .booking-form-input,
  .booking-form-select {
    height: 55px;
    font-size: 15px;
    padding: 12px;
  }

  .booking-form-textarea {
    height: 140px;
    font-size: 15px;
  }

  .checkbox-label {
    font-size: 14px;
  }

  .submit-button {
    font-size: 18px;
    padding: 14px 30px;
    width: 100%;
  }
}

/* Dashboard Layout */
.dashboard-content {
  background-color: #ffffff;
}

/* Sidebar */
.sidebar {
  background-color: #f4f4f4;
  padding: 75px 37px;
}

.sidebar-nav {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.sidebar-link {
  font-size: 24px;
  color: #424242;
  text-decoration: none;
}

.sidebar-link.active,
.sidebar-link:hover,
.logout-btn:hover {
  color: #0f4c5c;
}

/* Profile Form */
.profile-form {
  padding: 120px 60px;
}

.profile-form-group label {
  font-size: 18px;
  color: #555555;
}

.profile-form-group input {
  width: 100%;
  height: 90px;
  padding: 0 40px;
  border: 1px solid #808386;
  font-size: 18px;
  background: transparent;
}

.profile-form-group input:focus {
  border-color: #c9a44c;
  outline: none;
}

.change-password-link {
  display: inline-block;
  margin-bottom: 50px;
  font-size: 20px;
  color: #0f4c5c;
}

.change-password-link:hover {
  color: #c9a44c;
}

.dashboard-submit-btn {
  width: 100%;
  height: 100px;
  background-color: #c9a44c;
  border: none;
  font-size: 36px;
  text-transform: uppercase;
  cursor: pointer;
}

.dashboard-submit-btn:hover {
  background-color: #b8934a;
}

/* ------------------------
   Mobile Responsive Rules
------------------------- */
@media (max-width: 991px) {
  .sidebar {
    padding: 30px 20px;
    text-align: center;
  }

  .sidebar-nav {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }

  .sidebar-link {
    font-size: 16px;
  }

  .profile-form {
    padding: 40px 20px;
  }

  .profile-form-group input {
    height: 55px;
    font-size: 15px;
    padding: 0 20px;
  }

  .change-password-link {
    font-size: 16px;
    margin-bottom: 30px;
  }

  .dashboard-submit-btn {
    height: 55px;
    font-size: 18px;
  }
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.sidebar-link.active {
  font-weight: 600;
  color: #000;
}

/* Subscription Card */
.subscription-card {
  background-color: #fbf8f3;
  border: 2px solid #c9a44c;
}

/* Header */
.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 43px 89px;
}

.plan-title {
  font-weight: 800;
  font-size: 35px;
  text-transform: uppercase;
  color: #0f4c5c;
}

/* Date */
.date-info {
  display: flex;
  align-items: center;
  gap: 40px;
  font-size: 16px;
  color: #555555;
}

.dropdown-btn {
  background: none;
  border: none;
}

/* Divider */
.suscription-divider {
  height: 1px;
  background-color: #1e1e1e;
  margin-bottom: 50px;
}

/* Content */
.plan-details {
  padding: 43px 89px;
}

.plan-name,
.validity,
.fee {
  font-size: 16px;
  color: #555555;
}

.fee {
  margin-bottom: 80px;
}

/* Button */
.renew-btn {
  background-color: #c9a44c;
  border: none;
  padding: 18px 36px;
  font-size: 18px;
  text-transform: uppercase;
  cursor: pointer;
}

.renew-btn:hover {
  background-color: #b8934a;
}

/* ------------------------
   Mobile Responsive Rules
------------------------- */
@media (max-width: 768px) {
  .card-header {
    padding: 25px 20px;
    text-align: center;
  }

  .plan-title {
    font-size: 22px;
  }

  .date-info {
    gap: 15px;
    font-size: 14px;
    justify-content: center;
  }

  .plan-details {
    padding: 25px 20px;
  }

  .fee {
    margin-bottom: 40px;
  }

  .renew-btn {
    width: 100%;
    font-size: 16px;
    padding: 14px;
  }
}


