/* General Reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Euromode', 'Segoe UI', Arial, sans-serif;
  line-height: 1.6;
  background: #fdfdfd;
  min-height: 2000px;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2%;
}

/* Navbar Styling */
.navbar {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  background-color: rgb(12, 21, 93);
  padding: 15px 30px;
  gap: 15px;
}

.logo1 img {
  height: 30px;
  max-width: 100%;
}

.menu-toggle {
  display: none;
  font-size: 24px;
  color: white;
  background: none;
  border: none;
  cursor: pointer;
}

/* Nav links */
.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s;
  font-size: 15px;
}

.nav-links a.active {
  padding: 6px 10px;
  border-radius: 20px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.nav-links a:hover {
  color: #000080;
}

/* Search & Signup */
.search-signup {
  display: flex;
  align-items: center;
  gap: 10px;
}

.search-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: white;
  border-radius: 50%;
  width: 34px;
  height: 34px;
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.2);
}

.search-icon-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 16px;
  color: #002366;
  width: 100%;
  height: 100%;
  padding: 0;
}

/* Signup Button */
.signup {
  padding: 6px 12px;
  font-size: 13px;
  border-radius: 20px;
  background-color: white;
  color: #002366;
  font-weight: bold;
  border: none;
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: 0.3s;
}

.signup:hover {
  background-color: #002366;
  color: white;
}

/* Responsive Styling */
@media (max-width: 1024px) {
  .nav-links a {
    font-size: 12px;
  }

  .signup {
    font-size: 12px;
    padding: 6px 10px;
  }

  .search-icon-wrapper {
    width: 32px;
    height: 32px;
  }

  .search-icon-btn {
    font-size: 15px;
  }
}

@media (max-width: 768px) {
  .navbar {
    flex-wrap: nowrap;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    display: none;
  }

  .nav-links.active {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 8px;
    margin-top: 10px;
  }

  .search-signup {
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
  }

  .signup {
    width: auto;
    margin-top: 0;
  }
}

@media (max-width: 480px) {
  .nav-links a {
    font-size: 12px;
  }

  .search-signup {
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
  }

  .signup {
    width: auto;
    margin-top: 0;
  }
}

/* Top Bar Styles */
.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 Bar Styles */
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 40px;
  background: #fff; /* White */
}
nav .logo {
  font-size: 1.7em;
  font-weight: bold;
  color: #333;
}
nav .logo img {
  height: 30px;
  width: auto;
}
nav ul {
  display: flex;
  list-style: none;
  gap: 30px;
  margin: 0;
  padding: 0;
}
nav ul li {
  cursor: pointer;
  font-weight: 500;
  color: #333;
  position: relative;
  padding: 5px 0;
  transition: color 0.3s ease;
  font-size: 1em;
}
nav ul li::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #1A237E;
  transition: width 0.3s ease;
}
nav ul li:hover {
  color: #1A237E;
}
nav ul li:hover::after {
  width: 100%;
}
nav ul li.active {
  color: #1A237E;
}
nav ul li.active::after {
  width: 100%;
}
nav ul li a {
  color: inherit;
  text-decoration: none;
  display: block;
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 15px;
}
.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;
  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;
  cursor: pointer;
  padding: 5px;
}
.search-bar button:hover {
  color: #FF9800;
}
#google_translate_element {
  margin: 0 10px;
}
#google_translate_element select {
  background-color: transparent;
  color: #333;
  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 {
    flex-direction: column;
    align-items: center;
    padding: 8px 10px;
    text-align: center;
  }
  nav ul {
    gap: 15px;
  }
}
@media (max-width: 600px) {
  .top-bar {
    padding: 8px 2vw;
    font-size: 12px;
  }
  nav ul {
    gap: 10px;
  }
  nav .logo img {
    height: 24px;
  }
}

