/* ===== VARIABLES ===== */
:root {
  --primary: #5b0161;
  --primary-light: #7a1f80;
  --primary-dark: #3f0043;
  --secondary: #14051d;
  --accent: #eed279;
  --accent-light: #f7e3a8;
  --white: #ffffff;
  --light-gray: #f8f9fa;
  --gray: #6c757d;
  --dark-gray: #343a40;
  --border-color: rgba(91, 1, 97, 0.1);
  --shadow-sm: 0 5px 15px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 30px rgba(91, 1, 97, 0.1);
  --shadow-lg: 0 20px 40px rgba(20, 5, 29, 0.15);
  --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* ===== RESET & BASE ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  color: var(--secondary);
  line-height: 1.6;
  overflow-x: hidden;
  background: linear-gradient(135deg, #fff 0%, #faf5ff 100%);
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* ===== TYPOGRAPHY ===== */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--secondary);
}

h1 {
  font-size: clamp(2rem, 8vw, 3.5rem);
}
h2 {
  font-size: clamp(1.75rem, 6vw, 2.5rem);
}
h3 {
  font-size: clamp(1.5rem, 5vw, 2rem);
}
p {
  margin-bottom: 1rem;
  color: var(--gray);
  line-height: 1.8;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 0.875rem 2rem;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
  cursor: pointer;
  border: 2px solid transparent;
  border-radius: 50px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  z-index: 1;
  letter-spacing: 0.5px;
}

.btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition:
    width 0.6s,
    height 0.6s;
  z-index: -1;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--white);
  box-shadow: 0 10px 20px rgba(91, 1, 97, 0.3);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(91, 1, 97, 0.4);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
}

/* ===== NAVBAR ===== */
.nav-bar {
  position: relative;
  margin-top: 30px;
  padding: 0 1rem;
  transition: var(--transition);
  z-index: 9999;
}

@media (min-width: 992px) {
  .nav-bar {
    padding: 0 3rem;
  }
}

.nav-bar.sticky-top {
  position: sticky;
  top: 0;
  padding: 0;
  margin-top: 0;
  animation: slideDown 0.5s ease;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}

.navbar {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--accent);
}

@media (max-width: 991.98px) {
  .navbar {
  }
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 1.5rem;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-icon {
  width: 40px;
  height: 40px;
  padding: 0.5rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  border: 2px solid var(--accent);
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.brand-icon:hover {
  transform: rotate(360deg);
}

.brand-icon img {
  width: 100%;
  height: auto;
  filter: brightness(0) invert(1);
}

.navbar-brand h1 {
  color: var(--primary);
  margin: 0;
  font-size: 1.75rem;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.navbar-toggler {
  display: none;
  background: transparent;
  border: 2px solid var(--primary);
  border-radius: 50px;
  padding: 0.5rem 1rem;
  cursor: pointer;
  transition: var(--transition);
}

.navbar-toggler:hover {
  background: var(--primary);
}

.navbar-toggler:hover .navbar-toggler-icon {
  filter: brightness(0) invert(1);
}

.navbar-toggler-icon {
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%235b0161' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  transition: var(--transition);
}

.navbar-collapse {
  display: flex;
  align-items: center;
  flex-grow: 1;
}

.navbar-nav {
  display: flex;
  list-style: none;
  margin-left: auto;
  gap: 2rem;
}

.nav-link {
  color: var(--secondary);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.875rem;
  padding: 0.5rem 0;
  position: relative;
  letter-spacing: 0.5px;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary);
}

.dropdown {
  position: relative;
}

.dropdown-toggle::after {
  content: "▼";
  font-size: 0.7rem;
  margin-left: 0.25rem;
  display: inline-block;
  transition: transform 0.3s;
}

.dropdown-toggle[aria-expanded="true"]::after {
  transform: rotate(-180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  box-shadow: var(--shadow-lg);
  list-style: none;
  padding: 0.75rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  border: 1px solid var(--accent);
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  display: block;
  padding: 0.75rem 1.5rem;
  color: var(--secondary);
  transition: var(--transition);
  font-weight: 500;
  position: relative;
  overflow: hidden;
}

.dropdown-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--primary), transparent);
  opacity: 0.1;
  transition: width 0.3s ease;
}

