@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Montserrat:wght@300;400;500;600&display=swap");

:root {
  --primary-platinum: #f0f0f0;
  --primary-gold-light: #e8c968;
  --dark-bg: #0a0a0a;
  --dark-surface: #151515;
  --dark-elevated: #1e1e1e;
  --text-primary: #f5f5f5;
  --text-secondary: #dedede;
  --text-muted: #6b6b6b;
  --accent-gradient: linear-gradient(135deg, #f0f0f0 0%, #e8c968 100%);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: "Montserrat", sans-serif;
  background-color: var(--dark-bg);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
}

/* Header Styles */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  padding: 1.5rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
  animation: slideDown 0.8s ease-out;
  box-sizing: border-box;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

header img {
  height: 60px;
  width: auto;
  filter: brightness(1.2);
  transition: transform 0.3s ease;
}

header img:hover {
  transform: scale(1.05);
}

@media (max-width: 640px) {
  header img {
    height: 60px;
    width: auto;
  }
}

header ul {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

header ul a {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 400;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  position: relative;
  transition: color 0.3s ease;
}

header ul a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-gradient);
  transition: width 0.4s ease;
}

header ul a:hover {
  color: var(--primary-platinum);
}

header ul a:hover::after {
  width: 100%;
}

/* Language Select Dropdown */
select {
  background: var(--dark-elevated);
  color: var(--text-primary);
  border: 1px solid rgba(212, 175, 55, 0.2);
  padding: 0.5rem 1rem;
  border-radius: 4px;
  cursor: pointer;
  font-family: "Montserrat", sans-serif;
  transition: all 0.3s ease;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23f0f0f0' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 1.25rem;
  padding-right: 2.5rem;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
}

select:hover {
  border-color: var(--primary-platinum);
}

select:focus {
  outline: none;
  border-color: var(--primary-gold-light);
  box-shadow: 0 0 0 3px rgba(232, 201, 104, 0.1);
}

/* Mobile specific improvements for select */
@media (max-width: 640px) {
  select {
    padding: 0.6rem 0.8rem;
    padding-right: 2.2rem;
    font-size: 1rem;
  }
}

/* @media (max-width: 640px) {
  select {
    padding: 0.6rem 0.8rem;
    padding-right: 2.2rem;
    font-size: 1rem;
  }
} */

.menu-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  gap: 0.4rem;
  z-index: 999;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background-color: var(--primary-platinum);
  border-radius: 2px;
  transition: all 0.3s ease;
  z-index: 999;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(10px, 10px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Main Content */
main {
  padding-top: 100px;
  width: 100%;
  box-sizing: border-box;
}

section {
  padding: 5rem 10%;
  opacity: 0;
  animation: fadeInUp 1s ease-out forwards;
  width: 100%;
  box-sizing: border-box;
}

section:nth-child(1) {
  animation-delay: 0.2s;
}
section:nth-child(2) {
  animation-delay: 0.4s;
}
section:nth-child(3) {
  animation-delay: 0.6s;
}
section:nth-child(4) {
  animation-delay: 0.8s;
}
section:nth-child(5) {
  animation-delay: 1s;
}
section:nth-child(6) {
  animation-delay: 1.2s;
}
section:nth-child(7) {
  animation-delay: 1.4s;
}
section:nth-child(8) {
  animation-delay: 1.6s;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Home Section */
#Home {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  min-height: 90vh;
  background: url("../Public/Paros_Island/Paros_4.jpeg") no-repeat center
    center/cover;
  position: relative;
  overflow: hidden;
}

#Home::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: inherit;
  background-attachment: scroll;
  filter: blur(4px) brightness(0.9);
  transform: scale(1.02);
  z-index: 0;
  opacity: 1;
}

#Home h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 600;
  background: var(--primary-platinum);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.4))
    drop-shadow(0 0 15px rgba(0, 0, 0, 0.2));
}

#Home p {
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: var(--text-secondary);
  max-width: 600px;
  font-weight: 300;
  letter-spacing: 0.5px;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.5))
    drop-shadow(0 0 12px rgba(0, 0, 0, 0.4));
}

/* About Section */
#About {
  background: var(--dark-surface);
  border-top: 1px solid rgba(212, 175, 55, 0.1);
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.about-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: var(--primary-platinum);
  margin-bottom: 3rem;
  position: relative;
  display: inline-block;
}

.about-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60%;
  height: 3px;
  background: var(--accent-gradient);
}

