/* ===== Variables ===== */
:root {
  --font-body: 'DM Sans', system-ui, sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;
  
  --white: #ffffff;
  --off-white: #faf5f7;
  --cream: #f5eaef;
  --sand: #eddce4;
  --warm-gray: #9a8690;
  --charcoal: #3d363a;
  --dark: #2d1f29;
  
  --primary: #c2185b;
  --primary-dark: #9c1349;
  --primary-light: #f8e1ec;
  
  --accent: #7b1fa2;
  --accent-soft: #e1bee7;
  --accent-dark: #6a1b9a;
  
  --shadow-sm: 0 2px 8px rgba(31, 29, 26, 0.06);
  --shadow-md: 0 8px 30px rgba(31, 29, 26, 0.1);
  --shadow-lg: 0 20px 60px rgba(31, 29, 26, 0.15);
  
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;
}

/* ===== Reset ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--charcoal);
  background: var(--white);
  overflow-x: hidden;
  min-height: 100vh;
}

img, video {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  -webkit-tap-highlight-color: transparent;
}

/* ===== Typography ===== */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
  color: var(--dark);
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
  font-size: 1.25rem;
  font-family: var(--font-body);
  font-weight: 600;
}

p {
  color: var(--charcoal);
}

/* ===== Layout ===== */
.container {
  width: min(1200px, 90%);
  margin: 0 auto;
}

.section {
  padding: 6rem 0;
}

/* ===== Header ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  padding: 0 5%;
  max-width: 1400px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-img {
  height: 45px;
  width: auto;
}

.logo-footer .logo-img {
  height: 40px;
}

.logo-icon {
  font-size: 1.5rem;
  color: var(--primary);
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-main {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--dark);
  letter-spacing: 0.02em;
}

.logo-sub {
  font-size: 0.7rem;
  color: var(--warm-gray);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--charcoal);
  transition: color 0.2s;
}

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

.nav-cta {
  background: var(--primary);
  color: var(--white) !important;
  padding: 10px 20px;
  border-radius: var(--radius-full);
  font-weight: 600;
  transition: background 0.2s;
}

.nav-cta:hover {
  background: var(--primary-dark);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
}

.menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--dark);
  transition: 0.3s;
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(194, 24, 91, 0.5) 0%,
    rgba(123, 31, 162, 0.5) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--white);
  padding: 0 5%;
  max-width: 800px;
}

.hero-tag {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 1.5rem;
}

.hero-desc {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  color: var(--white);
  opacity: 0.7;
}

.hero-scroll span {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--white), transparent);
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all 0.25s ease;
  border: none;
}

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

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-light {
  background: var(--white);
  color: var(--dark);
}

.btn-light:hover {
  background: var(--off-white);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.5);
}

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

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

.btn-secondary:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.4);
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
}

.text-link {
  display: inline-flex;
  align-items: center;
  font-weight: 600;
  color: var(--primary);
  transition: color 0.2s;
}

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

/* ===== Section Tags ===== */
.section-tag {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

/* ===== About Section ===== */
.section-about {
  background: var(--off-white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 3rem;
  align-items: start;
}

.about-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 400px;
}

.about-content h2 {
  margin-bottom: 1.5rem;
}

.about-content p {
  margin-bottom: 1.25rem;
  line-height: 1.8;
}

.about-stats {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.stat {
  background: var(--white);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--primary);
}

.stat:nth-child(even) {
  border-left-color: var(--accent);
}

.stat-icon {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  display: block;
}

.stat h3 {
  margin-bottom: 0.35rem;
}

.stat p {
  font-size: 0.9rem;
  color: var(--warm-gray);
  margin: 0;
}

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

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3.5rem;
}

.section-header h2 {
  margin-bottom: 1rem;
}

.section-intro {
  font-size: 1.1rem;
  color: var(--warm-gray);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: var(--off-white);
  padding: 2rem;
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
}

