:root {
  --primary: #0095eb;
  --primary-dark: #007cc3;
  --dark: #1e2b3a;
  --text: #626262;
  --text-light: #a8a8a8;
  --bg: #fcfcfc;
  --bg-gray: #f9f9f9;
  --bg-dark: #dae4ea;
  --white: #ffffff;
  --border: #e8e8e8;
  --font-body: 'Roboto', Helvetica, Arial, sans-serif;
  --font-heading: 'Lato', Helvetica, Arial, sans-serif;
  --container: 1220px;
  --header-h: 80px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; background: var(--bg); }

body {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 26px;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; transition: color .2s; }
a:hover { color: var(--primary-dark); }
ul { list-style: none; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 20px; }
.container:after { content: ''; display: table; clear: both; }
.row { display: flex; flex-wrap: wrap; margin: 0 -15px; }
[class*="col-"] { padding: 0 15px; flex: 0 0 auto; }
.col-1 { width: 100%; }
.col-1-2 { width: 50%; }
.col-1-3 { width: 33.333%; }
.col-2-3 { width: 66.666%; }
.col-1-4 { width: 25%; }

.section { padding: 60px 0; }
.section.full-width .container { max-width: 100%; padding: 0; }

h1, h2, h3, h4 { font-family: var(--font-heading); color: var(--dark); }
h5, h6 { font-family: var(--font-body); color: var(--dark); }
h1 { font-size: 25px; line-height: 50px; font-weight: 400; }
h2 { font-size: 30px; line-height: 34px; font-weight: 300; }
h3 { font-size: 25px; line-height: 29px; font-weight: 300; }
h4 { font-size: 21px; line-height: 25px; font-weight: 500; }
h5 { font-size: 15px; line-height: 25px; font-weight: 700; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 20px; font-size: 14px; line-height: 14px;
  font-family: var(--font-body); font-weight: 400;
  border: none; cursor: pointer;
  transition: background .2s, color .2s;
}
.btn-primary { background: var(--primary); color: var(--white); }
.btn-primary:hover { background: var(--primary-dark); color: var(--white); }

/* Section title */
.section-title {
  text-align: center; margin-bottom: 40px;
  font-family: var(--font-heading);
  font-size: 32px; font-weight: 300; color: var(--dark);
}
.section-title:after {
  content: ''; display: block; width: 60px; height: 3px;
  background: var(--primary); margin: 15px auto 0;
}

/* Header */
.header {
  position: relative; z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 20px; max-width: var(--container); margin: 0 auto;
  height: 80px;
}
.header-logo { flex-shrink: 0; }
.header-logo img { max-height: 55px; width: auto; display: block; }
.header-nav { }
.header-nav ul { display: flex; align-items: center; gap: 0; }
.header-nav ul li { position: relative; }
.header-nav ul li a {
  display: block; padding: 10px 18px;
  font-family: var(--font-body); font-size: 14px;
  color: var(--text); border-bottom: 2px solid transparent;
  transition: color .2s, border-color .2s;
}
.header-nav ul li a:hover,
.header-nav ul li.active a { color: var(--primary); }
.header-nav ul li.active a { border-bottom-color: var(--primary); }

/* Mobile toggle */
.mobile-toggle {
  display: none; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  font-size: 22px; cursor: pointer;
  color: var(--text); z-index: 101;
}
.header.sticky {
  position: fixed; top: 0; left: 0; right: 0;
  box-shadow: 0 2px 5px rgba(0,0,0,.1);
  animation: slideDown .3s;
}
@keyframes slideDown { from { transform: translateY(-100%); } to { transform: translateY(0); } }

.header-placeholder { height: var(--header-h); }

/* Subheader (page title) */
.subheader {
  background: var(--bg-dark); padding: 30px 0;
  text-align: center;
}
.subheader h1 {
  font-size: 30px; line-height: 35px;
  font-weight: 400; font-style: italic;
  font-family: var(--font-body);
}
.breadcrumbs { margin-top: 10px; font-size: 13px; color: var(--text-light); }
.breadcrumbs a { color: var(--text); }
.breadcrumbs span { margin: 0 8px; }

