/* ============================================
   VISA-PORT.COM - Custom Code Carbon Copy
   Color: Dark navy #152030, Gold #b59a5a
   Fonts: Ubuntu, Maven Pro (Google Fonts)
   ============================================ */

/* === RESET & BASE === */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: #FCFCFC;
}

body {
  font-family: 'Maven Pro', sans-serif;
  font-size: 14px;
  line-height: 21px;
  font-weight: 400;
  color: #dedede;
  background: #152030;
  -webkit-font-smoothing: antialiased;
}

a {
  color: #b59a5a;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #d4b96a;
}

img {
  max-width: 100%;
  height: auto;
}

ul {
  list-style: none;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4 {
  font-family: 'Ubuntu', sans-serif;
  color: #fff;
}

h1 {
  font-size: 60px;
  line-height: 60px;
  font-weight: 300;
}

h2 {
  font-size: 42px;
  line-height: 42px;
  font-weight: 300;
  letter-spacing: 4px;
}

h3 {
  font-size: 36px;
  line-height: 38px;
  font-weight: 300;
  letter-spacing: 7px;
}

h4 {
  font-size: 32px;
  line-height: 36px;
  font-weight: 500;
  letter-spacing: 3px;
}

h5 {
  font-family: 'Maven Pro', sans-serif;
  font-size: 17px;
  line-height: 21px;
  font-weight: 700;
  color: #fff;
}

h6 {
  font-family: 'Maven Pro', sans-serif;
  font-size: 15px;
  line-height: 19px;
  font-weight: 400;
  color: #fff;
}

p {
  margin-bottom: 15px;
}

p.big {
  font-size: 17px;
  line-height: 28px;
}

/* === CONTAINER === */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

/* === GRID === */
.row {
  display: flex;
  flex-wrap: wrap;
}

.col-1-2 {
  width: 50%;
  padding: 0 15px;
}

.col-1-3 {
  width: 33.333%;
  padding: 0 15px;
}

.col-1-4 {
  width: 25%;
  padding: 0 15px;
}

.col-2-3 {
  width: 66.666%;
  padding: 0 15px;
}

/* === HEADER === */
#header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  transition: all 0.3s ease;
}

#header.sticky {
  background: rgba(21, 32, 48, 0.95);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

#header .header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1240px;
  margin: 0 auto;
  padding: 15px 20px;
  transition: padding 0.3s ease;
}

#header.sticky .header-inner {
  padding: 8px 20px;
}

.logo a {
  display: inline-block;
}

.logo img {
  height: 60px;
  transition: height 0.3s ease;
}

#header.sticky .logo img {
  height: 45px;
}

/* Main Navigation */
.main-nav {
  display: flex;
  align-items: center;
}

.main-nav ul {
  display: flex;
  gap: 5px;
}

.main-nav ul li a {
  font-family: 'Ubuntu', sans-serif;
  font-size: 17px;
  font-weight: 400;
  letter-spacing: 1px;
  color: #fff;
  padding: 10px 18px;
  display: block;
  transition: color 0.3s ease;
}

.main-nav ul li a:hover,
.main-nav ul li a.active {
  color: #b59a5a;
}

/* Search Toggle */
.search-toggle {
  margin-left: 15px;
  cursor: pointer;
  color: #fff;
  transition: color 0.3s;
  display: flex;
  align-items: center;
}

.search-toggle:hover {
  color: #b59a5a;
}

.search-toggle svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Search Overlay */
.search-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(21, 32, 48, 0.95);
  z-index: 2000;
  align-items: center;
  justify-content: center;
}

.search-overlay.active {
  display: flex;
}

.search-overlay form {
  width: 60%;
  max-width: 600px;
}

.search-overlay input {
  width: 100%;
  padding: 15px 20px;
  font-size: 24px;
  background: transparent;
  border: none;
  border-bottom: 2px solid #b59a5a;
  color: #fff;
  font-family: 'Ubuntu', sans-serif;
  outline: none;
}

