/* ============================================================
   TAXI ZEBA ROGOZNICA — V2: Adriatic Noir
   Bold editorial luxury with cinematic atmosphere
   ============================================================ */

:root {
  --black: #080a0e;
  --dark: #0d1117;
  --dark-card: #131920;
  --dark-border: #1e2730;
  --gold: #c8994b;
  --gold-bright: #daa74e;
  --gold-glow: #e8ba5c;
  --gold-pale: rgba(200, 153, 75, 0.12);
  --gold-gradient: linear-gradient(135deg, #c8994b, #daa74e, #e8ba5c);
  --white: #ffffff;
  --off-white: #f4f1ec;
  --warm-gray: #a8a29e;
  --cool-gray: #6b7280;
  --light-gray: #e8e5e0;
  --section-pad: clamp(80px, 10vw, 140px);
  --transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ============================================================
   GLOBAL
   ============================================================ */

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: var(--cool-gray);
  background: var(--off-white);
  margin: 0;
}

p {
  margin-bottom: 0;
  font-size: 15px;
  color: var(--cool-gray);
  line-height: 1.85;
  font-weight: 300;
}

a {
  text-decoration: none !important;
  transition: color var(--transition);
}

ul { padding: 0; margin: 0; list-style: none; }
h1, h2, h3, h4, h5, h6 { margin: 0; }
img { max-width: 100%; }

::selection {
  background: var(--gold);
  color: var(--black);
}

/* Label / overline text style */
.overline {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 4px;
  font-weight: 500;
  color: var(--gold);
  display: block;
  margin-bottom: 18px;
}


/* ============================================================
   PRELOADER — Minimal pulsing ring
   ============================================================ */

#preloader {
  overflow: hidden;
  background: var(--black);
  position: fixed;
  inset: 0;
  z-index: 9999999;
  display: flex;
  align-items: center;
  justify-content: center;
}

#preloader .jumper {
  position: relative;
  width: 48px;
  height: 48px;
}

#preloader .jumper > div {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid transparent;
  border-top-color: var(--gold);
  animation: prespin 1s linear infinite;
  opacity: 1;
  width: auto;
  height: auto;
  background: transparent;
}

#preloader .jumper > div:nth-child(2) {
  inset: 6px;
  border-top-color: var(--gold-bright);
  animation-direction: reverse;
  animation-duration: 0.8s;
}

#preloader .jumper > div:nth-child(3) {
  inset: 12px;
  border-top-color: var(--gold-glow);
  animation-duration: 1.2s;
}

@keyframes prespin {
  to { transform: rotate(360deg); }
}

@keyframes jumper {
  0% { opacity: 0; transform: scale(0); }
  5% { opacity: 1; }
  100% { opacity: 0; }
}


/* ============================================================
   BUTTONS
   ============================================================ */

a.filled-button {
  background: var(--gold-gradient);
  color: var(--black);
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 600;
  padding: 15px 34px;
  border-radius: 0;
  display: inline-block;
  transition: all var(--transition);
  letter-spacing: 2px;
  position: relative;
}

a.filled-button:hover {
  color: var(--black);
  filter: brightness(1.15);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(200, 153, 75, 0.3);
}

a.border-button,
button.border-button {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.3);
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 500;
  padding: 14px 34px;
  border-radius: 0;
  display: inline-block;
  transition: all var(--transition);
  letter-spacing: 2px;
  cursor: pointer;
}

a.border-button:hover,
button.border-button:hover {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}


/* ============================================================
   HEADER — Unified fixed bar with logo + contact info
   ============================================================ */

header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999;
  width: 100%;
  background: rgba(8, 10, 14, 0.55);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(200, 153, 75, 0.15);
  transition: all 0.5s ease;
}