.service-card:hover {
  background: var(--primary-light);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.service-card:nth-child(even) .service-num {
  color: var(--accent);
}

.service-card:nth-child(even):hover {
  background: var(--accent-soft);
}

.service-num {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
}

.service-card h3 {
  margin-bottom: 0.75rem;
}

.service-card p {
  font-size: 0.95rem;
  color: var(--warm-gray);
  margin: 0;
  line-height: 1.6;
}

/* ===== Gallery Section ===== */
.section-gallery {
  background: var(--off-white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  grid-template-rows: auto auto;
  gap: 1.25rem;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 220px;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-large {
  grid-row: span 2;
}

.gallery-large img {
  min-height: 100%;
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem 1.25rem;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 500;
}

/* ===== Careers Section ===== */
.section-careers {
  background: var(--cream);
}

.careers-content {
  text-align: center;
  max-width: 650px;
  margin: 0 auto;
}

.careers-content h2 {
  margin-bottom: 1.25rem;
}

.careers-content p {
  margin-bottom: 2rem;
  line-height: 1.8;
}

/* ===== Location Section ===== */
.section-location {
  background: var(--light);
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  align-items: stretch;
}

.location-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.location-card {
  background: var(--white);
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.location-icon {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.location-card h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.location-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--neutral);
  margin: 0;
}

.location-card a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
}

.location-card a:hover {
  text-decoration: underline;
}

.btn-directions {
  margin-top: auto;
  text-align: center;
}

.location-map {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  min-height: 450px;
}

.location-map .map-link {
  display: block;
  position: relative;
  height: 100%;
  cursor: pointer;
}

.location-map iframe {
  display: block;
  width: 100%;
  height: 450px;
  pointer-events: none;
}

.map-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  padding: 2rem 1.5rem 1.5rem;
  text-align: center;
  transition: background 0.3s ease;
}

.map-overlay span {
  color: var(--white);
  font-weight: 600;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.map-link:hover .map-overlay {
  background: linear-gradient(transparent, rgba(45, 90, 74, 0.9));
}

@media (max-width: 900px) {
  .location-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .location-info {
    order: 2;
  }

  .location-map {
    order: 1;
    min-height: 350px;
  }

  .location-map iframe {
    height: 350px;
  }
}

/* ===== Contact Banner ===== */
.contact-banner {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  padding: 4rem 0;
}

.contact-banner .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.banner-content h2 {
  color: var(--white);
  margin-bottom: 0.5rem;
}

.banner-content p {
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

.banner-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ===== Footer ===== */
.footer {
  background: var(--dark);
  padding: 4rem 0 2rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand p {
  margin-top: 1rem;
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
}

.logo-footer .logo-main,
.logo-footer .logo-icon {
  color: var(--white);
}

.logo-footer .logo-sub {
  color: rgba(255, 255, 255, 0.5);
}

.footer h4 {
  color: var(--white);
  font-size: 0.9rem;
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  font-size: 0.95rem;
  transition: color 0.2s;
}

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

.footer-contact p {
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
}

.footer-contact a:hover {
  color: var(--white);
}

.footer-social h4 {
  margin-bottom: 1.25rem;
}

.social-icons {
  display: flex;
  gap: 0.75rem;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: all 0.2s ease;
}

.social-icons a:hover {
  background: var(--primary);
  transform: translateY(-2px);
}

.social-icons svg {
  width: 18px;
  height: 18px;
  color: rgba(255, 255, 255, 0.8);
}

.social-icons a:hover svg {
  color: var(--white);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
}

/* ===== Page Hero (Internal Pages) ===== */
.page-hero {
  padding: 10rem 0 4rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  text-align: center;
}

.page-hero .hero-tag {
  color: rgba(255, 255, 255, 0.8);
}

.page-hero h1 {
  color: var(--white);
  margin-bottom: 1rem;
}

.page-hero-desc {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.15rem;
  max-width: 600px;
  margin: 0 auto;
}

/* ===== Why Section ===== */
.section-why {
  background: var(--white);
}

.why-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
}

.why-content h2 {
  margin-bottom: 1.25rem;
}

.why-content > p {
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.benefits-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.benefits-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--sand);
}

.benefits-list li:last-child {
  border-bottom: none;
}

.benefit-icon {
  color: var(--primary);
  font-weight: 700;
  font-size: 1.1rem;
}

.why-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.why-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 400px;
}

/* ===== Jobs Section ===== */
.section-jobs {
  background: var(--off-white);
}

.jobs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.job-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--sand);
  transition: all 0.3s ease;
}

