@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700&family=Inter:wght@400;500;600&display=swap');

:root {
  --green: #2b742c;
  --dark-blue: #071b2f;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--dark-blue);
  color: #fff;
}


/* ================= NAVBAR ================= */
.navbar {
  position: fixed;
  width: 100%;
  padding: 22px 0;
  transition: all 0.4s ease;
  z-index: 999;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
}

.navbar.scrolled .navbar-brand {
  color: var(--dark-blue) !important;
}

.navbar.scrolled .nav-link {
  color: var(--dark-blue) !important;
}

.navbar.scrolled .nav-link:hover {
  color: var(--green) !important;
}

.navbar-brand {
  font-size: 22px;
  font-weight: 600;
  color: white !important;
}

.navbar-toggler {
  background-color: var(--green);
  border: none;
  border-radius: 4px;
  padding: 8px;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255, 255, 255, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

.navbar-logo {
  height: 65px;
  width: auto;
  margin-right: 10px;
}

.nav-link {
  color: #fff !important;
  margin: 0 12px;
  transition: 0.3s;
  font-size: 20px;
  font-weight: 400;
}

.nav-link:hover {
  color: var(--green) !important;
  transform: scale(1.1);
}

.nav-link.active {
  color: var(--green) !important;
  font-weight: 600;
  position: relative;
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--green);
}

/* Offcanvas menu styles */
.offcanvas .nav-link {
  color: #000 !important;
  margin: 10px 0;
  font-size: 18px;
}

.offcanvas .nav-link:hover {
  color: var(--green) !important;
}

.offcanvas .nav-link.active {
  color: var(--green) !important;
  font-weight: 600;
  position: relative;
}

.offcanvas .nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--green);
}

.navbar.scrolled .nav-link.active {
  color: var(--green) !important;
}

.navbar.scrolled .nav-link.active::after {
  background-color: var(--green);
}

.btn-quote {
  background: var(--green);
  color: #fff;
  padding: 10px 22px;
  border-radius: 30px;
  font-weight: 500;
  border: none;
  text-decoration: none;
  display: inline-block;
  font-size: 18px;
}

.btn-quote:hover {
  background: #1fa978;
  color: #fff;
}

/* ================= HERO ================= */
.hero {
  height: 100vh;
  background: linear-gradient(
    rgba(107, 163, 219, 0.8),
    rgba(107, 163, 219, 0.8)
  ),
  url("../assets/hero.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 94px;
  line-height: 1.2;
}

.hero h1 span {
  color: var(--green);
  font-weight: bolder;
}

.hero p {
  max-width: 650px;
  margin: 25px auto;
  font-size: 25px;
  color: #d0d8e0;
  font-weight: 600;
}

.hero-buttons {
  margin-top: 40px;
}

.btn-main {
  background: var(--green);
  color: #fff;
  padding: 14px 36px;
  border-radius: 35px;
  font-weight: 600;
  margin-right: 15px;
  border: none;
  text-decoration: none;
  display: inline-block;
}

.btn-outline {
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
  padding: 14px 36px;
  border-radius: 35px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
}

.btn-main:hover {
  background: #1fa978;
  color: #fff;
}

.btn-outline:hover {
  background: #fff;
  color: #000;
}

/* ================= WATERMARK LOGO ================= */
.watermark-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  height: 400px;
  background: url("../assets/logo.png") center/contain no-repeat;
  opacity: 0.3; 
  z-index: 0;
  pointer-events: none;
}

/* ================= WHITE SECTIONS ================= */
.about-section,
.services-section {
  background: #fff;
  color: #000;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.section-tag {
  color: var(--green);
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  margin-bottom: 20px;
}

.section-text {
  color: var(--dark-blue);
  max-width: 600px;
  font-weight: 600;
  font-size: 20px;
}

.section-text.center {
  margin: 0 auto;
}

/* ABOUT */
.about-img {
  width: 100%;
  border-radius: 20px;
  position: relative;
  z-index: 1;
}