.background-header {
  background: rgba(8, 10, 14, 0.95) !important;
  backdrop-filter: blur(30px) !important;
  -webkit-backdrop-filter: blur(30px) !important;
  border-bottom-color: rgba(200, 153, 75, 0.25) !important;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-logo img {
  height: 50px;
  display: block;
}

.header-brand {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.header-brand strong {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 2px;
}

.header-brand span {
  font-size: 11px;
  font-weight: 300;
  color: var(--gold);
  letter-spacing: 3px;
  text-transform: uppercase;
}

.header-info {
  display: flex;
  align-items: center;
  gap: 24px;
}

.header-info-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.5px;
  transition: color var(--transition);
}

a.header-info-item:hover {
  color: var(--gold);
}

.header-info-item i {
  font-size: 14px;
  color: var(--gold);
}

.header-info-item img {
  height: 14px;
  border-radius: 1px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}


/* ============================================================
   HERO SLIDER — Full cinematic
   ============================================================ */

.img-fill {
  width: 100%;
  display: block;
  overflow: hidden;
  position: relative;
  text-align: center;
}

.img-fill img {
  min-height: 100%;
  min-width: 100%;
  position: relative;
  display: inline-block;
  max-width: none;
}

.blocks-box, .slick-slider { margin: 0; padding: 0 !important; }
.slick-slide { float: left; padding: 0; }

.Modern-Slider .item .img-fill {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  height: 100vh;
}

.Modern-Slider .item .img-fill::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(8, 10, 14, 0.85) 0%,
      rgba(8, 10, 14, 0.35) 30%,
      rgba(8, 10, 14, 0.2) 50%,
      rgba(8, 10, 14, 0.5) 75%,
      rgba(8, 10, 14, 0.95) 100%
    ),
    linear-gradient(90deg,
      rgba(8, 10, 14, 0.6) 0%,
      transparent 60%
    );
  z-index: 1;
}

.Modern-Slider .item-1 .img-fill { background-image: url(../images/taxi-rogoznica-zeba-1-min.jpg); }
.Modern-Slider .item-2 .img-fill { background-image: url(../images/taxi-rogoznica-zeba-2-min.jpg); }
.Modern-Slider .item-3 .img-fill { background-image: url(../images/taxi-rogoznica-zeba-3-min.jpg); }
.Modern-Slider .item-4 .img-fill { background-image: url(../images/taxi-rogoznica-zeba-4-min.jpg); }
.Modern-Slider .item-5 .img-fill { background-image: url(../images/taxi-rogoznica-zeba-5-min.jpg); }

/* Arrows — Minimal lines */
.Modern-Slider .NextArrow,
.Modern-Slider .PrevArrow {
  position: absolute;
  top: 50%;
  border: 0;
  background: transparent;
  font-size: 28px;
  font-family: 'FontAwesome';
  color: rgba(255,255,255,0.4);
  z-index: 5;
  outline: none;
  cursor: pointer;
  transition: all var(--transition);
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
}

.Modern-Slider .NextArrow { right: 40px; }
.Modern-Slider .PrevArrow { left: 40px; }
.Modern-Slider .NextArrow:before { content: '\f105'; }
.Modern-Slider .PrevArrow:before { content: '\f104'; }
.Modern-Slider .NextArrow:hover,
.Modern-Slider .PrevArrow:hover { color: var(--gold); }

ul.slick-dots { display: none !important; }

/* Hero text — big, editorial, left-aligned */
.Modern-Slider .text-content {
  text-align: left;
  background: transparent;
  position: absolute;
  bottom: 18%;
  left: 8%;
  top: auto;
  transform: none;
  padding: 0;
  z-index: 2;
  max-width: 600px;
}

.Modern-Slider .item h1,
.Modern-Slider .item h2 {
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 24px;
}

.Modern-Slider .item h4 {
  font-size: 44px;
  font-weight: 700;
  letter-spacing: 2.5px;
  color: #FFF;
  overflow: hidden;
  animation: fadeOutLeft 1s both;
}