/* Footer */
.footer {
  background: var(--dark); color: rgba(255,255,255,.7);
  padding: 40px 0 0;
}
.footer .col-1-3 { margin-bottom: 30px; }
.footer h4 { color: var(--white); margin-bottom: 15px; font-size: 21px; font-weight: 500; }
.footer h5 { color: var(--white); margin-bottom: 5px; font-size: 15px; }
.footer .big { font-size: 16px; line-height: 28px; display: block; margin-bottom: 15px; color: var(--white); }
.footer p { margin-bottom: 10px; }
.footer a { color: rgba(255,255,255,.7); }
.footer a:hover { color: var(--primary); }
.footer .social-icons { margin-top: 15px; }
.footer .social-icons a {
  display: inline-block; width: 32px; height: 32px; line-height: 32px;
  text-align: center; border: 1px solid rgba(255,255,255,.2);
  border-radius: 3px; margin: 0 2px 5px;
  font-size: 14px; transition: all .2s;
}
.footer .social-icons a:hover { background: var(--primary); border-color: var(--primary); color: var(--white); }
.footer .list-mixed li { padding: 5px 0; position: relative; padding-left: 20px; }
.footer .list-mixed li:before { content: '\2713'; position: absolute; left: 0; color: var(--primary); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 20px 0; margin-top: 20px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 10px;
}
.footer-bottom .copyright { font-size: 12px; }
.footer-social-bottom a {
  display: inline-block; width: 28px; height: 28px; line-height: 28px;
  text-align: center; color: rgba(255,255,255,.5); margin-left: 5px;
  transition: color .2s;
}
.footer-social-bottom a:hover { color: var(--primary); }

#back-to-top {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; background: transparent;
  color: #65666C; border: none; cursor: pointer;
  transition: color .2s;
}
#back-to-top:hover { color: var(--primary); }

/* List items (icon list) */
.list-item {
  display: flex; gap: 20px; margin-bottom: 25px;
}
.list-item .icon {
  flex-shrink: 0; width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  background: var(--primary); color: var(--white);
  border-radius: 50%; font-size: 18px;
}
.list-item .content h4 { margin-bottom: 5px; }
.list-item .content .desc { font-size: 13px; line-height: 22px; }

/* About cards */
.about-card {
  background: var(--white);
  padding: 35px 25px;
  border-radius: 8px;
  text-align: center;
  margin-bottom: 20px;
  box-shadow: 0 2px 15px rgba(0,0,0,.06);
  transition: transform .3s, box-shadow .3s;
}
.about-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0,0,0,.1);
}
.about-card-icon {
  width: 65px; height: 65px;
  margin: 0 auto 18px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--primary), #6fc3ff);
  color: var(--white);
  font-size: 26px;
  border-radius: 50%;
}
.about-card h4 {
  margin-bottom: 10px;
  font-size: 19px;
}
.about-card p {
  font-size: 13px;
  line-height: 22px;
  color: var(--text);
}

/* Feature boxes */
.feature-box {
  text-align: center; padding: 30px 15px; margin-bottom: 20px;
  border-radius: 8px;
  transition: transform .3s, box-shadow .3s;
}
.feature-box:hover { transform: translateY(-4px); }
.feature-icon {
  width: 65px; height: 65px; margin: 0 auto 18px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--primary), #6fc3ff);
  color: var(--white); font-size: 26px; border-radius: 50%;
}
.feature-box h4 { margin-bottom: 10px; font-size: 18px; }
.feature-box p { font-size: 13px; line-height: 22px; color: var(--text); }

/* WhatsApp floating button */
.whatsapp-btn {
  position: fixed; bottom: 20px; right: 20px;
  width: 55px; height: 55px;
  background: #25D366; color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 30px;
  box-shadow: 0 4px 12px rgba(37,211,102,.4);
  z-index: 999;
  transition: transform .3s, box-shadow .3s;
}
.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37,211,102,.5);
  color: #fff;
}

/* Fancy heading */
.fancy-heading { text-align: center; margin-bottom: 40px; }

/* Icon box */
.icon-box { text-align: center; margin-bottom: 30px; }
.icon-box .image-wrapper { margin-bottom: 20px; }
.icon-box .image-wrapper img { margin: 0 auto; }
.icon-box h4 { margin-bottom: 10px; }
.icon-box .desc { font-size: 13px; line-height: 22px; }

/* Offer slider */
.offer-section { padding: 60px 0 40px; }
.offer-slider { position: relative; overflow: hidden; }
.offer-slide {
  display: flex; align-items: center; gap: 40px;
  padding: 20px 0;
}
.offer-slide .offer-image { flex: 0 0 50%; }
.offer-slide .offer-image img { width: 100%; border-radius: 6px; box-shadow: 0 4px 20px rgba(0,0,0,.08); }
.offer-slide .offer-desc { flex: 0 0 50%; }
.offer-slide .offer-desc h3 { margin-bottom: 12px; font-size: 24px; }
.offer-slide .offer-desc p { margin-bottom: 15px; line-height: 26px; font-size: 14px; color: var(--text); }
.offer-slide .offer-desc .hr-dots { margin: 15px 0; }
.offer-slide .offer-desc .hr-dots span {
  display: inline-block; width: 7px; height: 7px;
  background: var(--primary); border-radius: 50%; margin: 0 5px;
}
.offer-slide .offer-desc h5 {
  font-size: 15px; font-weight: 700; margin-bottom: 8px;
  color: var(--dark);
}
.offer-slide .offer-desc ul { margin: 10px 0 18px; }
.offer-slide .offer-desc ul li {
  padding: 4px 0 4px 22px; position: relative;
  font-size: 14px; line-height: 22px;
}
.offer-slide .offer-desc ul li:before {
  content: '\2713'; position: absolute; left: 0;
  color: var(--primary); font-weight: 700;
}
.offer-slide .offer-desc .btn { margin-top: 5px; }
.offer-slider .slider-pagination {
  text-align: center; margin-top: 25px;
  color: var(--text-light); font-size: 14px;
}
.offer-slider .slider-pagination .current { color: var(--primary); font-weight: 700; }

