/* Modern Contact Page Styles */
:root {
  --primary: #08ae90;
  --primary-dark: #056953;
  --primary-light: #0bdab4;
  --gradient-primary: linear-gradient(135deg, #08ae90 0%, #0bdab4 100%);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.2);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.3);
  --shadow-glow: 0 0 20px rgba(8, 174, 144, 0.3);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --radius-md: 12px;
  --radius-lg: 20px;
}

body {
  font-family: "Raleway", sans-serif;
  margin: 0;
  padding: 0;
  background-image: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.6)), 
  url(2024/Quorum\,\ 30\ x\ 30_\,\ pastel\,\ acrylic\ and\ Screen\ Printing\ on\ Canvas.jpg.jpg);
  min-height: 100vh;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  -webkit-tap-highlight-color: transparent;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

@media (max-width: 768px) {
  body {
    background-attachment: scroll;
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.contact-page {
  padding: 80px 20px;
  font-family: "Raleway", sans-serif;
  animation: fadeIn 0.8s ease-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.contact-page h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  text-align: center;
  margin-bottom: 24px;
  color: #ffffff;
  font-weight: 600;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.contact-page p {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  text-align: center;
  margin-bottom: 50px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
}

.contact-form {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}

.contact-form input,
.contact-form textarea {
  padding: 16px 20px;
  font-size: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-md);
  font-family: "Raleway", sans-serif;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  transition: var(--transition);
  backdrop-filter: blur(10px);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary-light);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 0 3px rgba(8, 174, 144, 0.2);
}

.contact-form button {
  padding: 16px 32px;
  font-size: 1.1rem;
  font-weight: 500;
  background: var(--gradient-primary);
  color: #fff;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition);
  font-family: "Raleway", sans-serif;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
  margin-top: 10px;
}

.contact-form button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}

.contact-form button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

.contact-form button:hover::before {
  left: 100%;
}

.contact-info {
  margin-top: 50px;
  text-align: center;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.contact-info p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 12px;
}

.contact-info a {
  color: var(--primary-light);
  text-decoration: none;
  transition: var(--transition);
  font-weight: 500;
}

.contact-info a:hover {
  color: var(--primary);
  text-decoration: underline;
}

/* Modern Hamburger Menu */
.hamburger {
  position: fixed;
  top: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  z-index: 1000;
  background: rgba(8, 174, 144, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(11, 218, 180, 0.2);
  border-radius: 12px;
  padding: 12px;
  transition: var(--transition);
}

.hamburger:hover {
  background: rgba(8, 174, 144, 0.2);
  border-color: rgba(11, 218, 180, 0.4);
  transform: scale(1.05);
}

.hamburger div {
  width: 24px;
  height: 2px;
  background: var(--primary-light);
  border-radius: 2px;
  transition: var(--transition);
  transform-origin: center;
}

/* Modern Menu with Glassmorphism */
.menu {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  width: 40%;
  min-width: 280px;
  max-width: 400px;
  height: 100%;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-left: 1px solid rgba(11, 218, 180, 0.1);
  color: white;
  z-index: 999;
  padding: 80px 40px 40px;
  box-shadow: -4px 0 24px rgba(0, 0, 0, 0.5);
  animation: slideInRight 0.3s ease-out;
}

@keyframes slideInRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.menu ul {
  list-style: none;
}

.menu li {
  margin: 20px 0;
}

.menu a {
  position: relative;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.25rem;
  font-weight: 400;
  transition: var(--transition);
  font-family: "Raleway", sans-serif;
  display: block;
  padding: 12px 0;
  border-radius: var(--radius-sm);
  padding-left: 16px;
  margin-left: -16px;
}

.menu a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 0;
  background: var(--gradient-primary);
  border-radius: 0 2px 2px 0;
  transition: var(--transition);
}

.menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 8px;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: width 0.3s ease;
}

.menu a:hover {
  color: var(--primary-light);
  background: rgba(8, 174, 144, 0.1);
  padding-left: 20px;
  margin-left: -20px;
}

.menu a:hover::before {
  height: 60%;
}

.menu a:hover::after {
  width: 100%;
}

.menu.active {
  display: block;
}

.hamburger.active div:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger.active div:nth-child(2) {
  opacity: 0;
}

.hamburger.active div:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

@media (max-width: 600px) {
  .menu {
    width: 80%;
  }
  .contact-form {
    padding: 30px 20px;
  }
}

/* Modern Footer */
.site-footer {
  background: linear-gradient(180deg, rgba(10, 10, 10, 0.95) 0%, #0a0a0a 100%);
  backdrop-filter: blur(20px);
  color: #fff;
  padding: 60px 20px 30px;
  font-family: 'Raleway', sans-serif;
  border-top: 1px solid rgba(11, 218, 180, 0.1);
  position: relative;
  margin-top: 80px;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--gradient-primary);
  opacity: 0.3;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-container > div {
  flex: 1;
  min-width: 250px;
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #f4f4f4;
  font-weight: 600;
}

p {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin: 5px 0;
}

.footer-links ul li a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 1rem;
  transition: var(--transition);
  display: inline-block;
  padding: 4px 0;
  position: relative;
}

.footer-links ul li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: width 0.3s ease;
}

.footer-links ul li a:hover {
  color: var(--primary-light);
  padding-left: 8px;
}

.footer-links ul li a:hover::after {
  width: 100%;
}

.footer-social .social-icons {
  display: flex;
  gap: 16px;
  font-size: 1.75rem;
}

.footer-social .social-icons a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.5rem;
  text-decoration: none;
  transition: var(--transition);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-social .social-icons a:hover {
  color: var(--primary-light);
  background: rgba(8, 174, 144, 0.2);
  border-color: rgba(11, 218, 180, 0.3);
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
}

/* Responsive Footer */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-container > div {
    min-width: 100%;
  }
  
  .footer-links ul li a {
    margin-left: 0;
  }
  
  .footer-social .social-icons {
    justify-content: center;
  }
  
  .footer-social .social-icons a {
    margin-left: 0;
  }
}