.about-text {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.8;
  max-width: 900px;
  font-weight: 300;
}

/* Services Section */
#Services {
  background: var(--dark-bg);
}

#Services h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: var(--primary-platinum);
  margin-bottom: 3rem;
  text-align: center;
}

#Services ul {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

#Services li {
  background: var(--dark-surface);
  padding: 2rem;
  border-radius: 8px;
  border: 1px solid rgba(212, 175, 55, 0.15);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

#Services li::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(212, 175, 55, 0.1),
    transparent
  );
  transition: left 0.6s ease;
}

#Services li:hover::before {
  left: 100%;
}

#Services li:hover {
  transform: translateY(-5px);
  border-color: var(--primary-platinum);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

/* Car Sections */
#Citroen-DS,
#Nissan-NV300 {
  background: var(--dark-surface);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  align-items: center;
  border-top: 1px solid rgba(212, 175, 55, 0.1);
}

#Citroen-DS,
#Nissan-NV300 > :not(img) {
  grid-column: 1;
}

#Citroen-DS,
#Nissan-NV300 img {
  grid-column: 2;
  grid-row: 1/3;
}

#Citroen-DS p,
#Nissan-NV300 p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-secondary);
}

#Citroen-DS strong,
#Nissan-NV300 strong {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  color: var(--primary-platinum);
  display: block;
  margin-bottom: 1rem;
}

#Citroen-DS img,
#Nissan-NV300 img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  transition: transform 0.5s ease;
  border: 1px solid rgba(212, 175, 55, 0.2);
}

#Citroen-DS img:hover,
#Nissan-NV300 img:hover {
  transform: scale(1.03);
}

#Nissan-NV300 ul {
  list-style: none;
  margin-top: 1.5rem;
  padding-left: 0;
}

#Nissan-NV300 li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: var(--text-secondary);
}

#Nissan-NV300 li::before {
  content: "●";
  position: absolute;
  left: 0;
  color: var(--primary-platinum);
}

/* Allowances Sections */
.allowances-section {
  background: var(--dark-surface);
  border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.allowances-section h3 {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  color: var(--primary-platinum);
  margin-bottom: 2.5rem;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.allowances-section h3::before {
  content: "";
  width: 40px;
  height: 2px;
  background: var(--primary-gold-light);
}

.allowances-section h3::after {
  content: "";
  width: 40px;
  height: 2px;
  background: var(--primary-gold-light);
}

.allowances-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0;
}

.allowances-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: linear-gradient(
    135deg,
    var(--dark-elevated) 0%,
    rgba(232, 201, 104, 0.05) 100%
  );
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 12px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.allowances-list li::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(232, 201, 104, 0.15),
    transparent
  );
  transition: left 0.6s ease;
  z-index: 0;
}

.allowances-list li:hover {
  border-color: var(--primary-gold-light);
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(232, 201, 104, 0.25);
  background: linear-gradient(
    135deg,
    rgba(232, 201, 104, 0.1) 0%,
    rgba(232, 201, 104, 0.08) 100%
  );
}

.allowances-list li:hover::before {
  left: 100%;
}

.allowance-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--primary-gold-light);
  color: var(--dark-bg);
  border-radius: 50%;
  font-weight: 700;
  font-size: 1.2rem;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.allowance-text {
  color: var(--text-secondary);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
  .allowances-section h3 {
    flex-direction: column;
    gap: 0.5rem;
  }

  .allowances-section h3::before,
  .allowances-section h3::after {
    width: 30px;
  }

  .allowances-list {
    grid-template-columns: 1fr;
  }

  .allowances-list li {
    padding: 1.2rem;
  }

  .allowance-icon {
    width: 32px;
    height: 32px;
    font-size: 1rem;
  }

  .allowance-text {
    font-size: 0.95rem;
  }
}

/* Tours Section */
.tours-section {
  background: var(--dark-surface);
  border-top: 1px solid rgba(212, 175, 55, 0.08);
}

.tours-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2.5rem 0;
}

.tours-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  object-fit: cover;
  border: 1px solid rgba(212, 175, 55, 0.07);
}

.tours-body h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  color: var(--primary-platinum);
  margin-bottom: 1rem;
}

.tours-body p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.tours-features {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  padding: 0;
  margin: 1rem 0;
}

.tours-features li {
  background: var(--dark-elevated);
  padding: 0.75rem 1rem;
  border-radius: 8px;
  border: 1px solid rgba(212, 175, 55, 0.06);
  color: var(--text-secondary);
}