.Modern-Slider .item p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 440px;
}

.Modern-Slider .item p a {
  color: var(--gold);
}

.Modern-Slider .item a.filled-button {
  margin: 0 10px 12px 0;
}

.Modern-Slider .item.slick-active h6 { animation: fadeInDown 1s both 1s; }
.Modern-Slider .item.slick-active h4 { animation: fadeInLeft 1s both 1.5s; }
.Modern-Slider .item.slick-active { animation: Slick-FastSwipeIn 1s both; }

.Modern-Slider .buttons { position: relative; }
.Modern-Slider { background: var(--black); }

/* Slick core */
.slick-slider{position:relative;display:block;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-touch-callout:none;-khtml-user-select:none;-ms-touch-action:pan-y;touch-action:pan-y;-webkit-tap-highlight-color:transparent}
.slick-list{position:relative;display:block;overflow:hidden;margin:0;padding:0}
.slick-list:focus{outline:none}.slick-list.dragging{cursor:hand}
.slick-slider .slick-track,.slick-slider .slick-list{-webkit-transform:translate3d(0,0,0);-ms-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}
.slick-track{position:relative;top:0;left:0;display:block}
.slick-track:before,.slick-track:after{display:table;content:''}.slick-track:after{clear:both}
.slick-loading .slick-track{visibility:hidden}
.slick-slide{display:none;float:left;height:100%;min-height:1px}
.slick-slide.dragging img{pointer-events:none}
.slick-initialized .slick-slide{display:block}
.slick-loading .slick-slide{visibility:hidden}
.slick-vertical .slick-slide{display:block;height:auto;border:1px solid transparent}


/* ============================================================
   HERO STATIC CONTENT — Fixed overlay while images rotate
   ============================================================ */

.main-banner {
  position: relative;
  overflow: hidden;
}

.hero-static-content {
  position: absolute;
  bottom: 18%;
  left: 0;
  width: 100%;
  z-index: 3;
  pointer-events: none;
}

.hero-static-content > .container {
  pointer-events: auto;
}

.hero-static-content .overline {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 4px;
  font-weight: 500;
  color: var(--gold);
  display: block;
  margin-bottom: 18px;
}

.hero-static-content h1 {
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 24px;
}

.hero-static-content p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 440px;
}

.hero-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.hero-buttons a.filled-button {
  flex: 1 1 0;
  text-align: center;
  white-space: nowrap;
  margin: 0;
}

.hero-static-content a img {
  border-radius: 1px !important;
  border: 1px solid rgba(255,255,255,0.15) !important;
}


/* ============================================================
   HERO BOTTOM SCROLL INDICATOR
   ============================================================ */

.hero-scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  text-align: center;
}

.hero-scroll-hint span {
  display: block;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: rgba(255,255,255,0.3);
  margin-bottom: 10px;
}

.hero-scroll-hint .scroll-line {
  width: 1px;
  height: 50px;
  background: rgba(255,255,255,0.15);
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.hero-scroll-hint .scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gold);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0% { top: -100%; }
  50% { top: 100%; }
  100% { top: 100%; }
}


/* ============================================================
   SERVICE STRIP — Overlapping hero bottom
   ============================================================ */

.service-strip {
  position: relative;
  z-index: 10;
  margin-top: -80px;
  padding: 0 0 40px;
}

.service-strip .container {
  max-width: 1100px;
}

.service-strip .row {
  display: flex;
  flex-wrap: wrap;
}

.service-strip .row > [class*="col-"] {
  display: flex;
}

.service-strip .service-card {
  width: 100%;
  background: var(--white);
  padding: 40px 28px 36px;
  text-align: center;
  transition: all var(--transition);
  position: relative;
  border: 1px solid var(--light-gray);
}

.service-strip .service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold-gradient);
  transform: scaleX(0);
  transition: transform var(--transition);
}

.service-strip .service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.08);
}

