/* ============================================
   COMMUNITY MANAGER DEMO - STYLES
   Diseño: Editorial Corporativa Moderna
   Paleta: primario #1B2A4A | Dorado #C8973E | Azul #2C5AA0
   Tipografía: Playfair Display + DM Sans
   ============================================ */

/* ---------- RESET & BASE ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --primario: #1B2A4A;
  --primario-dark: #111D35;
  --secundario: #2C5AA0;
  --secundario-light: #3B6BA5;
  --acento: #C8973E;
  --acento-light: #D4A843;
  --white: #FFFFFF;
  --off-white: #F4F5F7;
  --gray-100: #F8F9FA;
  --gray-200: #E9ECEF;
  --gray-300: #DEE2E6;
  --gray-500: #6C757D;
  --gray-700: #495057;
  --text-dark: #1A1A2E;
  --text-body: #4A4A5A;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --transition: 0.3s ease;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-body);
  color: var(--text-body);
  line-height: 1.7;
  overflow-x: hidden;
  background-color: var(--white);
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  color: var(--primario);
  line-height: 1.2;
}

.text-acento{
  color: var(--acento);
}

.text-secundario {
  color: var(--secundario);
}

/* ---------- NAVBAR ---------- */
.navbar {
  background: var(--white);
  padding: 0.8rem 0;
  box-shadow: 0 2px 20px rgba(27, 42, 74, 0.06);
  transition: var(--transition);
  z-index: 1050;
}

.navbar.scrolled {
  padding: 0.5rem 0;
  box-shadow: 0 4px 30px rgba(27, 42, 74, 0.1);
}

.navbar-brand {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primario) !important;
  letter-spacing: -0.02em;
}

.nav-link {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--gray-700) !important;
  padding: 0.5rem 0.8rem !important;
  transition: var(--transition);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--acento);
  transition: var(--transition);
}

.nav-link:hover {
  color: var(--primario) !important;
}

.nav-link:hover::after {
  width: 60%;
}

.btn-cta-nav {
  background: var(--primario);
  color: var(--white) !important;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  border: none;
  transition: var(--transition);
}

.btn-cta-nav:hover {
  background: var(--secundario);
  color: var(--white) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(44, 90, 160, 0.3);
}

.btn-icon-nav {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--primario);
  color: var(--white) !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  border: none;
  transition: var(--transition);
}

.btn-icon-nav:hover {
  background: var(--secundario);
  color: var(--white) !important;
}

#svg-navbar {
  display: block;
  width: 70px;
  height: 70px;
  padding-right: 1rem;
}