.mission-vision {
  display: flex;
  gap: 20px;
  margin-top: 30px;
}

.mission-vision-full {
  display: flex;
  gap: 30px;
  margin-top: 40px;
}

.mission-vision-full .mv-box {
  flex: 1;
  min-height: 160px;
}

.mv-box {
  background: white;
  padding: 20px;
  padding-top: 40px;
  border-radius: 15px;
  text-align: center;
  min-height: 180px;
  transition: 0.3s;
  border: 2px solid var(--green); /* Green border only */
  position: relative;
  z-index: 1;
}

.mv-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  border-color: var(--green);
}

.mv-box i {
  color: var(--green);
  font-size: 30px;
  margin-bottom: 10px;
}

.mv-box h5 {
  color: var(--dark-blue);
  margin-bottom: 15px;
}

.mv-box p {
  color: #6c757d;
  font-weight: 600;
}

/* SERVICES */
.service-card {
  background: white; 
  padding: 40px;
  border-radius: 20px;
  min-height: 320px;
  transition: 0.3s;
  text-align: center;
  border: 2px solid var(--green); /* Green border only */
  position: relative;
  z-index: 1;
}

.service-card i {
  color: var(--green);
  font-size: 30px;
  margin-bottom: 15px;
}

.service-card h5 {
  color: var(--dark-blue);
  margin-bottom: 15px;
}

.service-card p {
  color: #6c757d;
  margin-bottom: 20px;
  font-weight: 300;
}

.service-card ul {
  list-style: none;
  padding-left: 0;
  margin: 15px 0;
  text-align: left;
}

.service-card li {
  margin-bottom: 8px;
  color: #555;
}

.service-card li i {
  color: var(--green);
  margin-right: 8px;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  border-color: var(--green);
}

.service-card a {
  color: var(--green);
  font-weight: 600;
  text-decoration: none;
}

.btn-services {
  background: var(--dark-blue);
  color: #fff;
  padding: 14px 36px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  position: relative;
  z-index: 1;
}

.btn-services:hover {
  background: #0a1a2d;
  color: #fff;
}

/* ================= FULLSCREEN EXPANDABLE SERVICE CARDS ================= */
.service-card.expandable {
  position: relative;
  z-index: 1;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
  overflow: hidden;
}

.service-card.expandable:hover {
  transform: scale(1.02);
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  z-index: 100;
}

/* Expanded Fullscreen Card */
.service-card.expandable .expanded-fullscreen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: white;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

/* Active state for expanded cards */
.service-card.expandable.expanded-active {
  transform: scale(1.02);
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  z-index: 100;
}

.service-card.expandable.expanded-active .expanded-fullscreen {
  opacity: 1;
  visibility: visible;
}

/* Fullscreen Header */
.expanded-header {
  background: var(--dark-blue);
  color: white;
  padding: 30px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.expanded-header-content {
  display: flex;
  align-items: center;
  gap: 20px;
}

.expanded-header-icon {
  width: 70px;
  height: 70px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
}

.expanded-header-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  margin-bottom: 5px;
  color: white;
}

.expanded-header-text p {
  color: rgba(255,255,255,0.8);
  font-size: 18px;
  margin: 0;
}

