/* Support Page Variables */
:root {
  --primary-brown: #6b4423;
  --gold-accent: #d4a574;
  --cream-white: #faf8f5;
  --text-dark: #2c1810;
  --text-light: #666;
  --red-accent: #8b3a3a;
  --green-accent: #5a7c65;
  --shadow-light: rgba(107, 68, 35, 0.1);
  --shadow-medium: rgba(107, 68, 35, 0.2);
  --gradient-primary: linear-gradient(135deg, var(--primary-brown), var(--gold-accent));
  
  /* Additional variables for search box */
  --primary-light: #fefefe;
  --brown-medium: #6b4423;
  --brown-light: #8b7355;
  --text-primary: #2c1810;
  --text-muted: #6b4423;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Hero Section */
.supportHero {
  position: relative;
  height: 70vh;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.heroBackground {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.heroBackgroundImg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.heroOverlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:  linear-gradient(135deg,   #8b7355 0%,  #6b5a47 100%);
  z-index: 2;
}

.heroContent {
  position: relative;
  z-index: 3;
  text-align: center;
  color: white;
  max-width: 800px;
  padding: 0 20px;
}

.heroTitle {
  font-family: "Playfair Display", serif;
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.heroSubtitle {
  font-size: 1.3rem;
  margin-bottom: 2.5rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
}

/* Main Search Bar (from sessionsTherapy.php) */
.main-search {
  position: relative;
  max-width: 600px;
  margin: 0 auto;
}

.search-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.search-input {
  width: 100%;
  padding: 1.25rem 4rem 1.25rem 1.5rem;
  font-size: 1rem;
  border: none;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  color: var(--text-primary);
  font-weight: 500;
}

.search-input::placeholder {
  color: var(--text-muted);
  opacity: 0.7;
}

.search-input:focus {
  background: white;
  outline: none;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3),
              0 0 0 2px rgba(212, 175, 55, 0.2);
}

.search-btn {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  background: linear-gradient(135deg, var(--brown-medium) 0%, var(--brown-light) 100%);
  color: var(--primary-light);
  border: none;
  width: 2.9rem;
  height: 2.9rem;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 3;
}

.search-btn:hover {
  background: linear-gradient(135deg, var(--brown-medium) 0%, var(--brown-light) 100%);
  color: #fff;
  transform: translateY(-50%) translateY(-2px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}

.search-btn i {
  font-size: 1rem;
}

/* Quick Help Section */
.quickHelp {
  padding: 80px 0;
  background: var(--cream-white);
}

.quickHelpGrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.helpCard {
  background: white;
  padding: 40px 30px;
  border-radius: 3px;
  text-align: center;
  box-shadow: 0 5px 25px var(--shadow-light);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.helpCard:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px var(--shadow-medium);
  border-color: var(--gold-accent);
}

.helpCardIcon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg,   #8b7355 0%,  #6b5a47 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 2rem;
  color: white;
}

.helpCard h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  color: var(--text-dark);
  margin-bottom: 15px;
  font-weight: 600;
}

.helpCard p {
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 25px;
}

.helpCardLink {
  color: var(--primary-brown);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.helpCardLink:hover {
  color:linear-gradient(135deg,   #8b7355 0%,  #6b5a47 100%);
  gap: 12px;
}

/* Section Headers */
.sectionHeader {
  text-align: center;
  margin-bottom: 60px;
}

.sectionTitle {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  color: var(--text-dark);
  margin-bottom: 15px;
  font-weight: 700;
}

.sectionSubtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

/* FAQ Section */
.faqSection {
  padding: 80px 0;
  background: white;
}

.faqContainer {
  max-width: 800px;
  margin: 0 auto;
}

.faqItem {
  border: 2px solid #f0f0f0;
  border-radius: 3px;
  margin-bottom: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faqItem:hover {
  border-color:  linear-gradient(135deg,   #8b7355 0%,  #6b5a47 100%);
}

.faqQuestion {
  width: 100%;
  background: white;
  border: none;
  padding: 25px 30px;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
  transition: all 0.3s ease;
}

.faqQuestion:hover {
  background: #f9f9f9;
}

.faqQuestion i {
  color: var(--primary-brown);
  transition: all 0.3s ease;
}

.faqAnswer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.4s ease;
  background: #f9f9f9;
}

.faqItem.active .faqAnswer {
  max-height: 500px;
  opacity: 1;
  transform: translateY(0);
}

.faqAnswer p {
  padding: 25px 30px;
  margin: 0;
  color: var(--text-light);
  line-height: 1.7;
}

/* Contact Section */
.contactSection {
  padding: 80px 0;
  background: var(--cream-white);
}

.contactGrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contactInfo .sectionHeader {
  text-align: left;
  margin-bottom: 40px;
}

.contactMethods {
  display: grid;
  gap: 30px;
}

.contactMethod {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 25px;
  background: white;
  border-radius: 3px;
  box-shadow: 0 5px 20px var(--shadow-light);
  transition: all 0.3s ease;
}

.contactMethod:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px var(--shadow-medium);
}

.contactMethodIcon {
  width: 50px;
  height: 50px;
  background:  linear-gradient(135deg,   #8b7355 0%,  #6b5a47 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contactMethodContent h4 {
  font-family: "Playfair Display", serif;
  color: var(--text-dark);
  margin-bottom: 8px;
  font-weight: 600;
}

.contactMethodContent p {
  color: linear-gradient(135deg,   #8b7355 0%,  #6b5a47 100%);
  font-weight: 600;
  margin-bottom: 5px;
}

.responseTime {
  color: var(--text-light);
  font-size: 0.9rem;
}

/* Contact Form */
.contactForm {
  background: white;
  padding: 40px;
  border-radius: 3px;
  box-shadow: 0 10px 30px var(--shadow-light);
}

.formHeader {
  margin-bottom: 30px;
}

.formHeader h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  color: var(--text-dark);
  margin-bottom: 10px;
  font-weight: 600;
}

.formHeader p {
  color: var(--text-light);
  line-height: 1.6;
}

.supportForm {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.formRow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.formGroup {
  display: flex;
  flex-direction: column;
}

.formGroup label {
  margin-bottom: 8px;
  color: var(--text-dark);
  font-weight: 600;
}

.formGroup input,
.formGroup select,
.formGroup textarea {
  padding: 15px;
  border: 2px solid #e0e0e0;
  border-radius: 3px;
  font-size: 1rem;
  transition: all 0.3s ease;
  font-family: inherit;
}

.formGroup input:focus,
.formGroup select:focus,
.formGroup textarea:focus {
  outline: none;
  border-color: linear-gradient(135deg,   #8b7355 0%,  #6b5a47 100%);
  box-shadow: 0 0 0 3px rgba(212, 165, 116, 0.1);
}

.formGroup textarea {
  resize: vertical;
  min-height: 120px;
}

.submitBtn {
  background:  linear-gradient(135deg,   #8b7355 0%,  #6b5a47 100%);
  color: white;
  border: none;
  padding: 18px 30px;
  border-radius: 3px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s ease;
  margin-top: 10px;
}

.submitBtn:hover {
  background: linear-gradient(135deg,   #8b7355 0%,  #6b5a47 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px var(--shadow-medium);
}

/* Resources Section */
.resourcesSection {
  padding: 80px 0;
  background: white;
}

.resourcesGrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.resourceCard {
  background: var(--cream-white);
  padding: 35px 25px;
  border-radius: 3px;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.resourceCard:hover {
  transform: translateY(-5px);
  border-color:  linear-gradient(135deg,   #8b7355 0%,  #6b5a47 100%);
  box-shadow: 0 10px 30px var(--shadow-light);
}

.resourceIcon {
  width: 60px;
  height: 60px;
  background:  linear-gradient(135deg,   #8b7355 0%,  #6b5a47 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.5rem;
  color: white;
}

.resourceCard h4 {
  font-family: "Playfair Display", serif;
  color: var(--text-dark);
  margin-bottom: 15px;
  font-weight: 600;
  font-size: 1.3rem;
}

.resourceCard p {
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 20px;
}

.resourceLink {
  color: var(--primary-brown);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.resourceLink:hover {
  color: var(--gold-accent);
}

/* Footer Styles */
.footer {
  font-family: "Inter", sans-serif;
  position: relative;
  background-image:url(../image/fb0e872e-e7a1-4c35-9eff-5bca0ce50d34.png);
  background-size: cover;
  background-position: center center ;
  background-repeat: no-repeat;
  color: white;
  padding: 60px 0 30px;
  width: 100%;

}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(40, 39, 39, 0.8);
  z-index: 1;
}

.footer-content,
.footer-bottom {
  position: relative;
  z-index: 2;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.footer-section h2,.footer-section h3{
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  color: white;
}

.footer-section p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 20px;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 12px;
}

.footer-section ul li a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: white;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.social-links a {
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  font-size: 16px;
  transition: background 0.3s ease;
  position: relative;
}

.social-links a svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.social-links a:hover {
  background: rgba(255, 255, 255, 0.2);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}

.contact-icon {
  width: 16px;
  height: 16px;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-icon svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 40px;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  padding-left: 40px;
  padding-right: 40px;
}

.footer-bottom p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

.footer-links {
  display: flex;
  gap: 30px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
  .heroTitle {
    font-size: 2.5rem;
  }
  
  .heroSubtitle {
    font-size: 1.1rem;
  }
  
  .heroSearchBox {
    flex-direction: column;
    border-radius: 3px;
  }
  
  .heroSearchBtn {
    border-radius: 0 0 3px 3px;
  }
  
  .quickHelpGrid {
    grid-template-columns: 1fr;
  }
  
  .contactGrid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .contactInfo .sectionHeader {
    text-align: center;
  }
  
  .formRow {
    grid-template-columns: 1fr;
  }
  
  .contactForm {
    padding: 25px;
  }
  
  .resourcesGrid {
    grid-template-columns: 1fr;
  }
  
  .sectionTitle {
    font-size: 2rem;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 30px;
    padding: 0 20px;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    padding-left: 20px;
    padding-right: 20px;
  }
  
  .footer-links {
    justify-content: center;
  }
}