.tours-cta {
  display: inline-block;
  margin-top: 0.75rem;
  background: var(--primary-gold-light);
  color: var(--dark-bg);
  padding: 0.65rem 1rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.tours-cta:hover {
  background: var(--primary-platinum);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(232, 201, 104, 0.3);
}

@media (max-width: 968px) {
  .tours-grid {
    grid-template-columns: 1fr;
    padding: 1.5rem 0;
  }

  .tours-features {
    grid-template-columns: 1fr;
  }

  .tours-image {
    margin-bottom: 1rem;
  }
}

/* Cancellation Policy */
#Cancellation-Policy {
  background: var(--dark-bg);
}

#Cancellation-Policy h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--primary-platinum);
  margin-bottom: 2rem;
  text-align: center;
}

#Cancellation-Policy ul {
  list-style: none;
  max-width: 900px;
  margin: 0 auto;
}

#Cancellation-Policy li {
  padding: 1.5rem;
  margin-bottom: 1rem;
  background: var(--dark-surface);
  border-left: 4px solid var(--primary-gold-light);
  border-radius: 4px;
  color: var(--text-secondary);
  transition: all 0.3s ease;
}

#Cancellation-Policy li:hover {
  background: var(--dark-elevated);
  transform: translateX(10px);
}

/* FAQ Section */
#FAQ {
  background: var(--dark-surface);
  border-top: 1px solid rgba(212, 175, 55, 0.1);
}

#FAQ h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--primary-platinum);
  margin-bottom: 3rem;
  text-align: center;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 8px;
  overflow: hidden;
  background: var(--dark-elevated);
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.1);
}

.faq-question {
  width: 100%;
  padding: 1.5rem;
  background: var(--dark-elevated);
  border: none;
  color: var(--text-primary);
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
  font-family: "Montserrat", sans-serif;
}

.faq-question:hover {
  background: var(--dark-surface);
}

.faq-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--primary-gold-light);
  color: var(--dark-bg);
  font-weight: 700;
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

/* Ensure the question text always aligns left and takes available space
   so all FAQ items render consistently */
.faq-question > span:first-child {
  flex: 1 1 auto;
  display: block;
  text-align: left;
}

/* Guarantee toggle sizing/spacing is consistent across items */
.faq-toggle {
  flex: 0 0 2rem;
  box-sizing: border-box;
  margin-left: 1rem;
}

/* More specific rules to override any unexpected centering */
.faq-question span:not(.faq-toggle) {
  flex: 1 1 auto;
  display: block;
  text-align: left;
}

.faq-question .faq-toggle {
  flex: 0 0 2rem;
  width: 2rem;
  height: 2rem;
  margin-left: 1rem;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
  background: var(--primary-platinum);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  background: var(--dark-bg);
  padding: 0 1.5rem;
  transition:
    max-height 0.3s ease,
    padding 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 1.5rem 1.5rem 1.5rem;
}

.faq-answer p {
  color: var(--text-secondary);
  line-height: 1.8;
  font-size: 1rem;
  margin: 0;
}

@media (max-width: 640px) {
  .faq-question {
    padding: 1.2rem;
    font-size: 1rem;
  }

  .faq-toggle {
    width: 1.75rem;
    height: 1.75rem;
    font-size: 1.2rem;
  }

  .faq-answer {
    padding: 0 1.2rem;
  }

  .faq-item.active .faq-answer {
    padding: 0 1.2rem 1.2rem 1.2rem;
  }
}

/* Contact Section */
#Contact {
  background: var(--dark-bg);
  text-align: center;
  min-height: 50vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#Contact h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--primary-platinum);
  margin-bottom: 2rem;
}

#Contact p {
  font-size: 1.2rem;
  color: var(--text-secondary);
}

#Contact ul {
  list-style: none;
  max-width: 1200px;
  margin: 2rem auto 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  padding: 0;
}

#Contact li {
  padding: 1.5rem;
  background: var(--dark-surface);
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: 10px;
  color: var(--text-secondary);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  flex: 1 1 calc(50% - 1rem);
  min-width: 240px;
  max-width: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}

#Contact li:hover {
  background: var(--dark-elevated);
  transform: translateY(-8px);
  border-color: var(--primary-gold-light);
  box-shadow: 0 15px 40px rgba(232, 201, 104, 0.25);
}

#Contact li a {
  color: var(--primary-platinum);
  text-decoration: none;
  transition: color 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  width: 100%;
}

