@import url("https://fonts.googleapis.com/css2?family=TikTok+Sans:opsz,wght@12..36,300..900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "TikTok Sans", sans-serif;
  margin: 0;
  line-height: 1.2;
}

.container {
  width: 90%;
  margin: auto;
}

/* Header */
header {
  background-color: #f8f9fa;
  padding: 10px 0;
  border-bottom: 1px solid #e7e7e7;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header .logo {
  width: 80px;
}

nav {
  display: flex;
  align-items: center;
}

nav ul {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
}

nav ul li {
  margin-left: 20px;
}

nav a {
  text-decoration: none;
  color: #333;
  font-weight: bold;
}

.call-btn {
  margin-left: 20px;
  padding: 10px 15px;
  border-radius: 5px;
  background-color: #0f496c;
  color: #fff;
}

.call-btn i {
  margin-right: 8px;
}

.menu-toggle {
  display: none;
  font-size: 24px;
  background: none;
  border: none;
  cursor: pointer;
}

/* Hero Section */

#hero img {
  width: 100%;
}

.hero-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.hero-content {
  width: 59%;
}

.hero-content h3 span {
  color: #0f496c;
  font-size: 32px;
  font-style: italic;
}

.name-change-text h5 {
  color: #0f496c;
  font-size: 22px;
  font-style: italic;
  margin-bottom: 15px;
}

.name-change-text p {
  margin-bottom: 15px;
}

.hero-content h2 {
  font-size: 2.5rem;
  color: #333;
  margin: 20px 0;
}

.hero-content p {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 20px;
}

.btn {
  display: inline-block;
  background: #0f496c;
  color: #fff;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  transition: background 0.3s;
}

.btn:hover {
  background: #0056b3;
}

.hero-image {
  width: 39%;
}

.hero-image img {
  width: 100%;
}

/* Sections */
section.gap {
  padding: 60px 0;
}

.section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
}

/* Services Section */
.serivce-content {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url(images/head-banner.jpg);
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 100px 0;
  text-align: center;
}

.serivce-content h3 {
  color: #fff;
  font-size: 32px;
  margin-bottom: 15px;
}

.serivce-content p {
  font-size: 1.1rem;
  color: #fff;
}

.service-cards {
  display: flex;
  justify-content: space-around;
  gap: 20px;
  text-align: center;
  margin-bottom: 30px;
}

.card {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  width: 30%;
}

.card i {
  font-size: 3rem;
  color: #0f496c;
  margin-bottom: 15px;
}

.card h3 {
  margin-bottom: 15px;
  font-size: 22px;
}

.servive-more {
  display: flex;
  justify-content: center;
  align-items: center;
}

.contactButton {
  background: #0f496c;
  color: white;
  padding: 0.45em;
  padding-left: 1em;
  font-size: 17px;
  font-weight: 500;
  border-radius: 0.9em;
  border: none;
  cursor: pointer;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  box-shadow: inset 0 0 1.6em -0.6em #0f496c;
  overflow: hidden;
  position: relative;
  height: 2.8em;
  padding-right: 3em;
  text-decoration: none;
}

.iconButton {
  margin-left: 1em;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 2.2em;
  width: 2.2em;
  border-radius: 0.7em;
  box-shadow: 0.1em 0.1em 0.6em 0.2em #126180;
  right: 0.3em;
  transition: all 0.3s;
}

.contactButton:hover {
  transform: translate(-0.05em, -0.05em);
  box-shadow: 0.15em 0.15em #0f496c;
}

.contactButton:active {
  transform: translate(0.05em, 0.05em);
  box-shadow: 0.05em 0.05em #0f496c;
}

.name-change {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.name-change-text {
  width: 59%;
}

.name-change-text h3 {
  color: #0f496c;
  font-size: 36px;
  margin-bottom: 20px;
}

.name-change-image {
  width: 39%;
}

.name-change-image img {
  width: 100%;
  border-radius: 25px;
}

/* How It Works Section */
#how-it-works {
  background-color: #f8f9fa;
  text-align: center;
}

.steps-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
}

.step {
  width: 33.33%;
}

