/* 
 * EBRUM GÜZELLİK SALONU - Premium Web App Design System
 * Aesthetic: Dark Luxury, Charcoal & Metallic Gold
 */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,400&family=Montserrat:wght@200;300;400;500;600;700&display=swap');

:root {
  --bg-primary: #080808;
  --bg-secondary: #121212;
  --bg-tertiary: #1b1b1b;
  --bg-card: #141414;
  --gold-primary: #d4af37;
  --gold-light: #f3e5ab;
  --gold-dark: #aa7c11;
  --gold-gradient: linear-gradient(135deg, #f3e5ab 0%, #d4af37 50%, #aa7c11 100%);
  --gold-gradient-hover: linear-gradient(135deg, #aa7c11 0%, #d4af37 50%, #f3e5ab 100%);
  --text-primary: #ffffff;
  --text-secondary: #b0b0b0;
  --text-muted: #707070;
  --border-color: rgba(212, 175, 55, 0.15);
  --border-color-hover: rgba(212, 175, 55, 0.4);
  --nav-bg: rgba(8, 8, 8, 0.85);
  --success: #2ecc71;
  --error: #e74c3c;
  --font-title: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Montserrat', sans-serif;
  --transition-smooth: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  --transition-fast: all 0.2s ease;
  --shadow-gold: 0 4px 20px rgba(212, 175, 55, 0.15);
  --shadow-gold-hover: 0 8px 30px rgba(212, 175, 55, 0.3);
}

/* Reset & General Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Scrollbar Customization */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
  background: var(--gold-dark);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--gold-primary);
}

/* Typography & Layout Utilities */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-title);
  color: var(--text-primary);
  font-weight: 600;
  letter-spacing: 1px;
}

p {
  color: var(--text-secondary);
  font-weight: 300;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-padding {
  padding: 100px 0;
}

@media (max-width: 768px) {
  .section-padding {
    padding: 60px 0;
  }
}

.gold-text {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.section-title {
  text-align: center;
  font-size: 3rem;
  margin-bottom: 20px;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 2px;
  background: var(--gold-primary);
  margin: 15px auto 0;
}

.section-subtitle {
  text-align: center;
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 50px;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* Header & Glassmorphism Nav */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: var(--nav-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  transition: var(--transition-smooth);
}

header.scrolled {
  padding: 10px 0;
  background-color: rgba(8, 8, 8, 0.95);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  transition: var(--transition-smooth);
}

header.scrolled .nav-container {
  padding: 12px 0;
}

.logo a {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.logo-main {
  font-family: var(--font-title);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 3px;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}

.logo-sub {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 4px;
  color: var(--text-primary);
  margin-top: 4px;
  text-transform: uppercase;
}

.nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 32px;
}

.nav-link {
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  position: relative;
  padding: 8px 0;
  color: var(--text-secondary);
}

.nav-link:hover, .nav-link.active {
  color: var(--gold-primary);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--gold-gradient);
  transition: var(--transition-smooth);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

/* Language Swapper Selector */
.lang-selector {
  position: relative;
  display: inline-block;
  margin-left: 20px;
}

.lang-btn {
  background: transparent;
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  padding: 6px 12px;
  font-size: 0.8rem;
  font-family: var(--font-body);
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition-fast);
}

.lang-btn:hover {
  border-color: var(--gold-primary);
  color: var(--gold-primary);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.1);
}

.lang-btn::after {
  content: ' ▼';
  font-size: 0.6rem;
  transition: var(--transition-fast);
}

.lang-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 8px;
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 4px;
  list-style: none;
  width: 130px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition-smooth);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  z-index: 1001;
}

.lang-selector:hover .lang-dropdown, 
.lang-dropdown.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-dropdown li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.lang-dropdown li a:hover {
  background-color: rgba(212, 175, 55, 0.05);
  color: var(--gold-primary);
}

/* Mobile Toggle Hamburger */
.mobile-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1002;
  flex-direction: column;
  gap: 6px;
}

.mobile-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background-color: var(--text-primary);
  transition: var(--transition-smooth);
}

/* Responsive Navbar */
@media (max-width: 992px) {
  .mobile-toggle {
    display: flex;
  }
  
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background-color: var(--bg-primary);
    border-left: 1px solid var(--border-color);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
    transition: var(--transition-smooth);
    z-index: 999;
  }
  
  .nav-menu.active {
    right: 0;
  }
  
  .mobile-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  
  .mobile-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  
  .mobile-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 80px;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(rgba(8, 8, 8, 0.65), rgba(8, 8, 8, 0.95)), url('../images/hero_bg.png');
  background-size: cover;
  background-position: center;
  z-index: 1;
  transform: scale(1.05);
  animation: subtleZoom 20s infinite alternate ease-in-out;
}