.dropdown-item:hover::before {
  width: 100%;
}

.dropdown-item:hover {
  color: var(--primary);
  padding-left: 2rem;
}

.sell-btn {
  margin-left: 1.5rem;
  padding: 0.75rem 2rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  border: 2px solid var(--accent);
  color: var(--white);
  font-weight: 600;
}

.sell-btn:hover {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(91, 1, 97, 0.3);
}

@media (max-width: 991.98px) {
  .navbar-toggler {
    display: block;
  }

  .navbar-collapse {
    display: block;
    position: absolute;
    top: 100%;
    left: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 30px;
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--accent);
    margin-top: 1rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition:
      opacity 0.4s ease,
      transform 0.4s ease,
      visibility 0.4s;
    pointer-events: none;
  }

  .navbar-collapse.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: all;
  }

  .navbar-nav {
    flex-direction: column;
    margin: 0;
    gap: 0.8rem;
  }

  .nav-link {
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
  }

  .nav-link:last-child {
    border-bottom: none;
  }

  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    background: transparent;
    padding-left: 1rem;
    margin-top: 0.5rem;
    padding-top: 0;
  }

  .dropdown-item {
    padding: 0.75rem 1rem;
    background: rgba(91, 1, 97, 0.05);
    border-radius: 10px;
    margin-bottom: 0.5rem;
  }

  .dropdown-item:last-child {
    margin-bottom: 0;
  }

  .sell-btn {
    margin: 1rem 0 0;
    display: block;
    text-align: center;
  }
}

/* ===== PAGE HEADER ===== */
.page-header {
  position: relative;
  margin-top: -100px;
  padding-top: 180px;
  padding-bottom: 100px;
  overflow: hidden;
  background: linear-gradient(
    135deg,
    rgba(91, 1, 97, 0.85) 0%,
    rgba(20, 5, 29, 0.9) 100%
  );
}

@media (max-width: 991.98px) {
  .page-header {
    padding-top: 150px;
    padding-bottom: 80px;
  }
}

@media (max-width: 767.98px) {
  .page-header {
    padding-top: 130px;
    padding-bottom: 60px;
  }
}

.page-header-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.page-header-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.3;
  mix-blend-mode: overlay;
}

.page-header::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
  opacity: 0.1;
  animation: rotate 30s linear infinite;
  z-index: 1;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.page-header-content {
  text-align: center;
  position: relative;
  z-index: 2;
  color: var(--white);
}

.page-header h1 {
  font-size: clamp(2.5rem, 8vw, 4rem);
  margin-bottom: 1rem;
  font-family: "Agbalumo", cursive;
  color: var(--white);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-header .breadcrumb {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  font-size: 1.1rem;
  flex-wrap: wrap;
}

.page-header .breadcrumb a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
}

.page-header .breadcrumb a:hover {
  text-decoration: underline;
}

.page-header .breadcrumb span {
  color: rgba(255, 255, 255, 0.7);
}

/* ===== ABOUT HERO SECTION ===== */
.about-hero {
  padding: 60px 0;
}

@media (min-width: 768px) {
  .about-hero {
    padding: 80px 0;
  }
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

@media (min-width: 992px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
    gap: 60px;
  }
}

.about-image {
  position: relative;
}

.about-image .main-img {
  width: 100%;
  border-radius: 30px;
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 2;
}

.about-image .shape-1 {
  position: absolute;
  top: -30px;
  left: -30px;
  width: 85%;
  aspect-ratio: 1 / 1;
  background-color: var(--primary);
  z-index: 1;
  clip-path: polygon(0 0, 80% 0, 100% 100%, 0% 100%);
  max-width: calc(100% + 60px);
}

