/* Variables */
:root {
  /* Main Colors - Split Complementary Scheme */
  --primary-color: #ff4500; /* Vibrant Orange-Red */
  --primary-dark: #d63800;
  --primary-light: #ff6a33;

  --secondary-color: #00b3e6; /* Cyan */
  --secondary-dark: #0090b3;
  --secondary-light: #33c9ff;

  --tertiary-color: #8a2be2; /* Purple */
  --tertiary-dark: #6a21af;
  --tertiary-light: #a355e8;

  /* Neutral Colors */
  --dark: #222222;
  --medium-dark: #444444;
  --medium: #666666;
  --medium-light: #999999;
  --light: #eeeeee;
  --white: #ffffff;

  /* Gradient Backgrounds */
  --gradient-primary: linear-gradient(
    135deg,
    var(--primary-color),
    var(--tertiary-color)
  );
  --gradient-secondary: linear-gradient(
    135deg,
    var(--secondary-color),
    var(--tertiary-color)
  );
  --gradient-overlay: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.3));

  /* Typography */
  --heading-font: "Roboto", sans-serif;
  --body-font: "Lato", sans-serif;

  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 3rem;
  --spacing-xl: 5rem;

  /* Border Radius */
  --border-radius-sm: 4px;
  --border-radius-md: 8px;
  --border-radius-lg: 16px;
  --border-radius-xl: 24px;

  /* Box Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.2);

  /* Transitions */
  --transition-fast: 0.2s ease-out;
  --transition-medium: 0.3s ease-in-out;
  --transition-slow: 0.5s ease-in-out;

  /* Container Width */
  --container-width: 1200px;
  --container-padding: 2rem;
}

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--body-font);
  color: var(--dark);
  line-height: 1.6;
  background-color: var(--white);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--heading-font);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: var(--spacing-md);
  color: var(--dark);
}

h1 {
  font-size: 3.5rem;
}

h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 2rem;
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
}

p {
  margin-bottom: var(--spacing-sm);
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--primary-dark);
}

img {
  max-width: 100%;
  height: auto;
}

ul,
ol {
  margin-bottom: var(--spacing-md);
  padding-left: var(--spacing-md);
}

/* Container */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

/* Section Styles */
.section {
  padding: var(--spacing-xl) 0;
  position: relative;
}

.section-title {
  text-align: center;
  margin-bottom: var(--spacing-lg);
  position: relative;
  padding-bottom: var(--spacing-sm);
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--gradient-primary);
  border-radius: var(--border-radius-sm);
}

.section-subtitle {
  text-align: center;
  color: var(--medium);
  font-size: 1.2rem;
  margin-top: -1.5rem;
  margin-bottom: var(--spacing-lg);
}

/* Button Styles */
.btn,
button,
input[type="submit"] {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: var(--primary-color);
  color: var(--white);
  border: none;
  border-radius: var(--border-radius-md);
  font-family: var(--heading-font);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-medium);
  text-align: center;
}

.btn:hover,
button:hover,
input[type="submit"]:hover {
  background-color: var(--primary-dark);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  color: var(--white);
}

.btn-primary {
  background-color: var(--primary-color);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
}

.btn-secondary {
  background-color: var(--secondary-color);
}

.btn-secondary:hover {
  background-color: var(--secondary-dark);
}

.btn-tertiary {
  background-color: var(--tertiary-color);
}

.btn-tertiary:hover {
  background-color: var(--tertiary-dark);
}

.btn-small {
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
}

.btn-large {
  padding: 1rem 2rem;
  font-size: 1.1rem;
}

.btn-outline {
  background-color: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
}

.btn-outline:hover {
  background-color: var(--primary-color);
  color: var(--white);
}

.btn-social {
  background-color: var(--secondary-color);
  color: var(--white);
}

.btn-social:hover {
  background-color: var(--secondary-dark);
}

/* Header & Navigation */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(10px);
  transition: all var(--transition-medium);
}

.header.scrolled {
  background-color: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-md);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.logo {
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 1.8rem;
  color: var(--primary-color);
  transition: color var(--transition-fast);
}

.logo a {
  color: inherit;
  text-decoration: none;
}

.logo:hover {
  color: var(--primary-dark);
}

.main-nav .nav-list {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
}

.main-nav .nav-list li {
  margin-left: var(--spacing-md);
}