#Contact li a img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

#Contact li:hover a img {
  transform: scale(1.2);
  color: var(--primary-gold-light);
}

#Contact li a:hover {
  color: var(--primary-gold-light);
}

/* Responsive Design */
@media (max-width: 968px) {
  header {
    flex-direction: row;
    gap: 1rem;
    padding: 1rem 5%;
  }

  .menu-toggle {
    display: flex;
    order: 2;
  }

  header ul.nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
  }

  header ul.nav-menu.active {
    max-height: 300px;
  }

  header ul.nav-menu a {
    padding: 1rem 5%;
    display: block;
    border-bottom: 1px solid rgba(212, 175, 55, 0.05);
  }

  section {
    padding: 3rem 5%;
  }

  #Citroen-DS,
  #Nissan-NV300 {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  #Services ul {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  header ul.nav-menu a {
    padding: 0.8rem 5%;
  }

  #Home {
    padding: 3rem 5%;
  }
}

@media (max-width: 968px) {
  #Citroen-DS,
  #Nissan-NV300 {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  #Citroen-DS > :not(img),
  #Nissan-NV300 > :not(img) {
    grid-column: 1;
  }
  #Citroen-DS img,
  #Nissan-NV300 img {
    grid-column: 1;
    grid-row: auto;
  }
}

/* Scroll Animations */
.fade-in-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

.fade-in-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Sticky Contact Button */
.contact-button {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--primary-gold-light);
  color: var(--dark-bg);
  padding: 0.9rem 1.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  z-index: 900;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(232, 201, 104, 0.3);
  border: none;
  cursor: pointer;
}

.contact-button:hover {
  background: var(--primary-platinum);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(232, 201, 104, 0.5);
}

.contact-button:active {
  transform: translateY(-1px);
}

/* Sticky Up Button */
.up-button {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  background: var(--primary-gold-light);
  color: var(--dark-bg);
  border-radius: 50%;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.5rem;
  z-index: 900;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(232, 201, 104, 0.3);
  border: none;
  cursor: pointer;
}

.up-button:hover {
  background: var(--primary-platinum);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(232, 201, 104, 0.5);
}

.up-button:active {
  transform: translateY(-1px);
}

/* Mobile responsive floating buttons */
@media (max-width: 1024px) {
  #Contact li {
    flex: 1 1 calc(50% - 1rem);
    min-width: 220px;
    max-width: 260px;
  }
}

@media (max-width: 768px) {
  #Contact ul {
    gap: 1rem;
  }

  #Contact li {
    flex: 1 1 calc(50% - 0.5rem);
    min-width: 200px;
    max-width: 220px;
    padding: 1.2rem;
  }

  #Contact li a img {
    width: 36px;
    height: 36px;
  }

  #Contact li a {
    font-size: 0.9rem;
    gap: 0.6rem;
  }
}

@media (max-width: 640px) {
  #Contact ul {
    gap: 0.8rem;
  }

  #Contact li {
    flex: 1 1 100%;
    min-width: auto;
    max-width: none;
    padding: 1rem;
  }

  #Contact li a img {
    width: 32px;
    height: 32px;
  }

  #Contact li a {
    font-size: 0.85rem;
    gap: 0.5rem;
  }

  .contact-button {
    bottom: 1.5rem;
    left: 1.5rem;
    padding: 0.8rem 1.2rem;
    font-size: 0.9rem;
  }

  .up-button {
    bottom: 1.5rem;
    right: 1.5rem;
  }
}

/* Footer Styles */
footer {
  background: var(--dark-surface);
  border-top: 2px solid rgba(212, 175, 55, 0.2);
  padding: 2.5rem 5%;
  text-align: center;
  width: 100%;
  box-sizing: border-box;
  margin-top: auto;
  animation: slideUp 0.8s ease-out;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

footer p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin: 0;
  font-weight: 400;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
}

footer p:hover {
  color: var(--primary-platinum);
}

footer p span {
  color: var(--primary-gold-light);
  font-weight: 500;
}

@media (max-width: 768px) {
  footer {
    padding: 2rem 5%;
  }

  footer p {
    font-size: 0.9rem;
  }
}

@media (max-width: 640px) {
  footer {
    padding: 1.5rem 5%;
  }

  footer p {
    font-size: 0.85rem;
  }
}
/* width: 2.75rem;
    height: 2.75rem;
    font-size: 1.2rem;
  }
} */
