/* Base styles and variables */
:root {
  --pink: #f2b6b4;
  --pink-light: #fad9d8;
  --pink-dark: #e79795;
  --purple: #4A2574;
  --dark: #191919;
  --dark-light: #333;
  --white: #ffffff;
  --gold: #d4af37;
  --gold-light: rgba(212, 175, 55, 0.3);
  --shadow-light: 0 2px 20px rgba(0, 0, 0, 0.08);
  --shadow-medium: 0 8px 30px rgba(0, 0, 0, 0.12);
  --shadow-heavy: 0 20px 60px rgba(0, 0, 0, 0.15);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  font-family: 'Lato', sans-serif;
  color: var(--dark);
  line-height: 1.7;
  background-color: var(--white);
  position: relative;
  min-height: 100vh;
  font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

a {
  text-decoration: none;
  color: var(--dark);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Fixed Quick Exit Bar */
.quick-exit-button {
  position: fixed !important;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 100%;
  height: 50px;
  background: #4A2574;
  color: #ffffff;
  text-align: center;
  padding: 0 10px;
  font-size: 18px;
  line-height: 50px;
  font-weight: 700;
  text-decoration: none;
  display: block;
  box-sizing: border-box;
  z-index: 99999;
  overflow: hidden;
}

.quick-exit-button:hover {
  background: #4A2574;
  color: #ffffff;
}

.quick-exit-button i {
  margin-left: 6px;
}

/* Fixed Crisis Bar */
.crisis-bar {
  position: fixed !important;
  top: 50px;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 100%;
  min-height: 45px;
  background: #e79795;
  color: #000000;
  text-align: center;
  padding: 10px 12px;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.4;
  box-sizing: border-box;
  z-index: 99998;
  overflow-wrap: break-word;
}

.crisis-bar a {
  color: #000000;
  font-weight: bold;
  text-decoration: underline;
}

/* Header Styles */
.header {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: var(--shadow-light);
  position: sticky;
  top: 95px;
  width: 100%;
  z-index: 1000;
  border-bottom: 1px solid rgba(242, 182, 180, 0.1);
  margin-top: 95px;
}
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.logo-container {
  flex: 0 0 240px;
  transition: transform 0.3s ease;
}

.logo-container:hover {
  transform: scale(1.02);
}

.logo {
  max-width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

/* Navigation */
.nav {
  display: flex;
  align-items: center;
}

.nav-links {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 2.5rem;
}

.nav-links a {
  color: var(--dark);
  font-weight: 500;
  position: relative;
  font-size: 1.1rem;
  padding: 0.5rem 0;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--pink-dark);
  transform: translateY(-2px);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--pink), var(--pink-dark));
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateX(-50%);
  border-radius: 2px;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.social-icon {
  color: var(--dark);
  font-size: 1.3rem;
  padding: 0.5rem;
  border-radius: 50%;
}

.social-icon:hover {
  color: var(--white);
  background-color: var(--pink);
  transform: translateY(-3px);
  box-shadow: var(--shadow-medium);
}

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.6rem;
  color: var(--dark);
  padding: 0.5rem;
  border-radius: 8px;
}

.hamburger:hover {
  color: var(--pink);
  background-color: rgba(242, 182, 180, 0.1);
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, 
    rgba(242, 182, 180, 0.15) 0%, 
    rgba(250, 217, 216, 0.8) 50%, 
    rgba(242, 182, 180, 0.12) 100%);
  padding: 6rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="60" height="60" viewBox="0 0 60 60"><circle cx="30" cy="30" r="25" fill="none" stroke="%23d4af37" stroke-width="0.3" opacity="0.4"/></svg>') repeat;
  opacity: 0.3;
  animation: float 20s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(180deg); }
}

.hero h1 {
  font-size: 3.2rem;
  color: var(--dark);
  margin-bottom: 1.5rem;
  font-weight: 700;
  position: relative;
  z-index: 2;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero .subtitle {
  font-size: 1.3rem;
  color: var(--dark-light);
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  font-weight: 400;
  opacity: 0.9;
}

.contact-hero {
  background: linear-gradient(135deg, 
    rgba(242, 182, 180, 0.18) 0%, 
    rgba(250, 217, 216, 0.9) 50%, 
    rgba(242, 182, 180, 0.15) 100%);
}

/* Content Section */
.content-section {
  padding: 5rem 0 2rem 0;
}

.content {
  max-width: 900px;
  margin: 0 auto 4rem;
}

.content p {
  margin-bottom: 2rem;
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--dark);
  font-weight: 400;
}

.content p:last-child {
  margin-bottom: 0;
}

/* Contact specific styles */
.contact-content {
  background: var(--white);
  padding: 3rem;
  border-radius: 16px;
  box-shadow: var(--shadow-light);
  border: 1px solid rgba(242, 182, 180, 0.1);
}

.contact-content h2 {
  font-size: 2.4rem;
  margin-bottom: 2rem;
  color: var(--dark);
  text-align: center;
}

.contact-details {
  margin-top: 3rem;
  display: grid;
  gap: 2rem;
}

.contact-item {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  padding: 1.5rem;
  background: rgba(242, 182, 180, 0.05);
  border-radius: 12px;
  border-left: 4px solid var(--pink);
}

.contact-item:hover {
  background: rgba(242, 182, 180, 0.1);
  transform: translateX(8px);
}

.contact-item strong {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--dark);
}

.contact-link {
  color: var(--pink-dark);
  font-weight: 500;
  font-size: 1.1rem;
  position: relative;
  display: inline-block;
}

.contact-link:hover {
  color: var(--dark);
  transform: translateX(5px);
}