@media (max-width: 768px) {
  .about-image .shape-1 {
    top: -20px;
    left: -20px;
  }
}

.about-image .shape-2 {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 120px;
  height: 120px;
  background: var(--primary);
  border-radius: 50%;
  z-index: 1;
  opacity: 0.2;
}

@media (max-width: 768px) {
  .about-image .shape-2 {
    width: 80px;
    height: 80px;
    bottom: -20px;
    right: -20px;
  }
}

.about-image .experience-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: var(--white);
  padding: 20px;
  border-radius: 50%;
  width: 100px;
  height: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--accent);
  box-shadow: var(--shadow-lg);
  z-index: 3;
}

@media (min-width: 768px) {
  .about-image .experience-badge {
    width: 120px;
    height: 120px;
    padding: 25px;
    bottom: 30px;
    right: 30px;
  }
}

.about-image .experience-badge .years {
  font-size: clamp(1.5rem, 5vw, 2rem);
  font-weight: 800;
  line-height: 1;
}

.about-image .experience-badge .text {
  font-size: 0.7rem;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
}

@media (min-width: 768px) {
  .about-image .experience-badge .text {
    font-size: 0.8rem;
  }
}

.about-content .subtitle {
  color: var(--primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
  display: block;
  font-size: 0.9rem;
}

.about-content h2 {
  font-size: clamp(1.8rem, 6vw, 2.8rem);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.about-content .highlight {
  color: var(--primary);
  position: relative;
  display: inline-block;
}

.about-content .highlight::after {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 8px;
  background: var(--accent);
  opacity: 0.3;
  z-index: -1;
}

.about-content .lead-text {
  font-size: 1.1rem;
  color: var(--dark-gray);
  font-weight: 500;
  margin-bottom: 2rem;
  border-left: 4px solid var(--accent);
  padding-left: 1.5rem;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 40px 0;
}

@media (max-width: 768px) {
  .about-stats {
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .about-stats {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: clamp(1.8rem, 6vw, 2.5rem);
  font-weight: 800;
  color: var(--primary);
  font-family: "Playfair Display", serif;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  color: var(--gray);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

@media (min-width: 768px) {
  .stat-label {
    font-size: 0.9rem;
  }
}

/* ===== MISSION & VISION ===== */
.mission-vision {
  padding: 60px 0;
  background: linear-gradient(145deg, #ffffff 0%, #faf3ff 100%);
}

@media (min-width: 768px) {
  .mission-vision {
    padding: 80px 0;
  }
}

.mission-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

@media (min-width: 768px) {
  .mission-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

.mission-card {
  background: var(--white);
  padding: 30px;
  border-radius: 30px;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .mission-card {
    padding: 40px;
  }
}

.mission-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}

.mission-card .icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  border: 2px solid var(--accent);
}

@media (min-width: 768px) {
  .mission-card .icon {
    width: 70px;
    height: 70px;
  }
}

.mission-card .icon img {
  width: 30px;
  height: 30px;
  filter: brightness(0) invert(1);
}

@media (min-width: 768px) {
  .mission-card .icon img {
    width: 35px;
    height: 35px;
  }
}

.mission-card h3 {
  font-size: clamp(1.5rem, 5vw, 1.8rem);
  margin-bottom: 1rem;
}

.mission-card p {
  font-size: 0.95rem;
  line-height: 1.8;
}

/* ===== WHY CHOOSE US ===== */
.why-choose {
  padding: 60px 0;
}

@media (min-width: 768px) {
  .why-choose {
    padding: 80px 0;
  }
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
}

@media (min-width: 768px) {
  .section-header {
    margin: 0 auto 4rem;
  }
}

.section-header h2 {
  margin-bottom: 1rem;
  font-size: clamp(1.8rem, 6vw, 2.5rem);
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 3px;
}

@media (min-width: 768px) {
  .section-header h2::after {
    width: 80px;
  }
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 640px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .features-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
  }
}

.feature-card {
  text-align: center;
  padding: 25px 20px;
  background: var(--white);
  border-radius: 30px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid transparent;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}

.feature-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background: linear-gradient(
    135deg,
    rgba(91, 1, 97, 0.1) 0%,
    rgba(238, 210, 121, 0.1) 100%
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.feature-card:hover .feature-icon {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
}

.feature-icon img {
  width: 35px;
  height: 35px;
  transition: var(--transition);
}

.feature-card:hover .feature-icon img {
  filter: brightness(0) invert(1);
}

.feature-card h4 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.feature-card p {
  font-size: 0.85rem;
  line-height: 1.6;
}

/* ===== TEAM SECTION ===== */
.team-premium {
  padding: 60px 0;
  background: linear-gradient(145deg, #ffffff 0%, #faf3ff 100%);
}

@media (min-width: 768px) {
  .team-premium {
    padding: 80px 0;
  }
}

.team-grid-premium {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
}

@media (min-width: 640px) {
  .team-grid-premium {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .team-grid-premium {
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
  }
}

.team-card-premium {
  background: var(--white);
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  position: relative;
}

.team-card-premium:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.team-image-premium {
  position: relative;
  height: 280px;
  overflow: hidden;
}

@media (min-width: 768px) {
  .team-image-premium {
    height: 300px;
  }
}

.team-image-premium img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.team-card-premium:hover .team-image-premium img {
  transform: scale(1.1);
}

.team-social-premium {
  position: absolute;
  bottom: -50px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 12px;
  padding: 20px;
  background: linear-gradient(to top, rgba(20, 5, 29, 0.9), transparent);
  transition: bottom 0.4s ease;
}

.team-card-premium:hover .team-social-premium {
  bottom: 0;
}

.team-social-premium .social-link {
  width: 36px;
  height: 36px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  transition: var(--transition);
  border: 2px solid var(--accent);
}

@media (min-width: 768px) {
  .team-social-premium .social-link {
    width: 40px;
    height: 40px;
  }
}

.team-info-premium {
  padding: 20px;
  text-align: center;
}

@media (min-width: 768px) {
  .team-info-premium {
    padding: 25px;
  }
}

.team-info-premium h4 {
  font-size: 1.2rem;
  margin-bottom: 0.25rem;
}

.team-info-premium .position {
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 0.85rem;
}

.team-info-premium .bio {
  color: var(--gray);
  font-size: 0.85rem;
  line-height: 1.5;
}

/* ===== TESTIMONIALS ===== */
.testimonials-about {
  padding: 60px 0;
}

@media (min-width: 768px) {
  .testimonials-about {
    padding: 80px 0;
  }
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

.testimonial-card-about {
  background: var(--white);
  border-radius: 30px;
  padding: 30px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  position: relative;
  transition: var(--transition);
}

@media (min-width: 768px) {
  .testimonial-card-about {
    padding: 40px;
  }
}

.testimonial-card-about:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}

.testimonial-card-about .quote {
  font-size: 3rem;
  color: var(--accent);
  opacity: 0.2;
  position: absolute;
  top: 15px;
  right: 20px;
  font-family: serif;
}

@media (min-width: 768px) {
  .testimonial-card-about .quote {
    font-size: 4rem;
    top: 20px;
    right: 30px;
  }
}

.testimonial-card-about p {
  font-size: 1rem;
  font-style: italic;
  margin-bottom: 25px;
  position: relative;
  z-index: 2;
}

.testimonial-author-about {
  display: flex;
  align-items: center;
  gap: 15px;
}

.testimonial-author-about img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--accent);
}

@media (min-width: 768px) {
  .testimonial-author-about img {
    width: 60px;
    height: 60px;
  }
}

.testimonial-author-about h5 {
  margin-bottom: 0.25rem;
  font-size: 1rem;
}

.testimonial-author-about span {
  color: var(--gray);
  font-size: 0.8rem;
}

/* ===== CTA SECTION ===== */
.cta-about {
  padding: 60px 0;
}

.cta-about-wrapper {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  border-radius: 40px;
  padding: 40px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .cta-about-wrapper {
    border-radius: 60px;
    padding: 60px;
  }
}

.cta-about-wrapper::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
  opacity: 0.1;
  animation: rotate 20s linear infinite;
}

.cta-about-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}

.cta-about-content h2 {
  color: var(--white);
  font-size: clamp(1.8rem, 6vw, 2.5rem);
  margin-bottom: 1rem;
}

.cta-about-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  margin-bottom: 2rem;
}

.cta-about-content .btn-white {
  background: var(--white);
  color: var(--primary);
  border: 2px solid var(--accent);
}

.cta-about-content .btn-white:hover {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

/* ===== FOOTER ===== */
.footer {
  background: linear-gradient(
    135deg,
    var(--secondary) 0%,
    var(--primary-dark) 100%
  );
  color: rgba(255, 255, 255, 0.8);
  padding-top: 3rem;
  margin-top: 2rem;
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .footer {
    padding-top: 5rem;
    margin-top: 3rem;
  }
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--accent),
    var(--primary),
    var(--accent)
  );
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding-bottom: 3rem;
  position: relative;
  z-index: 2;
}

@media (min-width: 640px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    padding-bottom: 4rem;
  }
}