/* Google map */
.map-section { width: 100%; }
.map-wrapper { position: relative; }
.map-contact-box {
  position: absolute; z-index: 10; top: 40px; left: 40px;
  background: var(--white); padding: 25px; box-shadow: 0 2px 10px rgba(0,0,0,.1);
  max-width: 280px;
}
.map-contact-box h3 { margin-bottom: 15px; font-size: 21px; }
.map-contact-box ul li { display: flex; gap: 10px; margin-bottom: 10px; }
.map-contact-box ul li .icon { color: var(--primary); }

/* Contact info */
.contact-info { display: flex; gap: 20px; padding: 30px 0; }
.contact-info .contact-item { flex: 1; display: flex; gap: 15px; }
.contact-info .contact-item .icon { color: var(--primary); font-size: 24px; flex-shrink: 0; }
.contact-info .contact-item big { display: block; padding-top: 12px; color: var(--text-light); }

/* Form */
.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 5px; font-weight: 500; color: var(--dark); }
.form-group input,
.form-group textarea {
  width: 100%; padding: 10px 15px;
  border: 1px solid var(--border); border-radius: 4px;
  font-family: var(--font-body); font-size: 13px;
  transition: border-color .2s;
}
.form-group input:focus,
.form-group textarea:focus { outline: none; border-color: var(--primary); }
.form-group textarea { height: 150px; resize: vertical; }

/* Dark section */
.section-dark {
  background: var(--dark); color: rgba(255,255,255,.8);
}
.section-dark .section-title { color: var(--white); }
.section-dark .section-title:after { background: var(--white); }
.section-dark .list-item {
  background: rgba(255,255,255,.06);
  padding: 25px 20px;
  border-radius: 8px;
  margin-bottom: 20px;
  transition: transform .3s, box-shadow .3s, background .3s;
}
.section-dark .list-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0,0,0,.3);
  background: rgba(255,255,255,.1);
}
.section-dark .list-item .icon {
  flex: 0 0 55px; width: 55px; height: 55px;
  background: linear-gradient(135deg, var(--primary), #6fc3ff);
  color: var(--white);
  font-size: 22px;
  border-radius: 50%;
}
.section-dark .list-item .content h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.section-dark .list-item .content .desc {
  font-size: 14px;
  line-height: 24px;
  color: rgba(255,255,255,.75);
}

/* Parallax */
.parallax { position: relative; overflow: hidden; }
.parallax-bg {
  position: absolute; top: 0; left: 0; width: 100%; height: 130%;
  background-size: cover; background-position: center;
  opacity: .15; pointer-events: none;
}

/* Vision row */
.vision-row {
  display: flex; align-items: center; gap: 50px;
}
.vision-text { flex: 1; text-align: center; padding: 30px 10px 0; }
.vision-text h2 { margin-bottom: 20px; }
.vision-text p { font-size: 15px; line-height: 26px; margin-bottom: 20px; }
.vision-image { flex: 1; text-align: center; }
.vision-image img { width: 100%; border-radius: 8px; box-shadow: 0 4px 20px rgba(0,0,0,.1); }

/* Highlight section */
.highlight-section {
  display: flex; align-items: center; gap: 40px;
}
.highlight-section .highlight-content { flex: 1; }
.highlight-section .highlight-image { flex: 1; }
.highlight-section .highlight-image img { border-radius: 4px; }

/* Animations */
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity .6s ease, transform .6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.zoom-in { opacity: 0; transform: scale(.8); transition: opacity .6s ease, transform .6s ease; }
.zoom-in.visible { opacity: 1; transform: scale(1); }
.fade-in-down { opacity: 0; transform: translateY(-30px); transition: opacity .6s ease, transform .6s ease; }
.fade-in-down.visible { opacity: 1; transform: translateY(0); }

/* Slider styles */
.hero-slider {
  position: relative;
  overflow: hidden;
}
.swiper-hero {
  width: 100%;
  height: 750px;
}
.swiper-slide-hero {
  position: relative;
  overflow: hidden;
}
.slide-bg-inner {
  position: absolute;
  inset: -20px;
  background-size: cover;
  background-position: center;
  animation: kenBurns 12s ease-out forwards;
}
.slide-bg-1 .slide-bg-inner { background: url(../images/2Q.jpg) center top / cover no-repeat; }
.slide-bg-2 .slide-bg-inner { background: url(../images/port.jpg) center top / cover no-repeat; }
.slide-bg-3 .slide-bg-inner { background: url(../images/2Q-3.jpg) center top / cover no-repeat; }
.slide-bg-4 .slide-bg-inner { background: url(../images/plan.jpg) center top / cover no-repeat; }
@keyframes kenBurns {
  0% { transform: scale(1); }
  100% { transform: scale(1.08); }
}
.swiper-slide-hero::before {
  content: ''; position: absolute; inset: 0;
  background: rgba(0,0,0,.15); z-index: 1;
}
.slider-overlay { position: absolute; z-index: 2; }
.slider-overlay-centered {
  top: 50%; left: 50%; transform: translate(-50%,-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0;
}
.slider-overlay-left {
  top: 44%; left: 0; right: 0;
  transform: translateY(-50%);
}
.slider-overlay-left .slide-title-img {
  width: 100%;
}
.slide-title-img {
  max-width: 100%; display: block; height: auto;
}

/* Slider navigation arrows */
.swiper-button-prev,
.swiper-button-next {
  width: 50px;
  height: 50px;
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(4px);
  border-radius: 50%;
  transition: background .3s, transform .3s;
}
.swiper-button-prev:hover,
.swiper-button-next:hover {
  background: rgba(255,255,255,.3);
  transform: scale(1.1);
}
.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
}

/* Slider pagination */
.swiper-pagination {
  bottom: 30px !important;
}
.swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: rgba(255,255,255,.5);
  opacity: 1;
  transition: background .3s, transform .3s;
}
.swiper-pagination-bullet-active {
  background: var(--primary);
  transform: scale(1.3);
}