.main-nav .nav-list a {
  color: var(--dark);
  font-weight: 500;
  position: relative;
  padding-bottom: 5px;
}

.main-nav .nav-list a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: width var(--transition-medium);
}

.main-nav .nav-list a:hover {
  color: var(--primary-color);
}

.main-nav .nav-list a:hover::after {
  width: 100%;
}

.burger-menu {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
  cursor: pointer;
}

.burger-menu span {
  display: block;
  height: 3px;
  background-color: var(--dark);
  border-radius: 3px;
  transition: all var(--transition-medium);
}

/* Hero Section */
.hero {
  position: relative;
  padding: 0;
  margin-top: 80px;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-overlay);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  text-align: center;
  margin: 0 auto;
  padding: var(--spacing-lg);
}

.hero h1 {
  color: var(--white);
  margin-bottom: var(--spacing-md);
  font-size: 4rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 1.2s ease-out;
}

.hero p {
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: var(--spacing-lg);
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 1.5s ease-out;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: var(--spacing-sm);
  animation: fadeInUp 1.8s ease-out;
}

/* Services Section */
.services {
  background-color: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-lg);
}

.card {
  background-color: var(--white);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-medium),
    box-shadow var(--transition-medium);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.card-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.card:hover .card-image img {
  transform: scale(1.05);
}

.card-content {
  padding: var(--spacing-md);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.card-content h3 {
  font-size: 1.5rem;
  margin-bottom: var(--spacing-sm);
  color: var(--dark);
}

.card-content p {
  color: var(--medium);
  margin-bottom: var(--spacing-sm);
}

/* Portfolio Section */
.portfolio {
  background-color: var(--light);
}

.portfolio-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-lg);
}

.filter-btn {
  background-color: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  padding: 0.5rem 1rem;
  border-radius: var(--border-radius-md);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.filter-btn:hover,
.filter-btn.active {
  background-color: var(--primary-color);
  color: var(--white);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--spacing-md);
}

.portfolio-item {
  opacity: 1;
  transition: opacity var(--transition-medium);
}

.portfolio-item.hidden {
  display: none;
  opacity: 0;
}

/* Testimonials Section */
.testimonials {
  background-color: var(--white);
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 300px;
  background: linear-gradient(
    180deg,
    rgba(138, 43, 226, 0.05) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  z-index: 0;
}

.testimonials-slider {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.testimonial-card {
  background-color: var(--white);
  border-radius: var(--border-radius-lg);
  padding: var(--spacing-md);
  box-shadow: var(--shadow-md);
  margin-bottom: var(--spacing-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.testimonial-image {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: var(--spacing-md);
  border: 4px solid var(--primary-color);
}

.testimonial-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-text {
  font-style: italic;
  color: var(--medium-dark);
  margin-bottom: var(--spacing-md);
  position: relative;
}

.testimonial-text::before,
.testimonial-text::after {
  content: '"';
  font-size: 2rem;
  color: var(--primary-light);
  position: absolute;
}

.testimonial-text::before {
  top: -10px;
  left: -15px;
}

.testimonial-text::after {
  bottom: -10px;
  right: -15px;
}

.testimonial-author {
  font-weight: 700;
  color: var(--dark);
  margin-bottom: var(--spacing-xs);
}

.testimonial-stars {
  color: var(--primary-color);
  font-size: 1.2rem;
  margin-bottom: var(--spacing-sm);
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: var(--spacing-xs);
  margin-top: var(--spacing-md);
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--medium-light);
  cursor: pointer;
  transition: background-color var(--transition-fast);
}

.dot.active {
  background-color: var(--primary-color);
}

/* Insights Section */
.insights {
  background-color: var(--light);
}

.insights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-lg);
}

.insight-card {
  height: 100%;
}

/* Resources Section */
.resources {
  background-color: var(--white);
}

.resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-lg);
}

.resource-card {
  height: 100%;
}

/* Partners Section */
.partners {
  background-color: var(--light);
  text-align: center;
}

.partners-slider {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--spacing-lg);
}

.partner-logo {
  flex: 0 0 auto;
  padding: var(--spacing-sm);
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all var(--transition-medium);
  max-width: 150px;
}

.partner-logo:hover {
  filter: grayscale(0%);
  opacity: 1;
}

.partner-logo img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* Events Section */
.events {
  background-color: var(--white);
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-lg);
}