.service-strip .service-card:hover::after {
  transform: scaleX(1);
}

.service-strip .service-card i {
  font-size: 2.8rem;
  margin-bottom: 20px;
  display: block;
}

.service-strip .service-card h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}

.service-strip .service-card p {
  font-size: 13px;
  line-height: 1.7;
  color: var(--cool-gray);
}


/* ============================================================
   REQUEST CTA — Horizontal strip
   ============================================================ */

.request-form {
  background: var(--black);
  padding: 0;
  color: var(--white);
  margin-top: 40px;
}

.request-form .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 32px;
  padding-bottom: 32px;
}

.request-form h4 {
  font-size: 18px;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.5px;
}

.request-form span {
  font-size: 13px;
  font-weight: 300;
  display: inline-block;
  margin-top: 4px;
  color: var(--warm-gray);
}

.request-form a.border-button {
  float: right;
  margin-top: 0;
  white-space: nowrap;
  border-color: var(--gold);
  color: var(--gold);
}

.request-form a.border-button:hover {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}


/* ============================================================
   ABOUT / WHY CHOOSE US — Editorial layout
   ============================================================ */

.services {
  margin-top: 0;
  padding: var(--section-pad) 0;
  background: var(--off-white);
}

.section-heading {
  text-align: center;
  margin-bottom: 60px;
}

.section-heading h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: var(--black);
  letter-spacing: -1px;
  line-height: 1.2;
}

.section-heading em {
  font-style: normal;
  color: var(--gold);
}

.section-heading h2::after {
  content: '';
  display: block;
  width: 50px;
  height: 2px;
  background: var(--gold);
  margin: 24px auto 0;
}

.section-heading > span {
  display: block;
  margin-top: 20px;
  text-transform: none;
  font-size: 15px;
  color: var(--cool-gray);
  font-weight: 300;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.85;
  letter-spacing: 0;
}

.section-heading p {
  max-width: 700px;
  margin: 14px auto 0;
  text-align: left;
}

.section-heading p span {
  text-transform: none;
  font-size: 14px;
  color: var(--cool-gray);
  letter-spacing: 0;
  font-weight: 300;
  line-height: 1.9;
  display: inline;
}


/* ============================================================
   FUN FACTS — Bold horizontal numbers
   ============================================================ */

.fun-facts {
  margin-top: 0;
  background-image: url(../images/taxi-rogoznica-zeba-dark.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  padding: 0;
  color: var(--white);
  position: relative;
}

.fun-facts::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(8, 10, 14, 0.92);
}

.fun-facts .container {
  position: relative;
  z-index: 1;
}

.fun-facts .row {
  min-height: auto;
}

.fun-facts-inner {
  display: flex;
  align-items: center;
  padding: 80px 0;
}

.fun-facts .left-content {
  margin-right: 60px;
  flex-shrink: 0;
  max-width: 380px;
}

.fun-facts h2 {
  font-size: clamp(28px, 3.5vw, 38px);
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--white);
  letter-spacing: -0.5px;
  line-height: 1.2;
}

.fun-facts em {
  font-style: normal;
  color: var(--gold);
}

.fun-facts p {
  color: var(--warm-gray);
  margin-bottom: 0;
  font-weight: 300;
}

.fun-facts span {
  text-transform: uppercase;
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 3px;
  margin-bottom: 12px;
  display: block;
  font-weight: 500;
}

.count-area-content {
  text-align: center;
  background: transparent;
  padding: 28px 16px;
  margin: 8px 0;
  border: 1px solid var(--dark-border);
  transition: all var(--transition);
}

.count-area-content:hover {
  border-color: var(--gold);
  background: rgba(200, 153, 75, 0.05);
}

.count-digit {
  margin: 0 0 6px;
  color: var(--gold);
  font-weight: 700;
  font-size: clamp(32px, 4vw, 48px);
  letter-spacing: -2px;
  line-height: 1;
}