.footer-col h5 {
  color: var(--accent);
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
  position: relative;
  display: inline-block;
}

.footer-col h5::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--accent);
}

.footer-col p {
  margin-bottom: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
}

.social-links {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.social-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  border: 2px solid var(--accent);
  border-radius: 50%;
  transition: var(--transition);
  background: rgba(255, 255, 255, 0.1);
}

@media (min-width: 768px) {
  .social-icon {
    width: 40px;
    height: 40px;
  }
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
  display: inline-block;
  font-size: 0.9rem;
  position: relative;
  padding-left: 1.2rem;
}

.footer-links a::before {
  content: "→";
  position: absolute;
  left: 0;
  opacity: 0;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--accent);
  transform: translateX(5px);
}

.footer-links a:hover::before {
  opacity: 1;
  left: -5px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.gallery-grid img {
  width: 100%;
  height: auto;
  border-radius: 15px;
  transition: var(--transition);
  border: 2px solid transparent;
  cursor: pointer;
}

.gallery-grid img:hover {
  transform: scale(1.05);
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
}

.newsletter-form {
  position: relative;
  margin-top: 1rem;
}

.newsletter-form .form-control {
  width: 100%;
  padding: 0.875rem 1.5rem;
  font-size: 0.9rem;
  border: 2px solid var(--accent);
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  padding-right: 90px;
}

.newsletter-form .form-control::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.newsletter-form .btn {
  position: absolute;
  top: 0.25rem;
  right: 0.25rem;
  padding: 0.6rem 1.2rem;
  border-radius: 50px;
  font-size: 0.85rem;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.5rem 0;
  border-top: 2px solid rgba(238, 210, 121, 0.2);
  gap: 1rem;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.copyright {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
}

.copyright a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-menu {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-menu a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  position: relative;
  padding-right: 1rem;
  border-right: 2px solid rgba(238, 210, 121, 0.3);
  line-height: 1;
}

.footer-menu a:last-child {
  padding-right: 0;
  border-right: none;
}

.footer-menu a:hover {
  color: var(--accent);
}

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: var(--white);
  display: none;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1.2rem;
  z-index: 99;
  transition: var(--transition);
  border: 3px solid var(--accent);
  box-shadow: var(--shadow-lg);
  cursor: pointer;
}

@media (min-width: 768px) {
  .back-to-top {
    right: 45px;
    bottom: 45px;
    width: 55px;
    height: 55px;
    font-size: 1.5rem;
  }
}

.back-to-top:hover {
  transform: translateY(-5px) scale(1.1);
  background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
  border-color: var(--white);
}
