@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Montserrat", sans-serif;
  line-height: 1.6;
  color: #333;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Top Header */
.top-header {
  background-color: #1a3d3a;
  color: #ffffff;
  font-size: 14px;
  padding: 10px 0;
}

.top-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.contact-info span {
  margin-right: 30px;
}

.contact-info i {
  margin-right: 8px;
  color: #4a9b8e;
}

.language-selector {
  cursor: pointer;
  padding: 5px 10px;
  transition: background-color 0.3s;
}

.language-selector:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* Main Header */
.main-header {
  background-color: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 15px 0;
  transition: transform 0.3s ease;
}

.main-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo-icon {
  background-color: #1a3d3a;
  color: #ffffff;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.logo-text h2 {
  font-size: 24px;
  font-weight: 700;
  color: #1a3d3a;
  line-height: 1.2;
}

.logo-text h3 {
  font-size: 18px;
  font-weight: 600;
  color: #4a9b8e;
  line-height: 1.2;
}

.navigation ul {
  display: flex;
  list-style: none;
  gap: 40px;
}

.navigation a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  padding: 10px 0;
  transition: color 0.3s;
  position: relative;
}

.navigation a:hover,
.navigation a.active {
  color: #4a9b8e;
}

.navigation a.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #4a9b8e;
}

.get-quote-btn {
  background-color: #1a3d3a;
  color: #ffffff;
  border: none;
  padding: 12px 24px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  font-family: "Montserrat", sans-serif;
}

.get-quote-btn:hover {
  background-color: #4a9b8e;
  transform: translateY(-2px);
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background-color: #333;
  transition: 0.3s;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}

.video-background video,
.video-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(26, 61, 58, 0.8) 0%, rgba(74, 155, 142, 0.6) 100%);
  z-index: -1;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 50px;
  align-items: center;
  min-height: 80vh;
}

.hero-left {
  color: #ffffff;
}

.hero-tagline {
  font-size: 16px;
  font-weight: 600;
  color: #4a9b8e;
  margin-bottom: 20px;
  letter-spacing: 2px;
}

.hero-title {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 24px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-description {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.9);
  max-width: 500px;
  font-weight: 400;
}

.explore-btn {
  background: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
  padding: 15px 40px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  letter-spacing: 1px;
  font-family: "Montserrat", sans-serif;
}

.explore-btn:hover {
  background-color: #ffffff;
  color: #1a3d3a;
}

/* Inquiry Form */
.inquiry-form {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 25px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.inquiry-form h3 {
  color: #1a3d3a;
  font-size: 20px;
  margin-bottom: 20px;
  text-align: center;
  font-weight: 600;
}

.form-group {
  margin-bottom: 15px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 2px solid #e0e0e0;
  font-size: 14px;
  transition: border-color 0.3s;
  background-color: #ffffff;
  font-family: "Montserrat", sans-serif;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #4a9b8e;
}

.form-group textarea {
  resize: vertical;
  min-height: 70px;
}

.submit-btn {
  width: 100%;
  background: linear-gradient(135deg, #1a3d3a 0%, #4a9b8e 100%);
  color: #ffffff;
  border: none;
  padding: 14px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  position: relative;
  font-family: "Montserrat", sans-serif;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(26, 61, 58, 0.3);
}

.submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

/* Form Animations */
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(74, 155, 142, 0.2);
}

/* Success/Error Messages */
.success-message {
  background-color: #d4edda;
  color: #155724;
  padding: 15px;
  margin-top: 15px;
  border: 1px solid #c3e6cb;
  display: none;
  font-size: 14px;
}

.error-message {
  background-color: #f8d7da;
  color: #721c24;
  padding: 15px;
  margin-top: 15px;
  border: 1px solid #f5c6cb;
  display: none;
  font-size: 14px;
}

.field-error {
  color: #dc3545;
  font-size: 12px;
  margin-top: 5px;
}

/* Services Section */
.services-section {
  padding: 100px 0;
  background-color: #f8f9fa;
}

.services-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-bottom: 80px;
  align-items: start;
}

.services-left {
  max-width: 500px;
}

.section-tagline {
  font-size: 14px;
  font-weight: 600;
  color: #4a9b8e;
  margin-bottom: 20px;
  letter-spacing: 2px;
}

.section-title {
  font-size: 42px;
  font-weight: 800;
  color: #1a3d3a;
  line-height: 1.2;
  margin-bottom: 0;
}

.services-right {
  padding-top: 20px;
}

.services-description {
  font-size: 16px;
  line-height: 1.7;
  color: #666;
  margin-bottom: 24px;
  font-weight: 400;
}