.step-icon {
  width: 90px;
  height: 90px;
  background-color: #0f496c;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.step-icon:hover {
  transform: scale(1.1);
  background-color: #0f496c;
}

.step-icon svg {
  color: #ffffff;
  width: 45px;
  height: 45px;
}

.step h4 {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #343a40;
}

.step p {
  font-size: 1rem;
  color: #6c757d;
  line-height: 1.6;
}

.step-arrow {
  margin-top: 60px;
  color: #0f496c;
}

/* Why Choose Us Section */
#why-us {
  padding: 60px 0;
  background: linear-gradient(rgba(15, 73, 108, 0.8), rgba(15, 73, 108, 0.8)),
    url("images/cruise.avif") center/cover no-repeat;
  color: #fff;
}

.section-title {
  text-align: center;
  margin-bottom: 30px;
  font-size: 36px;
}

.reasons {
  display: flex;
  justify-content: space-around;
  gap: 40px;
  text-align: center;
}

.reason {
  background: rgba(255, 255, 255, 0.1);
  padding: 40px 20px;
  border-radius: 8px;
  width: 33.33%;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.reason i {
  font-size: 3.5rem;
  margin-bottom: 20px;
  color: #fff;
}

.reason h3 {
  margin-bottom: 15px;
  font-size: 26px;
}

.reason p {
  font-size: 16px;
  line-height: 1.7;
}
/* Footer */
footer {
  background-color: #2c3e50;
  padding: 60px 0 90px;
  color: #ecf0f1;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 30px;
}

.footer-content .col-25 {
  width: 25%;
}

footer h3 {
  color: #ffffff;
  margin-bottom: 15px;
  font-size: 18px;
  border-bottom: 1px solid #3498db;
  padding-bottom: 8px;
  display: inline-block;
}

.footer-about p {
  color: #bdc3c7;
}

.footer-links ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #ecf0f1;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #3498db;
  text-decoration: underline;
}

.footer-contact p {
  margin: 5px 0;
}

.footer-legal {
  text-align: center;
  border-top: 1px solid #34495e;
  padding-top: 20px;
  margin-top: 20px;
  font-size: 14px;
  color: #bdc3c7;
}

.footer-legal p {
  margin: 5px 0;
}

.footer-legal a {
  color: #ecf0f1;
  text-decoration: none;
}

.footer-legal a:hover {
  color: #3498db;
  text-decoration: underline;
}

.footer-cta-light {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #2c3e50;
  z-index: 100;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  padding: 15px 0;
}

.footer-cta-light .cta-content {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 25px;
  gap: 20px;
}

.footer-cta-light .cta-text {
  font-size: 17px;
  color: #fff;
  margin: 0;
}

.footer-cta-light .cta-text span {
  font-weight: 700;
  color: #fff;
}

.footer-cta-light .cta-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #fff;
  color: #2c3e50;
  padding: 12px 24px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: background-color 0.2s ease;
}

.lpad {
  padding-left: 50px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .container {
    width: 90%;
  }

  section.gap {
    padding: 30px 0;
  }

  nav .nav-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 90px;
    left: 0;
    width: 100%;
    background-color: #fff;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    border-top: 1px solid #e7e7e7;
  }

  nav .nav-menu.active {
    display: flex;
  }

  nav .nav-menu li {
    margin: 0;
    width: 100%;
  }

  nav .nav-menu li a {
    padding: 15px;
    display: block;
    text-align: center;
    border-bottom: 1px solid #f0f0f0;
  }

  .menu-toggle {
    display: block;
    order: 2;
    margin-left: 15px;
  }

  .call-btn {
    order: 1;
  }

  #hero h2 {
    font-size: 2rem;
  }

  .hero-content,
  .name-change-text,
  .name-change-image {
    width: 100%;
  }

  .name-change-image {
    margin: 10px 0;
  }

  .hero-image {
    width: 100%;
  }

  .service-cards,
  .steps,
  .reasons {
    flex-direction: column;
    align-items: center;
  }

  .card,
  .step,
  .reason {
    width: 100%;
    margin-bottom: 10px;
  }

  .steps-container {
    flex-direction: column;
    align-items: center;
  }

  .step {
    margin-bottom: 50px;
  }

  .step:last-child {
    margin-bottom: 0;
  }

  .step-arrow {
    transform: rotate(90deg);
    margin: -25px 0 25px 0;
  }

  .step-arrow:last-of-type {
    display: none;
  }
  .footer-content {
    flex-direction: column;
    text-align: center;
  }

  footer h3 {
    display: inline-block;
  }

  .footer-about,
  .footer-links,
  .footer-contact {
    padding: 0;
    margin-bottom: 20px;
  }
  footer {
    padding: 30px 0;
  }
  .footer-content .col-25 {
    width: 100%;
  }
  .lpad {
    padding-left: 0px;
  }

  .footer-cta-light .cta-content {
    justify-content: center;
    flex-direction: column;
    gap: 12px;
  }
  .footer-cta-light .cta-text {
    text-align: center;
  }
  .name-change-text h3 {
    font-size: 26px;
    margin-bottom: 10px;
  }
}