.search-overlay .close-search {
  position: absolute;
  top: 30px;
  right: 30px;
  font-size: 30px;
  color: #fff;
  cursor: pointer;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  cursor: pointer;
  font-size: 24px;
  color: #fff;
}

/* Side Slide Panel */
.side-slide {
  position: fixed;
  top: 0;
  right: -300px;
  width: 300px;
  height: 100%;
  background: #1e2d3d;
  z-index: 3000;
  transition: right 0.3s ease;
  overflow-y: auto;
  padding: 20px;
}

.side-slide.active {
  right: 0;
}

.side-slide .close-side {
  text-align: right;
  margin-bottom: 20px;
  cursor: pointer;
  color: #fff;
  font-size: 24px;
}

.side-slide ul li a {
  display: block;
  padding: 12px 0;
  color: #fff;
  font-family: 'Ubuntu', sans-serif;
  font-size: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.side-slide-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 2500;
}

.side-slide-overlay.active {
  display: block;
}

/* === SUBHEADER (inner pages) === */
.subheader {
  padding: 140px 0 50px;
  text-align: center;
  background: #152030 url('../images/home_jet_subheader.jpg') center center / cover no-repeat;
  position: relative;
}

.subheader::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(21, 32, 48, 0.7);
}

.subheader h1 {
  font-size: 48px;
  letter-spacing: 3px;
  color: #fff;
  position: relative;
  z-index: 1;
}

.subheader p {
  position: relative;
  z-index: 1;
}

/* === HERO SLIDER === */
.hero-slider {
  position: relative;
  width: 100%;
  height: 815px;
  overflow: hidden;
}

.hero-slider .slide {
  position: relative;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center top;
}

.hero-slider .slide-content {
  position: absolute;
  bottom: 120px;
  right: 80px;
  text-align: right;
}

.hero-slider .slide-line {
  position: absolute;
  bottom: 100px;
  right: 60px;
}

.hero-slider .slide-title {
  font-family: 'Ubuntu', sans-serif;
  font-size: 70px;
  font-weight: 500;
  font-style: italic;
  color: #fff;
  letter-spacing: 2px;
  margin-bottom: 10px;
  opacity: 0;
  transform: translateX(50px);
  animation: slideInRight 0.8s 0.9s forwards;
}

.hero-slider .slide-subtitle {
  font-family: 'Ubuntu', sans-serif;
  font-size: 42px;
  font-weight: 300;
  color: #fff;
  letter-spacing: 2px;
  opacity: 0;
  transform: translateX(50px);
  animation: slideInRight 0.8s 1.1s forwards;
}

@keyframes slideInRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* === SECTIONS === */
.section {
  padding: 70px 0 50px;
  position: relative;
}

.section-border-bottom {
  border-bottom: 1px solid #3f4c5f;
}