@keyframes subtleZoom {
  0% { transform: scale(1); }
  100% { transform: scale(1.06); }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.hero-tagline {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--gold-primary);
  margin-bottom: 20px;
  font-weight: 500;
  animation: fadeInUp 1s ease both;
}

.hero-title {
  font-size: 4.5rem;
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 30px;
  animation: fadeInUp 1.2s ease both;
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.hero-description {
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin-bottom: 40px;
  font-weight: 300;
  line-height: 1.7;
  animation: fadeInUp 1.4s ease both;
}

.btn-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  animation: fadeInUp 1.6s ease both;
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.8rem;
  }
  .btn-container {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
}

/* Premium Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition-smooth);
  font-family: var(--font-body);
}

.btn-gold {
  background: var(--gold-gradient);
  color: #000;
  border: none;
  box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
  background: var(--gold-gradient-hover);
  box-shadow: var(--shadow-gold-hover);
  transform: translateY(-3px);
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--gold-primary);
}

.btn-outline:hover {
  background: rgba(212, 175, 55, 0.1);
  box-shadow: var(--shadow-gold);
  transform: translateY(-3px);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Highlights Section */
.highlights {
  background-color: var(--bg-secondary);
  border-bottom: 1px solid var(--border-color);
  padding: 80px 0;
}

.grid-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

@media (max-width: 992px) {
  .grid-highlights {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

.highlight-card {
  text-align: center;
  padding: 30px 20px;
  border-radius: 8px;
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  transition: var(--transition-smooth);
}

.highlight-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold-primary);
  box-shadow: var(--shadow-gold);
}

.highlight-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--gold-primary);
}

.highlight-card h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.highlight-card p {
  font-size: 0.95rem;
  color: var(--text-secondary);
}

/* Services Section */
.services {
  background-color: var(--bg-primary);
}

.grid-services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

@media (max-width: 992px) {
  .grid-services {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .grid-services {
    grid-template-columns: 1fr;
  }
}

.service-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold-primary);
  box-shadow: var(--shadow-gold);
}

.service-img-wrapper {
  position: relative;
  width: 100%;
  padding-top: 66.67%; /* 3:2 Aspect Ratio */
  overflow: hidden;
}

.service-img-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.service-card:hover .service-img-wrapper img {
  transform: scale(1.08);
}

.service-card:hover .service-img-wrapper::after {
  opacity: 0.4;
}

.service-img-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(8,8,8,0) 60%, rgba(8,8,8,0.95) 100%);
  opacity: 0.8;
  transition: var(--transition-smooth);
}

.service-info {
  padding: 30px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.service-info h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.service-info p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 25px;
  flex-grow: 1;
  line-height: 1.7;
}

.service-features {
  list-style: none;
  margin-bottom: 25px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-features li {
  font-size: 0.85rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 8px;
}

.service-features li::before {
  content: '✓ ';
  color: var(--gold-primary);
  font-weight: bold;
}

.service-card .btn {
  width: 100%;
  padding: 12px 20px;
}

/* About Us Section */
.about {
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.about-wrapper {
  display: flex;
  align-items: center;
  gap: 60px;
}

@media (max-width: 992px) {
  .about-wrapper {
    flex-direction: column;
    gap: 40px;
  }
}

.about-content {
  flex: 1;
}

.about-title {
  font-size: 3rem;
  margin-bottom: 25px;
  position: relative;
  text-align: left;
}

.about-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 2px;
  background: var(--gold-primary);
  margin-top: 15px;
}

.about-text {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 20px;
  color: var(--text-secondary);
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

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

.stat-num {
  font-family: var(--font-title);
  font-size: 2.8rem;
  color: var(--gold-primary);
  font-weight: 700;
  line-height: 1;
}

.stat-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-secondary);
  margin-top: 8px;
}

/* Appointment Section */
.appointment {
  background-color: var(--bg-primary);
  position: relative;
}

.appointment-container {
  max-width: 800px;
  margin: 0 auto;
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 50px;
  box-shadow: var(--shadow-gold);
}

@media (max-width: 768px) {
  .appointment-container {
    padding: 30px 20px;
  }
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 24px;
}

@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 20px;
  }
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold-light);
  margin-bottom: 8px;
  font-weight: 500;
}

.form-control {
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  padding: 14px 18px;
  font-size: 0.95rem;
  font-family: var(--font-body);
  border-radius: 4px;
  transition: var(--transition-smooth);
}

.form-control:focus {
  outline: none;
  border-color: var(--gold-primary);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.15);
}

select.form-control {
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23d4af37' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: calc(100% - 20px) center;
  padding-right: 45px;
}

textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

.form-submit-container {
  text-align: center;
  margin-top: 30px;
}