/* Close button */
.expanded-close-fullscreen {
  background: rgba(255,255,255,0.1);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  color: white;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.expanded-close-fullscreen:hover {
  background: var(--green);
  transform: rotate(90deg);
}

/* Fullscreen Content */
.expanded-content-fullscreen {
  display: flex;
  flex: 1;
  min-height: 0;
}

.expanded-image-fullscreen {
  flex: 0 0 45%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.expanded-details-fullscreen {
  flex: 0 0 55%;
  padding: 50px;
  overflow-y: auto;
}

/* Details Sections */
.expanded-description-fullscreen {
  font-size: 18px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 40px;
  font-weight: 400;
}

.expanded-section {
  margin-bottom: 40px;
}

.expanded-section h3 {
  color: var(--dark-blue);
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--green);
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 30px;
}

.feature-item {
  background: #f8f9fa;
  padding: 20px;
  border-radius: 10px;
  border-left: 4px solid var(--green);
}

.feature-item h4 {
  color: var(--dark-blue);
  font-size: 18px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.feature-item h4 i {
  color: var(--green);
}

.feature-item p {
  color: #6c757d;
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
}

/* Benefits Section */
.benefits-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-bottom: 30px;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.benefit-item i {
  color: var(--green);
  font-size: 18px;
  margin-top: 3px;
}

.benefit-item p {
  color: #555;
  font-size: 15px;
  line-height: 1.5;
  margin: 0;
}

/* Action Buttons */
.expanded-actions {
  display: flex;
  gap: 20px;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid #eee;
}

.btn-expanded-quote {
  background: var(--green);
  color: white;
  padding: 15px 40px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  flex: 1;
  justify-content: center;
  text-align: center;
}

.btn-expanded-quote:hover {
  background: #1fa978;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(43, 116, 44, 0.2);
  color: white;
}

.btn-expanded-back {
  background: var(--dark-blue);
  color: white;
  padding: 15px 40px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  flex: 1;
  justify-content: center;
  text-align: center;
}

.btn-expanded-back:hover {
  background: #0a1a2d;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(7, 27, 47, 0.2);
  color: white;
}

/* ================= CTA ================= */
.cta-section {
  background: linear-gradient(
    rgba(42, 86, 131, 0.85),
    rgba(42, 86, 131, 0.85)
  ),
  url("../assets/museum.jpg") center/cover no-repeat;
  padding: 120px 0;
  color: #fff;
  position: relative;
}

.cta-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.cta-section p {
  max-width: 600px;
  margin: 0 auto 40px;
  font-size: 18px;
  position: relative;
  z-index: 1;
}

/* ================= FOOTER ================= */
.footer {
  background: #071b2f;
  color: #fff;
  padding: 80px 0 30px;
}

.footer h4,
.footer h5 {
  color: #fff;
}

.footer ul {
  list-style: none;
  padding: 0;
}

.footer ul li a {
  color: #d0d8e0;
  text-decoration: none;
}

.footer ul li a:hover {
  color: var(--green);
}

.socials a {
  display: inline-block;
  width: 45px;
  height: 45px;
  background: var(--green);
  border-radius: 50%;
  margin-right: 15px;
  color: #fff;
  text-align: center;
  line-height: 45px;
  font-size: 20px;
  transition: 0.3s;
  text-decoration: none;
}

.socials a:hover {
  background: #1fa978;
  transform: scale(1.1);
  color: #fff;
}

.footer p i {
  color: var(--green);
  margin-right: 8px;
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  color: #d0d8e0;
  font-size: 14px;
}

/* ================= SCROLL ANIMATION ================= */
.reveal {
  opacity: 0;
  transform: translateY(60px);
  transition: 1s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 60px;
  }
  
  .watermark-logo {
    width: 250px;
    height: 250px;
  }
  
  .mission-vision {
    flex-direction: column;
    gap: 20px;
  }
  
  .navbar .container {
    flex-direction: column;
    gap: 15px;
  }
  
  .language-switcher {
    top: 10px;
    right: 10px;
  }
}

/* Responsive adjustments for fullscreen cards */
@media (max-width: 992px) {
  .expanded-content-fullscreen {
    flex-direction: column;
  }
  
  .expanded-image-fullscreen {
    flex: 0 0 300px;
  }
  
  .expanded-details-fullscreen {
    flex: 1;
    padding: 30px;
  }
  
  .features-grid,
  .benefits-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .expanded-header {
    padding: 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
  
  .expanded-header-content {
    width: 100%;
  }
  
  .expanded-close-fullscreen {
    position: absolute;
    top: 20px;
    right: 20px;
  }
  
  .expanded-header-text h2 {
    font-size: 28px;
  }
  
  .expanded-actions {
    flex-direction: column;
  }
  
  .expanded-image-fullscreen {
    flex: 0 0 250px;
  }
}

/* ================= CAREERS PAGE ================= */
.careers-section {
  background: #fff;
  color: #000;
  padding: 100px 0;
  position: relative;
}

.careers-section .section-title {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  margin-bottom: 40px;
  color: var(--dark-blue);
}

/* Job Cards */
.job-card {
  background: #fff;
  border: 2px solid #e9ecef;
  border-radius: 15px;
  padding: 30px;
  margin-bottom: 30px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.job-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  border-color: var(--green);
}

.job-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 15px;
}

.job-header h3 {
  color: var(--dark-blue);
  font-size: 22px;
  font-weight: 600;
  margin: 0;
}

.job-badge {
  background: var(--green);
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
}

.job-location {
  color: #666;
  font-size: 16px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.job-location i {
  color: var(--green);
}

.job-description {
  color: #6c757d;
  margin-bottom: 20px;
  line-height: 1.6;
}

.job-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.tag {
  background: rgba(43, 116, 44, 0.1);
  color: var(--green);
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
}

.btn-apply {
  background: var(--dark-blue);
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}

.btn-apply:hover {
  background: var(--green);
}

/* Application Form */
.application-form-container {
  background: #f8f9fa;
  padding: 40px;
  border-radius: 20px;
  border: 2px solid #e9ecef;
}

.form-intro {
  color: #6c757d;
  margin-bottom: 30px;
  font-size: 18px;
}

.career-form .form-group {
  margin-bottom: 25px;
}

.career-form label {
  display: block;
  color: var(--dark-blue);
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 16px;
}

.career-form .form-control {
  background: white;
  border: 2px solid #dee2e6;
  border-radius: 10px;
  padding: 12px 15px;
  font-size: 16px;
  transition: all 0.3s ease;
}

.career-form .form-control:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 0.2rem rgba(43, 116, 44, 0.25);
}

/* File Upload Area */
.file-upload-area {
  background: white;
  border: 2px dashed #dee2e6;
  border-radius: 10px;
  padding: 40px 20px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.file-upload-area:hover {
  border-color: var(--green);
  background: rgba(43, 116, 44, 0.05);
}

.file-upload-area i {
  font-size: 48px;
  color: var(--green);
  margin-bottom: 15px;
}

.file-upload-area p {
  color: var(--dark-blue);
  margin: 0;
  font-size: 18px;
}

.file-types {
  color: #6c757d !important;
  font-size: 14px !important;
  margin-top: 10px !important;
}

.file-name-display {
  background: white;
  border: 1px solid #dee2e6;
  border-radius: 8px;
  padding: 10px 15px;
  margin-top: 10px;
  color: var(--dark-blue);
  display: none;
}

/* Submit Button */
.btn-submit-application {
  background: var(--green);
  color: white;
  border: none;
  padding: 15px 40px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}

.btn-submit-application:hover {
  background: #1fa978;
}

/* Success Modal */
.success-icon {
  color: var(--green);
  font-size: 64px;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
  .careers-section {
    padding: 60px 0;
  }
  
  .application-form-container {
    padding: 30px 20px;
    margin-top: 40px;
  }
  
  .job-card {
    padding: 20px;
  }
  
  .job-header {
    flex-direction: column;
    gap: 10px;
  }
}
/* ================= CONTACT PAGE ================= */
.contact-hero {
  height: 80vh;
  background: linear-gradient(
    rgba(107, 163, 219, 0.8),
    rgba(107, 163, 219, 0.8)
  ),
  url("../assets/contact-hero.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.contact-hero .hero-badge {
  display: inline-block;
  background: rgba(32, 153, 111, 0.664);
  color: #fff;
  padding: 8px 20px;
  border-radius: 30px;
  margin-bottom: 25px;
  font-weight: 500;
}

.contact-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 94px;
  line-height: 1.2;
}

.contact-hero h1 span {
  color: var(--green);
}

.contact-hero p {
  max-width: 650px;
  margin: 25px auto;
  font-size: 22px;
  color: #d0d8e0;
}

.contact-hero .hero-buttons {
  margin-top: 40px;
}

/* Contact Content Section */
.contact-content-section {
  background: #fff;
  color: #000;
  padding: 80px 0;
}

.contact-info-box {
  background: #f8f9fa;
  padding: 40px;
  border-radius: 20px;
  height: 100%;
}

.contact-info-box h3 {
  color: var(--dark-blue);
  font-size: 28px;
  margin-bottom: 30px;
  font-family: 'Playfair Display', serif;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #e9ecef;
}

.contact-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.contact-icon {
  width: 60px;
  height: 60px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  margin-right: 20px;
  flex-shrink: 0;
}

.contact-details h4 {
  color: var(--dark-blue);
  margin-bottom: 5px;
  font-size: 20px;
}

.contact-details p {
  color: #6c757d;
  margin-bottom: 10px;
}

.contact-link {
  color: var(--green);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-link:hover {
  color: var(--dark-blue);
}

/* Hours Box */
.hours-box {
  background: var(--dark-blue);
  color: white;
  padding: 40px;
  border-radius: 20px;
  height: 100%;
}

.hours-box h3 {
  color: white;
  font-size: 28px;
  margin-bottom: 30px;
  font-family: 'Playfair Display', serif;
}

.hours-grid {
  background: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 15px;
  margin-bottom: 30px;
}

.day-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.day-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.day {
  font-weight: 600;
  font-size: 16px;
}

.time {
  font-weight: 600;
  font-size: 16px;
}

.time.closed {
  color: #ff6b6b;
}

/* Quick Help Box */
.quick-help-box {
  background: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 15px;
  text-align: center;
}

.quick-help-box h4 {
  color: white;
  font-size: 22px;
  margin-bottom: 15px;
}

.quick-help-box p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 20px;
  font-size: 16px;
}

.btn-whatsapp-help {
  background: #25D366;
  color: white;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.btn-whatsapp-help:hover {
  background: #1da851;
  color: white;
  transform: scale(1.05);
}

/* Map Section */
.map-section {
  background: #f8f9fa;
  padding: 80px 0;
}

.map-section .section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  color: var(--dark-blue);
  margin-bottom: 10px;
}

.map-section .section-header p {
  color: #6c757d;
  font-size: 18px;
}

.map-container {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.google-map {
  display: block;
  border-radius: 20px;
}

.map-overlay-info {
  position: absolute;
  top: 20px;
  left: 20px;
  background: white;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  max-width: 300px;
}

.map-info-content h4 {
  color: var(--dark-blue);
  font-size: 20px;
  margin-bottom: 10px;
}

.map-info-content p {
  color: #6c757d;
  margin-bottom: 15px;
  line-height: 1.5;
}

.btn-map-directions {
  background: var(--green);
  color: white;
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  transition: all 0.3s ease;
}

.btn-map-directions:hover {
  background: var(--dark-blue);
  color: white;
}

/* ================= CHATBOT (RIGHT SIDE) ================= */
.chatbot-container-right {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
}

.chatbot-toggle-right {
  width: 60px;
  height: 60px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
  position: relative;
  animation: pulse 2s infinite;
}

.chatbot-toggle-right:hover {
  background: #1fa978;
  transform: scale(1.1);
}

.chatbot-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  width: 20px;
  height: 20px;
  background: #ff4757;
  border-radius: 50%;
  border: 2px solid white;
  animation: blink 1.5s infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.chatbot-window-right {
  position: absolute;
  bottom: 80px;
  right: 0;
  width: 350px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.2);
  display: none;
  overflow: hidden;
  border: 1px solid #e9ecef;
}

.chatbot-window-right.open {
  display: block;
  animation: slideInRight 0.3s ease;
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateY(20px) translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0) translateX(0);
  }
}

