/* General Reset */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Euromode', 'Segoe UI', Arial, sans-serif;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2%;
}

/* service */
.container {
    width: 100%; 
    max-width: 1200px; 
    margin: 0 auto; 
    padding: 2%;
  }

  .hero {
    position: relative;
    text-align: center;
    color: white;
    height: 45vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    min-height: 180px;
    max-height: 350px;
  }

  .hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
  }

  .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(20, 30, 40, 0.55);
    z-index: 2;
  }

  .hero-text {
    position: relative;
    z-index: 3;
    width: 100%;
    text-align: center;
    top: 0;
    left: 0;
    transform: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
  }

  .hero-text h1 {
    font-size: 3em;
    margin: 0;
    font-weight: bold;
    letter-spacing: 2px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
  }

  .hero-text p {
    font-size: 1.5em;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
  }

/* Enhanced Responsive Breakpoints */
@media (max-width: 1400px) {
  .hero-text h1 {
    font-size: 2.8em;
  }
  
  .hero-text p {
    font-size: 1.4em;
  }
}

@media (max-width: 1200px) {
  .hero-text h1 {
    font-size: 2.5em;
  }
  
  .hero-text p {
    font-size: 1.3em;
  }
  
  .options-section,
  .option-2 {
    max-width: 1000px;
    margin: 40px auto;
    padding: 15px;
  }
}

@media (max-width: 1000px) {
  .hero-text h1 {
    font-size: 2.2em;
  }
  
  .hero-text p {
    font-size: 1.2em;
  }
  
  .options-section,
  .option-2 {
    max-width: 900px;
    margin: 35px auto;
    padding: 12px;
  }
}

@media (max-width: 900px) {
  .hero-text h1 {
    font-size: 2em;
  }
  
  .hero-text p {
    font-size: 1.1em;
  }
  
  .options-section,
  .option-2 {
    max-width: 800px;
    margin: 30px auto;
    padding: 10px;
  }
  
  .text-container h2 {
    font-size: 1.8em;
  }
  
  .text-container p {
    font-size: 1.1em;
  }
}

@media (max-width: 768px) {
  .hero {
    height: 35vh;
    min-height: 150px;
    max-height: 250px;
  }
  
  .hero-text h1 {
    font-size: 1.8em;
    letter-spacing: 1px;
  }
  
  .hero-text p {
    font-size: 1em;
  }
  
  /* Service sections stack vertically on mobile */
  .options-section,
  .option-2 {
    flex-direction: column;
    max-width: 100%;
    margin: 25px auto;
    padding: 15px;
    gap: 20px;
  }
  
  .options-section .image-container,
  .option-2 .image-container {
    order: 1;
    text-align: center;
  }
  
  .options-section .text-container,
  .option-2 .text-container {
    order: 2;
    padding: 15px 0;
  }
  
  .text-container h2 {
    font-size: 1.6em;
    margin-bottom: 8px;
  }
  
  .text-container p {
    font-size: 1em;
    line-height: 1.5;
  }
}

@media (max-width: 700px) {
  .hero {
    height: 28vh;
    min-height: 100px;
    max-height: 200px;
  }
  
  .hero-text h1 {
    font-size: 1.6em;
  }
  
  .hero-text p {
    font-size: 0.9em;
  }
  
  .options-section,
  .option-2 {
    margin: 20px auto;
    padding: 12px;
    gap: 15px;
  }
  
  .text-container h2 {
    font-size: 1.5em;
  }
  
  .text-container p {
    font-size: 0.95em;
  }
}