.services-description:last-child {
  margin-bottom: 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.service-card {
  background: #ffffff;
  transition: all 0.3s ease;
  cursor: pointer;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
  position: relative;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.service-card:hover .service-image img {
  transform: scale(1.05);
}

.service-category {
  font-size: 12px;
  font-weight: 600;
  color: #4a9b8e;
  letter-spacing: 1px;
  margin: 20px 20px 8px 20px;
}

.service-title {
  font-size: 20px;
  font-weight: 700;
  color: #1a3d3a;
  margin: 0 20px 20px 20px;
  line-height: 1.3;
}

/* Statistics Section */
.statistics-section {
  background-color: #1a3d3a;
  padding: 100px 0;
  color: #ffffff;
}

.statistics-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.statistics-left {
  max-width: 500px;
}

.statistics-left .section-tagline {
  color: #d4af37;
  margin-bottom: 20px;
}

.statistics-left .section-title {
  color: #ffffff;
  font-size: 42px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 30px;
}

.statistics-description {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 40px;
  font-weight: 400;
}

.read-more-btn {
  background: transparent;
  color: #d4af37;
  border: 2px solid #d4af37;
  padding: 12px 30px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  letter-spacing: 1px;
  font-family: "Montserrat", sans-serif;
}

.read-more-btn:hover {
  background-color: #d4af37;
  color: #1a3d3a;
}

.statistics-right {
  display: flex;
  justify-content: center;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 400px;
}

.stat-item {
  text-align: left;
}

.stat-number {
  font-size: 48px;
  font-weight: 800;
  color: #d4af37;
  line-height: 1;
  margin-bottom: 10px;
}

.stat-number::after {
  content: "+";
}

.stat-item:nth-child(5) .stat-number::after {
  content: "%";
}

.stat-label {
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 400;
}

/* Counter Animation */
@keyframes countUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.stat-item.animate {
  animation: countUp 0.6s ease-out;
}

/* FAQ Section */
.faq-section {
  padding: 100px 0;
  background-color: #ffffff;
}

.faq-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.faq-left {
  max-width: 500px;
}

.faq-description {
  font-size: 16px;
  line-height: 1.7;
  color: #666;
  margin-bottom: 40px;
  font-weight: 400;
}

.faq-list {
  margin-top: 40px;
}

.faq-item {
  border-bottom: 1px solid #e0e0e0;
  margin-bottom: 0;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-question span {
  font-size: 16px;
  font-weight: 600;
  color: #1a3d3a;
  line-height: 1.4;
  flex: 1;
  margin-right: 20px;
}

.faq-icon {
  font-size: 16px;
  color: #4a9b8e;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding-bottom: 25px;
}

.faq-answer p {
  font-size: 15px;
  line-height: 1.6;
  color: #666;
  font-weight: 400;
}

.faq-right {
  display: flex;
  justify-content: center;
  align-items: center;
}

.faq-image {
  width: 100%;
  max-width: 500px;
  height: 600px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.faq-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Footer Section */
.footer-section {
  background-color: #1a3d3a;
  color: #ffffff;
}

.footer-main {
  padding: 80px 0 40px 0;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 60px;
}

.footer-column h4.footer-title {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 25px;
  letter-spacing: 1px;
}

/* Footer Logo */
.footer-logo .logo-text h2 {
  color: #ffffff;
  font-size: 22px;
}

.footer-logo .logo-text h3 {
  color: #4a9b8e;
  font-size: 16px;
}

.footer-description {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  margin: 25px 0 30px 0;
  font-weight: 400;
}

/* Social Links */
.social-links {
  display: flex;
  gap: 15px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 16px;
}

.social-link:hover {
  background-color: #4a9b8e;
  transform: translateY(-3px);
}

/* Footer Links */
.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 15px;
  font-weight: 400;
  transition: color 0.3s ease;
  line-height: 1.5;
}

.footer-links a:hover {
  color: #4a9b8e;
}

/* Contact Details */
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.contact-item i {
  color: #4a9b8e;
  font-size: 16px;
  margin-top: 3px;
  flex-shrink: 0;
}

.contact-text {
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.8);
}

.contact-text strong {
  color: #ffffff;
  font-weight: 600;
  display: block;
  margin-bottom: 5px;
}

/* Footer Bottom */
.footer-bottom {
  background-color: rgba(0, 0, 0, 0.2);
  padding: 25px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.copyright p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 400;
}

.footer-bottom-links {
  display: flex;
  gap: 30px;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
  color: #4a9b8e;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr 320px;
    gap: 40px;
  }

  .inquiry-form {
    padding: 20px;
  }

  .hero-title {
    font-size: 42px;
  }

  .services-content {
    gap: 60px;
    margin-bottom: 60px;
  }

  .section-title {
    font-size: 36px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .statistics-content {
    gap: 60px;
  }

  .statistics-left .section-title {
    font-size: 36px;
  }

  .stats-grid {
    gap: 30px;
  }

  .stat-number {
    font-size: 40px;
  }

  .faq-content {
    gap: 60px;
  }

  .faq-image {
    height: 500px;
  }

  .footer-content {
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .top-header .container {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .contact-info span {
    margin: 0 15px;
    font-size: 12px;
  }

  .main-header .container {
    flex-wrap: wrap;
    position: relative;
  }

  .navigation {
    display: none;
    width: 100%;
    order: 3;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 0 20px;
  }

  .navigation.active {
    display: block;
  }

  .navigation ul {
    flex-direction: column;
    gap: 0;
    padding: 20px 0;
  }

  .navigation li {
    border-bottom: 1px solid #f0f0f0;
  }

  .navigation li:last-child {
    border-bottom: none;
  }

  .navigation a {
    display: block;
    padding: 15px 0;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
    padding: 40px 0;
  }

  .hero-right {
    order: -1;
    margin-bottom: 20px;
  }

  .inquiry-form {
    margin: 0 auto;
    max-width: 400px;
    padding: 20px;
  }

  .hero-title {
    font-size: 32px;
    margin-bottom: 20px;
  }

  .hero-description {
    font-size: 16px;
    margin-bottom: 30px;
  }

  .hero-tagline {
    font-size: 14px;
    margin-bottom: 15px;
  }

  .explore-btn {
    padding: 12px 30px;
    font-size: 14px;
  }

  .services-section {
    padding: 60px 0;
  }

  .services-content {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 50px;
    text-align: center;
  }

  .section-title {
    font-size: 28px;
  }

  .services-description {
    font-size: 15px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .service-image {
    height: 200px;
  }

  .statistics-section {
    padding: 60px 0;
  }

  .statistics-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .statistics-left .section-title {
    font-size: 28px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    justify-items: center;
  }

  .stat-item {
    text-align: center;
  }

  .stat-number {
    font-size: 36px;
  }

  .faq-section {
    padding: 60px 0;
  }

  .faq-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .faq-right {
    order: -1;
  }

  .faq-image {
    height: 400px;
    margin-bottom: 20px;
  }

  .faq-question span {
    font-size: 15px;
  }

  .faq-answer p {
    font-size: 14px;
  }

  /* Footer Mobile */
  .footer-main {
    padding: 60px 0 30px 0;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .footer-column {
    text-align: left;
  }

  .footer-column:first-child {
    text-align: center;
  }

  .social-links {
    justify-content: center;
  }

  .footer-bottom-content {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .footer-bottom-links {
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .logo-text h2 {
    font-size: 20px;
  }

  .logo-text h3 {
    font-size: 16px;
  }

  .logo-icon {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }

  .get-quote-btn {
    padding: 10px 16px;
    font-size: 14px;
  }

  .inquiry-form {
    margin: 0 10px;
    padding: 15px;
  }

  .inquiry-form h3 {
    font-size: 18px;
    margin-bottom: 15px;
  }

  .form-group {
    margin-bottom: 12px;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 10px;
    font-size: 14px;
  }

  .submit-btn {
    padding: 12px;
    font-size: 14px;
  }

  .hero-title {
    font-size: 24px;
  }

  .hero-description {
    font-size: 14px;
  }

  .hero-tagline {
    font-size: 12px;
    letter-spacing: 1px;
  }

  .contact-info span {
    display: block;
    margin: 5px 0;
  }

  .services-section {
    padding: 40px 0;
  }

  .section-title {
    font-size: 24px;
  }

  .services-description {
    font-size: 14px;
  }

  .service-title {
    font-size: 18px;
  }

  .service-category {
    font-size: 11px;
  }

  .statistics-section {
    padding: 40px 0;
  }

  .statistics-left .section-title {
    font-size: 24px;
  }

  .statistics-description {
    font-size: 14px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .stat-number {
    font-size: 32px;
  }

  .stat-label {
    font-size: 13px;
  }

  .faq-section {
    padding: 40px 0;
  }

  .section-title {
    font-size: 24px;
  }

  .faq-description {
    font-size: 14px;
  }

  .faq-image {
    height: 300px;
  }

  .faq-question {
    padding: 20px 0;
  }

  .faq-question span {
    font-size: 14px;
  }

  .faq-answer p {
    font-size: 13px;
  }

  /* Footer Mobile Small */
  .footer-main {
    padding: 40px 0 20px 0;
  }

  .footer-content {
    gap: 30px;
  }

  .footer-title {
    font-size: 16px;
    margin-bottom: 20px;
  }

  .footer-description {
    font-size: 14px;
    margin: 20px 0 25px 0;
  }

  .social-links {
    gap: 12px;
  }

  .social-link {
    width: 35px;
    height: 35px;
    font-size: 14px;
  }

  .footer-links a {
    font-size: 14px;
  }

  .contact-text {
    font-size: 13px;
  }

  .footer-bottom {
    padding: 20px 0;
  }

  .copyright p {
    font-size: 12px;
  }

  .footer-bottom-links a {
    font-size: 12px;
  }

  .footer-bottom-links {
    gap: 15px;
  }
}

/* Additional Mobile Optimizations */
@media (max-width: 360px) {
  .hero-title {
    font-size: 22px;
  }

  .inquiry-form {
    padding: 12px;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 8px;
  }

  .footer-content {
    gap: 25px;
  }

  .social-link {
    width: 32px;
    height: 32px;
    font-size: 13px;
  }
}

/* Landscape Mobile */
@media (max-width: 768px) and (orientation: landscape) {
  .hero-section {
    min-height: 120vh;
  }

  .hero-content {
    padding: 60px 0;
  }
}

/* Tablet Portrait */
@media (min-width: 769px) and (max-width: 1024px) {
  .hero-title {
    font-size: 38px;
  }

  .hero-description {
    font-size: 16px;
  }

  .footer-content {
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
  }
}