.section-bg {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

/* === WELCOME SECTION === */
.welcome-section {
  padding: 100px 0 50px;
}

.welcome-section h2 {
  margin-bottom: 20px;
}

.welcome-section p {
  color: #b0b0b0;
  line-height: 24px;
}

/* === FLAT BOXES (Service Cards) === */
.flat-box {
  display: block;
  text-align: center;
  padding: 0 15px;
  margin-bottom: 30px;
  color: #dedede;
  transition: transform 0.3s ease;
}

.flat-box:hover {
  transform: translateY(-5px);
  color: #dedede;
}

.flat-box .flat-box-img {
  position: relative;
  margin-bottom: 20px;
  overflow: hidden;
}

.flat-box .flat-box-img img {
  width: 100%;
  display: block;
}

.flat-box .flat-box-icon {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 60px;
  background: #182838;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #b59a5a;
}

.flat-box h4 {
  font-size: 18px;
  line-height: 30px;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.flat-box p {
  font-size: 14px;
  line-height: 22px;
  color: #a0a0a0;
  margin-bottom: 15px;
}

.flat-box .read-more {
  color: #b59a5a;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 1px;
}

/* === WORLD MAP SECTION === */
.map-section {
  text-align: center;
}

.map-section img {
  max-width: 843px;
  margin: 0 auto;
  display: block;
}

.map-section h3 {
  margin-top: 70px;
  padding: 0 20px;
}

/* === COUNTERS SECTION === */
.counter-box {
  border: 1px solid #b59a5a;
  padding: 60px 20px;
  text-align: center;
  margin: 0 4%;
}

.counter-box .counter-icon {
  width: 58px;
  height: 58px;
  margin: 0 auto 20px;
}

.counter-box .counter-icon img {
  width: 100%;
}

.counter-number {
  font-family: 'Ubuntu', sans-serif;
  font-size: 44px;
  font-weight: 100;
  color: #fff;
  margin-bottom: 10px;
}

.counter-number .suffix {
  font-size: 30px;
}

.counter-label {
  font-size: 14px;
  color: #b0b0b0;
  letter-spacing: 1px;
}

.counter-text h3 {
  margin-bottom: 20px;
}

.counter-text p {
  color: #b0b0b0;
  line-height: 24px;
}

/* === SERVICES PAGE === */
.services-intro h2 {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 40px 0;
}

.service-detail {
  padding: 70px 0 50px;
}

.service-detail img {
  width: 100%;
  display: block;
}

.service-detail h4 {
  margin-bottom: 20px;
}

.service-detail p.big {
  color: #b0b0b0;
}

.service-detail p {
  color: #a0a0a0;
  line-height: 24px;
}

.service-logo-block {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
}

.service-logo-block img {
  width: 120px;
  flex-shrink: 0;
}

.service-list-item {
  display: flex;
  gap: 20px;
  margin-bottom: 25px;
  align-items: flex-start;
}

.service-list-item .list-icon {
  flex-shrink: 0;
  width: 28px;
}

.service-list-item .list-icon img {
  width: 28px;
}

.service-list-item h5 {
  margin-bottom: 8px;
}

.service-list-item p {
  font-size: 14px;
  color: #a0a0a0;
}

/* === ABOUT PAGE === */
.about-hero {
  padding: 140px 0 60px;
  text-align: center;
}

.about-hero h1 {
  margin-bottom: 15px;
  letter-spacing: 3px;
}

.about-hero p {
  font-size: 20px;
  color: #b0b0b0;
}

/* Tabs */
.tabs-container {
  margin-bottom: 40px;
}

.tabs-nav {
  display: flex;
  border-bottom: 2px solid #3f4c5f;
  margin-bottom: 30px;
}

.tabs-nav button {
  flex: 1;
  padding: 15px 20px;
  background: none;
  border: none;
  color: #858d96;
  font-family: 'Ubuntu', sans-serif;
  font-size: 18px;
  font-weight: 400;
  cursor: pointer;
  transition: all 0.3s ease;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
}

.tabs-nav button.active,
.tabs-nav button:hover {
  color: #b59a5a;
  border-bottom-color: #b59a5a;
}

.tab-content {
  display: none;
  color: #b0b0b0;
  font-size: 16px;
  line-height: 28px;
}

.tab-content.active {
  display: block;
}

/* Team Members */
.team-member {
  text-align: center;
  padding: 20px;
}

.team-member .member-photo {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  margin: 0 auto 20px;
  overflow: hidden;
  border: 3px solid #b59a5a;
  background: #1e2d3d;
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-member .member-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-member .member-photo .initials {
  font-family: 'Ubuntu', sans-serif;
  font-size: 48px;
  color: #b59a5a;
  font-weight: 300;
}

.team-member h4 {
  font-size: 22px;
  margin-bottom: 8px;
}

.team-member .member-title {
  color: #b59a5a;
  font-size: 14px;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.team-member .member-phone {
  color: #b0b0b0;
  font-size: 15px;
}

.team-member .member-desc {
  font-size: 14px;
  color: #a0a0a0;
  margin-top: 10px;
  line-height: 22px;
}

/* === CONTACT PAGE === */
.contact-intro h4 {
  margin-bottom: 15px;
}

.contact-intro p.big {
  color: #b0b0b0;
}

.contact-list-item {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  align-items: flex-start;
}

.contact-list-item img {
  width: 80px;
  flex-shrink: 0;
}

.contact-list-item h4 {
  font-size: 22px;
  margin-bottom: 8px;
}

.contact-list-item p {
  color: #a0a0a0;
  line-height: 24px;
}

/* Contact Form Section */
.contact-form-section {
  background-color: #816e4e;
  background-size: cover;
  background-position: center;
  padding: 80px 0;
}

.contact-form-section h2 {
  text-align: right;
  margin-bottom: 0;
}

.contact-form {
  max-width: 100%;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 15px;
  margin-bottom: 15px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  font-family: 'Maven Pro', sans-serif;
  font-size: 14px;
  outline: none;
  transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #b59a5a;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255,255,255,0.6);
}

.contact-form textarea {
  height: 100px;
  resize: vertical;
}

.contact-form button {
  background: #b59a5a;
  color: #fff;
  border: none;
  padding: 14px 35px;
  font-family: 'Ubuntu', sans-serif;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 1px;
  cursor: pointer;
  transition: background 0.3s;
}

.contact-form button:hover {
  background: #a08845;
}

.contact-form .form-message {
  margin-top: 15px;
  padding: 10px;
  display: none;
}

.contact-form .form-message.success {
  display: block;
  color: #4caf50;
}

.contact-form .form-message.error {
  display: block;
  color: #f44336;
}

/* CAPTCHA */
.captcha-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
  flex-wrap: wrap;
}

.captcha-row .captcha-question {
  font-family: 'Ubuntu', sans-serif;
  font-size: 15px;
  color: #fff;
  white-space: nowrap;
  user-select: none;
}

.captcha-row .captcha-canvas {
  border-radius: 4px;
  flex-shrink: 0;
}

.captcha-row input.captcha-input {
  width: 80px;
  text-align: center;
  font-size: 16px;
  letter-spacing: 2px;
}

.captcha-row .captcha-refresh {
  background: none;
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  width: 36px;
  height: 36px;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  transition: border-color 0.3s;
  flex-shrink: 0;
}

.captcha-row .captcha-refresh:hover {
  border-color: #b59a5a;
  color: #b59a5a;
}

/* Contact Details */
.contact-detail-box {
  text-align: center;
  padding: 30px 15px;
}

.contact-detail-box .detail-icon {
  font-size: 36px;
  color: #b59a5a;
  margin-bottom: 15px;
}

.contact-detail-box .detail-label {
  font-size: 14px;
  color: #858d96;
  margin-bottom: 10px;
}

.contact-detail-box a {
  display: block;
  margin-bottom: 5px;
}

.contact-detail-box p {
  color: #b0b0b0;
}

/* === FOOTER === */
.footer {
  background: #545454;
  padding: 50px 0 0;
  position: relative;
}

.footer-bg {
  background-size: cover;
  background-position: center;
}

.footer h5 {
  font-size: 18px;
  line-height: 36px;
  margin-bottom: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.footer p {
  color: #b0b0b0;
  font-size: 14px;
  line-height: 22px;
}

.footer-offer li {
  padding: 5px 0;
  padding-left: 20px;
  position: relative;
  color: #b0b0b0;
  font-size: 14px;
}

.footer-offer li::before {
  content: '›';
  position: absolute;
  left: 0;
  color: #b59a5a;
  font-size: 18px;
  font-weight: bold;
}

.footer-address p {
  color: #b0b0b0;
}

.footer-address a {
  color: #b59a5a;
}

.footer-map iframe {
  width: 100%;
  height: 226px;
  border: none;
}

/* Footer Copyright */
.footer-copyright {
  background: #3a3a3a;
  padding: 20px 0;
  margin-top: 40px;
  text-align: center;
}

.footer-copyright p {
  font-size: 13px;
  color: #65666C;
}

.footer-copyright a {
  color: #b59a5a;
}

/* Back to Top */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 45px;
  height: 45px;
  background: #b59a5a;
  color: #fff;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  cursor: pointer;
  z-index: 999;
  transition: background 0.3s;
}

.back-to-top.visible {
  display: flex;
}

.back-to-top:hover {
  background: #a08845;
}

/* === SCROLL ANIMATIONS === */
.animate {
  opacity: 0;
  transition: all 0.8s ease;
}

.animate.fade-in {
  transform: translateY(20px);
}

.animate.fade-in-left {
  transform: translateX(-50px);
}

.animate.fade-in-right {
  transform: translateX(50px);
}

.animate.zoom-in {
  transform: scale(0.8);
}

.animate.bounce-in {
  transform: scale(0.5);
}

.animate.visible {
  opacity: 1;
  transform: translate(0) scale(1);
}

/* === RESPONSIVE === */

/* Tablet */
@media (max-width: 959px) {
  h1 { font-size: 42px; line-height: 44px; }
  h2 { font-size: 32px; line-height: 34px; letter-spacing: 2px; }
  h3 { font-size: 28px; line-height: 30px; letter-spacing: 4px; }
  h4 { font-size: 26px; line-height: 30px; }

  .hero-slider { height: 550px; }
  .hero-slider .slide-title { font-size: 48px; }
  .hero-slider .slide-subtitle { font-size: 30px; }
  .hero-slider .slide-content { right: 40px; bottom: 80px; }

  .col-1-2, .col-1-3, .col-1-4 {
    width: 50%;
  }

  .main-nav {
    display: none;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .counter-box {
    margin: 0 2% 20px;
  }
}

/* Small Tablet */
@media (max-width: 767px) {
  .col-1-2, .col-1-3, .col-1-4, .col-2-3 {
    width: 100%;
  }

  .hero-slider { height: 450px; }
  .hero-slider .slide-title { font-size: 36px; }
  .hero-slider .slide-subtitle { font-size: 24px; }
  .hero-slider .slide-content { right: 20px; bottom: 60px; }

  .welcome-section h2,
  .contact-form-section h2 {
    text-align: center;
  }

  .service-detail .row {
    flex-direction: column;
  }

  .service-detail .row.reverse-mobile {
    flex-direction: column-reverse;
  }

  .footer .row .col-1-4 {
    width: 50%;
    margin-bottom: 30px;
  }
}

/* Mobile */
@media (max-width: 479px) {
  h1 { font-size: 32px; line-height: 36px; }
  h2 { font-size: 24px; line-height: 28px; letter-spacing: 1px; }
  h3 { font-size: 22px; line-height: 26px; letter-spacing: 2px; }
  h4 { font-size: 20px; line-height: 24px; letter-spacing: 1px; }

  .hero-slider { height: 380px; }
  .hero-slider .slide-title { font-size: 28px; }
  .hero-slider .slide-subtitle { font-size: 18px; }

  .container { padding: 0 15px; }

  .section { padding: 40px 0 30px; }

  .footer .row .col-1-4 {
    width: 100%;
  }

  .counter-box {
    padding: 30px 15px;
  }

  .counter-number {
    font-size: 32px;
  }

  .contact-list-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .service-list-item {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .service-logo-block {
    flex-direction: column;
    text-align: center;
  }

  .team-member .member-photo {
    width: 150px;
    height: 150px;
  }
}

/* === UTILITY === */
.pt-0 { padding-top: 0; }
.pb-0 { padding-bottom: 0; }
.mt-30 { margin-top: 30px; }
.mb-30 { margin-bottom: 30px; }
.mb-0 { margin-bottom: 0; }