/* ---------- HERO ---------- */
.hero-section {
  padding-top: 120px;
  padding-bottom: 80px;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.min-vh-hero {
  min-height: 70vh;
}

.hero-img-col {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-img-wrapper {
  position: relative;
  width: 100%;
  max-width: 380px;
}

.hero-blob {
  position: absolute;
  top: -30px;
  left: -30px;
  width: 110%;
  height: 110%;
  background: linear-gradient(135deg, var(--secundario) 0%, var(--primario) 100%);
  border-radius: 60% 40% 50% 50% / 50% 60% 40% 50%;
  z-index: 0;
  animation: blobMorph 8s ease-in-out infinite;
}

@keyframes blobMorph {
  0%, 100% { border-radius: 60% 40% 50% 50% / 50% 60% 40% 50%; }
  25% { border-radius: 50% 60% 40% 60% / 60% 40% 60% 40%; }
  50% { border-radius: 40% 50% 60% 40% / 40% 50% 50% 60%; }
  75% { border-radius: 55% 45% 55% 45% / 45% 55% 45% 55%; }
}

.hero-img-placeholder {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 3/4;
  background: var(--gray-200);
  border-radius: 30% 70% 40% 60% / 60% 30% 70% 40%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-img-placeholder i {
  font-size: 4rem;
  color: var(--gray-500);
}

.hero-content {
  padding-left: 2rem;
}

.hero-content h1 {
  font-size: 3.2rem;
  font-weight: 800;
  margin-bottom: 1.2rem;
  color: var(--primario);
}

.hero-subtitle {
  font-size: 1.05rem;
  color: var(--text-body);
  margin-bottom: 2rem;
  max-width: 480px;
}

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

.btn-1 {
  background: var(--primario);
  color: var(--white) !important;
  font-weight: 600;
  padding: 0.7rem 2rem;
  border-radius: 8px;
  border: 2px solid var(--primario);
  transition: var(--transition);
}

.btn-1:hover:hover {
  background: transparent;
  color: var(--primario) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(27, 42, 74, 0.15);
}

.btn-2-outline {
  background: var(--secundario);
  color: var(--white) !important;
  font-weight: 600;
  padding: 0.7rem 2rem;
  border-radius: 8px;
  border: 2px solid var(--secundario);
  transition: var(--transition);
}

.btn-2-outline:hover {
  background: transparent;
  color: var(--secundario) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(44, 90, 160, 0.15);
}

/* ---------- ABOUT ---------- */
.about-section {
  padding: 100px 0;
  background: var(--white);
}

.section-title-left {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.about-text {
  font-size: 1rem;
  color: var(--text-body);
  margin-bottom: 1rem;
  max-width: 520px;
}

.about-subtext {
  font-size: 0.95rem;
  font-style: italic;
  color: var(--gray-500);
  margin-bottom: 1.5rem;
}

.skills-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.skill-tag {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: var(--off-white);
  color: var(--primario);
  font-size: 0.82rem;
  font-weight: 600;
  border-radius: 50px;
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}

.skill-tag:hover {
  background: var(--primario);
  color: var(--white);
  border-color: var(--primario);
}

.logo-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.3em;
}

/* ---------- SERVICES ---------- */
.services-section {
  padding: 100px 0;
  background: var(--off-white);
}

.section-title {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--text-body);
  max-width: 550px;
  margin: 0 auto;
}

.service-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  transition: var(--transition);
  box-shadow: 0 2px 12px rgba(27, 42, 74, 0.04);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(27, 42, 74, 0.1);
}

.service-card-large .service-img-placeholder {
  height: 240px;
}

.service-img-placeholder {
  width: 100%;
  height: 180px;
  background: var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-img-placeholder i {
  font-size: 2.5rem;
  color: var(--gray-500);
}

/* ---------- PROCESS ---------- */
.process-section {
  padding: 100px 0;
  background: var(--white);
}

.process-timeline {
  position: relative;
  padding-top: 2rem;
}

.process-line {
  display: none;
}

@media (min-width: 768px) {
  .process-line {
    display: block;
    position: absolute;
    top: 4.5rem;
    left: 12.5%;
    width: 75%;
    height: 3px;
    background: var(--gray-200);
    z-index: 0;
  }

  .process-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, var(--secundario), var(--acento));
    transition: width 1.5s ease;
  }

  .process-line.animated::after {
    width: 100%;
  }
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 0 0.5rem;
}

.process-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--primario);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 1rem;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(27, 42, 74, 0.2);
}

.process-step:hover .process-icon {
  background: var(--secundario);
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(44, 90, 160, 0.3);
}

.process-step h5 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  color: var(--primario);
  margin-bottom: 0.5rem;
}

.process-step p {
  font-size: 0.85rem;
  color: var(--text-body);
}

/* ---------- PORTFOLIO ---------- */
.portfolio-section {
  padding: 100px 0;
  background: var(--white);
}

.portfolio-item {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.portfolio-item.visible {
  opacity: 1;
  transform: translateY(0);
}

.portfolio-img-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--gray-200);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.portfolio-img-placeholder i {
  font-size: 3rem;
  color: var(--gray-500);
}

.portfolio-info {
  padding: 1.5rem 0;
}

.portfolio-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--acento);
  margin-bottom: 0.5rem;
}

.portfolio-info p {
  color: var(--text-body);
  margin-bottom: 1.2rem;
}

.btn-blue-sm {
  background: var(--secundario);
  color: var(--white) !important;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.5rem 1.5rem;
  border-radius: 8px;
  border: none;
  transition: var(--transition);
}

.btn-blue-sm:hover {
  background: var(--primario);
  color: var(--white) !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(27, 42, 74, 0.2);
}

.more-link {
  color: var(--acento);
  font-weight: 600;
  text-decoration: none;
  font-size: 1rem;
  transition: var(--transition);
}

.more-link:hover {
  color: var(--acento-light);
  letter-spacing: 0.5px;
}

.more-link i {
  transition: var(--transition);
}

.more-link:hover i {
  transform: translateX(4px);
  display: inline-block;
}

.mini-portfolio-item {
  text-align: center;
}

.mini-portfolio-img {
  width: 100%;
  aspect-ratio: 1;
  background: var(--gray-200);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.8rem;
  transition: var(--transition);
}

.mini-portfolio-img:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(27, 42, 74, 0.1);
}