.event-card {
  height: 100%;
}

.event-date {
  display: inline-block;
  background-color: var(--primary-color);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: var(--border-radius-md);
  margin-bottom: var(--spacing-sm);
  font-weight: 600;
}

/* Contact Section */
.contact {
  background-color: var(--light);
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-lg);
}

.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--spacing-md);
}

.info-item {
  margin-bottom: var(--spacing-md);
}

.info-item h3 {
  font-size: 1.2rem;
  margin-bottom: var(--spacing-xs);
  color: #1a1a1a;
}

.info-item p {
  color: #1a1a1a !important;
} 

.map-container {
  grid-column: 1 / -1;
  height: 300px;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.map-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-form {
  background-color: var(--white);
  padding: var(--spacing-lg);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
}

.contact-form h3 {
  text-align: center;
  margin-bottom: var(--spacing-md);
  color: var(--primary-color);
}

.form-group {
  margin-bottom: var(--spacing-md);
}

.form-group label {
  display: block;
  margin-bottom: var(--spacing-xs);
  font-weight: 600;
  color: var(--dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--medium-light);
  border-radius: var(--border-radius-md);
  font-family: var(--body-font);
  transition: border-color var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
}

.form-check {
  display: flex;
  align-items: center;
  gap: var(--spacing-xs);
  margin-bottom: var(--spacing-md);
}

.form-check input[type="checkbox"] {
  width: auto;
  margin-right: var(--spacing-xs);
}

.form-check label {
  margin-bottom: 0;
  font-weight: 400;
}

/* Footer */
.footer {
  background-color: var(--dark);
  color: var(--light);
  padding: var(--spacing-xl) 0 var(--spacing-md);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-lg);
}

.footer-info {
  margin-bottom: var(--spacing-md);
}

.footer-logo h3 {
  color: var(--white);
  margin-bottom: var(--spacing-sm);
}

.footer-links h4 {
  color: var(--white);
  margin-bottom: var(--spacing-md);
  position: relative;
  padding-bottom: var(--spacing-xs);
}

.footer-links h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background-color: var(--primary-color);
}

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

.footer-links li {
  margin-bottom: var(--spacing-xs);
}

.footer-links a {
  color: var(--medium-light);
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--primary-color);
}

.footer-social h4 {
  color: var(--white);
  margin-bottom: var(--spacing-md);
  position: relative;
  padding-bottom: var(--spacing-xs);
}

.footer-social h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background-color: var(--primary-color);
}

.social-links {
  display: flex;
  gap: var(--spacing-md);
}

.social-links a {
  color: var(--medium-light);
  transition: color var(--transition-fast);
}

.social-links a:hover {
  color: var(--primary-color);
}

.footer-bottom {
  text-align: center;
  padding-top: var(--spacing-md);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--medium-light);
}

.footer-bottom p {
  margin-bottom: 0;
}

.footer-bottom a {
  color: var(--medium-light);
}

.footer-bottom a:hover {
  color: var(--primary-color);
}

/* Legal Pages */
.legal-hero {
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  margin-top: 80px;
}

.legal-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-overlay);
  z-index: 1;
}

.legal-hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
}

.legal-content {
  padding-top: 100px;
}

.legal-document {
  background-color: var(--white);
  border-radius: var(--border-radius-lg);
  padding: var(--spacing-lg);
  box-shadow: var(--shadow-md);
}

.last-updated {
  text-align: right;
  color: var(--medium);
  margin-bottom: var(--spacing-md);
  font-style: italic;
}

.legal-section {
  margin-bottom: var(--spacing-lg);
}

.legal-section h2 {
  color: var(--primary-color);
  border-bottom: 1px solid var(--light);
  padding-bottom: var(--spacing-xs);
  margin-bottom: var(--spacing-md);
}

.legal-section h3 {
  color: var(--dark);
  margin-top: var(--spacing-md);
  margin-bottom: var(--spacing-sm);
}

/* Success Page */
.success-message {

  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
 
}

.success-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 800px;
  margin: 0 auto;
}

.success-icon {
  margin-bottom: var(--spacing-md);
}

.success-buttons {
  display: flex;
  justify-content: center;
  gap: var(--spacing-md);
  margin-top: var(--spacing-lg);
}

.steps-container {
  max-width: 800px;
  margin: 0 auto;
}

