/* ===== 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);
  --shadow-xl: 0 30px 60px rgba(91, 1, 97, 0.2);
  --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);
}

/* ===== SPINNER ===== */
.spinner {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease-out;
}

.spinner.show {
  opacity: 1;
  visibility: visible;
}

.spinner-border {
  width: 4rem;
  height: 4rem;
  border: 4px solid var(--accent);
  border-top-color: transparent;
  border-right-color: transparent;
  border-radius: 50%;
  animation: spinner 0.8s linear infinite;
}

@keyframes spinner {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* ===== 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);
}

.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;
  }

  .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);
}

/* ===== CONTACT SECTION PREMIUM - FULLY RESPONSIVE ===== */
.contact-premium {
  padding: 60px 0;
}

@media (min-width: 768px) {
  .contact-premium {
    padding: 80px 0;
  }
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

@media (min-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 60px;
  }
}

/* Contact Info Cards */
.contact-info-wrapper {
  background: var(--white);
  border-radius: 30px;
  padding: 30px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
  transition: var(--transition);
  width: 100%;
}

@media (min-width: 768px) {
  .contact-info-wrapper {
    padding: 40px;
    border-radius: 40px;
  }
}

.contact-info-wrapper:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
  border-color: var(--accent);
}

.section-subtitle {
  color: var(--primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.75rem;
  margin-bottom: 1rem;
  display: block;
}

@media (min-width: 768px) {
  .section-subtitle {
    letter-spacing: 3px;
    font-size: 0.8rem;
  }
}

.contact-info-wrapper h2 {
  margin-bottom: 1rem;
  font-size: clamp(1.5rem, 5vw, 2rem);
}

.contact-info-wrapper h2 .highlight {
  color: var(--primary);
  position: relative;
  display: inline-block;
}

.contact-info-wrapper h2 .highlight::after {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 8px;
  background: var(--accent);
  opacity: 0.3;
  z-index: -1;
}

.info-cards {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

@media (min-width: 768px) {
  .info-cards {
    margin-top: 40px;
    gap: 30px;
  }
}

.info-card {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 15px;
  background: var(--light-gray);
  border-radius: 20px;
  transition: var(--transition);
  border: 1px solid transparent;
}

@media (min-width: 768px) {
  .info-card {
    gap: 20px;
    padding: 20px;
    border-radius: 25px;
  }
}

.info-card:hover {
  background: var(--white);
  border-color: var(--accent);
  transform: translateX(5px);
  box-shadow: var(--shadow-md);
}

@media (min-width: 768px) {
  .info-card:hover {
    transform: translateX(10px);
  }
}

.info-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
  border: 2px solid var(--accent);
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .info-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
}

.info-content h4 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  font-family: "Inter", sans-serif;
  font-weight: 700;
}

@media (min-width: 768px) {
  .info-content h4 {
    font-size: 1.2rem;
  }
}

.info-content p {
  margin-bottom: 0.25rem;
  color: var(--gray);
  font-size: 0.85rem;
}

@media (min-width: 768px) {
  .info-content p {
    font-size: 0.9rem;
  }
}

.info-content a {
  color: var(--primary);
  font-weight: 500;
}

.info-content a:hover {
  color: var(--accent);
}

/* Social Connect */
.social-connect {
  margin-top: 30px;
  padding-top: 25px;
  border-top: 2px solid var(--border-color);
}

@media (min-width: 768px) {
  .social-connect {
    margin-top: 40px;
    padding-top: 30px;
  }
}

.social-connect h4 {
  font-size: 1rem;
  margin-bottom: 1rem;
  font-family: "Inter", sans-serif;
}