.count-title {
  font-size: 10px;
  font-weight: 400;
  color: var(--warm-gray);
  letter-spacing: 2px;
  text-transform: uppercase;
}


/* ============================================================
   DESTINATIONS — Tabs restyled as modern gallery
   ============================================================ */

.title-heading {
  text-align: center;
  padding-top: var(--section-pad);
  margin-top: 0;
  background: var(--off-white);
}

.title-heading h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: var(--black);
  letter-spacing: -1px;
}

.title-heading em {
  font-style: normal;
  color: var(--gold);
}

.title-heading h2::after {
  content: '';
  display: block;
  width: 50px;
  height: 2px;
  background: var(--gold);
  margin: 24px auto 0;
}

.single-services {
  margin-top: 50px;
  padding-bottom: var(--section-pad);
  background: var(--off-white);
}

#tabs ul { margin: 0; padding: 0; }

#tabs ul li {
  margin-bottom: 6px;
  display: inline-block;
  width: 100%;
}

#tabs ul li:last-child { margin-bottom: 0; }

#tabs ul li a {
  text-transform: none;
  width: 100%;
  padding: 20px 24px;
  display: inline-block;
  background: var(--white);
  font-size: 15px;
  color: var(--black);
  letter-spacing: 0;
  font-weight: 500;
  transition: all var(--transition);
  border: 1px solid var(--light-gray);
  position: relative;
}

#tabs ul li a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--gold);
  transform: scaleY(0);
  transition: transform var(--transition);
  transform-origin: center;
}

#tabs ul li a:hover {
  padding-left: 30px;
  border-color: var(--gold);
}

#tabs ul li a:hover::before {
  transform: scaleY(1);
}

#tabs ul li a i {
  float: right;
  margin-top: 3px;
  color: var(--warm-gray);
  transition: all var(--transition);
}

#tabs ul li a:hover i {
  color: var(--gold);
  transform: translateX(4px);
}

#tabs ul .ui-tabs-active a {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
  padding-left: 30px;
}

#tabs ul .ui-tabs-active a::before {
  transform: scaleY(1);
}

#tabs ul .ui-tabs-active a i {
  color: var(--gold);
}

#tabs ul .ui-tabs-active span {
  background: transparent;
  border: none;
  line-height: normal;
  color: var(--white);
}

.tabs-content {
  margin-left: 20px;
  text-align: left;
  display: inline-block;
  transition: all 0.3s;
}

