/* ==========================================================================
   Fizioterapia DUO - Custom Theme Stylesheet
   Color Palette: #bfdff0 (Secondary/Accent) & #2b4a5a (Primary Deep Slate Navy)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Public+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=Tenor+Sans&family=Roboto:wght@300;400;500;700&display=swap');

:root {
  --primary-color: #2b4a5a;
  --primary-hover: #1b3440;
  --primary-rgb: 43, 74, 90;
  --secondary-color: #bfdff0;
  --secondary-hover: #a5d3eb;
  --secondary-rgb: 191, 223, 240;
  --accent-color: #5ea5ca;
  --accent-dark: #447c99;
  --dark-color: #151a25;
  --darker-color: #0b0c10;
  --body-color: #687276;
  --heading-color: #2b4a5a;
  --text-dark: #4e4e53;
  --bg-light: #f1fcff;
  --bg-lighter: #f8fbfd;
  --white: #ffffff;
  --border-color: rgba(43, 74, 90, 0.12);
  --shadow-sm: 0 4px 15px rgba(43, 74, 90, 0.06);
  --shadow-md: 0 10px 30px rgba(43, 74, 90, 0.1);
  --shadow-lg: 0 20px 50px rgba(43, 74, 90, 0.15);
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --radius-sm: 10px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --radius-pill: 100px;
  --font-heading: 'Tenor Sans', serif;
  --font-body: 'Public Sans', sans-serif;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--body-color);
  background-color: var(--white);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}

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

a:hover {
  color: var(--accent-color);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--heading-color);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 0.8rem;
}

h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); letter-spacing: -1.5px; }
h2 { font-size: clamp(2rem, 4vw, 3rem); letter-spacing: -1px; }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); letter-spacing: -0.5px; }
h4 { font-size: 1.45rem; }
h5 { font-size: 1.2rem; }
h6 { font-size: 1rem; }

p {
  font-family: var(--font-body);
  margin-bottom: 1.2rem;
}

p:last-child {
  margin-bottom: 0;
}

button, input, select, textarea {
  font-family: var(--font-body);
}

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

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 20px;
}

.container-fluid {
  width: 100%;
  max-width: 1680px;
  margin: 0 auto;
  padding: 0 20px;
}

/* -------------------------------------------------------------
   ANIMATIONS
---------------------------------------------------------------- */
@keyframes pxl_bounce {
  0%, 100%, 20%, 50%, 80% { transform: translateY(0); }
  40% { transform: translateY(-8px); }
  60% { transform: translateY(-4px); }
}

@keyframes hide_hover_icon {
  0% { transform: translateX(0); opacity: 1; }
  50% { transform: translateX(8px); opacity: 0; }
  51% { transform: translateX(-8px); opacity: 0; }
  100% { transform: translateX(0); opacity: 1; }
}

@keyframes pxl_spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes pulse_slow {
  0%, 100% { transform: scale(1); opacity: 0.9; }
  50% { transform: scale(1.05); opacity: 1; }
}

/* -------------------------------------------------------------
   BUTTONS
---------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 36px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  line-height: 1.4;
  white-space: nowrap;
}

.btn i, .btn svg {
  transition: var(--transition);
}

.btn:hover i, .btn:hover svg {
  animation: hide_hover_icon 0.4s ease;
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--white);
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  color: var(--white);
  box-shadow: 0 6px 20px rgba(43, 74, 90, 0.25);
}

.btn-white {
  background-color: var(--white);
  color: var(--primary-color);
}

.btn-white:hover {
  background-color: var(--primary-color);
  color: var(--white);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.btn-secondary {
  background-color: var(--secondary-color);
  color: var(--primary-color);
}

.btn-secondary:hover {
  background-color: var(--primary-color);
  color: var(--white);
}

.btn-outline {
  border-color: var(--primary-color);
  color: var(--primary-color);
  background: transparent;
}

.btn-outline:hover {
  background-color: var(--primary-color);
  color: var(--white);
}

.btn-outline-white {
  border-color: var(--white);
  color: var(--white);
  background: transparent;
}

.btn-outline-white:hover {
  background-color: var(--white);
  color: var(--primary-color);
}

.btn-sm {
  padding: 10px 24px;
  font-size: 11px;
}

/* -------------------------------------------------------------
   TOP BAR
---------------------------------------------------------------- */
.top-bar {
  background-color: #bfdff0;
  border-bottom: 1px solid rgba(43, 74, 90, 0.12);
  font-size: 13.5px;
  color: var(--primary-color);
  padding: 10px 0;
  display: block;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.top-bar-info {
  display: flex;
  align-items: center;
  gap: 25px;
  flex-wrap: wrap;
}

.top-bar-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary-color);
  font-weight: 500;
}

.top-bar-item a {
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition);
}

.top-bar-item a:hover {
  color: var(--accent-dark);
  text-decoration: underline;
}

.top-bar-item i {
  color: var(--primary-color);
  font-size: 14px;
}

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.top-bar-social a {
  color: var(--primary-color);
  font-size: 15px;
  margin-left: 10px;
  transition: var(--transition);
}

.top-bar-social a:hover {
  color: var(--accent-dark);
}

/* -------------------------------------------------------------
   HEADER & NAVIGATION
---------------------------------------------------------------- */
.site-header {
  position: relative;
  background-color: var(--white);
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.04);
}

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

.logo-wrap {
  display: flex;
  align-items: center;
}

.logo-wrap img {
  height: 52px;
  width: auto;
  object-fit: contain;
}

.main-navigation {
  display: flex;
  align-items: center;
}

.site-nav,
.nav-menu {
  display: flex;
  align-items: center;
  gap: 0;
  font-family: var(--font-body);
}

.nav-item {
  position: relative;
  font-family: var(--font-body);
}

.nav-link {
  font-family: var(--font-body);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: #1a2c36;
  border-right: 1px solid rgba(43, 74, 90, 0.16);
  border-radius: 0;
  transition: var(--transition);
}

.nav-item:first-child .nav-link {
  border-left: none;
}

.nav-item:last-child .nav-link {
  border-right: none;
}

.nav-link i {
  font-size: 10px;
  margin-left: 2px;
  transition: transform 0.25s ease;
}

.nav-item.has-dropdown:hover .nav-link i {
  transform: rotate(180deg);
}

.nav-link:hover, .nav-item.active .nav-link {
  color: var(--accent-dark);
  background-color: transparent;
}

.nav-item.has-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background-color: var(--white);
  border-radius: 12px;
  box-shadow: 0 15px 35px rgba(43, 74, 90, 0.12);
  border: 1px solid rgba(43, 74, 90, 0.08);
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: var(--transition);
  z-index: 99;
}