.chatbot-header-right {
  background: var(--dark-blue);
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.chatbot-avatar {
  width: 45px;
  height: 45px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
}

.chatbot-title-right {
  flex: 1;
}

.chatbot-title-right h6 {
  color: white;
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

.chatbot-title-right p {
  color: rgba(255, 255, 255, 0.7);
  margin: 5px 0 0;
  font-size: 13px;
}

.chatbot-close-right {
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  font-size: 18px;
  transition: all 0.3s ease;
}

.chatbot-close-right:hover {
  color: var(--green);
  transform: scale(1.1);
}

.chatbot-messages-right {
  height: 300px;
  overflow-y: auto;
  padding: 20px;
  background: #f8f9fa;
}

.message-right {
  margin-bottom: 15px;
  display: flex;
}

.message-right.bot {
  justify-content: flex-start;
}

.message-right.user {
  justify-content: flex-end;
}

.message-content-right {
  max-width: 80%;
  padding: 12px 16px;
  border-radius: 18px;
  position: relative;
}

.message-right.bot .message-content-right {
  background: white;
  border: 1px solid #e9ecef;
  border-bottom-left-radius: 5px;
}

.message-right.user .message-content-right {
  background: var(--green);
  color: white;
  border-bottom-right-radius: 5px;
}

.message-content-right p {
  margin: 0;
  line-height: 1.5;
  font-size: 14px;
}

.chatbot-quick-questions {
  padding: 15px 20px;
  background: white;
  border-top: 1px solid #e9ecef;
}

.chatbot-quick-questions p {
  color: #6c757d;
  font-size: 13px;
  margin-bottom: 10px;
  font-weight: 500;
}

.quick-questions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.quick-question-btn {
  background: #f1f3f5;
  color: var(--dark-blue);
  border: 1px solid #dee2e6;
  padding: 10px 12px;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 13px;
  font-weight: 500;
  text-align: center;
}

.quick-question-btn:hover {
  background: var(--green);
  color: white;
  border-color: var(--green);
  transform: translateY(-2px);
}

.chatbot-input-right {
  display: flex;
  padding: 15px 20px;
  background: #f8f9fa;
  border-top: 1px solid #e9ecef;
  gap: 10px;
}

.chatbot-input-right input {
  flex: 1;
  padding: 12px 15px;
  border: 1px solid #dee2e6;
  border-radius: 25px;
  outline: none;
  font-size: 14px;
  background: white;
}

.chatbot-input-right input:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 2px rgba(43, 116, 44, 0.1);
}

.chatbot-input-right button {
  width: 45px;
  height: 45px;
  background: var(--green);
  border: none;
  border-radius: 50%;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.chatbot-input-right button:hover {
  background: #1fa978;
  transform: scale(1.05);
}

/* RTL Support for Chatbot */
html[dir="rtl"] .chatbot-container-right {
  right: auto;
  left: 30px;
}

html[dir="rtl"] .chatbot-window-right {
  right: auto;
  left: 0;
  animation-name: slideInLeft;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateY(20px) translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0) translateX(0);
  }
}