.mini-portfolio-img i {
  font-size: 2rem;
  color: var(--gray-500);
}

.mini-portfolio-title {
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--primario);
  font-size: 0.95rem;
}

/* ---------- PRICING ---------- */
.pricing-section {
  padding: 100px 0;
  background: var(--off-white);
}

.pricing-card {
  background: var(--white);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: 0 2px 15px rgba(27, 42, 74, 0.05);
  transition: var(--transition);
  position: relative;
  border: 2px solid transparent;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 50px rgba(27, 42, 74, 0.12);
}

.pricing-featured {
  border-color: var(--acento);
  transform: scale(1.03);
  box-shadow: 0 10px 40px rgba(200, 151, 62, 0.15);
}

.pricing-featured:hover {
  transform: scale(1.03) translateY(-6px);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--acento);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.3rem 1.5rem;
  border-radius: 50px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.pricing-header {
  margin-bottom: 2rem;
}

.pricing-label {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--secundario);
  margin-bottom: 0.8rem;
}

.pricing-price {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--primario);
  line-height: 1;
}

.pricing-price span {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  color: var(--gray-500);
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  text-align: left;
  flex-grow: 1;
}

.pricing-features li {
  padding: 0.6rem 0;
  font-size: 0.92rem;
  color: var(--text-body);
  border-bottom: 1px solid var(--gray-100);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.pricing-features li i {
  font-size: 1rem;
  color: var(--secundario);
  flex-shrink: 0;
}

.pricing-features li.disabled {
  color: var(--gray-300);
}

.pricing-features li.disabled i {
  color: var(--gray-300);
}

.btn-pricing {
  background: var(--primario);
  color: var(--white) !important;
  font-weight: 600;
  padding: 0.75rem 2rem;
  border-radius: 10px;
  border: 2px solid var(--primario);
  transition: var(--transition);
  width: 100%;
}

.btn-pricing:hover {
  background: transparent;
  color: var(--primario) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(27, 42, 74, 0.15);
}

.btn-pricing-featured {
  background: var(--acento);
  color: var(--white) !important;
  font-weight: 600;
  padding: 0.75rem 2rem;
  border-radius: 10px;
  border: 2px solid var(--acento);
  transition: var(--transition);
  width: 100%;
}

.btn-pricing-featured:hover {
  background: transparent;
  color: var(--acento) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(200, 151, 62, 0.25);
}

/* ---------- TESTIMONIALS ---------- */
.testimonials-section {
  padding: 100px 0;
  background: var(--primario);
  position: relative;
  overflow: hidden;
}

.testimonials-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: rgba(44, 90, 160, 0.15);
  border-radius: 50%;
}

.testimonials-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: rgba(200, 151, 62, 0.08);
  border-radius: 50%;
}

.testimonials-label {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--acento);
  margin-bottom: 0.5rem;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 2rem;
  height: 100%;
  transition: var(--transition);
}

.testimonial-card:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-4px);
}

.stars {
  margin-bottom: 1rem;
}

.stars i {
  color: var(--acento);
  font-size: 0.9rem;
  margin-right: 2px;
}

.testimonial-card p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  font-style: italic;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.author-avatar i {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.6);
}

.testimonial-author strong {
  display: block;
  color: var(--white);
  font-size: 0.9rem;
}

.testimonial-author span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8rem;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  border: none;
  padding: 0;
  transition: var(--transition);
  cursor: pointer;
}

.dot.active {
  background: var(--acento);
  width: 28px;
  border-radius: 5px;
}

/* ---------- CTA ---------- */
.cta-section {
  padding: 80px 0;
  background: var(--white);
}

.cta-card {
  background: linear-gradient(135deg, var(--secundario) 0%, var(--primario) 100%);
  border-radius: 24px;
  padding: 4rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: rgba(200, 151, 62, 0.1);
  border-radius: 50%;
}

.cta-card h2 {
  color: var(--white);
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.cta-card p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.05rem;
  max-width: 500px;
  margin: 0 auto 2rem;
  position: relative;
  z-index: 1;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.btn-cta-green {
  background: #4CAF50;
  color: var(--white) !important;
  font-weight: 600;
  padding: 0.8rem 2.5rem;
  border-radius: 10px;
  border: none;
  transition: var(--transition);
}

.btn-cta-green:hover {
  background: #43A047;
  color: var(--white) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(76, 175, 80, 0.3);
}

.btn-cta-dark {
  background: var(--primario-dark);
  color: var(--white) !important;
  font-weight: 600;
  padding: 0.8rem 2.5rem;
  border-radius: 10px;
  border: none;
  transition: var(--transition);
}

.btn-cta-dark:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white) !important;
  transform: translateY(-2px);
}

