/* Theme Colors */
:root {
  --color-bg: #e8e2dd;
  --color-accent: #ff7f32;
  --color-primary: #4b5e86;
  --color-dark: #000000;
  --color-white: #fff;
}

html, body {
  height: 100%;
}
body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', 'Roboto', Arial, sans-serif;
  background: var(--color-bg);
  color: var(--color-dark);
  line-height: 1.6;
}

header {
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(75,94,134,0.07);
  background: var(--color-primary);
  padding: 0;
  margin: 0;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  width: 36px;
  height: 36px;
  cursor: pointer;
  margin: 0 auto 0 1rem;
  background: none;
  border: none;
  z-index: 1100;
}
.hamburger span {
  height: 4px;
  width: 100%;
  background: var(--color-white);
  margin: 5px 0;
  border-radius: 2px;
  transition: 0.3s;
}

nav {
  width: 100%;
  background: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 0;
  margin: 0;
}

nav a {
  color: var(--color-white);
  text-decoration: none;
  margin: 0 1.2rem;
  font-weight: 500;
  transition: color 0.2s;
}
nav a:hover {
  color: var(--color-accent);
}
nav a.active {
  color: var(--color-accent);
  font-weight: 700;
}

.nav-separator {
  display: inline-block;
  vertical-align: middle;
  width: 2px;
  height: 18px;
  background: var(--color-white);
  margin: 0 0.3rem;
  border-radius: 2px;
}

.container {
  max-width: 900px;
  margin: 2rem auto;
  background: var(--color-white);
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(75,94,134,0.08);
  padding: 2.5rem 2rem;
  flex: 1 0 auto;
}

h1, h2, h3 {
  color: var(--color-primary);
  margin-top: 0;
}

.button, button, input[type="submit"] {
  background: var(--color-accent);
  color: var(--color-white);
  border: none;
  border-radius: 5px;
  padding: 0.75rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}
.button:hover, button:hover, input[type="submit"]:hover {
  background: var(--color-primary);
}

footer {
  background: var(--color-dark);
  color: var(--color-white);
  text-align: center;
  padding: 1.5rem 0;
  margin-top: 3rem;
  flex-shrink: 0;
}

section {
  margin-bottom: 2.5rem;
}

input, textarea, select {
  width: 100%;
  padding: 0.7rem;
  margin: 0.5rem 0 1.2rem 0;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
  background: #f8f8f8;
}

label {
  font-weight: 500;
  color: var(--color-primary);
}

/* Carousel Styles */
.carousel {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 2rem auto 2.5rem auto;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(75,94,134,0.10);
  background: var(--color-bg);
  height: 550px;
}
.carousel-slide {
  display: none;
  width: 100%;
  height: 550px;
  object-fit: cover;
  border-radius: 12px;
}
.carousel-slide.active {
  display: block;
}
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  color: var(--color-primary);
  border: none;
  border-radius: 0;
  width: 48px;
  height: 48px;
  font-size: 2rem;
  cursor: pointer;
  opacity: 0.85;
  z-index: 2;
  transition: color 0.2s, opacity 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.carousel-arrow:hover {
  color: var(--color-accent);
  opacity: 1;
  background: none;
}
.carousel-arrow.left {
  left: 20px;
}
.carousel-arrow.right {
  right: 20px;
}
.carousel-indicators {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}
.carousel-indicator {
  width: 12px;
  height: 12px;
  background: var(--color-primary);
  border-radius: 50%;
  opacity: 0.5;
  cursor: pointer;
  border: 2px solid var(--color-white);
  transition: background 0.2s, opacity 0.2s;
}
.carousel-indicator.active {
  background: var(--color-accent);
  opacity: 1;
}
@media (max-width: 600px) {
  .carousel {
    max-width: 100%;
    height: 350px;
  }
  .carousel-slide {
    height: 350px;
  }
  .carousel-arrow {
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
    left: 8px;
    right: 8px;
    background: none;
    border-radius: 0;
  }
}

@media (max-width: 800px) {
  header {
    position: static;
    padding: 0;
    margin: 0;
    display: block;
    box-shadow: none;
  }
  
  nav {
    align-items: center;
    justify-content: center;
    padding: 0.25rem 0;
    flex-wrap: wrap;
    gap: 0.2rem;
  }
  
  nav a {
    margin: 0 0.2rem;
    font-size: 0.75rem;
    padding: 0.2rem 0.4rem;
    border-radius: 3px;
    background: transparent;
    transition: color 0.2s;
  }
  
  nav a:hover {
    color: var(--color-accent);
  }
  
  nav a.active {
    background: transparent;
    color: var(--color-accent);
    font-weight: 700;
  }
  
  .nav-separator {
    display: inline-block;
    width: 2px;
    height: 12px;
    background: var(--color-white);
    margin: 0 0.1rem;
    border-radius: 1px;
    opacity: 0.6;
  }
}

/* Map and Location Styles */
.map-container {
  margin: 1.5rem 0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(75,94,134,0.10);
}

.map-container iframe {
  display: block;
  width: 100%;
  height: 400px;
  border: none;
}

.location-info {
  background: var(--color-bg);
  padding: 1.5rem;
  border-radius: 8px;
  margin-top: 1rem;
  border-left: 4px solid var(--color-accent);
}

.location-info h3 {
  margin-top: 0;
  color: var(--color-primary);
  margin-bottom: 1rem;
}

.location-info p {
  margin: 0.5rem 0;
  line-height: 1.6;
}