.job-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.job-header {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.job-type, .job-location {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-full);
}

.job-type {
  background: var(--primary-light);
  color: var(--primary);
}

.job-location {
  background: var(--sand);
  color: var(--charcoal);
}

.job-card h3 {
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
}

.job-card > p {
  margin-bottom: 1rem;
  font-size: 0.95rem;
  line-height: 1.6;
}

.job-details {
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: var(--off-white);
  border-radius: var(--radius-sm);
}

.job-details strong {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.85rem;
  color: var(--dark);
}

.job-details ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.job-details li {
  font-size: 0.9rem;
  color: var(--charcoal);
  padding: 0.25rem 0;
  padding-left: 1rem;
  position: relative;
}

.job-details li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--primary);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.9rem;
}

/* ===== Application Form ===== */
.section-apply {
  background: var(--white);
}

.apply-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}

.apply-info h2 {
  margin-bottom: 1rem;
}

.apply-info > p {
  margin-bottom: 2rem;
  line-height: 1.8;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact-icon {
  font-size: 1.25rem;
}

.contact-item strong {
  display: block;
  font-size: 0.9rem;
  color: var(--dark);
  margin-bottom: 0.25rem;
}

.contact-item p {
  margin: 0;
  font-size: 0.95rem;
}

.contact-item a {
  color: var(--primary);
}

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

.apply-form {
  background: var(--off-white);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--sand);
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.required {
  color: #dc3545;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="date"],
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  font-size: 0.95rem;
  font-family: inherit;
  border: 1px solid var(--sand);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--dark);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(45, 90, 74, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--warm-gray);
}

.form-group input[type="file"] {
  padding: 0.75rem;
  background: var(--white);
  cursor: pointer;
}

.form-hint {
  font-size: 0.8rem;
  color: var(--warm-gray);
  margin-top: 0.35rem;
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-checkbox {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.form-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 0.15rem;
  cursor: pointer;
  accent-color: var(--primary);
}

.form-checkbox label {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--charcoal);
  line-height: 1.5;
  margin-bottom: 0;
}

.btn-lg {
  width: 100%;
  padding: 1rem 2rem;
  font-size: 1rem;
  margin-top: 0.5rem;
}

/* Form Security & Validation Styles */
.form-status {
  text-align: center;
  padding: 1rem;
  border-radius: var(--radius-sm);
  margin-top: 1rem;
  font-size: 0.9rem;
}

.form-status.error {
  background: #fef2f2;
  color: #b91c1c;
  border: 1px solid #fecaca;
}

.form-status.info {
  background: var(--primary-light);
  color: var(--primary-dark);
  border: 1px solid var(--primary);
}

.form-status.success {
  background: #f0fdf4;
  color: #166534;
  border: 1px solid #bbf7d0;
}

.form-notice {
  background: var(--cream);
  padding: 1rem;
  border-radius: var(--radius-sm);
  margin-bottom: 1rem;
}

.form-notice p {
  margin: 0;
  color: var(--warm-gray);
  font-size: 0.85rem;
}

.char-count {
  color: var(--warm-gray);
  font-size: 0.8rem;
}

.form-group input:invalid:not(:placeholder-shown),
.form-group textarea:invalid:not(:placeholder-shown) {
  border-color: #f87171;
}

.form-group input:valid:not(:placeholder-shown),
.form-group textarea:valid:not(:placeholder-shown) {
  border-color: var(--primary);
}