/* popup styling */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.popup-overlay.active {
  opacity: 1;
  visibility: visible;
}

.popup-container {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  display: flex;
  width: 90%;
  max-width: 800px;
  position: relative;
  overflow: hidden;
  transform: scale(0.95);
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.popup-overlay.active .popup-container {
  transform: scale(1);
}

.popup-close-btn {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 30px;
  font-weight: 300;
  color: #888;
  cursor: pointer;
  z-index: 1010;
  line-height: 1;
  transition: color 0.3s ease;
}

.popup-close-btn:hover {
  color: #333;
}

.popup-visual {
  flex: 1;
  background-image: url("images/call.avif");
  background-size: cover;
  background-position: center;
}

.popup-content {
  flex: 1;
  padding: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.popup-content h2 {
  font-size: 32px;
  font-weight: 700;
  color: #2c3e50;
  margin-top: 0;
  margin-bottom: 15px;
}

.popup-content p {
  font-size: 16px;
  color: #596a7a;
  line-height: 1.6;
  margin-bottom: 30px;
}

.phone-number-display {
  background-color: #f8f9fa;
  border: 1px dashed #ced4da;
  border-radius: 8px;
  padding: 15px;
  margin-bottom: 30px;
  font-size: 16px;
  color: #596a7a;
}

.phone-number-display span {
  display: block;
  font-size: 24px;
  font-weight: 700;
  color: #0f496c;
  margin-top: 5px;
}

.popup-cta-btn {
  display: inline-block;
  background: linear-gradient(90deg, #0f496c, #0056b3);
  color: #ffffff;
  border: none;
  border-radius: 8px;
  padding: 18px 30px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.3s ease;
}

.popup-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 123, 255, 0.3);
}

/* --- Responsive Design --- */
@media (max-width: 768px) {
  .popup-container {
    flex-direction: column;
    width: 95%;
    max-height: 90vh;
    overflow-y: auto;
  }

  .popup-visual {
    display: none;
  }

  .popup-content {
    padding: 40px 30px;
  }

  .popup-content h2 {
    font-size: 26px;
  }

  .popup-close-btn {
    color: #555;
  }
}

/* about us page */
.hero-section {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("images/back-banner.avif") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  padding: 150px 0;
}

.hero-content h1 {
  font-size: 56px;
  max-width: 800px;
}

.our-story,
.our-values,
.cta-section {
  text-align: center;
  margin-bottom: 80px;
}

.about-us-modern h2 {
  font-size: 36px;
  margin-bottom: 20px;
  color: #333;
}

.about-us-modern p {
  font-size: 18px;
  line-height: 1.7;
  color: #555;
  max-width: 700px;
  margin: 0 auto;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 40px;
}

.value-item {
  background: #f9f9f9;
  padding: 30px;
  border-radius: 8px;
  transition: transform 0.3s;
}

.value-item:hover {
  transform: translateY(-10px);
}

.value-item i {
  font-size: 48px;
  color: #0f496c;
  margin-bottom: 20px;
}

.value-item h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.cta-button {
  display: inline-block;
  background: #0f496c;
  color: white;
  padding: 15px 30px;
  text-decoration: none;
  font-size: 18px;
  border-radius: 5px;
  transition: background 0.3s;
}

@media (max-width: 767.98px) {
  .hero-section {
    padding: 100px 20px;
  }

  .hero-content h1 {
    font-size: 36px;
  }

  .our-story,
  .our-values,
  .cta-section {
    margin-bottom: 60px;
    padding: 0 15px;
  }

  .about-us-modern h2 {
    font-size: 28px;
  }

  .about-us-modern p {
    font-size: 16px;
  }

  .values-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .value-item:hover {
    transform: none;
  }

  .cta-button {
    padding: 12px 25px;
    font-size: 16px;
  }
}

/* contact */
#contact-us-split {
  font-family: "Poppins", sans-serif;
  background-color: #f4f7f6;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 40px;
}