.tabs-content img {
  max-width: 100%;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.tabs-content h4 {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.5px;
  margin-bottom: 10px;
  margin-top: 24px;
  color: var(--black);
}

.tabs-content h4 a {
  color: var(--black);
}

.tabs-content h4 a:hover {
  color: var(--gold);
}

.tabs-content p {
  font-size: 14px;
  color: var(--cool-gray);
  margin-bottom: 0;
  line-height: 1.8;
}


/* ============================================================
   CONTACT SECTION — Dark split layout
   ============================================================ */

.callback-form {
  margin-top: 0;
  padding: 0;
  background: var(--black);
  position: relative;
  overflow: hidden;
}

.callback-form .container {
  position: relative;
  z-index: 1;
}

.callback-form .section-heading {
  margin-bottom: 40px;
  padding-top: var(--section-pad);
}

.callback-form .section-heading h2 {
  color: var(--white);
}

.callback-form .section-heading h2::after {
  background: var(--gold);
}

.callback-form .section-heading span {
  color: var(--warm-gray);
}

.callback-form .contact-form {
  background: var(--dark-card);
  padding: 50px;
  text-align: center;
  border: 1px solid var(--dark-border);
  margin-bottom: 100px;
}

.callback-form .contact-form input {
  border-radius: 0;
  height: 52px;
  line-height: 52px;
  display: inline-block;
  padding: 0 20px;
  color: var(--white);
  font-size: 14px;
  text-transform: none;
  box-shadow: none;
  border: 1px solid var(--dark-border);
  margin-bottom: 20px;
  background: rgba(255,255,255,0.03);
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  transition: border-color var(--transition);
}

.callback-form .contact-form input:focus {
  outline: none;
  box-shadow: none;
  border-color: var(--gold);
  background: rgba(255,255,255,0.05);
}

.callback-form .contact-form textarea {
  border-radius: 0;
  height: 140px;
  max-height: 240px;
  min-height: 140px;
  display: inline-block;
  padding: 16px 20px;
  color: var(--white);
  font-size: 14px;
  text-transform: none;
  box-shadow: none;
  border: 1px solid var(--dark-border);
  margin-bottom: 20px;
  background: rgba(255,255,255,0.03);
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  transition: border-color var(--transition);
}

.callback-form .contact-form textarea:focus {
  outline: none;
  box-shadow: none;
  border-color: var(--gold);
  background: rgba(255,255,255,0.05);
}

.callback-form .contact-form ::-webkit-input-placeholder { color: rgba(255,255,255,0.25); }
.callback-form .contact-form :-ms-input-placeholder { color: rgba(255,255,255,0.25); }
.callback-form .contact-form ::placeholder { color: rgba(255,255,255,0.25); }

.callback-form .contact-form button.border-button {
  background: var(--gold-gradient);
  color: var(--black);
  border: none;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 600;
  padding: 16px 50px;
  border-radius: 0;
  display: inline-block;
  transition: all var(--transition);
  outline: none;
  box-shadow: none;
  text-shadow: none;
  cursor: pointer;
  letter-spacing: 2px;
  margin-top: 10px;
}

.callback-form .contact-form button.border-button:hover {
  filter: brightness(1.15);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(200, 153, 75, 0.25);
  background: var(--gold-gradient);
  color: var(--black);
}

.callback-form .g-recaptcha { margin: 10px 0 5px; }

#alerts-container { margin-top: 12px; }

#alerts-container span {
  display: block;
  padding: 10px 16px;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.25);
  font-size: 13px;
  margin-top: 8px;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
  color: #ef4444;
}


/* ============================================================
   FOOTER — Clean, structured
   ============================================================ */

footer {
  background: var(--dark);
  padding: 70px 0 50px;
  color: var(--white);
  position: relative;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 50%, transparent 100%);
}

footer h4 {
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 28px;
}

footer p {
  color: var(--warm-gray);
  font-size: 13px;
  font-weight: 300;
  line-height: 1.7;
}

footer ul.menu-list li {
  margin-bottom: 8px;
}

footer ul.menu-list li:last-child { margin-bottom: 0; }

footer ul.menu-list li a {
  font-size: 13px;
  color: var(--warm-gray);
  transition: all var(--transition);
  font-weight: 300;
  display: inline-block;
  position: relative;
}

footer ul.menu-list li a:hover {
  color: var(--gold);
  transform: translateX(6px);
}


/* ============================================================
   SUB-FOOTER
   ============================================================ */

.sub-footer {
  background: var(--black);
  text-align: center;
  padding: 18px 0;
  border-top: 1px solid var(--dark-border);
}

.sub-footer p {
  color: var(--warm-gray);
  font-weight: 300;
  letter-spacing: 1px;
  font-size: 11px;
  text-transform: uppercase;
}

.sub-footer a { color: var(--gold); }


/* ============================================================
   GOLD DIVIDER COMPONENT
   ============================================================ */

.gold-divider {
  text-align: center;
  padding: 60px 0;
  background: var(--off-white);
}

.gold-divider .inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.gold-divider .line {
  width: 80px;
  height: 1px;
  background: var(--gold);
  opacity: 0.4;
}

.gold-divider .diamond {
  width: 8px;
  height: 8px;
  background: var(--gold);
  transform: rotate(45deg);
}