html[dir="rtl"] .message-right.bot .message-content-right {
  border-bottom-left-radius: 18px;
  border-bottom-right-radius: 5px;
}

html[dir="rtl"] .message-right.user .message-content-right {
  border-bottom-right-radius: 18px;
  border-bottom-left-radius: 5px;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-hero h1 {
    font-size: 60px;
  }
  
  .contact-hero p {
    font-size: 18px;
  }
  
  .contact-content-section {
    padding: 60px 0;
  }
  
  .contact-info-box,
  .hours-box {
    padding: 30px 20px;
    margin-bottom: 30px;
  }
  
  .map-overlay-info {
    position: relative;
    top: 0;
    left: 0;
    margin: 20px;
    max-width: 100%;
  }
  
  .chatbot-container-right {
    bottom: 20px;
    right: 20px;
  }
  
  .chatbot-window-right {
    width: 300px;
    bottom: 70px;
  }
  
  html[dir="rtl"] .chatbot-container-right {
    left: 20px;
  }
}
/* ================= CHATBOT WIDGET ================= */
#company-chatbot {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 320px;
  border: 1px solid #ccc;
  border-radius: 15px;
  background: white;
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
  z-index: 1000;
  overflow: hidden;
}

#chat-header {
  background: var(--green);
  color: white;
  padding: 18px;
  border-radius: 15px 15px 0 0;
  cursor: pointer;
  transition: all 0.3s ease;
}