.dropdown-link {
  font-family: var(--font-body);
  display: block;
  padding: 9px 20px;
  font-size: 14.5px;
  font-weight: 500;
  color: #2b4a5a;
  transition: var(--transition);
}

.dropdown-link:hover {
  background-color: #f1fcff;
  color: var(--primary-color);
  padding-left: 24px;
}

.header-action {
  display: flex;
  align-items: center;
  gap: 15px;
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--primary-color);
  font-weight: 700;
  font-size: 14.5px;
  padding: 8px 16px;
  background-color: #f1fcff;
  border-radius: var(--radius-pill);
}

.header-phone i {
  color: var(--accent-dark);
  font-size: 16px;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  color: var(--primary-color);
  cursor: pointer;
  padding: 6px;
}

/* Sticky Header */
.sticky-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transform: translateY(-100%);
  transition: transform 0.4s ease;
  z-index: 1001;
}

.sticky-header.is-sticky {
  transform: translateY(0);
}

/* Mobile Drawer */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 320px;
  max-width: 85vw;
  height: 100vh;
  background-color: var(--white);
  box-shadow: -5px 0 30px rgba(0, 0, 0, 0.15);
  z-index: 2000;
  transform: translateX(100%);
  visibility: hidden;
  transition: transform 0.35s ease, visibility 0.35s ease;
  overflow-y: auto;
  padding: 30px 24px;
}

.mobile-drawer.open {
  transform: translateX(0);
  visibility: visible;
}

.mobile-drawer-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1999;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.mobile-drawer-backdrop.open {
  opacity: 1;
  visibility: visible;
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 1px solid #eef2f5;
}

.drawer-header img {
  height: 44px;
}

.close-drawer {
  background: none;
  border: none;
  font-size: 26px;
  color: var(--primary-color);
  cursor: pointer;
}

.mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 30px;
  font-family: var(--font-body);
}

.mobile-nav-link {
  font-family: var(--font-body);
  display: block;
  padding: 12px 14px;
  font-size: 16px;
  font-weight: 600;
  color: var(--primary-color);
  border-radius: 8px;
  border-bottom: 1px solid #f2f5f8;
}

.mobile-nav-link:hover, .mobile-nav-link.active {
  background-color: #f1fcff;
  color: var(--accent-dark);
}

.mobile-sub-menu {
  padding-left: 18px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-family: var(--font-body);
}

.mobile-sub-link {
  font-family: var(--font-body);
  display: block;
  padding: 8px 12px;
  font-size: 14.5px;
  color: var(--body-color);
}

.mobile-drawer-actions {
  margin-top: 25px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mobile-drawer-actions .btn {
  width: 100%;
  justify-content: center;
  padding: 12px 18px;
  font-size: 13.5px;
  min-height: 46px;
  box-sizing: border-box;
}

.mobile-drawer-actions .btn-outline {
  border-width: 1.5px;
  font-weight: 600;
}

/* -------------------------------------------------------------
   PAGE HERO (DEFAULT INNER PAGES)
---------------------------------------------------------------- */
.page-title-section {
  background: linear-gradient(135deg, #f1fcff 0%, #ffffff 100%);
  padding: 70px 0 65px;
  position: relative;
  border-bottom: 1px solid rgba(191, 223, 240, 0.4);
}

.page-title-content {
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
}

.page-badge {
  display: block;
  text-align: center;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--primary-color);
  margin: 0 auto 16px;
}

.page-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 2.85rem);
  font-weight: 400;
  line-height: 1.35;
  letter-spacing: -0.015em;
  color: #38424a;
  max-width: 860px;
  margin: 0 auto 18px;
  text-align: center;
}

.page-title .highlight,
.page-title mark,
.section-title .highlight,
.section-title mark,
.highlight-text {
  color: #4ea3cb;
  background: none;
  font-weight: inherit;
  font-style: normal;
  display: inline;
}

.highlight-word {
  display: inline-block;
  opacity: 0;
  transform: translateX(-22px);
  filter: blur(3px);
  color: #8ed0ee; /* soft luminous light-blue on entrance */
  transition: opacity 0.42s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.44s cubic-bezier(0.16, 1, 0.3, 1),
              filter 0.35s ease,
              color 0.45s ease;
  transition-delay: var(--word-delay, 0ms);
  will-change: transform, opacity, filter, color;
}

.section-title.is-revealed .highlight-word,
.page-title.is-revealed .highlight-word {
  opacity: 1;
  transform: translateX(0);
  filter: blur(0);
  color: #4ea3cb;
}

.page-subtitle {
  font-size: 17px;
  color: var(--body-color);
  max-width: 700px;
  margin: 0 auto 15px;
}

.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--body-color);
}

.breadcrumb a {
  color: var(--primary-color);
}

/* -------------------------------------------------------------
   HOME HERO SECTION
---------------------------------------------------------------- */
.hero-section {
  position: relative;
  min-height: 720px;
  background-image: url('../ChatGPT-Image-Jan-17-2026-07_46_59-PM1.png');
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  padding: 100px 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.52);
  z-index: 1;
}

.hero-content-wrap {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 50px;
  align-items: center;
}

.hero-text {
  color: var(--white);
}

.hero-subtitle {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 18px;
}

.hero-title {
  color: var(--white);
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 22px;
  text-transform: uppercase;
}

.hero-desc {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 35px;
  max-width: 580px;
  font-weight: 300;
}

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

/* HERO APPOINTMENT CARD (Rezervo Box: radius 2px) */
.hero-booking-card {
  background-color: var(--secondary-color);
  border-radius: 2px;
  padding: 45px 40px;
  box-shadow: var(--shadow-lg);
  color: var(--primary-color);
}

.booking-card-header {
  text-align: center;
  margin-bottom: 25px;
}

.booking-card-title {
  color: var(--primary-color);
  font-size: 28px;
  line-height: 1.25;
  margin-bottom: 10px;
  letter-spacing: -0.5px;
}