@media (max-width: 600px) {
  .hero-text h1 {
    font-size: 1.4em;
  }
  
  .hero-text p {
    font-size: 0.85em;
  }
  
  .options-section,
  .option-2 {
    margin: 15px auto;
    padding: 10px;
    gap: 12px;
  }
  
  .text-container h2 {
    font-size: 1.4em;
    margin-bottom: 6px;
  }
  
  .text-container p {
    font-size: 0.9em;
    line-height: 1.4;
  }
  
  .footer-bottom .container {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
  .footer-bottom .social-icons {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero-text h1 {
    font-size: 1.3em;
    letter-spacing: 0.5px;
  }
  
  .hero-text p {
    font-size: 0.8em;
  }
  
  .options-section,
  .option-2 {
    margin: 12px auto;
    padding: 8px;
    gap: 10px;
  }
  
  .text-container h2 {
    font-size: 1.3em;
    margin-bottom: 5px;
  }
  
  .text-container p {
    font-size: 0.85em;
    line-height: 1.3;
  }
  
  .image-container img {
    border-radius: 8px;
  }
}

@media (max-width: 360px) {
  .hero-text h1 {
    font-size: 1.2em;
  }
  
  .hero-text p {
    font-size: 0.75em;
  }
  
  .options-section,
  .option-2 {
    margin: 10px auto;
    padding: 6px;
    gap: 8px;
  }
  
  .text-container h2 {
    font-size: 1.2em;
    margin-bottom: 4px;
  }
  
  .text-container p {
    font-size: 0.8em;
    line-height: 1.2;
  }
}

@media (max-width: 320px) {
  .hero-text h1 {
    font-size: 1.1em;
  }
  
  .hero-text p {
    font-size: 0.7em;
  }
  
  .options-section,
  .option-2 {
    margin: 8px auto;
    padding: 5px;
    gap: 6px;
  }
  
  .text-container h2 {
    font-size: 1.1em;
  }
  
  .text-container p {
    font-size: 0.75em;
  }
}

/*option section */
.options-section {
    display: flex;
    align-items: center;
    max-width: 1200px;
    margin: 50px auto;
    padding: 20px;
    transition: all 0.3s ease;
}

.image-container {
    flex: 1;
    transition: transform 0.3s ease;
}

.image-container img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.image-container:hover img {
    transform: scale(1.02);
}

.text-container {
    flex: 1;
    padding: 20px;
    transition: all 0.3s ease;
}

.text-container h2 {
    font-size: 2em;
    margin-bottom: 10px;
    color: #1A237E;
    transition: color 0.3s ease;
}

.text-container p {
    font-size: 1.2em;
    color: #333;
    line-height: 1.6;
    transition: color 0.3s ease;
}

/*option 2*/
.option-2 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 50px auto;
    padding: 20px;
    background-color: #ddd9d9; 
    border-radius: 10px;
    transition: all 0.3s ease;
}

.option-2:hover {
    background-color: #d0cccc;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Enhanced Touch Interactions */
@media (hover: none) and (pointer: coarse) {
  .options-section,
  .option-2 {
    cursor: pointer;
  }
  
  .options-section:active,
  .option-2:active {
    transform: scale(0.98);
  }
  
  .image-container:active img {
    transform: scale(1.05);
  }
}

/* Loading States */
body:not(.loaded) {
  opacity: 0;
  transition: opacity 0.3s ease;
}

body.loaded {
  opacity: 1;
}

/* Enhanced Accessibility */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
  .options-section,
  .option-2 {
    border: 2px solid #000;
  }
  
  .text-container h2 {
    color: #000;
  }
  
  .text-container p {
    color: #000;
  }
}

/* Print Styles */
@media print {
  .hero {
    height: auto;
    min-height: auto;
    max-height: none;
  }
  
  .options-section,
  .option-2 {
    break-inside: avoid;
    page-break-inside: avoid;
    margin: 20px auto;
  }
  
  .image-container img {
    max-width: 300px;
  }
}

/* Landscape Mobile Optimizations */
@media (max-width: 768px) and (orientation: landscape) {
  .hero {
    height: 25vh;
    min-height: 120px;
    max-height: 150px;
  }
  
  .hero-text h1 {
    font-size: 1.4em;
  }
  
  .hero-text p {
    font-size: 0.8em;
  }
  
  .options-section,
  .option-2 {
    margin: 15px auto;
    gap: 10px;
  }
}

/* Ultra-wide Screen Support */
@media (min-width: 2000px) {
  .hero-text h1 {
    font-size: 3.5em;
  }
  
  .hero-text p {
    font-size: 1.8em;
  }
  
  .options-section,
  .option-2 {
    max-width: 1600px;
    margin: 60px auto;
    padding: 30px;
  }
  
  .text-container h2 {
    font-size: 2.5em;
  }
  
  .text-container p {
    font-size: 1.4em;
  }
}

/* Focus Management for Accessibility */
.options-section:focus,
.option-2:focus {
  outline: 3px solid #1A237E;
  outline-offset: 2px;
}

/* Enhanced Scroll Performance */
.options-section,
.option-2 {
  will-change: transform;
}

/* Service Section Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.options-section,
.option-2 {
  animation: fadeInUp 0.6s ease forwards;
}

.options-section:nth-child(even) {
  animation-delay: 0.1s;
}

.option-2:nth-child(even) {
  animation-delay: 0.2s;
}

/* Footer Styles (from index page) */
footer {
  background: #1A237E;
  color: #fff;
  padding: 40px 0 0 0;
  margin-top: 0;
}
.footer-top {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #333;
}
.footer-logo-section {
  max-width: 300px;
}
.footer-logo {
  height: 40px;
  width: auto;
  margin-bottom: 15px;
  filter: brightness(0) invert(1);
}
.footer-top h4 {
  margin-bottom: 10px;
  color: #fff;
}
.footer-top ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-top ul li {
  margin-bottom: 6px;
}
.footer-top input[type="email"] {
  padding: 10px 15px;
  border-radius: 6px;
  border: none;
  margin-bottom: 12px;
  width: 100%;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.footer-top input[type="email"]::placeholder {
  color: rgba(255, 255, 255, 0.7);
}
.footer-top button {
  background: #fff;
  color: #1A237E;
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  width: 100%;
}
.footer-top button:hover {
  background: #1A237E;
  color: #fff;
}
.footer-top p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 15px;
  font-size: 0.95em;
}
.footer-bottom {
  text-align: left;
  padding: 18px 0;
  background: #1A237E;
  font-size: 0.95em;
}
.footer-bottom .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
}
.footer-bottom .social-icons {
  display: flex;
  gap: 15px;
}
.footer-bottom .social-icons a {
  color: #fff;
  font-size: 1.1em;
  transition: all 0.3s ease;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}