.step-item {
  display: flex;
  margin-bottom: var(--spacing-lg);
  position: relative;
}

.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: var(--primary-color);
  color: var(--white);
  border-radius: 50%;
  font-weight: 700;
  font-size: 1.5rem;
  margin-right: var(--spacing-md);
  flex-shrink: 0;
}

.step-content {
  flex-grow: 1;
}

.step-content h3 {
  margin-bottom: var(--spacing-xs);
}

/* About Page */
.about-hero {
  height: 500px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 80px;
}

.about-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-overlay);
  z-index: 1;
}

.about-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
}

.story-content,
.mission-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-lg);
  align-items: center;
}

.facilities-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-lg);
  align-items: start;
}

.facilities-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-sm);
}

.certifications-grid,
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-lg);
}

.certification-item {
  text-align: center;
  padding: var(--spacing-md);
  background-color: var(--white);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-sm);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: var(--spacing-md);
  border: 1px solid var(--light);
  border-radius: var(--border-radius-md);
  overflow: hidden;
}

.faq-question {
  padding: var(--spacing-md);
  background-color: var(--light);
  font-weight: 600;
  cursor: pointer;
  position: relative;
  transition: background-color var(--transition-fast);
}

.faq-question:hover {
  background-color: #e6e6e6;
}

.faq-answer {
  padding: 0 var(--spacing-md);
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-medium),
    padding var(--transition-medium);
}

.faq-item.active .faq-answer {
  padding: var(--spacing-md);
  max-height: 500px;
}

.contact-cta {
  background: var(--gradient-primary);
  color: var(--white);
  text-align: center;
  padding: var(--spacing-xl) 0;
}

.contact-cta h2 {
  color: var(--white);
  margin-bottom: var(--spacing-md);
}

.contact-cta p {
  margin-bottom: var(--spacing-lg);
  font-size: 1.2rem;
}

/* Cookie Consent */
#cookie-consent {
  background-color: rgba(0, 0, 0, 0.85);
  color: white;
  padding: 15px;
  text-align: center;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
}

#accept-cookies {
  background: var(--primary-color);
  color: white;
  border: none;
  padding: 8px 15px;
  margin: 10px;
  cursor: pointer;
  border-radius: 4px;
  transition: background-color var(--transition-fast);
}

#accept-cookies:hover {
  background-color: var(--primary-dark);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Responsive Styles */
@media (max-width: 1200px) {
  :root {
    --container-padding: 1.5rem;
  }

  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 2.25rem;
  }

  h3 {
    font-size: 1.75rem;
  }
}

@media (max-width: 992px) {
  h1 {
    font-size: 2.75rem;
  }

  .contact-container,
  .story-content,
  .mission-content,
  .facilities-content {
    grid-template-columns: 1fr;
  }

  .story-content > *:first-child,
  .mission-content > *:first-child {
    order: 0;
  }

  .social-links {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--spacing-xs);
  }
}

@media (max-width: 768px) {
  :root {
    --container-padding: 1rem;
  }

  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
  }

  h3 {
    font-size: 1.5rem;
  }

  .section {
    padding: var(--spacing-lg) 0;
  }

  .burger-menu {
    display: flex;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--white);
    box-shadow: var(--shadow-md);
    padding: 1rem 0;
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    transition: clip-path var(--transition-medium);
  }

  .main-nav.active {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }

  .main-nav .nav-list {
    flex-direction: column;
    align-items: center;
  }

  .main-nav .nav-list li {
    margin: 0.5rem 0;
  }

  .portfolio-filters {
    flex-wrap: wrap;
  }

  .testimonial-card {
    flex-direction: column;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  h1 {
    font-size: 2.25rem;
  }

  .hero-buttons {
    flex-direction: column;
    gap: var(--spacing-sm);
  }

  .success-buttons {
    flex-direction: column;
    gap: var(--spacing-sm);
  }

  .facilities-gallery {
    grid-template-columns: 1fr;
  }
}

/* FAQ Section */
.faq-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  position: relative;
  overflow: hidden;
}

.faq-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="tattoo" patternUnits="userSpaceOnUse" width="50" height="50"><circle cx="25" cy="25" r="2" fill="%23ff6b6b" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23tattoo)"/></svg>')
    repeat;
  opacity: 0.3;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}