/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 768px) {
  .header-logo img {
    height: 40px;
  }

  .hero-static-content {
    bottom: 12%;
    text-align: center;
  }

  .hero-static-content h1 {
    font-size: 32px;
    letter-spacing: -1px;
  }

  .hero-static-content p {
    font-size: 14px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-static-content a.filled-button {
    padding: 12px 24px;
    font-size: 11px;
  }

  .Modern-Slider .text-content {
    left: 5%;
    right: 5%;
    bottom: 15%;
    max-width: 100%;
    text-align: center;
  }

  .Modern-Slider .item h1,
  .Modern-Slider .item h2 {
    font-size: 32px;
    letter-spacing: -1px;
  }

  .Modern-Slider .item p {
    font-size: 14px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .Modern-Slider .item a.filled-button {
    padding: 12px 24px;
    font-size: 11px;
  }

  .Modern-Slider .NextArrow { right: 10px; }
  .Modern-Slider .PrevArrow { left: 10px; }

  .hero-scroll-hint { display: none; }

  .service-strip {
    margin-top: 0;
    padding: 30px 0;
  }

  .service-strip .service-card {
    margin-bottom: 12px;
    padding: 28px 20px;
  }

  .request-form { text-align: center; }
  .request-form .container { flex-direction: column; gap: 16px; }
  .request-form a.border-button { float: none; }

  .services { padding: 60px 0; }
  .services .service-item { margin-bottom: 20px; }

  .section-heading h2,
  .title-heading h2 { font-size: 26px; }

  .fun-facts-inner {
    flex-direction: column;
    padding: 60px 0;
  }

  .fun-facts .left-content {
    margin-right: 0;
    margin-bottom: 30px;
    text-align: center;
    max-width: 100%;
  }

  .tabs-content {
    margin-left: 0;
    margin-top: 24px;
  }

  .callback-form .contact-form {
    padding: 30px 20px;
    margin-bottom: 60px;
  }

  footer {
    padding: 50px 0 30px;
    text-align: center;
  }

  footer .footer-item {
    border-bottom: 1px solid var(--dark-border);
    margin-bottom: 30px;
    padding-bottom: 30px;
  }

  footer .last-item { border-bottom: none; }
}

@media (max-width: 992px) {
  .header-info {
    gap: 16px;
  }

  .header-info-item span {
    font-size: 12px;
  }
}

@media (min-width: 769px) and (max-width: 991px) {
  .hero-static-content h1 { font-size: 42px; }

  .Modern-Slider .item h1,
  .Modern-Slider .item h2 { font-size: 42px; }
}

/* ============================================================
   MISC
   ============================================================ */

.Grid1k { padding: 0 15px; max-width: 1200px; margin: auto; }

.Modern-Slider .item a img,
.sub-header a img {
  border-radius: 1px !important;
  border: 1px solid rgba(255,255,255,0.15) !important;
}

/* Service items within .services section (the 4-column cards below SEO text) */
.services .row {
  display: flex;
  flex-wrap: wrap;
}

.services .row > [class*="col-md-3"] {
  display: flex;
}

.service-item {
  text-align: center;
  background: var(--white);
  padding: 36px 20px;
  transition: all var(--transition);
  width: 100%;
  border: 1px solid var(--light-gray);
  position: relative;
}

.service-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold-gradient);
  transform: scaleX(0);
  transition: transform var(--transition);
}

.service-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 48px rgba(0,0,0,0.06);
}

.service-item:hover::after {
  transform: scaleX(1);
}

.service-item i {
  font-size: 3rem;
  margin-bottom: 20px;
  display: inline-block;
}

.service-item .down-content {
  background: transparent;
  padding: 0;
}

.service-item .down-content h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 10px;
  letter-spacing: 0;
}

.service-item .down-content p {
  margin-bottom: 0;
  font-size: 13px;
  line-height: 1.7;
}