#chat-header:hover {
  background: #1fa978;
}

#chat-header h3 {
  font-size: 18px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}

#chat-header p {
  font-size: 13px;
  opacity: 0.9;
  margin-top: 5px;
}

#chat-body {
  height: 350px;
  overflow-y: auto;
  padding: 20px;
  display: none;
  background: #f8f9fa;
}

#chat-messages {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.chat-message {
  margin: 0;
  padding: 12px 16px;
  border-radius: 18px;
  max-width: 85%;
  word-wrap: break-word;
  line-height: 1.5;
  font-size: 14px;
}

.user-message {
  background: var(--green);
  color: white;
  margin-left: auto;
  border-bottom-right-radius: 5px;
}

.bot-message {
  background: white;
  color: #333;
  border: 1px solid #e9ecef;
  border-bottom-left-radius: 5px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

#chat-input {
  display: none;
  padding: 15px;
  border-top: 1px solid #e9ecef;
  background: white;
  gap: 10px;
}

#user-input, #user-input-ar {
  flex: 1;
  padding: 12px 15px;
  border: 1px solid #dee2e6;
  border-radius: 25px;
  font-size: 14px;
  outline: none;
  transition: all 0.3s ease;
}

#user-input:focus, #user-input-ar:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 2px rgba(43, 116, 44, 0.1);
}
/* ================= SERVICE MODAL (FULLSCREEN EXPAND) ================= */
.service-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: white;
  z-index: 9999;
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
  overflow-y: auto;
}