.contact-container {
  display: flex;
  width: 100%;
  max-width: 1100px;
  background-color: #fff;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  border-radius: 15px;
  overflow: hidden;
}

.contact-info {
  background-color: #0f496c;
  color: #fff;
  width: 40%;
  padding: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.info-header {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.info-header i {
  font-size: 2.5rem;
  margin-right: 20px;
}

.info-header h2 {
  font-size: 28px;
  margin: 0;
}

.info-text {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 30px;
}

.info-item {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.info-item i {
  font-size: 1.2rem;
  margin-right: 15px;
  width: 20px;
}

.info-item p {
  margin: 0;
  font-size: 15px;
}

.social-icons {
  margin-top: 30px;
}

.social-icons a {
  color: #fff;
  text-decoration: none;
  font-size: 1.2rem;
  margin-right: 20px;
  transition: opacity 0.3s;
}

.social-icons a:hover {
  opacity: 0.8;
}

.contact-form {
  width: 60%;
  padding: 50px;
  background-color: #fff;
}

.contact-form h2 {
  font-size: 28px;
  color: #333;
  margin-bottom: 30px;
  text-align: center;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 14px;
  color: #555;
  margin-bottom: 8px;
  font-weight: 600;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #0f496c;
}

textarea {
  resize: none;
}

.submit-button {
  width: 100%;
  padding: 15px;
  background-color: #0f496c;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.submit-button:hover {
  background-color: #1073a0;
}
@media (max-width: 767px) {
  #contact-us-split {
    padding: 20px;
  }

  .contact-container {
    flex-direction: column;
  }

  .contact-info,
  .contact-form {
    width: 100%;
  }

  .contact-info {
    padding: 20px;
    text-align: center;
    border-radius: 15px 15px 0 0;
  }

  .info-header {
    justify-content: center;
  }

  .info-item {
    justify-content: center;
  }

  .social-icons {
    text-align: center;
  }

  .contact-form {
    padding: 20px;
    border-radius: 0 0 15px 15px;
  }
}

/* privacy policy */
.policy-container p {
  margin-bottom: 10px;
}
.policy-header {
  text-align: center;
  border-bottom: 1px solid #eee;
  padding-bottom: 20px;
  margin-bottom: 30px;
}

.policy-content h1 {
  font-size: 36px;
  color: #0f496c;
  margin-bottom: 30px;
}

.policy-header p {
  font-size: 16px;
  color: #6c757d;
  margin-top: 5px;
}

.policy-content section {
  margin-bottom: 35px;
}

.policy-content h2 {
  font-size: 24px;
  color: #343a40;
  font-weight: 700;
  margin-bottom: 15px;
  padding-bottom: 5px;
  border-bottom: 2px solid #0f496c;
  display: inline-block;
}

.policy-content p,
.policy-content ul {
  font-size: 16px;
  color: #555;
}

.policy-content ul {
  padding-left: 25px;
  list-style-type: disc;
}

.policy-content li {
  margin-bottom: 10px;
}

.policy-content a {
  color: #0f496c;
  text-decoration: none;
  font-weight: 600;
}

.policy-content a:hover {
  text-decoration: underline;
}

.contact-information {
  background-color: #f8f9fa;
  padding: 20px;
  border-radius: 5px;
  border-left: 4px solid #0f496c;
}

/* --- Responsive Design --- */
@media (max-width: 768px) {
  .policy-header h1 {
    font-size: 30px;
  }

  .policy-content h2 {
    font-size: 20px;
  }
}