.submission-success {
  background: var(--primary);
  color: var(--white);
  padding: 1rem 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10000;
}

.submission-success .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.submission-success p {
  margin: 0;
}

.submission-success button {
  background: transparent;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.25rem 0.5rem;
  line-height: 1;
}

.submission-success button:hover {
  opacity: 0.8;
}

#submitBtn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.nav a.active {
  color: var(--primary);
}

/* ===== Story Section ===== */
.section-story {
  background: var(--white);
}

.story-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 4rem;
  align-items: center;
}

.story-content h2 {
  margin-bottom: 1.5rem;
}

.story-content p {
  margin-bottom: 1.25rem;
  line-height: 1.85;
}

.story-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 450px;
}

/* ===== Mission Section ===== */
.section-mission {
  background: var(--off-white);
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.mission-card {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border-top: 4px solid var(--primary);
}

.mission-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 1rem;
}

.mission-card h3 {
  margin-bottom: 1rem;
  font-size: 1.35rem;
}

.mission-card p {
  line-height: 1.75;
  margin: 0;
}

.mission-values ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mission-values li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--sand);
  line-height: 1.6;
}

.mission-values li:last-child {
  border-bottom: none;
}

.mission-values li strong {
  color: var(--primary);
}

/* ===== What We Offer Section ===== */
.section-offer {
  background: var(--white);
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.offer-item {
  padding: 2rem;
  background: var(--off-white);
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
}

.offer-item:hover {
  background: var(--primary-light);
  transform: translateY(-4px);
}

.offer-num {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.75rem;
  display: block;
}

.offer-item h3 {
  margin-bottom: 0.75rem;
}

.offer-item p {
  line-height: 1.7;
  margin: 0;
}

/* ===== Team Section ===== */
.section-team {
  background: var(--cream);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.team-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.team-photo {
  width: 100%;
  height: 280px;
  background: var(--sand);
  overflow: hidden;
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.4s ease;
}

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

.team-info {
  padding: 1.5rem;
}

.team-info h3 {
  margin-bottom: 0.25rem;
  font-size: 1.15rem;
}

.team-role {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 0.75rem !important;
}

.team-bio {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--warm-gray);
  margin: 0 !important;
}

/* ===== WhatsApp Widget ===== */
.wa-widget {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 99;
}

.wa-btn {
  position: relative;
  width: 56px;
  height: 56px;
  background: #25d366;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 99;
  transition: transform 0.2s, box-shadow 0.2s;
}

.wa-btn svg {
  width: 28px;
  height: 28px;
  color: var(--white);
}

.wa-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
}

/* WhatsApp Tooltip */
.wa-tooltip {
  position: absolute;
  bottom: 0;
  right: 70px;
  background: var(--white);
  color: var(--charcoal);
  padding: 0.75rem 1rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  white-space: nowrap;
  font-size: 0.85rem;
  line-height: 1.4;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  opacity: 0;
  visibility: hidden;
  transform: translateX(10px);
  transition: all 0.3s ease;
  pointer-events: none;
}

.wa-tooltip::after {
  content: '';
  position: absolute;
  right: -8px;
  top: 50%;
  transform: translateY(-50%);
  border: 8px solid transparent;
  border-left-color: var(--white);
  border-right: none;
}

.wa-tooltip strong {
  color: #25d366;
}

.wa-online-dot {
  width: 10px;
  height: 10px;
  background: #25d366;
  border-radius: 50%;
  animation: pulse 1.5s infinite;
  flex-shrink: 0;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(1.2);
  }
}

.wa-widget:hover .wa-tooltip,
.wa-widget.show-tooltip .wa-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.wa-popup {
  position: fixed;
  bottom: 6rem;
  right: 1.5rem;
  width: 320px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  box-shadow: var(--shadow-lg);
  z-index: 99;
  display: none;
}

.wa-popup.open {
  display: block;
  animation: slideUp 0.25s ease;
}

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

.wa-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
}

.wa-header strong {
  font-size: 1rem;
  color: var(--dark);
}