.booking-card-desc {
  font-size: 14.5px;
  font-weight: 400;
  color: var(--primary-color);
  line-height: 1.5;
  max-width: 360px;
  margin: 0 auto;
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-group {
  position: relative;
}

.form-control {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  padding: 13px 18px;
  font-size: 14.5px;
  font-family: var(--font-body);
  color: var(--primary-color);
  background-color: var(--white);
  border: 1.5px solid transparent;
  border-radius: 2px;
  outline: none;
  transition: var(--transition);
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(43, 74, 90, 0.15);
}

select.form-control {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%232b4a5a' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  cursor: pointer;
}

.form-row-datetime {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  width: 100%;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .form-row-datetime {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

input[type="date"].form-control,
input[type="datetime-local"].form-control {
  cursor: pointer;
  font-family: var(--font-body);
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
}

input[type="date"].form-control::-webkit-calendar-picker-indicator,
input[type="datetime-local"].form-control::-webkit-calendar-picker-indicator {
  cursor: pointer;
  filter: invert(24%) sepia(21%) saturate(958%) hue-rotate(158deg) brightness(92%) contrast(92%);
  opacity: 0.85;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

input[type="date"].form-control::-webkit-calendar-picker-indicator:hover,
input[type="datetime-local"].form-control::-webkit-calendar-picker-indicator:hover {
  opacity: 1;
  transform: scale(1.1);
}

/* HERO BOOKING FORM INPUTS (radius 25px, same color as outside, border #2b4a5a) */
.hero-booking-card .form-control {
  background-color: var(--secondary-color) !important;
  border: 1.5px solid #2b4a5a;
  border-radius: 25px;
  color: #2b4a5a !important;
  padding: 13px 22px;
}

.hero-booking-card .form-control::placeholder {
  color: rgba(43, 74, 90, 0.75);
}

.hero-booking-card .form-control:focus,
.hero-booking-card .form-control:active,
.hero-booking-card .form-control:hover,
.hero-booking-card .form-control:not(:placeholder-shown) {
  border-color: #2b4a5a !important;
  background-color: var(--secondary-color) !important;
  color: #2b4a5a !important;
  box-shadow: 0 0 0 3px rgba(43, 74, 90, 0.18);
}

/* Chrome / Edge / Safari Autofill Fix - Prevents inputs from turning white when typing or autofilling */
.hero-booking-card input:-webkit-autofill,
.hero-booking-card input:-webkit-autofill:hover,
.hero-booking-card input:-webkit-autofill:focus,
.hero-booking-card input:-webkit-autofill:active,
.hero-booking-card select:-webkit-autofill,
.hero-booking-card select:-webkit-autofill:hover,
.hero-booking-card select:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0 1000px #bfdff0 inset !important;
  box-shadow: 0 0 0 1000px #bfdff0 inset !important;
  -webkit-text-fill-color: #2b4a5a !important;
  color: #2b4a5a !important;
  caret-color: #2b4a5a !important;
  transition: background-color 5000s ease-in-out 0s !important;
}

.hero-booking-card select.form-control {
  background-color: var(--secondary-color) !important;
  border: 1.5px solid #2b4a5a;
  border-radius: 25px;
  color: #2b4a5a !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%232b4a5a' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  padding-right: 44px;
}

.hero-booking-card select.form-control option {
  background-color: var(--white);
  color: var(--primary-color);
}

.hero-booking-card .btn-submit,
.hero-booking-card .btn,
.hero-booking-card button[type="submit"] {
  border-radius: 25px !important;
}

.booking-form .btn-submit {
  width: 100%;
  margin-top: 6px;
  padding: 15px;
  font-size: 13px;
}

/* FORM INLINE STATUS NOTIFICATIONS */
.form-status-msg {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-top: 18px;
  margin-bottom: 6px;
  padding: 16px 20px;
  border-radius: 12px;
  text-align: left;
  line-height: 1.45;
  animation: slideInStatusMsg 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  width: 100%;
  box-sizing: border-box;
}

@keyframes slideInStatusMsg {
  0% {
    opacity: 0;
    transform: translateY(10px) scale(0.98);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.form-status-msg.form-success-msg {
  background: linear-gradient(135deg, #e8fdf2 0%, #d1f7e0 100%);
  color: #064e3b;
  border: 2px solid #10b981;
  box-shadow: 0 10px 25px -4px rgba(16, 185, 129, 0.28), 0 4px 10px -2px rgba(16, 185, 129, 0.15);
}

.form-status-msg .status-icon-box {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #10b981;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.35);
  animation: pulseCheckBadge 2s infinite ease-in-out;
}

@keyframes pulseCheckBadge {
  0%, 100% { transform: scale(1); box-shadow: 0 4px 12px rgba(16, 185, 129, 0.35); }
  50% { transform: scale(1.08); box-shadow: 0 6px 18px rgba(16, 185, 129, 0.55); }
}

.form-status-msg .status-icon-box i {
  font-size: 20px;
  color: #ffffff;
}

.form-status-msg .status-text-content {
  flex: 1;
}

.form-status-msg .status-heading {
  margin: 0 0 4px 0;
  font-size: 15.5px;
  font-weight: 700;
  color: #064e3b;
  letter-spacing: -0.2px;
  line-height: 1.3;
}

.form-status-msg .status-desc {
  margin: 0;
  font-size: 13.5px;
  font-weight: 500;
  color: #047857;
  line-height: 1.45;
}

/* Card overrides for hero booking section (light background card) */
.hero-booking-card .form-status-msg.form-success-msg {
  background: #ffffff;
  border: 2px solid #10b981;
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(16, 185, 129, 0.25);
}

.hero-booking-card .form-status-msg.form-success-msg .status-heading {
  color: #064e3b;
}

.hero-booking-card .form-status-msg.form-success-msg .status-desc {
  color: #065f46;
}

/* Error status styling */
.form-status-msg.form-error-msg {
  background: #fef2f2;
  color: #991b1b;
  border: 2px solid #ef4444;
  box-shadow: 0 8px 22px rgba(239, 68, 68, 0.18);
}

.form-status-msg.form-error-msg .status-icon-box {
  background: #ef4444;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.35);
  animation: none;
}

.form-status-msg.form-error-msg .status-heading {
  color: #991b1b;
}

.form-status-msg.form-error-msg .status-desc {
  color: #b91c1c;
}


/* -------------------------------------------------------------
   STATS COUNTERS BAR
---------------------------------------------------------------- */
.stats-section {
  background-color: var(--secondary-color);
  padding: 45px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  align-items: center;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: center;
}

.stat-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background-color: rgba(43, 74, 90, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--primary-color);
  flex-shrink: 0;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 56px;
  color: var(--primary-color);
  line-height: 1;
  letter-spacing: -2px;
  font-weight: 400;
  display: inline-flex;
  align-items: baseline;
  font-variant-numeric: tabular-nums;
}

.stat-suffix {
  font-size: 36px;
}

.stat-label {
  font-size: 15.5px;
  font-weight: 400;
  color: var(--primary-color);
  line-height: 1.35;
  max-width: 190px;
}

/* -------------------------------------------------------------
   ABOUT INTRO SECTION
---------------------------------------------------------------- */
.about-intro-section {
  padding: 120px 0 100px;
  background-color: var(--white);
  text-align: center;
  position: relative;
}

.intro-logo-center {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 25px;
}

.intro-top-emblem {
  height: 80px;
  width: auto;
  object-fit: contain;
  margin: 0 auto;
}

.intro-signature-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 32px;
}

.intro-signature-img {
  max-width: 250px;
  width: 100%;
  height: auto;
  object-fit: contain;
  margin: 0 auto;
  opacity: 0.95;
}

.section-subtitle {
  display: block;
  text-align: center;
  font-family: var(--font-body);
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--primary-color);
  margin: 0 auto 16px;
}

.booking-card-header .section-subtitle {
  display: inline-block;
  text-align: left;
  margin-left: 0;
  margin-right: 0;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 2.85rem);
  font-weight: 400;
  line-height: 1.35;
  letter-spacing: -0.015em;
  color: #38424a;
  max-width: 860px;
  margin: 0 auto 24px;
  text-align: center;
}

.intro-lead {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--body-color);
  max-width: 780px;
  margin: 0 auto;
}

/* -------------------------------------------------------------
   TEAM BANNER SECTION (50/50 Split Box)
---------------------------------------------------------------- */
.team-banner-section {
  background-color: var(--white);
  padding: 80px 0;
  position: relative;
}

.team-banner-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  background-color: var(--primary-color);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.team-banner-content {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 80px 65px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.team-banner-title {
  color: var(--white);
  font-size: clamp(1.8rem, 2.5vw, 2.4rem);
  line-height: 1.3;
  margin-bottom: 22px;
  letter-spacing: -0.5px;
}

.team-banner-text {
  font-size: 16px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.75;
  margin-bottom: 35px;
  max-width: 540px;
}

.team-banner-content .btn {
  border-radius: 50px;
  align-self: flex-start;
  padding: 14px 34px;
  font-size: 12px;
  letter-spacing: 1.5px;
}

.team-banner-image {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 100%;
}

.team-banner-image img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: 0;
  box-shadow: none;
  display: block;
}

/* -------------------------------------------------------------
   SERVICES TABS & CARDS SECTION (Boxes of sherbimet: radius 2px)
---------------------------------------------------------------- */
.services-section {
  padding: 130px 0 110px;
  background: linear-gradient(180deg, var(--white) 0%, var(--bg-light) 100%);
}

.section-header-center {
  text-align: center;
  max-width: 860px;
  margin: 0 auto 60px;
}

.section-header-center .section-title mark {
  background: none;
  color: var(--accent-color);
}

/* Category Tabs */
.service-tabs-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 50px;
}