.service-modal.active {
  display: block;
  opacity: 1;
}

.service-modal-content {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}

/* Modal Header */
.service-modal-header {
  background: var(--dark-blue);
  color: white;
  padding: 30px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 100;
}

.service-header-info {
  display: flex;
  align-items: center;
  gap: 20px;
}

.service-header-icon {
  width: 70px;
  height: 70px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: white;
}

.service-header-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  margin-bottom: 5px;
  color: white;
}

.service-subtitle {
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
  margin: 0;
}

.service-modal-close {
  background: rgba(255, 255, 255, 0.1);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  color: white;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.service-modal-close:hover {
  background: var(--green);
  transform: rotate(90deg);
}

/* Modal Body */
.service-modal-body {
  display: flex;
  flex: 1;
  min-height: 0;
}

.service-modal-image {
  flex: 0 0 45%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 500px;
}

.service-modal-details {
  flex: 0 0 55%;
  padding: 50px;
  overflow-y: auto;
}

/* Service Details */
.service-description {
  font-size: 18px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 40px;
  font-weight: 400;
}

.service-features, .service-benefits {
  margin-bottom: 40px;
}

.service-features h3, .service-benefits h3 {
  color: var(--dark-blue);
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--green);
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 30px;
}

.feature-item {
  background: #f8f9fa;
  padding: 20px;
  border-radius: 10px;
  border-left: 4px solid var(--green);
}