.wa-header button {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--warm-gray);
  line-height: 1;
}

.wa-popup p {
  font-size: 0.9rem;
  margin-bottom: 1rem;
  color: var(--charcoal);
}

.btn-wa {
  width: 100%;
  background: #25d366;
  color: var(--white);
}

.btn-wa:hover {
  background: #20bd5a;
}

/* ===== Responsive ===== */
/* ==========================================================================
   RESPONSIVE DESIGN - All Devices
   ========================================================================== */

/* Large Desktop (1400px+) */
@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }
  
  h1 {
    font-size: 4rem;
  }
  
  .hero-desc {
    font-size: 1.25rem;
  }
}

/* Desktop/Laptop (1200px and below) */
@media (max-width: 1200px) {
  .container {
    padding: 0 2rem;
  }
  
  h1 {
    font-size: 2.8rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .jobs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .team-grid {
    gap: 1.5rem;
  }
}

/* Tablet/iPad (900px and below) */
@media (max-width: 900px) {
  /* Navigation - Mobile Menu */
  .nav {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    border-bottom: 1px solid var(--sand);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
  }
  
  .nav.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  
  .menu-toggle {
    display: flex;
  }
  
  /* Typography */
  h1 {
    font-size: 2.2rem;
    line-height: 1.2;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  h3 {
    font-size: 1.25rem;
  }
  
  /* Sections */
  .section {
    padding: 4rem 0;
  }
  
  .page-hero {
    padding: 8rem 0 4rem;
  }
  
  .page-hero h1 {
    font-size: 2rem;
  }
  
  /* Hero */
  .hero-content {
    padding: 0 1.5rem;
  }
  
  .hero-desc {
    font-size: 1rem;
  }
  
  .hero-scroll {
    display: none;
  }
  
  /* About Grid */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .about-image {
    order: -1;
  }
  
  .about-image img {
    min-height: 280px;
  }
  
  .about-stats {
    grid-column: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
  
  /* Gallery */
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
  
  .gallery-large {
    grid-row: auto;
  }
  
  .gallery-item img {
    min-height: 200px;
  }
  
  /* Services */
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .service-card {
    padding: 1.5rem;
  }
  
  /* Footer */
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  
  .footer-brand {
    grid-column: 1 / -1;
  }
  
  /* Why Section */
  .why-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .why-image {
    order: -1;
  }
  
  .why-image img {
    min-height: 280px;
  }
  
  /* Jobs Grid */
  .jobs-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  /* Apply Form */
  .apply-wrapper {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  /* Story Grid */
  .story-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .story-image {
    order: -1;
  }
  
  .story-image img {
    min-height: 280px;
  }
  
  /* Mission Grid */
  .mission-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  /* Offer Grid */
  .offer-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  /* Team Grid */
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  /* Form */
  .form-row {
    grid-template-columns: 1fr;
  }
  
  /* Contact Banner */
  .contact-banner .container {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }
  
  .banner-actions {
    justify-content: center;
  }
  
  /* WhatsApp Popup */
  .wa-popup {
    width: calc(100% - 3rem);
    right: 1.5rem;
    left: 1.5rem;
  }
  
  /* Logo */
  .logo-img {
    height: 40px;
  }
}

/* Small Tablet/Large Phone (768px and below) */
@media (max-width: 768px) {
  .container {
    padding: 0 1.5rem;
  }
  
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  .section {
    padding: 3.5rem 0;
  }
  
  /* Services */
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  /* Gallery */
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  
  /* About Stats */
  .about-stats {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .stat {
    text-align: center;
  }
  
  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .footer-brand {
    align-items: center;
  }
  
  .social-icons {
    justify-content: center;
  }
  
  /* Benefits List */
  .benefits-list {
    padding-left: 0;
  }
  
  /* Careers Page - Small Tablet */
  .jobs-grid {
    grid-template-columns: 1fr;
  }
  
  .job-card {
    padding: 1.5rem;
  }
  
  .why-image img {
    min-height: 250px;
  }
  
  .apply-wrapper {
    gap: 2rem;
  }
  
  .apply-form {
    padding: 1.75rem;
  }
}

/* Mobile Phone (600px and below) */
@media (max-width: 600px) {
  /* Header */
  .header-inner {
    height: 70px;
    padding: 0 1rem;
  }
  
  .nav {
    top: 70px;
    padding: 1.5rem;
  }
  
  /* Logo */
  .logo-img {
    height: 35px;
  }
  
  /* Typography */
  h1 {
    font-size: 1.75rem;
  }
  
  h2 {
    font-size: 1.4rem;
  }
  
  h3 {
    font-size: 1.1rem;
  }
  
  body {
    font-size: 15px;
  }
  
  /* Section spacing */
  .section {
    padding: 3rem 0;
  }
  
  .container {
    padding: 0 1rem;
  }
  
  /* Page Hero */
  .page-hero {
    padding: 7rem 0 3rem;
  }
  
  .page-hero h1 {
    font-size: 1.6rem;
  }
  
  .page-hero-desc {
    font-size: 0.95rem;
  }
  
  /* Hero */
  .hero-content {
    padding: 0 1rem;
    padding-top: 80px;
  }
  
  .hero-desc {
    font-size: 0.95rem;
    margin-bottom: 2rem;
  }
  
  .hero-actions {
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
    padding: 0 1rem;
  }
  
  .hero-actions .btn {
    width: 100%;
  }
  
  /* Team Grid */
  .team-grid {
    grid-template-columns: 1fr;
  }
  
  .team-photo {
    height: 280px;
  }
  
  .team-card {
    max-width: 320px;
    margin: 0 auto;
  }
  
  /* Buttons */
  .btn {
    padding: 12px 24px;
    font-size: 0.9rem;
    width: 100%;
  }
  
  .btn-sm {
    padding: 10px 20px;
    font-size: 0.85rem;
  }
  
  /* Banner */
  .banner-actions {
    flex-direction: column;
    width: 100%;
    gap: 0.75rem;
  }
  
  .banner-actions .btn {
    width: 100%;
  }
  
  /* Contact Banner */
  .contact-banner h2 {
    font-size: 1.3rem;
  }
  
  .contact-banner p {
    font-size: 0.9rem;
  }
  
  /* Job Cards */
  .job-card {
    padding: 1.25rem;
  }
  
  .job-header {
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-start;
  }
  
  .job-card h3 {
    font-size: 1.1rem;
  }
  
  .job-card > p {
    font-size: 0.9rem;
  }
  
  .job-details {
    padding: 0.85rem;
    margin-bottom: 1rem;
  }
  
  .job-details li {
    font-size: 0.85rem;
  }
  
  .job-type, .job-location {
    font-size: 0.7rem;
    padding: 0.3rem 0.6rem;
  }
  
  /* Why Section Mobile */
  .why-content h2 {
    font-size: 1.4rem;
  }
  
  .why-content > p {
    font-size: 0.95rem;
  }
  
  .benefits-list li {
    font-size: 0.9rem;
    padding: 0.5rem 0;
  }
  
  .why-image img {
    min-height: 220px;
  }
  
  /* Form */
  .apply-form {
    padding: 1.5rem;
  }
  
  .apply-info {
    text-align: center;
  }
  
  .apply-info h2 {
    font-size: 1.4rem;
  }
  
  .apply-info > p {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
  }
  
  .form-group {
    margin-bottom: 1rem;
  }
  
  .form-group label {
    font-size: 0.85rem;
    margin-bottom: 0.4rem;
  }
  
  .form-group input[type="text"],
  .form-group input[type="email"],
  .form-group input[type="tel"],
  .form-group input[type="date"],
  .form-group select,
  .form-group textarea {
    padding: 0.75rem 0.85rem;
    font-size: 16px; /* Prevents iOS zoom on focus */
  }
  
  .form-checkbox label {
    font-size: 0.8rem;
  }
  
  .form-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    min-width: 20px;
  }
  
  .form-notice {
    padding: 0.85rem;
  }
  
  .form-notice p {
    font-size: 0.75rem;
  }
  
  .contact-item {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }
  
  .contact-info {
    gap: 1rem;
  }
  
  .contact-icon {
    font-size: 1.5rem;
  }
  
  .contact-item strong {
    font-size: 0.85rem;
  }
  
  .contact-item p {
    font-size: 0.9rem;
  }
  
  /* Gallery */
  .gallery-item img {
    min-height: 200px;
  }
  
  /* Service Cards */
  .service-card {
    padding: 1.25rem;
  }
  
  .service-icon {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }
  
  /* Mission Cards */
  .mission-card {
    padding: 1.5rem;
  }
  
  /* WhatsApp Widget */
  .wa-widget {
    right: 1rem;
    bottom: 1rem;
  }
  
  .wa-btn {
    width: 50px;
    height: 50px;
  }
  
  .wa-tooltip {
    right: 60px;
    font-size: 0.75rem;
    padding: 0.6rem 0.85rem;
  }
  
  .wa-online-dot {
    width: 8px;
    height: 8px;
  }
  
  .wa-popup {
    right: 1rem;
    left: 1rem;
    bottom: 70px;
    width: calc(100% - 2rem);
  }
  
  /* About Image */
  .about-image img {
    min-height: 220px;
  }
  
  /* Story Image */
  .story-image img {
    min-height: 220px;
  }
  
  /* Section Headers */
  .section-header {
    margin-bottom: 2rem;
  }
  
  .section-intro {
    font-size: 0.95rem;
  }
}

/* Extra Small Phones (400px and below) */
@media (max-width: 400px) {
  .container {
    padding: 0 0.75rem;
  }
  
  h1 {
    font-size: 1.5rem;
  }
  
  h2 {
    font-size: 1.25rem;
  }
  
  .hero-content {
    padding-top: 60px;
  }
  
  .logo-img {
    height: 30px;
  }
  
  .btn {
    padding: 10px 20px;
    font-size: 0.85rem;
  }
  
  .team-photo {
    height: 240px;
  }
  
  .page-hero {
    padding: 6rem 0 2.5rem;
  }
  
  .page-hero h1 {
    font-size: 1.4rem;
  }
  
  /* Careers Page - Extra Small */
  .job-card {
    padding: 1rem;
  }
  
  .job-card h3 {
    font-size: 1rem;
  }
  
  .job-details {
    padding: 0.75rem;
  }
  
  .job-details li {
    font-size: 0.8rem;
  }
  
  .apply-form {
    padding: 1rem;
  }
  
  .form-group input[type="text"],
  .form-group input[type="email"],
  .form-group input[type="tel"],
  .form-group input[type="date"],
  .form-group select,
  .form-group textarea {
    padding: 0.65rem 0.75rem;
  }
  
  .benefits-list li {
    font-size: 0.85rem;
  }
  
  .section-tag {
    font-size: 0.7rem;
  }
}

/* Landscape mode adjustments for phones */
@media (max-height: 500px) and (orientation: landscape) {
  .hero {
    min-height: 100vh;
  }
  
  .hero-content {
    padding-top: 60px;
  }
  
  .hero h1 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
  }
  
  .hero-desc {
    font-size: 0.85rem;
    margin-bottom: 1rem;
  }
  
  .hero-actions {
    flex-direction: row;
  }
  
  .hero-actions .btn {
    width: auto;
    padding: 10px 20px;
  }
}

/* Print Styles */
@media print {
  .header,
  .wa-widget,
  .hero-video,
  .menu-toggle {
    display: none !important;
  }
  
  .hero {
    min-height: auto;
    background: var(--primary);
  }
  
  body {
    font-size: 12pt;
  }
  
  .section {
    padding: 1.5rem 0;
    page-break-inside: avoid;
  }
}