.service-tab-btn {
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  border: 1.5px solid rgba(43, 74, 90, 0.18);
  background-color: var(--white);
  color: var(--primary-color);
  font-size: 14.5px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.service-tab-btn.active, .service-tab-btn:hover {
  background-color: var(--primary-color);
  color: var(--white);
  border-color: var(--primary-color);
  box-shadow: var(--shadow-sm);
}

.service-tab-pane {
  display: none;
}

.service-tab-pane.active {
  display: block;
  animation: fadeIn 0.4s ease;
}

/* Service Cards Grid (2px radius) */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card {
  background-color: var(--white);
  border-radius: 2px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(43, 74, 90, 0.08);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--secondary-color);
}

.service-card-img {
  position: relative;
  height: 250px;
  overflow: hidden;
  border-radius: 2px 2px 0 0;
}

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-card:hover .service-card-img img {
  transform: scale(1.08);
}

.service-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(43, 74, 90, 0.0) 0%, rgba(43, 74, 90, 0.65) 100%);
}

.service-card-body {
  padding: 30px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 2px;
  background-color: #f1fcff;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
  transition: var(--transition);
}

.service-card:hover .service-card-icon {
  background-color: var(--primary-color);
  color: var(--white);
}

.service-card-title {
  font-size: 22px;
  color: var(--primary-color);
  margin-bottom: 12px;
}

.service-card-desc {
  font-size: 15.5px;
  font-weight: 300;
  line-height: 1.6;
  color: var(--body-color);
  margin-bottom: 22px;
  flex-grow: 1;
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary-color);
  transition: var(--transition);
}

.service-card-link:hover {
  color: var(--accent-dark);
}

.service-card-link i {
  transition: var(--transition);
}

.service-card-link:hover i {
  transform: translateX(4px);
}

/* -------------------------------------------------------------
   WHY CHOOSE US SECTION
---------------------------------------------------------------- */
.why-us-section {
  padding: 120px 0;
  background-color: var(--white);
}

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.why-us-card {
  background-color: #f6fafd;
  border-radius: 2px;
  padding: 40px 30px;
  text-align: center;
  border: 1px solid rgba(43, 74, 90, 0.08);
  transition: var(--transition);
}

.why-us-card:hover {
  transform: translateY(-8px);
  background-color: var(--white);
  box-shadow: var(--shadow-lg);
  border-color: var(--secondary-color);
}

.why-us-icon {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background-color: var(--primary-color);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin: 0 auto 25px;
  transition: var(--transition);
}

.why-us-card:nth-child(even) .why-us-icon {
  background-color: var(--accent-dark);
}

.why-us-card:hover .why-us-icon {
  transform: scale(1.1);
  background-color: var(--primary-color);
}

.why-us-title {
  font-size: 20px;
  color: var(--primary-color);
  margin-bottom: 12px;
}

.why-us-desc {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.6;
  color: var(--body-color);
}

/* -------------------------------------------------------------
   VIDEO PRESENTATION SECTION (Video container & poster: radius 2px)
---------------------------------------------------------------- */
.video-section {
  padding: 50px 0 100px;
  background-color: var(--white);
}

.video-container {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  max-height: 520px;
  box-shadow: 0 15px 40px rgba(43, 74, 90, 0.12);
  background-color: #0b1c24;
  cursor: pointer;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-container:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 50px rgba(43, 74, 90, 0.2);
}

.video-poster {
  width: 100%;
  height: 520px;
  object-fit: cover;
  filter: brightness(0.88);
  border-radius: 20px;
  display: block;
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1), filter 0.3s ease;
}

.video-container:hover .video-poster {
  transform: scale(1.025);
  filter: brightness(0.95);
}

.video-overlay-tint {
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: radial-gradient(circle at center, rgba(43, 74, 90, 0.1) 0%, rgba(15, 30, 40, 0.35) 100%);
  pointer-events: none;
  transition: opacity 0.3s ease;
}

@keyframes pulse_play_btn {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
    box-shadow: 0 0 0 15px rgba(255, 255, 255, 0.4);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.06);
    box-shadow: 0 0 0 22px rgba(255, 255, 255, 0.25);
  }
}

.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background-color: var(--primary-color);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  cursor: pointer;
  box-shadow: 0 0 0 15px rgba(255, 255, 255, 0.4);
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  animation: pulse_play_btn 2.5s infinite ease-in-out;
  z-index: 2;
  margin: 0;
}