/* ---------- FOOTER ---------- */
.footer-section {
  padding: 4rem 0 2rem;
  background: var(--primario-dark);
}

.footer-name {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--white);
  font-size: 1.3rem;
  margin-bottom: 0.4rem;
}

.footer-tagline {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 1.2rem;
}

.footer-socials {
  display: flex;
  gap: 0.8rem;
}

.footer-socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.95rem;
  text-decoration: none;
  transition: var(--transition);
}

.footer-socials a:hover {
  border-color: var(--acento);
  color: var(--acento);
  background: rgba(200, 151, 62, 0.1);
}

.footer-links-title {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--acento);
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-links li {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.45);
}

.footer-links a {
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--white);
  padding-left: 4px;
}

.footer-divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin: 2rem 0 1.5rem;
}

.footer-bottom {
  opacity: 0.45;
  transition: opacity 0.3s ease;
}

.footer-bottom:hover {
  opacity: 1;
}

.footer-credit {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
  transition: color 0.3s ease;
}

.footer-bottom:hover .footer-credit {
  color: rgba(255, 255, 255, 0.8);
  text-shadow: 0 0 12px rgba(200, 151, 62, 0.15);
}

#link-footer {
  color: var(--acento);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
  position: relative;
  display: inline-block;
}

#link-footer::after {
  content: '';
  position: absolute;
  width: 0;
  height: 1px;
  bottom: -2px;
  left: 0;
  background-color: var(--acento);
  transition: width 0.3s ease;
}

#link-footer:hover {
  text-shadow: 0 0 10px rgba(200, 151, 62, 0.5);
}

#link-footer:hover::after {
  width: 100%;
}

/* Footer responsive */
@media (max-width: 767.98px) {
  .footer-section {
    text-align: center;
  }

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

  .footer-links {
    align-items: center;
  }

  .footer-links a:hover {
    padding-left: 0;
  }
}

/* ---------- SCROLL ANIMATIONS ---------- */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }
.fade-up-delay-4 { transition-delay: 0.4s; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 991.98px) {
  .hero-content {
    padding-left: 0;
    text-align: center;
    margin-top: 2rem;
  }

  .hero-content h1 {
    font-size: 2.4rem;
  }

  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-img-wrapper {
    max-width: 280px;
    margin: 0 auto;
  }

  .section-title-left {
    text-align: center;
  }

  .about-text,
  .about-subtext {
    text-align: center;
    max-width: 100%;
  }

  .skills-tags {
    justify-content: center;
  }

  .logo-placeholder {
    margin-top: 2rem;
  }

  .portfolio-info {
    text-align: center !important;
  }

  .section-title {
    font-size: 2rem;
  }
}

@media (max-width: 767.98px) {
  .hero-content h1 {
    font-size: 2rem;
  }

  .section-title {
    font-size: 1.7rem;
  }

  .section-title-left {
    font-size: 1.8rem;
  }

  .cta-card {
    padding: 3rem 1.5rem;
  }

  .cta-card h2 {
    font-size: 1.8rem;
  }

  .pricing-featured {
    transform: scale(1);
  }

  .pricing-featured:hover {
    transform: translateY(-6px);
  }

  .process-step {
    margin-bottom: 2rem;
  }

  .footer-section .text-md-end {
    text-align: center !important;
    margin-top: 1.5rem;
  }

  .footer-section .col-md-6:first-child {
    text-align: center;
  }

  .footer-links li {
    margin: 0 0.5rem;
  }

  .mini-portfolio-img {
    max-width: 150px;
    margin: 0 auto 0.8rem;
  }
}

/* ---------- Footer ---------- */

.footer-divider {
  border: none;
  border-top: 1px solid var(--gray-200);
  margin: 2rem 0 1.5rem;
}

.footer-bottom {
  opacity: 0.5;
  transition: opacity 0.3s ease;
}

.footer-bottom:hover {
  opacity: 1;
}

.footer-credit {
  font-size: 0.85rem;
  color: var(--gray-500);
  margin: 0;
  transition: color 0.3s ease;
}

.footer-bottom:hover .footer-credit {
  color: var(--gray-700);
  text-shadow: 0 0 12px rgba(200, 151, 62, 0.15);
}