.contact-link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--pink), var(--pink-dark));
  transition: width 0.3s ease;
}

.contact-link:hover::after {
  width: 100%;
}

/* Button Styles */
.button-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin: 2rem 0 1rem 0;
}

.button {
  display: inline-block;
  padding: 1.2rem 2.5rem;
  background: linear-gradient(135deg, var(--pink) 0%, var(--pink-dark) 100%);
  color: var(--white);
  border: none;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;
  text-align: center;
  box-shadow: 0 8px 25px rgba(242, 182, 180, 0.4);
  position: relative;
  overflow: hidden;
  transform: translateY(0);
  flex: 1;
  min-width: 280px;
  max-width: 320px;
}

.button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.button:hover::before {
  left: 100%;
}

.button:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(242, 182, 180, 0.5);
}

.button:active {
  transform: translateY(-2px);
}

/* Acknowledgment Section */
.acknowledgment {
  max-width: 800px;
  margin: 3rem auto 0;
  padding: 2rem;
  background: rgba(242, 182, 180, 0.08);
  border-radius: 12px;
  border-left: 4px solid var(--gold);
  text-align: center;
}

.acknowledgment p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--dark);
  font-style: italic;
  font-weight: 400;
  margin: 0;
}

/* Footer Styles */
.footer {
  background: linear-gradient(135deg, var(--pink-light) 0%, rgba(250, 217, 216, 0.8) 100%);
  padding: 3rem 0;
  margin-top: 1rem;
  border-top: 1px solid rgba(242, 182, 180, 0.2);
  backdrop-filter: blur(10px);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-text {
  color: var(--dark);
  font-size: 0.95rem;
  opacity: 0.8;
}

.footer-text p {
  margin-bottom: 0.5rem;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer .social-icon {
  color: var(--dark);
  font-size: 1.4rem;
  padding: 0.8rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
}

.footer .social-icon:hover {
  color: var(--white);
  background: var(--pink);
  transform: translateY(-3px);
  box-shadow: var(--shadow-medium);
}

/* Responsive Styles */
@media (max-width: 992px) {
  .hero h1 {
    font-size: 2.6rem;
  }
  
  .container {
    padding: 0 1.5rem;
  }

  .contact-content {
    padding: 2.5rem;
  }
}

@media (max-width: 768px) {
  .quick-exit-button {
    height: 44px;
    line-height: 44px;
    font-size: 15px;
    padding: 0 8px;
  }

  .crisis-bar {
    top: 44px;
    min-height: 56px;
    font-size: 16px;
    line-height: 1.25;
    padding: 7px 10px;
    white-space: normal;
  }

  .header {
  top: 92px;
  margin-top: 92px;
}
  .header-inner {
    padding: 1.2rem 1.5rem;
  }
  
  .logo-container {
    flex: 0 0 200px;
  }
  
  .hamburger {
  display: block;
  position: relative;
  z-index: 10000;
}
  
.nav-links {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;

    width: 100vw;
    height: 100vh;

    flex-direction: column;

    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(20px);

    padding: 120px 30px 30px;

    z-index: 9999;

    gap: 2rem;

    align-items: center;
    justify-content: flex-start;

    overflow-y: auto;

    transform: translateX(100%);
    transition: transform 0.3s ease;
}

.nav-links.active {
    transform: translateX(0);
}
  
  .hero {
    padding: 4rem 1.5rem;
  }
  
  .hero h1 {
    font-size: 2.2rem;
  }
  
  .hero .subtitle {
    font-size: 1.1rem;
  }
  
  .button-group {
    flex-direction: column;
    align-items: center;
  }
  
  .button {
    width: 100%;
    max-width: 350px;
    min-width: auto;
    flex: none;
  }
  
  .content p {
    font-size: 1.05rem;
    line-height: 1.7;
  }
  
  .footer-content {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }

  .contact-item {
    align-items: center;
    text-align: center;
  }

  .contact-content {
    padding: 2rem;
    margin: 1rem;
  }

  .content-section {
    padding: 3rem 0 1rem 0;
  }
}

@media (max-width: 480px) {
  .quick-exit-button {
    height: 40px;
    line-height: 40px;
    font-size: 14px;
    padding: 0 6px;
  }

 .crisis-bar {
  top: 40px;
  min-height: 58px;
  font-size: 16px;
  line-height: 1.25;
  padding: 7px 8px;
  white-space: normal;
}
  .header {
  top: 90px;
  margin-top: 90px;
}

  .nav-links {
    top: 90px;
    height: calc(100vh - 90px);
  }

  .logo-container {
    flex: 0 0 160px;
  }
  
  .hero h1 {
    font-size: 1.9rem;
  }

  .contact-content h2 {
    font-size: 2rem;
  }

  .hero {
    padding: 3rem 1rem;
  }

  .container {
    padding: 0 1rem;
  }
}

/* Added responsive styles for larger contact details on desktop */
@media (min-width: 768px) {
  .contact-item {
    flex-direction: row;
    align-items: center;
    gap: 1rem;
  }

  .contact-details {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (min-width: 992px) {
  .contact-details {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin: 3rem auto 0;
  }
}
@media (max-width: 768px) {
  .nav-links {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;

    width: 100vw !important;
    height: 100vh !important;
    min-height: 100vh !important;

    transform: translateX(100%) !important;
    transition: transform 0.3s ease !important;

    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);

    padding: 130px 30px 30px !important;
    z-index: 99999 !important;

    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 2rem !important;

    overflow-y: auto !important;
  }

  .nav-links.active {
    transform: translateX(0) !important;
    right: 0 !important;
  }

  .hamburger {
    position: relative !important;
    z-index: 100000 !important;
  }
}