.video-play-btn i {
  margin-left: 4px;
}

.video-container:hover .video-play-btn,
.video-play-btn:hover {
  animation: none;
  transform: translate(-50%, -50%) scale(1.12);
  background-color: var(--accent-dark);
  box-shadow: 0 0 0 22px rgba(255, 255, 255, 0.5);
}

/* -------------------------------------------------------------
   FULL-SIZE VIDEO POPUP LIGHTBOX MODAL
---------------------------------------------------------------- */
.video-modal-backdrop {
  position: fixed;
  inset: 0;
  background-color: rgba(9, 21, 30, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3500;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  padding: 30px 20px;
}

.video-modal-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.video-modal-window {
  position: relative;
  width: 100%;
  max-width: 1100px;
  background-color: #000;
  border-radius: 20px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.7);
  transform: scale(0.92);
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.video-modal-backdrop.active .video-modal-window {
  transform: scale(1);
}

.close-video-modal {
  position: absolute;
  top: -48px;
  right: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.25);
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
  z-index: 10;
}

.close-video-modal:hover {
  background-color: var(--accent-dark);
  color: #ffffff;
  transform: scale(1.1);
}

.video-modal-content {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background-color: #000;
  border-radius: 20px;
  overflow: hidden;
}

.popup-video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background-color: #000;
  border-radius: 20px;
  display: block;
  outline: none;
}

/* -------------------------------------------------------------
   TESTIMONIALS / VLERSIMET SECTION
---------------------------------------------------------------- */
.testimonials-section {
  padding: 130px 0;
  background-color: var(--primary-color);
  color: var(--white);
  position: relative;
}

.testimonials-section .section-subtitle {
  color: var(--secondary-color);
}

.testimonials-section .section-title {
  color: var(--white);
}

.testimonials-section .section-title .highlight {
  color: var(--secondary-color);
}

.testimonials-slider {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.testimonial-card {
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  padding: 38px 32px;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  backdrop-filter: blur(5px);
}

.testimonial-card:hover {
  transform: translateY(-6px);
  background-color: rgba(255, 255, 255, 0.13);
  border-color: var(--secondary-color);
}

.testimonial-stars {
  color: #ffb800;
  font-size: 15px;
  margin-bottom: 20px;
  display: flex;
  gap: 4px;
}

.testimonial-text {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 300;
  margin-bottom: 25px;
  flex-grow: 1;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
  padding-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  background-color: var(--secondary-color);
}

.author-name {
  font-size: 18px;
  color: var(--white);
  font-family: var(--font-heading);
  letter-spacing: -0.5px;
}

.author-badge {
  font-size: 12px;
  color: var(--secondary-color);
}

/* -------------------------------------------------------------
   INSTAGRAM GALLERY SECTION
---------------------------------------------------------------- */
.instagram-section {
  padding: 100px 0;
  background-color: var(--white);
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 15px;
  margin-top: 40px;
}

.insta-card {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.insta-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.insta-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(43, 74, 90, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 28px;
  opacity: 0;
  transition: var(--transition);
}

.insta-card:hover .insta-overlay {
  opacity: 1;
}

.insta-card:hover img {
  transform: scale(1.1);
}

/* -------------------------------------------------------------
   PRICING PAGE (CMIMORJA)
---------------------------------------------------------------- */
.pricing-section {
  padding: 100px 0;
  background-color: var(--white);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.pricing-card {
  background-color: #f8fcfe;
  border: 1.5px solid rgba(43, 74, 90, 0.1);
  border-radius: var(--radius-md);
  padding: 40px 35px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition);
}

.pricing-card:hover {
  background-color: var(--white);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent-color);
  transform: translateY(-5px);
}

.pricing-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
  gap: 15px;
}

.pricing-title {
  font-size: 24px;
  color: var(--primary-color);
  margin-bottom: 0;
}

.pricing-badge {
  background-color: var(--primary-color);
  color: var(--white);
  font-size: 22px;
  font-family: var(--font-heading);
  font-weight: 700;
  padding: 8px 22px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}

.pricing-desc {
  font-size: 16px;
  line-height: 1.7;
  color: var(--body-color);
  margin-bottom: 28px;
  font-weight: 300;
}

/* -------------------------------------------------------------
   TEAM SECTION (ABOUT PAGE)
---------------------------------------------------------------- */
.team-section {
  padding: 110px 0;
  background-color: #f8fcfe;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
  margin-top: 50px;
}

.team-member-card {
  background-color: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(43, 74, 90, 0.08);
  transition: var(--transition);
  text-align: center;
}

.team-member-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.member-photo {
  height: 380px;
  width: 100%;
  overflow: hidden;
}

.member-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.6s ease;
}

.team-member-card:first-child .member-photo img {
  object-position: center 30%;
}

.team-member-card:hover .member-photo img {
  transform: scale(1.05);
}

.member-info {
  padding: 25px 20px 30px;
}

.member-name {
  font-size: 22px;
  color: var(--primary-color);
  margin-bottom: 6px;
}

.member-role {
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-dark);
}

/* -------------------------------------------------------------
   FAQ ACCORDION (ABOUT PAGE)
---------------------------------------------------------------- */
.faq-section {
  padding: 110px 0;
  background-color: var(--white);
}

.faq-accordion {
  max-width: 900px;
  margin: 40px auto 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.faq-item {
  border: 1px solid rgba(43, 74, 90, 0.12);
  border-radius: var(--radius-sm);
  overflow: hidden;
  background-color: #fbfdfe;
  transition: var(--transition);
}

.faq-item.active {
  border-color: var(--accent-dark);
  background-color: var(--white);
  box-shadow: var(--shadow-sm);
}

.faq-header {
  padding: 20px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
}

.faq-question {
  font-size: 17.5px;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 0;
  line-height: 1.4;
}

.faq-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: #f1fcff;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
  transition: var(--transition);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  background-color: var(--primary-color);
  color: var(--white);
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease-out;
}

.faq-item.active .faq-body {
  max-height: 500px;
}

.faq-content {
  padding: 0 25px 25px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--body-color);
}

/* -------------------------------------------------------------
   CONTACT PAGE (KONTAKTI)
---------------------------------------------------------------- */
.contact-section {
  padding: 85px 0;
  background-color: var(--white);
  overflow-x: hidden;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  width: 100%;
  min-width: 0;
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 25px;
  width: 100%;
  min-width: 0;
}