.footer-bottom .social-icons a:hover {
  transform: translateY(-3px);
}
.footer-bottom .social-icons a.facebook:hover {
  background: #1877f2;
  box-shadow: 0 4px 12px rgba(24, 119, 242, 0.4);
}
.footer-bottom .social-icons a.twitter:hover {
  background: #1da1f2;
  box-shadow: 0 4px 12px rgba(29, 161, 242, 0.4);
}
.footer-bottom .social-icons a.instagram:hover {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  box-shadow: 0 4px 12px rgba(220, 39, 67, 0.4);
}
.footer-bottom .social-icons a.linkedin:hover {
  background: #0077b5;
  box-shadow: 0 4px 12px rgba(0, 119, 181, 0.4);
}
.footer-bottom .social-icons a.youtube:hover {
  background: #ff0000;
  box-shadow: 0 4px 12px rgba(255, 0, 0, 0.4);
}
@media (max-width: 600px) {
  .footer-bottom .container {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
  .footer-bottom .social-icons {
    justify-content: center;
  }
}
@media (max-width: 900px) {
  .footer-top {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

/* Top Bar and Navigation Styles (from index page) */
.top-bar {
  display: flex;
  justify-content: space-between;
  padding: 8px 40px;
  font-size: 13px;
  background: #000;
  color: #fff;
}
.top-bar .socials a {
  margin-left: 10px;
  color: #fff;
}
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 40px;
  background: #fff !important;
}
nav .logo {
  font-size: 1.7em;
  font-weight: bold;
  color: #333 !important;
}
nav .logo img {
  height: 30px;
  width: auto;
}
nav ul.nav-links {
  display: flex;
  list-style: none;
  gap: 30px;
  margin: 0;
  padding: 0;
}
nav ul.nav-links li {
  cursor: pointer;
  font-weight: 500;
  color: #333 !important;
  position: relative;
  padding: 5px 0;
  transition: color 0.3s ease;
  font-size: 1em;
}
nav ul.nav-links li::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #1A237E;
  transition: width 0.3s ease;
}
nav ul.nav-links li:hover {
  color: #1A237E;
}
nav ul.nav-links li:hover::after {
  width: 100%;
}
nav ul.nav-links li.active {
  color: #1A237E;
}
nav ul.nav-links li.active::after {
  width: 100%;
}
nav ul.nav-links li a {
  color: inherit;
  text-decoration: none;
  display: block;
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 15px;
}

.user-menu {
  display: flex;
  align-items: center;
}

.user-profile-nav {
  color: #333 !important;
  text-decoration: none;
  display: flex;
  align-items: center;
}

.user-avatar-nav {
  font-size: 1.5em;
  color: #333 !important;
}
.search-bar {
  display: flex;
  align-items: center;
  background: rgba(26, 35, 126, 0.1);
  border-radius: 20px;
  padding: 5px 15px;
}
.search-bar input {
  background: transparent;
  border: none;
  color: #333 !important;
  padding: 5px;
  width: 150px;
  outline: none;
}
.search-bar input::placeholder {
  color: rgba(51, 51, 51, 0.7);
}
.search-bar button {
  background: transparent;
  border: none;
  color: #333 !important;
  cursor: pointer;
  padding: 5px;
}
.search-bar button:hover {
  color: #FF9800;
}
/* Google Translate Styles */
#google_translate_element {
  margin: 0 10px;
}
#google_translate_element select {
  background-color: transparent;
  color: #333 !important;
  border: 1px solid rgba(26, 35, 126, 0.3);
  border-radius: 20px;
  padding: 5px 10px;
  cursor: pointer;
  font-size: 14px;
}
#google_translate_element select:hover {
  border-color: #FF9800;
}
#google_translate_element select option {
  background-color: #1A237E;
  color: #fff;
}
.book-btn {
  background: #90d8f7 !important;
  color: #111 !important;
  border: none;
  padding: 8px 18px;
  border-radius: 10px;
  font-weight: bold;
  font-size: 1em;
  cursor: pointer;
  transition: background 0.2s;
  box-shadow: none;
}
.book-btn:hover {
  background: #6ec1e4 !important;
}
.book-btn a {
  color: inherit !important;
  text-decoration: none;
  display: block;
}
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: 16px;
}
.nav-toggle .bar {
  width: 26px;
  height: 3px;
  background: #333;
  margin: 3px 0;
  border-radius: 2px;
  transition: 0.3s;
}
@media (max-width: 1000px) {
  .nav-links,
  .nav-right {
    display: none;
  }
  nav.active .nav-links,
  nav.active .nav-right {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background: #1A237E;
    z-index: 10;
    padding: 20px 0 10px 0;
    gap: 18px;
    box-shadow: 0 4px 24px rgba(26,35,126,0.10);
  }
  .nav-links li {
    font-size: 1.2em;
    text-align: center;
  }
  .nav-right {
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 12px;
  }
  .nav-toggle {
    display: flex;
  }
}
@media (max-width: 900px) {
  .top-bar {
    padding: 8px 10px;
    font-size: 12px;
  }
  nav ul {
    gap: 15px;
  }
}

  