.location-info strong {
  color: var(--color-primary);
  font-weight: 600;
}

@media (max-width: 600px) {
  .map-container iframe {
    height: 300px;
  }
  
  .location-info {
    padding: 1rem;
  }
}

/* Partner Banner Styles */
.partner-banner {
  text-align: center;
  margin: 2rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.partnership-text {
  color: var(--color-primary);
  font-weight: 600;
  font-size: 1.1rem;
  margin-right: 1rem;
}

.partner-banner img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
}

.partner-banner a {
  display: inline-block;
  transition: transform 0.2s;
}

.partner-banner a:hover {
  transform: scale(1.02);
}

@media (max-width: 768px) {
  .partner-banner {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .partnership-text {
    margin-right: 0;
    margin-bottom: 0.5rem;
  }
}

/* Recovery Options Styles */
.recovery-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin: 2rem 0;
}

.option-card {
  background: var(--color-bg);
  padding: 2rem;
  border-radius: 8px;
  border: 2px solid var(--color-primary);
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}

.option-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(75,94,134,0.15);
}

.option-card h3 {
  color: var(--color-primary);
  margin-bottom: 1rem;
}

.option-card p {
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.service-info {
  background: var(--color-bg);
  padding: 2rem;
  border-radius: 8px;
  margin-top: 2rem;
  border-left: 4px solid var(--color-accent);
}

.service-info h3 {
  color: var(--color-primary);
  margin-bottom: 1rem;
}

.service-info ul {
  margin: 0;
  padding-left: 1.5rem;
}

.service-info li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

#iframeFormContainer {
  margin-top: 2rem;
  padding: 2rem;
  background: var(--color-bg);
  border-radius: 8px;
  border: 2px solid var(--color-primary);
}

@media (max-width: 768px) {
  .recovery-options {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .option-card {
    padding: 1.5rem;
  }
}

/* Contact Page Styles */
.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.contact-item {
  background: var(--color-bg);
  padding: 1.5rem;
  border-radius: 8px;
  border: 2px solid var(--color-primary);
  text-align: center;
  transition: transform 0.2s;
  box-shadow: 0 2px 8px rgba(75,94,134,0.10);
}

.contact-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(75,94,134,0.15);
}

.contact-item h3 {
  color: var(--color-primary);
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.contact-item p {
  margin: 0.5rem 0;
  line-height: 1.6;
}

.contact-item a {
  color: var(--color-accent);
  text-decoration: none;
  font-weight: 600;
}

.contact-item a:hover {
  text-decoration: underline;
}

.emergency-contact {
  background: linear-gradient(135deg, var(--color-accent), #ff6b35);
  color: var(--color-white);
  padding: 2rem;
  border-radius: 8px;
  margin-top: 2rem;
  text-align: center;
  box-shadow: 0 4px 16px rgba(255,127,50,0.20);
}

.emergency-contact h3 {
  color: var(--color-white);
  margin-bottom: 1rem;
}

.emergency-contact p {
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.emergency-contact .button {
  background: var(--color-white);
  color: var(--color-accent);
  border: 2px solid var(--color-white);
}

.emergency-contact .button:hover {
  background: transparent;
  color: var(--color-white);
}

@keyframes shake {
  0% { transform: translateX(0) rotate(0deg); }
  8%, 24%, 40%, 56%, 72% { transform: translateX(-8px) rotate(-3deg); }
  16%, 32%, 48%, 64%, 80% { transform: translateX(8px) rotate(3deg); }
  100% { transform: translateX(0) rotate(0deg); }
}
.emergency-contact .shake {
  display: inline-block;
  animation: shake 1.1s cubic-bezier(.36,.07,.19,.97) 1.2s infinite;
}

/* FAQ Styles */
.faq-item {
  background: var(--color-bg);
  padding: 1.5rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  border-left: 4px solid var(--color-primary);
  transition: transform 0.2s;
}

.faq-item:hover {
  transform: translateX(5px);
}

.faq-item h3 {
  color: var(--color-primary);
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.faq-item p {
  margin: 0;
  line-height: 1.6;
  color: var(--color-dark);
}

/* Hero Info Styles */
.hero-info {
  margin: 2rem 0;
}

.hero-info h2 {
  color: var(--color-primary);
  margin-bottom: 1.5rem;
  font-size: 2rem;
  text-align: center;
}

.hero-info h2 .logo {
  max-width: 300px; /* Adjust as needed */
  height: auto;
  vertical-align: middle;
}


.hero-info h3 {
  color: var(--color-primary);
  margin: 2rem 0 1rem 0;
  font-size: 1.3rem;
}

.hero-info p {
  line-height: 1.8;
  margin-bottom: 1.5rem;
  color: var(--color-dark);
}

@media (max-width: 768px) {
  .hero-info h2 {
    font-size: 1.5rem;
  }
  
  .hero-info h3 {
    font-size: 1.1rem;
  }
} 

.service-card {
  background: #f7f9fb;
  border: 1.5px solid var(--color-primary);
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(75,94,134,0.07);
  padding: 1.5rem 1.5rem 1.2rem 1.5rem;
  margin: 1.5rem 0 2.5rem 0;
  transition: box-shadow 0.2s, transform 0.2s;
}
.service-card:hover {
  box-shadow: 0 6px 24px rgba(75,94,134,0.13);
  transform: translateY(-2px) scale(1.01);
} 
.hero-logo-wrapper {
  text-align: center;
  margin-bottom: 1.5rem;
}

.hero-logo {
  max-width: 300px;
  height: auto;
}