.contact-info-card {
  background-color: #f8fcfe;
  border: 1px solid rgba(43, 74, 90, 0.1);
  border-radius: var(--radius-md);
  padding: clamp(18px, 3.5vw, 35px);
  display: flex;
  gap: clamp(12px, 2.5vw, 20px);
  align-items: flex-start;
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

.contact-card-icon {
  width: clamp(38px, 5vw, 52px);
  height: clamp(38px, 5vw, 52px);
  border-radius: 12px;
  background-color: var(--primary-color);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(16px, 2.2vw, 22px);
  flex-shrink: 0;
}

.contact-card-content {
  min-width: 0;
  flex: 1;
  overflow-wrap: break-word;
  word-break: break-word;
}

.contact-card-content h4 {
  font-size: clamp(16px, 2.2vw, 20px);
  color: var(--primary-color);
  margin-bottom: 6px;
}

.contact-card-content p, .contact-card-content a {
  font-size: clamp(13.5px, 1.8vw, 16px);
  color: var(--body-color);
  margin-bottom: 4px;
}

.contact-card-content a:hover {
  color: var(--primary-color);
}

.hours-table {
  width: 100%;
  margin-top: 10px;
  border-collapse: collapse;
}

.hours-table tr td {
  padding: clamp(4px, 1vw, 6px) 0;
  font-size: clamp(13px, 1.8vw, 15px);
  border-bottom: 1px dashed rgba(43, 74, 90, 0.1);
}

.hours-table tr td:last-child {
  text-align: right;
  font-weight: 600;
  color: var(--primary-color);
}

.contact-form-wrap {
  background-color: #f8fcfe;
  border-radius: 12px;
  padding: clamp(22px, 4vw, 45px) clamp(16px, 3.5vw, 40px);
  border: 1.5px solid rgba(43, 74, 90, 0.1);
  box-shadow: var(--shadow-md);
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

.contact-form-wrap .booking-card-header {
  text-align: left;
  margin-bottom: clamp(16px, 3vw, 25px);
}

.contact-form-wrap .booking-card-title {
  font-size: clamp(19px, 3vw, 28px);
  line-height: 1.3;
  margin-bottom: 8px;
  color: var(--primary-color);
}

.contact-form-wrap .booking-card-desc {
  font-size: clamp(13px, 1.8vw, 15px);
  color: var(--body-color);
  line-height: 1.6;
  margin-bottom: 0;
}

.contact-form-wrap .booking-form {
  width: 100%;
  min-width: 0;
}

.contact-form-wrap .btn-submit {
  width: 100%;
  min-height: 48px;
  padding: 13px 18px;
  font-size: clamp(13.5px, 2vw, 15px);
  letter-spacing: 0.5px;
  white-space: normal;
  text-align: center;
  justify-content: center;
  box-sizing: border-box;
  gap: 8px;
}

.contact-form-wrap .form-control {
  background-color: var(--white);
  border: 1.5px solid rgba(43, 74, 90, 0.2);
  color: var(--primary-color);
}

.contact-form-wrap .form-control:focus,
.contact-form-wrap .form-control:active,
.contact-form-wrap .form-control:hover,
.contact-form-wrap .form-control:not(:placeholder-shown) {
  border-color: var(--primary-color) !important;
  background-color: var(--white) !important;
  color: var(--primary-color) !important;
  box-shadow: 0 0 0 3px rgba(43, 74, 90, 0.15);
}

.contact-form-wrap input:-webkit-autofill,
.contact-form-wrap input:-webkit-autofill:hover,
.contact-form-wrap input:-webkit-autofill:focus,
.contact-form-wrap input:-webkit-autofill:active,
.contact-form-wrap select:-webkit-autofill,
.contact-form-wrap select:-webkit-autofill:hover,
.contact-form-wrap select:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0 1000px #ffffff inset !important;
  box-shadow: 0 0 0 1000px #ffffff inset !important;
  -webkit-text-fill-color: var(--primary-color) !important;
  color: var(--primary-color) !important;
  caret-color: var(--primary-color) !important;
  transition: background-color 5000s ease-in-out 0s !important;
}

.map-section {
  padding: 0 0 clamp(35px, 6vw, 80px);
}

.map-container {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(43, 74, 90, 0.1);
  height: clamp(260px, 42vw, 450px);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* -------------------------------------------------------------
   CONTENT PAGES (PEJE & KOSOVE)
---------------------------------------------------------------- */
.article-section {
  padding: 90px 0;
  background-color: var(--white);
}

.article-container {
  max-width: 960px;
  margin: 0 auto;
}

.article-content {
  font-size: 18px;
  line-height: 1.8;
  color: #4e4e53;
}

.article-content h2, .article-content h3 {
  margin-top: 40px;
  margin-bottom: 18px;
  color: var(--primary-color);
}

.article-content ul {
  list-style: disc;
  padding-left: 25px;
  margin-bottom: 25px;
}

.article-content ul li {
  margin-bottom: 10px;
}

/* -------------------------------------------------------------
   FOOTER
---------------------------------------------------------------- */
.site-footer {
  background-color: var(--dark-color);
  color: #a0abb0;
  padding: 75px 0 30px;
  position: relative;
  font-size: 15.5px;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 45px;
}

.footer-logo {
  margin-bottom: 25px;
}

.footer-logo img {
  height: 60px;
  width: auto;
  filter: brightness(0) invert(1);
}

.footer-info {
  font-size: 16.5px;
  line-height: 1.8;
  color: #d1d8dc;
  max-width: 600px;
  margin-bottom: 25px;
}

.footer-info a {
  color: #d1d8dc;
  text-decoration: none;
  transition: var(--transition);
}

.footer-info a:hover {
  color: #8ed6ff;
  text-decoration: underline;
}

.contact-address-link {
  transition: var(--transition);
}

.contact-address-link:hover p {
  color: var(--primary-color);
}

.footer-social {
  display: flex;
  gap: 15px;
  margin-bottom: 30px;
}

.footer-social a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.08);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: var(--transition);
}

.footer-social a:hover {
  background-color: var(--secondary-color);
  color: var(--primary-color);
  transform: translateY(-3px);
}

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  font-size: 14px;
}

.footer-bottom a {
  color: var(--secondary-color);
}

.footer-bottom a:hover {
  text-decoration: underline;
}

/* -------------------------------------------------------------
   FLOATING ELEMENTS (WHATSAPP & SCROLL TOP)
---------------------------------------------------------------- */
.floating-whatsapp {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #25d366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: var(--transition);
  cursor: pointer;
}

.floating-whatsapp:hover {
  transform: scale(1.1);
  color: var(--white);
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

.scroll-top-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--primary-color);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: 0 8px 24px rgba(43, 74, 90, 0.28);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.9);
  transition: all 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
  cursor: pointer;
  border: none;
  outline: none;
}