.section-title h2 {
  font-size: 3rem;
  color: #ff6b6b;
  margin-bottom: 15px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  font-weight: 700;
  letter-spacing: 2px;
}

.section-title p {
  font-size: 1.2rem;
  color: #ccc;
  max-width: 600px;
  margin: 0 auto;
}

.faq-container {
  position: relative;
  z-index: 1;
}

.faq-item {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 107, 107, 0.2);
  border-radius: 15px;
  margin-bottom: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: #ff6b6b;
  box-shadow: 0 10px 30px rgba(255, 107, 107, 0.2);
  transform: translateY(-5px);
}

.faq-question {
  padding: 25px 30px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(
    135deg,
    rgba(255, 107, 107, 0.1) 0%,
    rgba(255, 107, 107, 0.05) 100%
  );
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: linear-gradient(
    135deg,
    rgba(255, 107, 107, 0.2) 0%,
    rgba(255, 107, 107, 0.1) 100%
  );
}

.faq-question h3 {
  color: #fff;
  font-size: 1.3rem;
  font-weight: 600;
  flex: 1;
  margin-right: 20px;
}

.faq-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #ff6b6b;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
  font-weight: bold;
  color: white;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: rgba(0, 0, 0, 0.3);
}

.faq-answer.active {
  max-height: 300px;
}

.faq-answer-content {
  padding: 30px;
  color: #ddd;
  font-size: 1.1rem;
  line-height: 1.8;
}

/* Jobs Section */
.jobs-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
  position: relative;
}

.jobs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.job-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(15px);
  border: 2px solid transparent;
  border-radius: 20px;
  padding: 40px 30px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.job-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ff6b6b, #ffd93d, #6bcf7f);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.job-card:hover::before {
  transform: scaleX(1);
}

.job-card:hover {
  border-color: #ff6b6b;
  box-shadow: 0 20px 40px rgba(255, 107, 107, 0.3);
  transform: translateY(-10px);
}

.job-title {
  color: #ff6b6b;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.job-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #ff6b6b, #ff8e8e);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.job-description {
  color: #ccc;
  margin-bottom: 25px;
  font-size: 1.1rem;
  line-height: 1.7;
}

.job-requirements {
  margin-bottom: 30px;
}

.job-requirements h4 {
  color: #fff;
  margin-bottom: 15px;
  font-size: 1.2rem;
  font-weight: 600;
}

.job-requirements ul {
  list-style: none;
  color: #ddd;
}

.job-requirements li {
  padding: 8px 0;
  position: relative;
  padding-left: 25px;
  font-size: 1rem;
}

.job-requirements li::before {
  content: "●";
  color: #ff6b6b;
  position: absolute;
  left: 0;
  font-size: 1.2rem;
}

.apply-btn {
  background: linear-gradient(135deg, #ff6b6b, #ff8e8e);
  color: white;
  border: none;
  padding: 15px 30px;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  width: 100%;
}

.apply-btn:hover {
  background: linear-gradient(135deg, #ff5252, #ff6b6b);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(255, 107, 107, 0.4);
}

/* Contact Info */
.contact-info {
  background: rgba(255, 107, 107, 0.1);
  border-radius: 15px;
  padding: 30px;
  margin-top: 50px;
  text-align: center;
  border: 1px solid rgba(255, 107, 107, 0.3);
}

.contact-info h3 {
  color: #ff6b6b;
  margin-bottom: 20px;
  font-size: 1.5rem;
  font-weight: 600;
}

.contact-info p {
  color: #ddd;
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.contact-info a {
  color: #ff6b6b;
  text-decoration: none;
  font-weight: 600;
}

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

/* Responsive Design */
@media (max-width: 768px) {
  .section-title h2 {
    font-size: 2.5rem;
  }

  .faq-question {
    padding: 20px;
  }

  .faq-question h3 {
    font-size: 1.1rem;
  }

  .jobs-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .job-card {
    padding: 30px 25px;
  }

  .job-title {
    font-size: 1.5rem;
  }

  .container {
    padding: 0 15px;
  }
}

@media (max-width: 480px) {
  .section-title h2 {
    font-size: 2rem;
  }

  .faq-question {
    padding: 15px;
  }

  .job-card {
    padding: 25px 20px;
  }

  .job-title {
    font-size: 1.3rem;
    flex-direction: column;
    text-align: center;
  }

  .job-icon {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
}