/* Autoplay progress bar */
.autoplay-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  z-index: 10;
  background: rgba(255,255,255,.2);
}
.autoplay-progress-bar {
  display: block;
  height: 100%;
  width: 100%;
  background: var(--primary);
  transition: width .1s linear;
}

/* No content padding */
.no-content-padding .section { padding-left: 0; padding-right: 0; }

/* RTL */
[dir="rtl"] .footer .list-mixed li { padding-left: 0; padding-right: 20px; }
[dir="rtl"] .footer .list-mixed li:before { left: auto; right: 0; }
[dir="rtl"] .offer-slide .offer-desc ul li { padding-left: 0; padding-right: 20px; }
[dir="rtl"] .offer-slide .offer-desc ul li:before { left: auto; right: 0; }
[dir="rtl"] .map-contact-box { left: auto; right: 40px; }
[dir="rtl"] .highlight-section { direction: ltr; }
[dir="rtl"] .highlight-section .highlight-content { direction: rtl; }
[dir="rtl"] .highlight-section .highlight-image { direction: rtl; }
[dir="rtl"] .mobile-toggle { right: auto; left: 20px; }
[dir="rtl"] .contact-info .contact-item { direction: ltr; }
[dir="rtl"] .contact-info .contact-item .icon + * { direction: rtl; }

/* Stats section */
.stats-section {
  position: relative;
  padding: 70px 0;
  background: linear-gradient(135deg, var(--dark) 0%, #2a3f54 100%);
  overflow: hidden;
  text-align: center;
}
.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url(../images/worldmap_dotted.png) center / cover no-repeat;
  opacity: .08;
  pointer-events: none;
}
.stats-section .row { position: relative; z-index: 1; }
.stat-item-modern {
  padding: 20px 10px;
  position: relative;
}
.stat-item-modern:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -2px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 60px;
  background: rgba(255,255,255,.15);
}
.stat-icon {
  width: 60px; height: 60px;
  margin: 0 auto 15px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--primary), #6fc3ff);
  color: var(--white);
  font-size: 24px;
  border-radius: 50%;
  transition: transform .3s;
}
.stat-item-modern:hover .stat-icon {
  transform: scale(1.1);
}
.stat-number {
  font-family: var(--font-heading);
  font-size: 44px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 5px;
}
.stat-label {
  font-size: 14px;
  color: rgba(255,255,255,.65);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Responsive helpers */
@media (max-width: 768px) {
  .col-1-2, .col-1-3, .col-2-3, .col-1-4 { width: 100%; }
  .offer-slide { flex-direction: column; }
  .offer-slide .offer-image,
  .offer-slide .offer-desc { flex: 0 0 100%; }
  .highlight-section { flex-direction: column; }
  .vision-row { flex-direction: column; gap: 30px; }
  .vision-text { padding: 0; }
  .feature-box { padding: 20px 10px; }
  .contact-info { flex-direction: column; }
  .map-contact-box { position: static; max-width: 100%; margin-bottom: 20px; }
}