.scroll-top-btn.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.scroll-top-btn:hover {
  background-color: var(--accent-dark);
  color: var(--white);
  transform: translateY(-4px) scale(1.06);
  box-shadow: 0 12px 28px rgba(43, 74, 90, 0.38);
}

.scroll-top-btn:active {
  transform: translateY(-1px) scale(0.98);
}

/* -------------------------------------------------------------
   BOOKING MODAL & VIDEO MODAL (Accessible, Scrollable & High-Contrast)
---------------------------------------------------------------- */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background-color: rgba(11, 20, 26, 0.72);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  padding: 20px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.modal-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.modal-window {
  background-color: var(--white);
  border-radius: 16px;
  max-width: 520px;
  width: 100%;
  padding: 38px 34px 34px;
  position: relative;
  transform: translateY(20px) scale(0.96);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.35);
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  margin: auto;
  box-sizing: border-box;
}

.modal-backdrop.active .modal-window {
  transform: translateY(0) scale(1);
}

.modal-window .booking-card-title {
  font-size: 25px;
  letter-spacing: -0.4px;
  margin-bottom: 8px;
}

.modal-window .booking-card-desc {
  font-size: 14px;
  line-height: 1.5;
  color: var(--body-color);
  margin-bottom: 22px;
}

/* Modal Form Controls (Ensures inputs are clearly visible on white background) */
.modal-window .form-control {
  background-color: #f6fafd !important;
  border: 1.5px solid rgba(43, 74, 90, 0.22) !important;
  border-radius: 12px;
  color: #2b4a5a !important;
  padding: 13px 18px;
  font-size: 15px;
  min-height: 48px;
  box-sizing: border-box;
  width: 100%;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.modal-window .form-control:focus,
.modal-window .form-control:active,
.modal-window .form-control:not(:placeholder-shown) {
  background-color: #ffffff !important;
  border-color: #2b4a5a !important;
  box-shadow: 0 0 0 3px rgba(43, 74, 90, 0.15) !important;
  color: #2b4a5a !important;
}

.modal-window select.form-control {
  background-color: #f6fafd !important;
  border: 1.5px solid rgba(43, 74, 90, 0.22) !important;
  border-radius: 12px;
  color: #2b4a5a !important;
  cursor: pointer;
}

.modal-window .btn-submit,
.modal-window button[type="submit"] {
  border-radius: 12px !important;
  min-height: 50px;
  font-size: 15.5px;
  font-weight: 600;
  margin-top: 6px;
  width: 100%;
}

.modal-window .close-modal {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #f0f4f8;
  border: none;
  font-size: 20px;
  line-height: 1;
  color: #2b4a5a;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
  z-index: 10;
}

.modal-window .close-modal:hover {
  background-color: #e2eaf0;
  color: #0b0c10;
  transform: scale(1.08);
}

@media screen and (max-width: 640px) {
  .modal-backdrop {
    padding: 12px;
    align-items: flex-start;
  }
  .modal-window {
    padding: 26px 18px 22px;
    border-radius: 16px;
    max-height: calc(100vh - 24px);
    margin: 12px auto;
  }
  .modal-window .booking-card-title {
    font-size: 21px;
    padding-right: 25px;
  }
  .modal-window .booking-card-desc {
    font-size: 13px;
    margin-bottom: 16px;
  }
  .modal-window .form-row-datetime {
    grid-template-columns: 1fr;
    gap: 11px;
  }
}

/* -------------------------------------------------------------
   RESPONSIVE MEDIA QUERIES
---------------------------------------------------------------- */
@media screen and (max-width: 1200px) {
  .hero-content-wrap {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-booking-card {
    max-width: 540px;
    margin: 0 auto;
  }
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .why-us-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .instagram-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media screen and (max-width: 991px) {
  .top-bar {
    display: none;
  }
  .main-navigation, .header-phone {
    display: none;
  }
  .header-action .btn {
    display: none;
  }
  .mobile-toggle {
    display: block;
  }
  .hero-section {
    min-height: auto;
    padding: 70px 0 60px;
  }
  .hero-content-wrap {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .hero-text {
    text-align: center;
  }
  .hero-subtitle {
    margin-bottom: 12px;
  }
  .hero-title {
    font-size: clamp(2.2rem, 5.5vw, 3.2rem);
    letter-spacing: -1px;
    margin-bottom: 16px;
  }
  .hero-desc {
    max-width: 620px;
    margin: 0 auto 26px;
    font-size: 16px;
  }
  .hero-buttons {
    justify-content: center;
  }
  .hero-booking-card {
    max-width: 520px;
    width: 100%;
    margin: 0 auto;
    padding: 35px 28px;
  }
  .form-row-datetime {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .team-banner-grid {
    grid-template-columns: 1fr;
  }
  .team-banner-content {
    padding: 50px 30px;
  }
  .team-banner-image img {
    height: 360px;
    min-height: 360px;
  }
  .testimonials-slider {
    grid-template-columns: 1fr;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .contact-section {
    padding: 60px 0;
  }
  .contact-form-wrap {
    padding: 35px 28px;
  }
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .stat-item {
    justify-content: flex-start;
  }
  .video-container {
    max-height: 380px;
  }
  .video-poster,
  .inline-video {
    height: 360px;
  }
  .video-play-btn {
    width: 70px;
    height: 70px;
    font-size: 24px;
    box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.4);
  }
}

@media screen and (max-width: 768px) {
  .hero-section {
    padding: 50px 0 45px;
  }
  .hero-content-wrap {
    gap: 28px;
  }
  .hero-title {
    font-size: clamp(1.85rem, 6.5vw, 2.5rem);
    line-height: 1.15;
  }
  .hero-desc {
    font-size: 15px;
    line-height: 1.55;
    margin-bottom: 22px;
  }
  .hero-booking-card {
    max-width: 100%;
    padding: 28px 20px;
    border-radius: 12px;
  }
  .booking-card-title {
    font-size: 23px;
    letter-spacing: -0.3px;
  }
  .booking-card-desc {
    font-size: 13.5px;
    max-width: 100%;
  }
  .hero-booking-card .form-control {
    padding: 12px 18px;
    font-size: 15px;
    min-height: 48px;
  }
  .contact-section {
    padding: 45px 0;
  }
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .contact-info-cards {
    gap: 18px;
  }
  .contact-info-card {
    padding: 24px 20px;
    gap: 16px;
  }
  .contact-card-icon {
    width: 46px;
    height: 46px;
    font-size: 18px;
    border-radius: 10px;
  }
  .contact-card-content h4 {
    font-size: 18px;
    margin-bottom: 6px;
  }
  .contact-card-content p,
  .contact-card-content a {
    font-size: 15px;
  }
  .contact-form-wrap {
    padding: 28px 20px;
  }
  .contact-form-wrap .booking-card-header {
    margin-bottom: 18px;
  }
  .contact-form-wrap .booking-card-title {
    font-size: 22px;
  }
  .contact-form-wrap .btn-submit {
    padding: 13px 18px;
    font-size: 14.5px;
    min-height: 48px;
    white-space: normal;
  }
  .map-section {
    padding: 0 0 50px;
  }
  .map-container {
    height: 320px;
  }
}

@media screen and (max-width: 640px) {
  .video-container {
    max-height: 240px;
    aspect-ratio: 16 / 9;
  }
  .video-poster,
  .inline-video {
    width: 100%;
    height: 100%;
    max-height: 240px;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    object-position: center;
  }
  .video-play-btn {
    width: 55px;
    height: 55px;
    font-size: 18px;
    box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.4);
  }
  .service-grid {
    grid-template-columns: 1fr;
  }
  .why-us-grid {
    grid-template-columns: 1fr;
  }
  .team-grid {
    grid-template-columns: 1fr;
  }
  .instagram-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .floating-whatsapp {
    bottom: 20px;
    left: 20px;
    width: 52px;
    height: 52px;
    font-size: 26px;
  }
  .scroll-top-btn {
    bottom: 20px;
    right: 20px;
    width: 42px;
    height: 42px;
    font-size: 16px;
  }
}

/* Mobile Phones (480px and down) */
@media screen and (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
  .hero-section {
    padding: 35px 0 30px;
  }
  .hero-subtitle {
    font-size: 12px;
    letter-spacing: 2px;
    margin-bottom: 10px;
  }
  .hero-title {
    font-size: 24px;
    letter-spacing: -0.5px;
    line-height: 1.2;
    margin-bottom: 12px;
  }
  .hero-desc {
    font-size: 13.5px;
    line-height: 1.5;
    margin-bottom: 18px;
  }
  .hero-buttons {
    flex-direction: column;
    width: 100%;
    gap: 10px;
  }
  .hero-buttons .btn {
    width: 100%;
    justify-content: center;
    padding: 13px 18px;
    font-size: 13.5px;
  }
  .hero-booking-card {
    padding: 22px 15px;
    border-radius: 12px;
    width: 100%;
    box-sizing: border-box;
  }
  .booking-card-header {
    margin-bottom: 16px;
  }
  .booking-card-title {
    font-size: 20px;
    line-height: 1.25;
    margin-bottom: 6px;
  }
  .booking-card-desc {
    font-size: 13px;
    line-height: 1.45;
  }
  .booking-form {
    gap: 11px;
  }
  .hero-booking-card .form-control {
    padding: 11px 16px;
    font-size: 14px;
    min-height: 46px;
    border-radius: 20px;
    width: 100%;
    box-sizing: border-box;
  }
  .hero-booking-card select.form-control {
    background-position: right 14px center;
    padding-right: 38px;
  }
  .hero-booking-card .btn-submit,
  .hero-booking-card button[type="submit"] {
    padding: 13px 16px;
    font-size: 14.5px;
    min-height: 48px;
  }
  .form-row-datetime {
    grid-template-columns: 1fr;
    gap: 11px;
  }
  .form-status-msg {
    padding: 12px 14px;
    gap: 10px;
    margin-top: 12px;
  }
  .form-status-msg .status-icon-box {
    width: 32px;
    height: 32px;
  }
  .form-status-msg .status-icon-box i {
    font-size: 16px;
  }
  .form-status-msg .status-heading {
    font-size: 14px;
  }
  .form-status-msg .status-desc {
    font-size: 12.5px;
  }

  /* Contact Page Mobile 480px */
  .contact-section {
    padding: 32px 0;
  }
  .page-title-section {
    padding: 38px 0 28px;
  }
  .page-badge {
    font-size: 11px;
    letter-spacing: 2px;
    margin-bottom: 8px;
  }
  .page-title {
    font-size: 1.35rem;
    line-height: 1.25;
    margin-bottom: 10px;
  }
  .page-subtitle {
    font-size: 13.5px;
    line-height: 1.45;
  }
  .contact-layout {
    gap: 20px;
  }
  .contact-info-cards {
    gap: 14px;
  }
  .contact-info-card {
    padding: 18px 14px;
    gap: 12px;
    border-radius: 10px;
  }
  .contact-card-icon {
    width: 38px;
    height: 38px;
    font-size: 16px;
    border-radius: 8px;
  }
  .contact-card-content h4 {
    font-size: 16px;
    margin-bottom: 4px;
  }
  .contact-card-content p,
  .contact-card-content a {
    font-size: 13.5px;
    margin-bottom: 3px;
  }
  .hours-table tr td {
    padding: 5px 0;
    font-size: 13px;
  }
  .contact-form-wrap {
    padding: 22px 14px;
    border-radius: 10px;
  }
  .contact-form-wrap .booking-card-header {
    margin-bottom: 14px;
  }
  .contact-form-wrap .booking-card-title {
    font-size: 19px;
  }
  .contact-form-wrap .booking-card-desc {
    font-size: 13px;
    line-height: 1.45;
  }
  .contact-form-wrap .form-control {
    padding: 11px 14px;
    font-size: 14px;
    min-height: 46px;
    border-radius: 10px;
    width: 100%;
    box-sizing: border-box;
  }
  .contact-form-wrap select.form-control {
    background-position: right 14px center;
    padding-right: 36px;
  }
  .contact-form-wrap .btn-submit {
    padding: 13px 12px;
    font-size: 14px;
    min-height: 48px;
    letter-spacing: 0.3px;
    white-space: normal;
    gap: 8px;
  }
  .map-section {
    padding: 0 0 35px;
  }
  .map-container {
    height: 250px;
    border-radius: 10px;
  }
}

/* Extra small mobile (e.g. iPhone SE / Galaxy Fold 320px) */
@media screen and (max-width: 360px) {
  .container {
    padding: 0 12px;
  }
  .hero-booking-card {
    padding: 18px 12px;
  }
  .hero-booking-card .form-control {
    padding: 10px 14px;
    font-size: 13.5px;
  }
  .booking-card-title {
    font-size: 18px;
  }
  .contact-info-card {
    padding: 14px 10px;
    gap: 10px;
  }
  .contact-card-icon {
    width: 34px;
    height: 34px;
    font-size: 14px;
  }
  .contact-form-wrap {
    padding: 16px 10px;
  }
  .contact-form-wrap .booking-card-title {
    font-size: 17.5px;
  }
  .contact-form-wrap .btn-submit {
    font-size: 13px;
    padding: 12px 10px;
  }
}