.form-submit-container .btn {
  min-width: 250px;
}

/* Form Validation Styles */
.form-control.is-invalid {
  border-color: var(--error);
}

.invalid-feedback {
  color: var(--error);
  font-size: 0.75rem;
  margin-top: 4px;
  display: none;
}

.form-control.is-invalid + .invalid-feedback {
  display: block;
}

/* Success Modal */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-card {
  background-color: var(--bg-card);
  border: 1px solid var(--gold-primary);
  border-radius: 12px;
  width: 90%;
  max-width: 500px;
  padding: 40px;
  text-align: center;
  box-shadow: var(--shadow-gold-hover);
  transform: scale(0.9);
  transition: var(--transition-smooth);
}

.modal-overlay.active .modal-card {
  transform: scale(1);
}

.modal-icon {
  font-size: 4rem;
  color: var(--success);
  margin-bottom: 20px;
}

.modal-card h3 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.modal-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 30px;
  line-height: 1.6;
}

.modal-buttons {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.modal-buttons .btn {
  width: 100%;
}

/* FAQs Accordion */
.faq {
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  margin-bottom: 16px;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.faq-item:hover {
  border-color: var(--gold-primary);
}

.faq-question {
  padding: 24px;
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text-primary);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}

.faq-question::after {
  content: '+';
  font-family: monospace;
  font-size: 1.4rem;
  color: var(--gold-primary);
  transition: var(--transition-smooth);
}

.faq-item.active .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0, 1, 0, 1);
}

.faq-item.active .faq-answer {
  max-height: 1000px;
  transition: max-height 0.4s cubic-bezier(1, 0, 1, 0);
}

.faq-answer-inner {
  padding: 0 24px 24px;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
  font-weight: 300;
  border-top: 1px solid rgba(212, 175, 55, 0.05);
  padding-top: 20px;
}

/* Contact & Map Info */
.contact {
  background-color: var(--bg-primary);
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
}

@media (max-width: 992px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.contact-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-detail-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-bottom: 40px;
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.contact-icon {
  font-size: 1.8rem;
  color: var(--gold-primary);
  line-height: 1;
}

.contact-detail-text h4 {
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 6px;
  color: var(--text-primary);
}

.contact-detail-text p, .contact-detail-text a {
  font-size: 0.95rem;
  color: var(--text-secondary);
  font-weight: 300;
}

.contact-detail-text a:hover {
  color: var(--gold-primary);
}

/* Opening Hours Table */
.hours-table {
  width: 100%;
  border-collapse: collapse;
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  overflow: hidden;
}

.hours-table tr {
  border-bottom: 1px solid rgba(212, 175, 55, 0.05);
}

.hours-table tr:last-child {
  border-bottom: none;
}

.hours-table td {
  padding: 12px 20px;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.hours-table td:first-child {
  font-weight: 500;
  color: var(--gold-light);
}

.hours-table td:last-child {
  text-align: right;
}

/* Premium Map integration wrapper */
.map-container {
  position: relative;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  overflow: hidden;
  height: 100%;
  min-height: 400px;
  box-shadow: var(--shadow-gold);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(1) invert(0.9) contrast(1.2);
}

.map-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(8,8,8,0.2) 0%, rgba(8,8,8,0.8) 100%);
}

/* Footer Credits wixmedya */
footer {
  background-color: #050505;
  border-top: 1px solid var(--border-color);
  padding: 40px 0 20px;
  text-align: center;
}

.footer-logo {
  margin-bottom: 20px;
}

.footer-nav {
  display: flex;
  justify-content: center;
  list-style: none;
  gap: 30px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.footer-nav a {
  font-size: 0.8rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-nav a:hover {
  color: var(--gold-primary);
}

.copyright {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 15px;
}

.wixmedya-credit {
  font-size: 0.8rem;
  color: var(--text-secondary);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 20px;
  margin-top: 20px;
}

.wixmedya-credit a {
  color: var(--gold-primary);
  font-weight: 500;
  position: relative;
}

.wixmedya-credit a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--gold-primary);
  transition: var(--transition-smooth);
}

.wixmedya-credit a:hover::after {
  width: 100%;
}

/* Floating WhatsApp Setup */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3), 0 0 20px rgba(37, 211, 102, 0.4);
  z-index: 998;
  transition: var(--transition-smooth);
  animation: pulseWhatsapp 2s infinite;
  cursor: pointer;
}

.whatsapp-float:hover {
  transform: translateY(-5px) scale(1.05);
  background-color: #20ba5a;
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
}

@keyframes pulseWhatsapp {
  0% {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3), 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3), 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3), 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
  }
  .whatsapp-float svg {
    width: 25px;
    height: 25px;
  }
}