/* Footer Styles */
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: 900px) {
  .footer-top {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .footer-bottom .container {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
  
  .footer-bottom .social-icons {
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .footer-top {
    padding: 20px;
  }
  
  .footer-logo-section {
    max-width: 100%;
  }
  
  .footer-bottom {
    padding: 15px 0;
  }
}

/* Review Section Styles */
.review-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 80px 0 60px 0;
}

.review-section-container {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.review-header {
  margin-bottom: 40px;
}

.review-header h2 {
  font-size: 2.5rem;
  color: #1A237E;
  margin-bottom: 12px;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.review-subtitle {
  color: #666;
  font-size: 1.1rem;
  margin: 0;
}

.customer-review-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 24px;
  box-shadow: 0 12px 40px rgba(26, 35, 126, 0.08),
              0 2px 8px rgba(0, 0, 0, 0.04);
  padding: 40px;
  text-align: left;
  position: relative;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(26, 35, 126, 0.08);
  animation: fadeInUp 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.form-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}

.user-avatar {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #1A237E 0%, #000 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(26, 35, 126, 0.15);
}

.avatar-icon {
  font-size: 24px;
  color: white;
}

.form-header h3 {
  margin: 0;
  font-size: 1.5rem;
  color: #1A237E;
  font-weight: 700;
}

.rating-container {
  margin-bottom: 32px;
}

.rating-label {
  font-size: 1.1rem;
  color: #444;
  margin-bottom: 12px;
  font-weight: 500;
}

.star-row {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #f8f9fa;
  border-radius: 16px;
  padding: 12px 20px;
  border: 1px solid rgba(26, 35, 126, 0.08);
}

.star {
  font-size: 2rem;
  color: #ddd;
  cursor: pointer;
  transition: all 0.2s ease;
  padding: 4px;
}

.star.selected,
.star:hover {
  color: #1A237E;
  transform: scale(1.1);
}

.rating-value {
  margin-left: 12px;
  color: #666;
  font-size: 0.95rem;
}

.input-wrapper,
.textarea-wrapper {
  position: relative;
  margin-bottom: 24px;
}

.input-wrapper input,
.textarea-wrapper textarea {
  width: 100%;
  padding: 16px 20px 16px 48px;
  border: 1px solid rgba(26, 35, 126, 0.1);
  border-radius: 12px;
  background: #f8f9fa;
  font-size: 1rem;
  color: #333;
  transition: all 0.3s ease;
}

.textarea-wrapper textarea {
  height: 120px;
  resize: none;
  padding-top: 16px;
}

.input-icon,
.textarea-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2rem;
  color: #666;
}

.textarea-icon {
  top: 20px;
  transform: none;
}

.input-wrapper input:focus,
.textarea-wrapper textarea:focus {
  border-color: #1A237E;
  background: white;
  box-shadow: 0 0 0 4px rgba(26, 35, 126, 0.1);
  outline: none;
}

.review-btn-row {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 32px;
}

.cancel-btn,
.post-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cancel-btn {
  background: #f8f9fa;
  color: #666;
  border: 1px solid rgba(26, 35, 126, 0.1);
}

.post-btn {
  background: linear-gradient(135deg, #1A237E 0%, #000 100%);
  color: white;
  border: none;
  box-shadow: 0 4px 12px rgba(26, 35, 126, 0.15);
}

.cancel-btn:hover {
  background: #e9ecef;
}

.post-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(26, 35, 126, 0.2);
}

.btn-icon {
  font-size: 1.1rem;
}

/* Success Banner Styles */
.review-success-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  background: rgba(26, 35, 126, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  animation: fadeIn 0.3s ease-out;
}

.review-success-banner .banner-content {
  background: rgba(255, 255, 255, 0.98);
  border-radius: 24px;
  box-shadow: 0 12px 40px rgba(26, 35, 126, 0.15),
              0 4px 12px rgba(0, 0, 0, 0.05);
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 360px;
  max-width: 90vw;
  animation: slideUp 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid rgba(26, 35, 126, 0.08);
}

.success-icon-wrapper {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #1A237E 0%, #000 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  animation: scaleIn 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.banner-icon {
  font-size: 2.5rem;
  color: white;
}

.banner-text {
  text-align: center;
  margin-bottom: 32px;
}

.banner-title {
  font-size: 1.8rem;
  color: #1A237E;
  margin: 0 0 12px 0;
  font-weight: 700;
}

.banner-message {
  font-size: 1.1rem;
  color: #666;
  margin: 0;
  line-height: 1.5;
}

.banner-ok-btn {
  background: linear-gradient(135deg, #1A237E 0%, #000 100%);
  color: white;
  border: none;
  border-radius: 12px;
  padding: 14px 36px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(26, 35, 126, 0.15);
}

.banner-ok-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(26, 35, 126, 0.25);
}

.banner-ok-btn:active {
  transform: translateY(1px);
  box-shadow: 0 2px 8px rgba(26, 35, 126, 0.15);
}

@media (max-width: 600px) {
  .review-section {
    padding: 40px 0;
  }

  .review-header h2 {
    font-size: 2rem;
  }

  .customer-review-card {
    padding: 24px;
    border-radius: 20px;
  }

  .form-header {
    margin-bottom: 24px;
  }

  .user-avatar {
    width: 40px;
    height: 40px;
  }

  .avatar-icon {
    font-size: 20px;
  }

  .form-header h3 {
    font-size: 1.3rem;
  }

  .star-row {
    padding: 8px 16px;
  }

  .star {
    font-size: 1.5rem;
  }

  .input-wrapper input,
  .textarea-wrapper textarea {
    padding: 12px 16px 12px 40px;
    font-size: 0.95rem;
  }

  .review-success-banner .banner-content {
    padding: 32px 24px;
    min-width: 280px;
  }

  .success-icon-wrapper {
    width: 64px;
    height: 64px;
    margin-bottom: 20px;
  }

  .banner-icon {
    font-size: 2rem;
  }

  .banner-title {
    font-size: 1.5rem;
  }

  .banner-message {
    font-size: 1rem;
  }

  .banner-ok-btn {
    padding: 12px 28px;
    font-size: 1rem;
  }
}

/* New Contact Form Styles for contact.php */
.contact-form h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 30px;
  color: #fff;
  text-align: center !important;
}

.contact-form label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: #c0c0c0;
  font-size: 0.9em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  padding: 10px 0;
  border: none;
  border-bottom: 1px solid #777;
  border-radius: 0;
  background: transparent;
  color: #fff;
  font-size: 1rem;
  margin-bottom: 25px;
  outline: none;
  transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-bottom: 1px solid #fff;
}

  
  