.social-icons-premium {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.social-icon-premium {
  width: 40px;
  height: 40px;
  background: linear-gradient(
    135deg,
    var(--primary-light) 0%,
    var(--primary-dark) 100%
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1rem;
  transition: var(--transition);
  border: 2px solid var(--accent);
}

@media (min-width: 768px) {
  .social-icon-premium {
    width: 48px;
    height: 48px;
    font-size: 1.2rem;
  }
}

.social-icon-premium:hover {
  transform: translateY(-5px) rotate(360deg);
  background: linear-gradient(135deg, var(--accent) 0%, var(--primary) 100%);
  color: var(--secondary);
  border-color: var(--white);
}

/* Contact Form */
.contact-form-wrapper {
  background: var(--white);
  border-radius: 30px;
  padding: 30px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
  transition: var(--transition);
  width: 100%;
}

@media (min-width: 768px) {
  .contact-form-wrapper {
    padding: 40px;
    border-radius: 40px;
  }
}

.contact-form-wrapper:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
  border-color: var(--accent);
}

.contact-form-wrapper h2 {
  margin-bottom: 0.5rem;
}

.form-group {
  margin-bottom: 20px;
}

@media (min-width: 768px) {
  .form-group {
    margin-bottom: 25px;
  }
}

.form-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  color: var(--secondary);
  font-size: 0.85rem;
}

@media (min-width: 768px) {
  .form-group label {
    margin-bottom: 8px;
    font-size: 0.9rem;
  }
}

.form-control-premium {
  width: 100%;
  padding: 0.875rem 1.25rem;
  font-size: 0.9rem;
  border: 2px solid var(--border-color);
  border-radius: 30px;
  background: var(--light-gray);
  transition: var(--transition);
  font-family: "Inter", sans-serif;
}

@media (min-width: 768px) {
  .form-control-premium {
    padding: 1rem 1.5rem;
    font-size: 1rem;
  }
}

.form-control-premium:focus {
  outline: none;
  border-color: var(--primary);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(91, 1, 97, 0.1);
}

textarea.form-control-premium {
  resize: vertical;
  min-height: 100px;
}

@media (min-width: 768px) {
  textarea.form-control-premium {
    min-height: 120px;
  }
}

.btn-submit {
  width: 100%;
  padding: 0.875rem;
  font-size: 0.9rem;
  font-weight: 600;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  border: 2px solid var(--accent);
}

@media (min-width: 768px) {
  .btn-submit {
    padding: 1rem;
    font-size: 1rem;
  }
}

/* Map Section */
.map-section {
  padding: 0 0 60px 0;
}

@media (min-width: 768px) {
  .map-section {
    padding: 0 0 80px 0;
  }
}

.map-wrapper {
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 2px solid var(--accent);
  transition: var(--transition);
}

@media (min-width: 768px) {
  .map-wrapper {
    border-radius: 40px;
  }
}

.map-wrapper:hover {
  transform: scale(1.01);
  box-shadow: var(--shadow-xl);
}

.map-wrapper iframe {
  width: 100%;
  height: 300px;
  display: block;
  filter: grayscale(0.1) contrast(1.05);
}

@media (min-width: 768px) {
  .map-wrapper iframe {
    height: 450px;
  }
}

/* CTA Section */
.cta-about {
  padding: 60px 0;
}

.cta-about-wrapper {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  border-radius: 30px;
  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.6rem, 6vw, 2.5rem);
  margin-bottom: 1rem;
}

.cta-about-content p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
}

@media (min-width: 768px) {
  .cta-about-content p {
    margin-bottom: 2rem;
    font-size: 1rem;
  }
}

.btn-white {
  background: var(--white);
  color: var(--primary);
  border: 2px solid var(--accent);
}

.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;
}

.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-footer {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.gallery-grid-footer img {
  width: 100%;
  border-radius: 15px;
  transition: var(--transition);
  cursor: pointer;
}

.gallery-grid-footer img:hover {
  transform: scale(1.05);
  border: 2px solid var(--accent);
}

.newsletter-form {
  position: relative;
  margin-top: 1rem;
}

.newsletter-form input {
  width: 100%;
  padding: 0.875rem 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid var(--accent);
  border-radius: 50px;
  color: var(--white);
  padding-right: 100px;
  font-size: 0.9rem;
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.newsletter-form button {
  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;
}

.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;
}

.footer-menu a:hover {
  color: var(--accent);
}

.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%);
}

.form-message {
  margin-top: 20px;
  padding: 12px;
  border-radius: 30px;
  text-align: center;
  display: none;
}

.form-message.success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
  display: block;
}

.form-message.error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
  display: block;
}