.feature-item h4 {
  color: var(--dark-blue);
  font-size: 18px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.feature-item h4 i {
  color: var(--green);
}

.feature-item p {
  color: #6c757d;
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
}

/* Benefits List */
.benefits-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-bottom: 30px;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.benefit-item i {
  color: var(--green);
  font-size: 18px;
  margin-top: 3px;
}

.benefit-item p {
  color: #555;
  font-size: 15px;
  line-height: 1.5;
  margin: 0;
}

/* Actions */
.service-actions {
  display: flex;
  gap: 20px;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid #eee;
}

.btn-service-quote {
  background: var(--green);
  color: white;
  padding: 15px 40px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  flex: 1;
  justify-content: center;
  text-align: center;
}

.btn-service-quote:hover {
  background: #1fa978;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(43, 116, 44, 0.2);
  color: white;
}

.btn-service-back {
  background: var(--dark-blue);
  color: white;
  padding: 15px 40px;
  border-radius: 30px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  flex: 1;
  justify-content: center;
  text-align: center;
}

.btn-service-back:hover {
  background: #0a1a2d;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(7, 27, 47, 0.2);
  color: white;
}

/* Service Card Expand Link */
.expand-link {
  color: var(--green);
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.service-card:hover .expand-link {
  color: var(--dark-blue);
  transform: translateX(5px);
}

/* Responsive */
@media (max-width: 992px) {
  .service-modal-body {
    flex-direction: column;
  }
  
  .service-modal-image {
    flex: 0 0 300px;
  }
  
  .service-modal-details {
    flex: 1;
    padding: 30px;
  }
  
  .features-grid,
  .benefits-list {
    grid-template-columns: 1fr;
  }
  
  .service-actions {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .service-modal-header {
    padding: 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
  
  .service-header-info {
    width: 100%;
  }
  
  .service-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
  }
  
  .service-header-text h2 {
    font-size: 28px;
  }
  
  .service-modal-image {
    flex: 0 0 250px;
  }
}

/* Service card hover enhancement */
.service-card.expandable {
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card.expandable:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
  border-color: var(--green);
}
/* ================= CAREERS ================= */

.careers-section {
  background: #fff;
  color: #000;
  padding: 100px 0;
}

.job-card {
  background: #f8f9fa;
  padding: 30px;
  border-radius: 20px;
  height: 100%;
  transition: 0.3s;
}

.job-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.job-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.job-badge {
  background: var(--green);
  color: #fff;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 13px;
}

.job-location {
  color: #6c757d;
  margin: 10px 0;
}

.job-tags .tag {
  background: #e9ecef;
  padding: 6px 12px;
  border-radius: 15px;
  font-size: 12px;
  margin-right: 6px;
}

.btn-apply {
  margin-top: 20px;
  background: transparent;
  border: 2px solid var(--green);
  color: var(--green);
  padding: 10px 22px;
  border-radius: 30px;
  font-weight: 600;
}

.btn-apply:hover {
  background: var(--green);
  color: #fff;
}

/* APPLICATION FORM */
.application-form-container {
  display: none;
  background: #f8f9fa;
  padding: 40px;
  border-radius: 20px;
}

.application-form-container.show {
  display: block;
}
/* Quote Modal Styles */
#quoteModal .modal-content {
  border-radius: 20px;
  border: none;
  overflow: hidden;
}

#quoteModal .modal-header {
  background: var(--dark-blue);
  color: white;
  border-bottom: 3px solid var(--green);
}

#quoteModal .modal-title {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
}

#quoteModal .btn-close {
  filter: invert(1) grayscale(100%) brightness(200%);
}

#quoteModal .btn-success {
  background-color: #25D366;
  border-color: #25D366;
  padding: 12px;
  font-weight: 600;
}

#quoteModal .btn-success:hover {
  background-color: #1da851;
  border-color: #1da851;
}


#quoteModal .btn-primary {
  background-color: var(--dark-blue);
  border-color: var(--dark-blue);
  padding: 12px;
  font-weight: 600;
}

#quoteModal .btn-primary:hover {
  background-color: #0a1a2d;
  border-color: #0a1a2d;
}

#quoteModal .btn-outline-secondary {
  padding: 12px;
}

/* Make button-quote work as a button too */
.btn-quote {
  cursor: pointer;
  border: none;
  font-family: inherit;
}

