* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Reduce backdrop-filter usage on mobile and low-end devices */
@media (max-width: 768px), (prefers-reduced-motion: reduce) {
    .booking-card,
    .contact-card {
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        background: rgba(36, 36, 36, 0.98);
    }

    .header {
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        background-color: rgba(36, 36, 36, 0.98);
    }
}

.booking-card,
.contact-card,
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #3a3a3a;
    background-color: rgba(36,36,36,0.95);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    transform: none;
    backface-visibility: visible;
    perspective: none;
}

html {
    scroll-behavior: smooth;
    height: 100%;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: #242424;
    color: #e0e0e0;
    min-height: 100vh;
    line-height: 1.5;
    
    margin: 0;
    display: flex;
    flex-direction: column;
}

/* reCAPTCHA Styling */
.recaptcha-container,
.booking-recaptcha-container {
    margin: 20px 0;
    display: flex;
    justify-content: center;
}

.booking-recaptcha-container {
    margin: 15px 0;
    padding: 10px;
}

.g-recaptcha {
    transform: scale(0.9);
    transform-origin: center;
}

@media (max-width: 900px) {
    .booking-recaptcha-container {
        margin: 10px 0;
    }
}

@media (max-width: 480px) {
    .g-recaptcha {
        transform: scale(0.75);
    }
}

.grecaptcha-badge {
    visibility: hidden !important;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Header Container */
#header-container {
    position: sticky;
    top: 0;
    z-index: 40;
}

/* Header Styles */
.header {
    border-bottom: 1px solid #3a3a3a;
    background-color: rgba(36, 36, 36, 0.95);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    will-change: transform;
    transform: translateZ(0);
}

.header-content {
    padding: 1.5rem 0;
}

.header-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.header-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.header-brand svg,
.header-brand-icon {
    color: #67d9fc;
    width: 32px;
    height: 32px;
}

.header-brand img.header-brand-icon {
    height: 24px;
    width: auto;
}

.header-brand h1 {
    color: #67d9fc;
    font-size: 1.5rem;
    font-weight: 600;
}

/* Navigation */
.header-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s ease;
    white-space: nowrap;
}

.nav-link:hover {
    color: #67d9fc;
}

.nav-link.active {
    color: #67d9fc;
}

/* Header Right Section */
.header-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.header-info {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    color: #a0a0a0;
}

.header-info-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
}

.header-info-item svg {
    width: 18px;
    height: 18px;
}

/* Language Selector */
.language-selector {
    display: flex;
    gap: 0.5rem;
    padding-left: 1.5rem;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.lang-btn {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    padding: 0.25rem 0.5rem;
    transition: all 0.2s ease;
    text-transform: uppercase;
    border-radius: 0.25rem;
}

.lang-btn:hover {
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.05);
}

.lang-btn.active {
    color: #67d9fc;
    background: rgba(103, 217, 252, 0.1);
}

/* Main Section */
.main {
    padding: 3rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header-small {
    text-align: center;
}

.section-title {
    color: #e0e0e0;
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.section-subtitle {
    color: #a0a0a0;
    max-width: 52rem;
    margin: 0 auto;
}

/* Services Section */
#services {
    scroll-margin-top: 80px;
}

/* Service Cards Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    max-width: 80rem;
    margin: 0 auto;
    align-items: stretch;
}

.services-grid > .service-card-link {
    height: 100%;
    display: block;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 60rem;
    }
}

/* Service Card Styles */
.service-card {
    background-color: #2a2a2a;
    border: 1px solid #3a3a3a;
    border-radius: 0.5rem;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-4px);
    border-color: #67d9fc;
}

.service-card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-card-image img {
    transform: scale(1.1);
}

.service-card-link {
    display: block;
    color: inherit;
    text-decoration: none;
}
.service-card-link:hover .service-card {
    transform: translateY(-4px);
    transition: transform 0.3s ease;
}


.service-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, #242424 0%, transparent 50%);
}

.service-card-icon {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    color: #67d9fc;
    background-color: rgba(36, 36, 36, 0.9);
    padding: 0.5rem;
    border-radius: 0.25rem;
    display: none;
}

.service-card-icon svg {
    width: 32px;
    height: 32px;
}

.service-card-content {
    padding: 1rem;
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.service-card-title {
    align-self: center;
    text-align: center;
    color: #67d9fc;
    font-size: 1.125rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.service-card-description {
    align-self: center;
    text-align: center;
    color: #a0a0a0;
    font-size: 0.875rem;
}

/* Features Section */
.features-section {
    margin-top: 3rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 64rem;
    margin: 0 auto;
}

.feature-card {
    text-align: center;
    padding: 1.5rem;
    background-color: #2a2a2a;
    border-radius: 0.5rem;
    border: 1px solid #3a3a3a;
}

.feature-icon {
    color: #67d9fc;
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
}

.feature-icon svg {
    width: 40px;
    height: 40px;
}

.feature-title {
    color: #67d9fc;
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.feature-description {
    color: #a0a0a0;
    font-size: 0.875rem;
}

/* Footer */
.footer {
    border-top: 1px solid #3a3a3a;
    padding: 1.5rem 0;
    background-color: #1a1a1a;
    margin-top: auto;
}

.footer-content {
    color: #808080;
}

.footer-compact {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 2rem;
}

.footer-left {
    text-align: left;
}

.footer-center {
    text-align: center;
}

.footer-right {
    text-align: right;
}

.footer-contact-compact {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    font-size: 0.875rem;
}

.footer-contact-compact a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact-compact a:hover {
    color: #67d9fc;
}

.footer-center p {
    margin: 0 0 0.5rem 0;
    font-size: 0.875rem;
    color: #808080;
}

.footer-legal-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    font-size: 0.875rem;
}

.footer-legal-links a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal-links a:hover {
    color: #67d9fc;
}

.footer-cookie-settings-compact {
    background: transparent;
    border: 1px solid #67d9fc;
    color: #67d9fc;
    padding: 0.375rem 0.75rem;
    border-radius: 0.25rem;
    cursor: pointer;
    font-size: 0.8rem;
    transition: all 0.3s ease;
    margin-top: 0.25rem;
}

.footer-cookie-settings-compact:hover {
    background: #67d9fc;
    color: #242424;
}

@media (max-width: 768px) {
    .footer-compact {
        grid-template-columns: 1fr;
        gap: 1rem;
        text-align: center;
    }

    .footer-left,
    .footer-right {
        text-align: center;
    }

    .footer-contact-compact {
        align-items: center;
    }

    .footer-legal-links {
        flex-wrap: wrap;
        gap: 0.75rem;
    }
}

/* Form Styles */
.form-group {
    position: relative;
    width: 100%;
    box-sizing: border-box;
}

.form-label {
    display: block;
    color: #e0e0e0;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-input:not(.iti__input),
.form-select,
.form-textarea,
.form-group input:not(.iti__input),
.form-group select,
.form-group .date-input-wrapper input,
.date-passengers-row input,
.date-passengers-row select {
    width: 100%;
    padding: 10px 12px;
    background: rgba(255, 255, 255, 0.08);
    border: 1.5px solid rgba(255, 255, 255, 0.1);
    border-top-color: rgba(255, 255, 255, 0.15);
    border-bottom-color: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    border-radius: 0.25rem;
    font-size: 0.9rem;
    box-sizing: border-box;
    line-height: 1.4;
    min-height: 38px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color-scheme: dark;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.form-input:not(.iti__input):focus,
.form-select:focus,
.form-textarea:focus,
.form-group input:not(.iti__input):focus,
.form-group select:focus,
.form-group .date-input-wrapper input:focus,
.date-passengers-row input:focus,
.date-passengers-row select:focus {
    outline: none;
    border-color: #67d9fc;
    background: rgba(103, 217, 252, 0.1);
}

.form-textarea {
    resize: vertical;
    min-height: 100px;
}

/* Buttons */
.btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 0.25rem;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary {
    background-color: #67d9fc;
    color: #242424;
}

.btn-primary:hover:not(:disabled) {
    background-color: #4fc5e8;
    transform: translateY(-2px);
}

.btn-call {
    background-color: #67d9fc;
    color: #1a1a1a;
    border: 1px solid rgba(103, 217, 252, 0.3);
    box-shadow: 0 4px 15px rgba(103, 217, 252, 0.25);
    font-weight: 600;
}

.btn-call:hover:not(:disabled) {
    background-color: #4fc5e8;
    border-color: rgba(103, 217, 252, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(103, 217, 252, 0.35);
}

.btn-secondary {
    background-color: #3a3a3a;
    color: #e0e0e0;
}

.btn-secondary:hover:not(:disabled) {
    background-color: #424242;
}

.btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

button.open-transfer-btn,
.open-transfer-btn {
    text-decoration: none;
    border: none;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    margin: 0;
}

button.open-transfer-btn:focus,
.open-transfer-btn:focus {
    outline: 2px solid rgba(103, 217, 252, 0.5);
    outline-offset: 2px;
}

.btn-group {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

/* Confirmation Styles */
.confirmation-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.confirmation-icon svg {
    width: 64px;
    height: 64px;
    color: #10b981;
}

.confirmation-title {
    text-align: center;
    color: #e0e0e0;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.confirmation-details {
    background-color: #3a3a3a;
    padding: 1.5rem;
    border-radius: 0.5rem;
    margin-bottom: 1.5rem;
}

.confirmation-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.confirmation-item:last-child {
    border-bottom: none;
}

.confirmation-label {
    color: #a0a0a0;
}

.confirmation-value {
    color: #e0e0e0;
    font-weight: 500;
}

/* Hero Section */
.hero-section {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.hero-slide {
    position: relative;
    width: 100%;
    height: 400px;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 10;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.5px;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.1rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 1rem;
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.125rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    max-width: 800px;
    margin: 0 auto 2rem;
}

.hero-description p {
    margin-bottom: 1rem;
}

.hero-button {
    display: inline-block;
    padding: 0.875rem 2rem;
    background-color: #67d9fc;
    color: #242424;
    border-radius: 0.25rem;
    font-weight: 600;
    font-size: 1.125rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(103, 217, 252, 0.25);
}

.hero-button:hover {
    background-color: #4fc5e8;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(103, 217, 252, 0.35);
}

.hero-content[style*="text-align: left"] {
    left: 5%;
    transform: translateY(-50%);
}

.hero-content[style*="text-align: right"] {
    right: 5%;
    left: auto;
    transform: translateY(-50%);
}

/* Swiper Customization */
.swiper-button-next,
.swiper-button-prev {
    color: #67d9fc;
}

.swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.5);
}

.swiper-pagination-bullet-active {
    background: #67d9fc;
}

/* Booking Section */
.booking-section {
  position: relative;
  z-index: 20;
  margin-bottom: 3rem;
  scroll-margin-top: 100px;
}

.booking-card {
  background: rgba(36, 36, 36, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 2px solid rgba(103, 217, 252, 0.2);
  border-top-color: rgba(103, 217, 252, 0.3);
  position: relative;
  border-bottom-color: rgba(103, 217, 252, 0.1);
  border-radius: 0.5rem;
  padding: 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3),
              0 0 0 1px rgba(103, 217, 252, 0.1) inset;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'%3E%3Cdefs%3E%3Cpattern id='diagonals' patternUnits='userSpaceOnUse' width='80' height='80'%3E%3Cpath d='M0,0 L80,80 M0,80 L80,0' stroke='%23C0C0C0' stroke-width='0.3' opacity='0.08'/%3E%3C/pattern%3E%3C/defs%3E%3Crect width='100%25' height='100%25' fill='url(%23diagonals)'/%3E%3C/svg%3E");
  background-attachment: scroll;
  will-change: transform;
  transform: translateZ(0);
}

.booking-header {
    text-align: center;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #3a3a3a;
}

.booking-title {
    font-size: 1.8rem;
    margin-bottom: 8px;
    color: #ffffff;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.booking-subtitle {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
    font-style: italic;
    margin: 0;
}

.booking-form-wrapper {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 15px;
    margin-bottom: 15px;
    align-items: stretch;
}

/* Form content takes up left column with 2 rows */
.form-content {
    display: grid;
    grid-template-rows: auto auto;
    gap: 15px;
    grid-column: 1;
}

.toggle-row {
    grid-row: 1;
}

.fields-row {
    grid-row: 2;
}

.form-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-right {
    grid-column: 2;
    grid-row: 1 / -1;
    display: flex;
    align-items: stretch;
}

/* Toggle Container */
.toggle-container {
    display: flex;
    background: rgba(255, 255, 255, 0.08);
    border: 1.5px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.25rem;
    padding: 5px 8px;
    position: relative;
}

.toggle-btn {
    flex: 1;
    padding: 11px 20px;
    border: none;
    background: transparent;
    border-radius: 0.2rem;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    color: rgba(255, 255, 255, 0.6);
    position: relative;
    z-index: 1;
    letter-spacing: 0.3px;
}

.toggle-btn.active {
    background: #67d9fc;
    color: #242424;
    transform: scale(1.02);
}

.toggle-btn:hover:not(.active) {
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.05);
}

/* Form Elements */
.selector-row {
    display: grid;
    grid-template-columns: 1fr 1.5fr 1.5fr 1fr;
    gap: 12px;
    align-items: stretch;
}

.selector-row .form-group {
    display: block;
    margin-right: 0;
    width: auto;
}

.form-group label,
.date-passengers-row label {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.95rem;
    transition: all 0.3s ease;
    pointer-events: none;
    background: transparent;
    padding: 0 4px;
}

.form-group input:focus ~ label,
.form-group input.has-value ~ label,
.form-group select:focus ~ label,
.form-group select.has-value ~ label,
.date-passengers-row input:focus ~ label,
.date-passengers-row input.has-value ~ label,
.date-passengers-row select:focus ~ label,
.date-passengers-row select.has-value ~ label {
    top: 0;
    font-size: 0.75rem;
    color: #67d9fc;
    background: #242424;
}

.form-group .date-input-wrapper.has-value ~ label,
.date-passengers-row .date-input-wrapper.has-value ~ label {
    top: 0;
    font-size: 0.65rem;
    color: #67d9fc;
    background: #242424;
}

.date-input-wrapper {
    position: relative;
}

.date-input-wrapper input {
    padding-right: 40px;
}

.date-input-wrapper.has-value input {
    padding-right: 12px;
}

/* Flatpickr altInput styling - ensure alternate input is styled correctly */
.date-input-wrapper input.flatpickr-input {
    display: none; /* Hide the original input when altInput is enabled */
}

.date-input-wrapper input[type="text"].flatpickr-input {
    display: none; /* Hide the original input when altInput is enabled */
}

/* Style the alternate input created by flatpickr */
.date-input-wrapper input[type="text"]:not(.flatpickr-input) {
    padding-right: 40px;
}

.date-input-wrapper.has-value input[type="text"]:not(.flatpickr-input) {
    padding-right: 12px;
}

.date-input-wrapper.has-value .calendar-icon {
    opacity: 0;
}

.date-input-wrapper ~ label,
.date-input-wrapper.has-value ~ label,
.date-input-wrapper:focus-within ~ label {
    left: 12px;
}

.calendar-icon {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    transition: opacity 0.3s ease;
    color: rgba(255, 255, 255, 0.6);
}

.calendar-icon svg {
    width: 18px;
    height: 18px;
}

/* Reserve Button */
.reserve-btn {
    padding: 0;
    background: linear-gradient(135deg, #67d9fc 0%, #3fb8e0 100%);
    color: #242424;
    border: 1px solid rgba(103, 217, 252, 0.5);
    border-radius: 0.25rem;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 110px;
    min-height: 110px;
    max-height: 110px;
}

.reserve-btn-mobile {
    display: none;
}

.reserve-btn:hover:not(:disabled) {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(103, 217, 252, 0.4);
    background: linear-gradient(135deg, #8be2ff 0%, #4fc5e8 100%);
}

.reserve-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Flight Not Found Link */
.flight-not-found-link {
    position: absolute;
    bottom: 15px;
    right: 15px;
    text-align: right;
    color: #67d9fc;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s ease;
    cursor: pointer;
    z-index: 10;
}

.flight-not-found-link:hover {
    color: #4fc5e8;
    text-decoration: underline;
}

@media (max-width: 900px) {
    .flight-not-found-link {
        position: static;
        text-align: center;
        margin-top: 0.75rem;
        padding-top: 0.75rem;
        font-size: 0.8125rem;
        bottom: auto;
        right: auto;
    }
}

/* Flight Variants */
.flight-variants {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.4s ease, margin 0.4s ease;
    opacity: 0;
    margin-top: 0;
}

.flight-variants.show {
    max-height: none;
    opacity: 1;
    margin-top: 15px;
}

.variants-title {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #ffffff;
    font-weight: 600;
}

.variants-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
    margin-bottom: 15px;
    padding: 0 10px;
}

@media (max-width: 768px) {
    .variants-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .variants-grid {
        grid-template-columns: 1fr;
    }
}

.variant-card {
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.25rem;
    padding: 12px 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.03);
    display: block;
}

.variant-card:hover {
    border-color: #67d9fc;
    transform: translateX(5px);
    background: rgba(103, 217, 252, 0.05);
}

.variant-card.selected {
    border-color: #67d9fc;
    background: rgba(103, 217, 252, 0.15);
}

.variant-title {
    font-weight: 600;
    color: #ffffff;
    font-size: 0.95rem;
}

.variant-time {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    white-space: nowrap;
}

.variant-operated {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    font-style: italic;
}

.variant-aircraft {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    text-transform: capitalize;
}

.date-passengers-row {
    display: none;
}


.date-passengers-row > div {
    position: relative;
    margin-top: 6px;
}


/* Flatpickr Theming */
.flatpickr-calendar {
    background: #242424;
    border: 1.5px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.25rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.flatpickr-month {
    background: #2A2929;
    color: #ffffff;
}

.flatpickr-current-month {
    background: #2A2929;
    color: #ffffff;
}

.flatpickr-weekdays {
    background: transparent;
}

span.flatpickr-weekday {
    color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.05);
}

.flatpickr-day {
    color: rgba(255, 255, 255, 0.8);
    border: none;
}

.flatpickr-day:hover:not(.flatpickr-disabled):not(.selected) {
    background: rgba(103, 217, 252, 0.2);
    border-color: rgba(103, 217, 252, 0.5);
    color: #ffffff;
}

.flatpickr-day.today {
    border-color: #67d9fc;
    color: #67d9fc;
}

.flatpickr-day.selected {
    background: #67d9fc;
    border-color: #67d9fc;
    color: #242424;
}

.flatpickr-prev-month svg,
.flatpickr-next-month svg {
    fill: rgba(255, 255, 255, 0.6);
}

.flatpickr-prev-month:hover svg,
.flatpickr-next-month:hover svg {
    fill: #67d9fc;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.hidden {
    display: none;
}


.form-group select:disabled {
    background: rgba(255, 255, 255, 0.02);
    cursor: not-allowed;
    color: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.05);
}

/* Loading state for form groups */
.form-group.loading label {
    color: #67d9fc;
}

.form-group.loading label::after {
    content: '...';
    animation: loading-dots 1.5s steps(4, end) infinite;
}

@keyframes loading-dots {
    0%, 20% { content: '.'; }
    40% { content: '..'; }
    60%, 100% { content: '...'; }
}

.form-group.loading .custom-dropdown__text {
    color: rgba(255, 255, 255, 0.5);
}

/* Service Details Section */
.service-details-section {
    margin: 60px 0;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.service-detail-card {
      background: rgba(36, 36, 36, 0.98);
      border: 2px solid #3a3a3a;
      border-radius: 0.5rem;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
      display: flex;
      overflow: hidden;
      align-items: stretch;
}

.service-detail-card.reverse {
    flex-direction: row-reverse;
}

.service-detail-image {
    flex: 0 0 40%;
    position: relative;
    overflow: hidden;
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    display: block;
}

.service-detail-card:hover .service-detail-image img {
    transform: scale(1.05);
}

.service-detail-overlay {
    position: absolute;
    inset: 0;
}

.service-detail-info {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
}

.service-detail-info > *:last-child {
    margin-bottom: 0;
}

.service-detail-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(103, 217, 252, 0.3);
}

.service-detail-title {
    font-size: 1.8rem;
    color: #67d9fc;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.service-detail-subtitle {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
    margin: 0;
}

.service-detail-description {
    margin-bottom: 30px;
}

.service-detail-description p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
}

.service-process, .transfer-services {
    display: grid;
    gap: 25px;
    margin-bottom: 30px;
}

.process-item, .transfer-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.process-icon, .transfer-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: rgba(103, 217, 252, 0.1);
    border: 2px solid #67d9fc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #67d9fc;
}

.process-icon svg, .transfer-icon svg {
    width: 24px;
    height: 24px;
}

.plane-icon {
    width: 28px;
    height: 28px;
}

.plane-fill {
    fill: #67d9fc;
}

.process-content h4, .transfer-content h4 {
    font-size: 1.2rem;
    color: #67d9fc;
    margin-bottom: 8px;
    font-weight: 600;
}

.process-content p, .transfer-content p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
    margin: 0;
}

.service-promise {
    text-align: center;
    padding: 20px;
    background: rgba(103, 217, 252, 0.05);
    border-radius: 0.25rem;
    border: 1px solid rgba(103, 217, 252, 0.2);
}

.service-promise p {
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.05rem;
    line-height: 1.5;
}
.team-section {
    padding: 60px 0 40px 0;
    --card-padding: 18px;
    --card-border: 1px;
    --avatar-size: clamp(120px, 22vw, 200px);
    --card-min: calc(var(--avatar-size) + var(--card-padding) * 2 + var(--card-border) * 2);
    background-color: #242424;
    background-image: none;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  gap: 20px;
  max-width: 1340px;
  margin: 0 auto;
}

.teamSwiper .swiper-slide {
  width: auto;
  min-width: var(--card-min);
  max-width: 360px;
  display: flex;
  justify-content: center;
}

.team-card {
  box-sizing: border-box;
  background: #1f1f1f;
  border: var(--card-border) solid #2f2f2f;
  border-radius: 10px;
  padding: var(--card-padding);
  text-align: center;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  min-inline-size: var(--card-min);
}

.team-card:hover {
  transform: translateY(-3px);
  border-color: #3a3a3a;
  box-shadow: 0 8px 24px rgba(0,0,0,.35);
}

.team-card .avatar {
    width: var(--avatar-size);
    aspect-ratio: 1 / 1;
    margin: 0 auto 14px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #2f2f2f;
    background: #111;
    flex-shrink: 0;
}

.team-card .avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.member-name {
    color: #e5e7eb;
    font-size: 1.05rem;
    font-weight: 600;
    margin: 6px 0 2px;
}

.member-role {
    color: #a0a0a0;
    font-size: .9rem;
    margin: 0;
}

@media (max-width: 600px) {
    .team-card { padding: 16px; }
}

/* Pricing Card */
.pricing-card {
    display: none;
    background: linear-gradient(135deg, rgba(103, 217, 252, 0.1), rgba(36, 36, 36, 0.98));
    border: 2px solid rgba(103, 217, 252, 0.3);
    border-radius: 0.5rem;
    padding: 40px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.pricing-header {
    text-align: center;
    margin-bottom: 30px;
}

.pricing-title {
    font-size: 1.8rem;
    color: #67d9fc;
    font-weight: 700;
    margin-bottom: 8px;
}

.pricing-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
    margin: 0;
}

.pricing-base {
    text-align: center;
    margin-bottom: 30px;
}

.price-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 0.25rem;
    margin-bottom: 10px;
}

.price-item.main-price {
    justify-content: center;
    background: rgba(103, 217, 252, 0.1);
    border: 2px solid rgba(103, 217, 252, 0.3);
    padding: 25px;
    margin-bottom: 30px;
}

.price-value {
    font-size: 2rem;
    font-weight: 700;
    color: #67d9fc;
}

.main-price .price-value {
    font-size: 2.5rem;
}

.price-description {
    color: rgba(255, 255, 255, 0.9);
    text-align: left;
}

.main-price .price-description {
    text-align: center;
}

.price-description span {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.pricing-extras {
    display: grid;
    gap: 10px;
    margin-bottom: 30px;
}

.pricing-surcharges h4 {
    color: #67d9fc;
    margin-bottom: 15px;
    font-size: 1.1rem;
    text-align: center;
}

.surcharge-items {
    display: grid;
    gap: 10px;
}

.surcharge-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 0.25rem;
    border-left: 3px solid #67d9fc;
}

.surcharge-percent {
    font-weight: 600;
    color: #67d9fc;
    font-size: 1.1rem;
}

.surcharge-desc {
    color: rgba(255, 255, 255, 0.8);
    text-align: right;
}

/* Responsive Design */
@media (max-width: 900px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.125rem;
        margin-top: 0.75rem;
        margin-bottom: 1rem;
    }

    .hero-description {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .hero-button {
        font-size: 1rem;
        padding: 0.75rem 1.5rem;
    }

    .hero-section {
        height: 250px;
    }

    .hero-slide {
        height: 250px;
    }

    .hero-content[style*="text-align: left"],
    .hero-content[style*="text-align: right"] {
        left: 50%;
        right: auto;
        transform: translate(-50%, -50%);
        text-align: center !important;
        width: 90%;
    }

    .swiper-button-next,
    .swiper-button-prev {
        display: none;
    }

    .booking-card {
        padding: 20px;
    }

    .booking-title {
        font-size: 1.3rem;
        margin-bottom: 18px;
    }



    .calendar-icon {
        right: 14px;
    }

    .calendar-icon svg {
        width: 20px;
        height: 20px;
    }

    .date-input-wrapper input {
        padding-right: 44px;
        background: rgba(255, 255, 255, 0.08);
        border: 1.5px solid rgba(255, 255, 255, 0.1);
        border-top-color: rgba(255, 255, 255, 0.15);
        border-bottom-color: rgba(255, 255, 255, 0.05);
        color: #ffffff;
    }

    .toggle-btn {
        min-height: 44px;
        padding: 12px 20px;
    }

    .booking-form-wrapper {
        display: flex;
        flex-direction: column;
        margin-bottom: 0;
    }

    .form-content {
        display: flex;
        flex-direction: column;
        gap: 12px;
        margin-bottom: 15px;
    }

    .form-left {
        gap: 12px;
        margin-bottom: 15px;
    }

    .form-right {
        display: none;
    }

    .flight-variants.show {
        margin-bottom: 15px;
    }

    .reserve-btn {
        width: 100%;
        height: 90px;
        padding: 0;
    }

    .reserve-btn-mobile {
        display: block !important;
        margin-top: 15px;
    }

    .fields-row {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .selector-row {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .selector-row .form-group {
        width: 100%;
        margin: 0;
    }

    .variants-grid {
        grid-template-columns: 1fr;
    }

    .service-details-section {
        margin: 40px 0;
        gap: 30px;
    }

    .service-detail-card {
        flex-direction: column;
        min-height: auto;
    }

    .service-detail-card.reverse {
        flex-direction: column;
    }

    .service-detail-image {
        flex: 0 0 auto;
        height: 200px;
    }

    .service-detail-info {
        padding: 25px;
    }


    .pricing-card {
        padding: 25px;
    }

    .service-detail-title, .pricing-title {
        font-size: 1.5rem;
    }

    .process-item, .transfer-item {
        gap: 15px;
    }

    .process-icon, .transfer-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
    }

    .process-content h4, .transfer-content h4 {
        font-size: 1.1rem;
    }

    .process-content p, .transfer-content p {
        font-size: 0.95rem;
    }

    .pricing-extras {
        gap: 8px;
    }

    .price-item {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }

    .surcharge-item {
        flex-direction: column;
        gap: 5px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .header-wrapper {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }

    .header-nav {
        order: 2;
        flex-direction: row;
        gap: 1.5rem;
        width: 100%;
    }

    .header-right {
        order: 3;
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        width: 100%;
    }

    .header-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .language-selector {
        padding-left: 0;
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding-top: 1rem;
        width: 100%;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .modal-content {
        width: 95%;
    }

    .btn-group {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .service-detail-card, .pricing-card {
        padding: 20px;
    }

    .service-detail-title, .pricing-title {
        font-size: 1.3rem;
    }

    .service-detail-description p {
        font-size: 1rem;
    }

    .price-value {
        font-size: 1.5rem;
    }

    .main-price .price-value {
        font-size: 2rem;
    }
}
/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    position: relative;
    z-index: 50;
}

.hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background-color: #67d9fc;
    margin: 3px 0;
    transition: all 0.3s ease;
    transform-origin: center;
}

/* Mobile Navigation Overlay */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100dvh;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 98;
}

.mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Mobile Navigation Drawer */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 320px;
    height: 100dvh;
    background-color: #242424;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.3);
    transition: right 0.3s ease;
    z-index: 99;
    display: flex;
    flex-direction: column;
}

.mobile-nav.active {
    right: 0;
}

/* Mobile Nav Header */
.mobile-nav-header {
    padding: 1.5rem;
    border-bottom: 1px solid #3a3a3a;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-nav-logo {
    height: 20px;
    width: auto;
}

.mobile-nav-close {
    background: transparent;
    border: none;
    color: #e0e0e0;
    cursor: pointer;
    padding: 0.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease;
}

.mobile-nav-close svg {
    width: 24px;
    height: 24px;
}

.mobile-nav-close:hover {
    color: #67d9fc;
}

/* Mobile Nav Links */
.mobile-nav-links {
    flex: 1;
    padding: 2rem 0;
    display: flex;
    flex-direction: column;
}

.mobile-nav-link {
    display: block;
    padding: 1rem 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.2s ease;
    border-bottom: 1px solid transparent;
}

.mobile-nav-link:hover {
    color: #67d9fc;
    background-color: rgba(103, 217, 252, 0.1);
    padding-left: 2rem;
}

/* Mobile Nav Footer */
.mobile-nav-footer {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Mobile My Account Button */
.mobile-my-account-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: transparent;
    border: 1px solid rgba(103, 217, 252, 0.3);
    border-radius: 8px;
    color: #67d9fc;
    padding: 12px 16px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    cursor: pointer;
    width: 100%;
    box-sizing: border-box;
}

.mobile-my-account-btn:hover {
    background: rgba(103, 217, 252, 0.1);
    border-color: #67d9fc;
    color: #67d9fc;
    transform: translateY(-1px);
}

.mobile-my-account-btn svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    flex-shrink: 0;
}

.mobile-my-account-btn span {
    flex: 1;
    text-align: center;
}

.mobile-book-now-btn {
    width: 100%;
    background: linear-gradient(135deg, #67d9fc 0%, #5ac3e8 100%);
    color: #242424;
    border: none;
    padding: 14px 24px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 0;
}

.mobile-book-now-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(103, 217, 252, 0.3);
}

.mobile-nav-divider {
    height: 1px;
    background: #3a3a3a;
    margin: 1rem 0;
}

.mobile-nav-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #a0a0a0;
    font-size: 0.875rem;
    margin-bottom: 0;
}

.mobile-nav-info svg {
    width: 18px;
    height: 18px;
}

/* Mobile Language Selector */
.mobile-language-selector,
.mobile-nav-languages {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
}

.mobile-lang-btn {
    flex: 1;
    background: transparent;
    border: 1px solid #3a3a3a;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    padding: 0.5rem 1rem;
    transition: all 0.2s ease;
    text-transform: uppercase;
    border-radius: 0.25rem;
}

.mobile-lang-btn:hover {
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
}

.mobile-lang-btn.active {
    color: #242424;
    background: #67d9fc;
    border-color: #67d9fc;
}

/* Responsive Header Adjustments */
@media (max-width: 768px) {
    .header-nav,
    .header-info,
    .language-selector,
    .header-right {
        display: none !important;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .header-wrapper {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
    }

    .header-content {
        padding: 1rem 0;
    }

    .header-brand-icon {
        height: 20px !important;
    }
}

/* Tablet adjustments */
@media (min-width: 769px) and (max-width: 1024px) {
    .header-nav {
        gap: 1.5rem;
    }

    .nav-link {
        font-size: 0.875rem;
    }

    .header-info-item span {
        display: none;
    }

    .header-brand-icon {
        height: 20px;
    }
}

/* Animation for mobile menu */
@keyframes slideIn {
    from {
        transform: translateX(100%);
    }
    to {
        transform: translateX(0);
    }
}

/* Prevent body scroll when menu is open */
body.mobile-nav-open {
    overflow: hidden;
}

/* Accessibility improvements */
.mobile-menu-btn:focus,
.mobile-nav-close:focus,
.mobile-nav-link:focus,
.mobile-lang-btn:focus {
    outline: 2px solid #67d9fc;
    outline-offset: 2px;
}

/* Smooth transitions for all interactive elements */
.mobile-nav * {
    transition-property: color, background-color, border-color, transform, opacity;
    transition-duration: 0.2s;
    transition-timing-function: ease;
}

/* Transfer Contact Modal */
.transfer-contact-modal {
    max-width: 400px;
}

.transfer-contact-content {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.transfer-contact-content .social-media-row {
    margin-bottom: 0;
    padding-bottom: 20px;
}

.transfer-contact-content .contact-items {
    margin-bottom: 0;
}

/* Stats Counter Section */
.stats-section {
    position: relative;
    padding: 0;
    background: transparent;
    overflow: hidden;
}

.stats-overlay {
    display: none;
}

.stats-content {
    position: relative;
    z-index: 2;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 80px;
    max-width: 900px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.stat-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    margin-bottom: 0;
}

.stat-icon img {
    width: 50px;
    height: 50px;
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
}


.stat-item:hover .stat-icon img {
    filter: brightness(0) invert(1) sepia(1) saturate(3) hue-rotate(180deg);
    transform: scale(1.1);
}

.stat-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.stat-number {
    font-size: 48px;
    font-weight: 300;
    color: #ffffff;
    line-height: 1;
    letter-spacing: -1px;
}

.stat-label {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.stat-item.happy-clients {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.stat-item.happy-clients .stat-icon {
    width: 66px;
    height: 66px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    margin-bottom: 0;
}

.stat-item.happy-clients .stat-icon img {
    width: 58px;
    height: 58px;
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
}

.stat-item.happy-clients:hover .stat-icon img {
    filter: brightness(0) invert(1) sepia(1) saturate(3) hue-rotate(180deg);
    transform: scale(1.1);
}

.stat-item.happy-clients .stat-number {
    font-size: 48px;
    font-weight: 300;
    color: #ffffff;
    line-height: 1;
    letter-spacing: -1px;
}

.stat-item.happy-clients .stat-label {
    margin-top: 4px;
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.slot-machine {
    display: inline-flex;
    align-items: flex-end;
    gap: 0px;
    height: 1em;
    line-height: 1;
    font-size: inherit;
    font-weight: inherit;
    letter-spacing: -0.04em;
}

.slot-reel {
    position: relative;
    overflow: hidden;
    width: calc(1ch + 2px);
    height: 1em;
    border-radius: 4px;
}

.slot-strip {
    will-change: transform;
    transform: translateY(0);
}

.slot-digit {
    height: 1em;
    line-height: 1em;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    font-size: 1em;
    font-weight: 300;
    color: #ffffff;
    letter-spacing: inherit;
}

@media (max-width: 900px) {
    .stats-section {
        padding: 20px 0;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 50px;
        max-width: 400px;
    }

    .stat-number,
    .stat-item.happy-clients .stat-number {
        font-size: 36px;
    }

    .slot-machine {
        font-size: 36px;
    }

    .stat-icon,
    .stat-item.happy-clients .stat-icon {
        width: 80px;
        height: 80px;
    }

    .stat-icon img,
    .stat-item.happy-clients .stat-icon img {
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 480px) {
    .stats-section {
        padding: 10px 0;
    }

    .stats-grid {
        gap: 40px;
        max-width: 300px;
    }

    .stat-number,
    .stat-item.happy-clients .stat-number {
        font-size: 32px;
    }

    .slot-machine {
        font-size: 32px;
    }

    .stat-label,
    .stat-item.happy-clients .stat-label {
        font-size: 12px;
    }

    .stat-icon img,
    .stat-item.happy-clients .stat-icon img {
        width: 50px;
        height: 50px;
    }
}

/* Contacts Section */
.contacts-section {
    padding: 40px 0 80px 0;
    background-color: #242424;
    background-image:
        linear-gradient(rgba(103, 217, 252, 0.03), rgba(103, 217, 252, 0.03)),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'%3E%3Cdefs%3E%3Cpattern id='diagonals' patternUnits='userSpaceOnUse' width='80' height='80'%3E%3Cpath d='M0,0 L80,80 M0,80 L80,0' stroke='%23C0C0C0' stroke-width='0.3' opacity='0.08'/%3E%3C/pattern%3E%3C/defs%3E%3Crect width='100%25' height='100%25' fill='url(%23diagonals)'/%3E%3C/svg%3E");
    background-attachment: fixed;
    scroll-margin-top: 80px;
}

.contacts-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Map Container */
.map-container {
    position: relative;
    height: 500px;
    border-radius: 0.5rem;
    overflow: hidden;
    border: 2px solid rgba(103, 217, 252, 0.2);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.map-container iframe {
    filter: grayscale(80%) contrast(1.1) brightness(0.95);
    will-change: transform;
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(36, 36, 36, 0.3);
    pointer-events: none;
}

/* Contact Card */
.contact-card {
    background: rgba(36, 36, 36, 0.95);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: 2px solid rgba(103, 217, 252, 0.2);
    border-radius: 0.5rem;
    padding: 30px;
    height: 100%;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    will-change: transform;
    transform: translateZ(0);
}

/* Social Media Row */
.social-media-row {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(103, 217, 252, 0.3);
}

.social-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 12px;
}

.social-icon img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.social-icon:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Contact Items */
.contact-items {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 25px;
    flex: 1;
}

.contact-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 0.25rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(103, 217, 252, 0.05);
    border-color: rgba(103, 217, 252, 0.2);
    transform: translateX(5px);
}

.contact-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: rgba(103, 217, 252, 0.1);
    border: 2px solid #67d9fc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #67d9fc;
}

.contact-icon svg {
    width: 20px;
    height: 20px;
}

.contact-details h4 {
    font-size: 1rem;
    color: #67d9fc;
    margin-bottom: 4px;
    font-weight: 600;
}

.contact-details p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.4;
    margin: 0;
    font-size: 0.95rem;
}

.contact-details a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.2s ease;
    font-size: 0.95rem;
}

.contact-details a:hover {
    color: #67d9fc;
}

/* Contact Actions */
.contact-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    align-items: center;
    margin-top: auto;
    flex-wrap: wrap;
    width: 100%;
    box-sizing: border-box;
    max-width: 100%;
    overflow: hidden;
}

/* Call Now Button */
.contact-actions .btn.btn-call {
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 1.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 12px;
    flex: 1;
    min-width: 140px;
    max-width: calc(50% - 6px);
    transition: transform 0.2s ease;
    box-sizing: border-box;
}

.contact-actions .btn.btn-call:hover {
    transform: translateY(-2px);
}

.contact-actions .btn.btn-call svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* WhatsApp Button - Image only, no styling */
.contact-actions .whatsapp-button {
    height: 50px;
    display: block;
    flex: 1;
    min-width: 140px;
    max-width: calc(50% - 6px);
    text-decoration: none;
    transition: transform 0.2s ease;
    box-sizing: border-box;
    overflow: hidden;
}

.contact-actions .whatsapp-button:hover {
    transform: translateY(-2px);
}

.contact-actions .whatsapp-button img {
    height: 50px;
    width: auto;
    max-width: 100%;
    display: block;
    margin: 0 auto;
    object-fit: contain;
}

/* Responsive Design */
@media (max-width: 900px) {
    .contacts-section {
        padding: 60px 0;
    }

    .contacts-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .map-container {
        height: 300px;
    }

    .contact-card {
        padding: 30px;
    }

    .social-media-row {
        gap: 15px;
        margin-bottom: 20px;
        padding-bottom: 15px;
    }

    .social-icon {
        width: 42px;
        height: 42px;
    }

    .social-icon img {
        width: 42px;
        height: 42px;
    }

    .contact-items {
        gap: 20px;
        margin-bottom: 30px;
    }

    .contact-item {
        padding: 15px;
        gap: 15px;
    }

    .contact-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
    }

    .contact-icon svg {
        width: 20px;
        height: 20px;
    }

    .contact-details h4 {
        font-size: 1rem;
    }

    .contact-details p, .contact-details a {
        font-size: 0.95rem;
    }

    .contact-actions {
        flex-direction: row;
        gap: 12px;
        align-items: center;
        justify-content: center;
    }

    .contact-actions .btn.btn-call,
    .contact-actions .whatsapp-button {
        flex: 1;
        min-width: 140px;
        max-width: calc(50% - 6px);
        margin-left: 0;
        margin-right: 0;
    }

    .contact-actions .btn.btn-call {
        height: 50px;
    }

    .contact-actions .whatsapp-button {
        height: 50px;
        min-height: 50px;
    }

    .contact-actions .whatsapp-button img {
        height: 50px;
        width: auto;
        max-width: 100%;
    }
}

@media (max-width: 600px) {
    .contact-actions {
        flex-direction: column;
        gap: 12px;
        align-items: stretch;
        width: 100%;
        box-sizing: border-box;
        max-width: 100%;
    }

    .contact-actions .btn.btn-call,
    .contact-actions .whatsapp-button {
        width: 100%;
        max-width: 180px;
        margin-left: auto;
        margin-right: auto;
        box-sizing: border-box;
    }

    .contact-actions .btn.btn-call {
        height: 50px;
        flex: none;
    }

    .contact-actions .whatsapp-button {
        height: auto;
        min-height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: visible;
        padding: 0;
    }

    .contact-actions .whatsapp-button img {
        height: 50px;
        width: auto;
        max-width: 100%;
        display: block;
        flex-shrink: 0;
        object-fit: contain;
    }
}

@media (max-width: 480px) {
    .contact-card {
        padding: 20px;
    }

    .contact-item {
        padding: 12px;
    }
}

/* My Account Button in Header (icon only) */
.my-account-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: transparent;
    border: 1px solid rgba(103, 217, 252, 0.3);
    border-radius: 50%;
    color: #67d9fc;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-right: 12px;
    text-decoration: none;
    flex-shrink: 0;
}

.my-account-btn:hover {
    background: rgba(103, 217, 252, 0.1);
    border-color: #67d9fc;
    color: #67d9fc;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(103, 217, 252, 0.2);
}

.my-account-btn svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
}

/* Book Now Button in Header */
.book-now-btn {
    background: linear-gradient(135deg, #67d9fc 0%, #5ac3e8 100%);
    color: #242424;
    border: none;
    padding: 10px 24px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-left: 0;
    white-space: nowrap;
}

.book-now-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(103, 217, 252, 0.3);
}

.fade-in,
.fade-in-left,
.fade-in-right,
.fade-in-scale {
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in {
    transform: translateY(20px);
}

.fade-in-left {
    transform: translateX(-30px);
}

.fade-in-right {
    transform: translateX(30px);
}

.fade-in-scale {
    transform: scale(0.9);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-scale.visible {
    opacity: 1;
    transform: scale(1);
}


/* Floating Contact Button */
.floating-contact-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #67d9fc 0%, #5ac3e8 100%);
    color: #242424;
    border: none;
    padding: 15px 25px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(103, 217, 252, 0.3);
    transition: all 0.3s ease;
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 10px;
}

body:has(.mobile-nav.active) .floating-contact-btn,
.mobile-nav.active ~ .floating-contact-btn,
body.mobile-nav-open .floating-contact-btn,
body:has(.modal.active) .floating-contact-btn,
.modal.active ~ .floating-contact-btn {
    opacity: 0;
    pointer-events: none;
}

.floating-contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(103, 217, 252, 0.4);
}

.floating-contact-btn svg {
    width: 24px;
    height: 24px;
}


/* Responsive styles for Book Now and Contact buttons */
@media (max-width: 900px) {
    .my-account-btn {
        width: 30px;
        height: 30px;
        margin-right: 8px;
    }

    .my-account-btn svg {
        width: 14px;
        height: 14px;
    }

    .book-now-btn {
        display: none;
    }

    .floating-contact-btn {
        bottom: 80px;
        right: 15px;
        padding: 10px 16px;
        font-size: 0.85rem;
        z-index: 1001;
    }

    .floating-contact-btn svg {
        width: 18px;
        height: 18px;
    }

}

@media (max-width: 480px) {
    .floating-contact-btn span {
        display: none;
    }

    .floating-contact-btn {
        width: 52px;
        height: 52px;
        padding: 0;
        justify-content: center;
        border-radius: 50%;
        bottom: 90px;
        right: 15px;
    }

    .floating-contact-btn svg {
        width: 20px;
        height: 20px;
    }
}

/* Service Selection Modal */
.service-selection-modal {
    max-width: 800px;
}

.service-selection-modal .modal-header {
    position: relative;
    display: block;
    text-align: center;
    padding: 1.5rem 3rem;
}

.service-selection-modal .modal-title {
    font-size: 1.8rem;
    color: #67d9fc;
    font-weight: 700;
    text-align: center;
    margin-bottom: 10px;
}

.service-selection-modal .modal-close {
    position: absolute;
    right: 1.5rem;
    top: 1.5rem;
}

.service-selection-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 20px;
}

.service-selection-card {
    background: rgba(36, 36, 36, 0.98);
    border: 2px solid rgba(103, 217, 252, 0.2);
    border-radius: 0.5rem;
    padding: 30px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-selection-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(103, 217, 252, 0) 0%, rgba(103, 217, 252, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-selection-card:hover {
    transform: translateY(-5px);
    border-color: #67d9fc;
    box-shadow: 0 10px 30px rgba(103, 217, 252, 0.3);
}

.service-selection-card:hover::before {
    opacity: 1;
}

.service-selection-image {
    width: 200px;
    height: 140px;
    margin: 0 auto 20px;
    position: relative;
    overflow: hidden;
    border-radius: 0.5rem;
    border: 2px solid rgba(103, 217, 252, 0.2);
}

.service-selection-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-selection-card:hover .service-selection-image img {
    transform: scale(1.1);
}

.service-selection-card:hover .service-selection-image {
    border-color: #67d9fc;
}

.service-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(36,36,36,0.4) 100%);
    pointer-events: none;
}

.service-selection-title {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #67d9fc;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.service-selection-description {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    line-height: 1.4;
    position: relative;
    z-index: 1;
}

.service-selection-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: relative;
    z-index: 1;
}

.service-selection-features.desktop-layout {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.service-selection-features span {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.desktop-layout {
    display: block;
}

.mobile-service-content {
    display: none;
}

@media (max-width: 768px) {
    .desktop-layout {
        display: none !important;
    }

    .mobile-service-content {
        display: flex !important;
    }
}

.service-selection-footer {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.service-selection-availability {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: #a0a0a0;
    font-weight: 600;
    font-size: 0.95rem;
}

.service-selection-availability svg {
    width: 18px;
    height: 18px;
    stroke: #a0a0a0;
}

@media (max-width: 768px) {
    .service-selection-modal {
        max-width: 95vw;
        margin: 10px;
    }

    .service-selection-modal .modal-title {
        font-size: 1.4rem;
        margin-bottom: 5px;
    }

    .service-selection-modal .modal-header {
        padding: 1rem 2rem;
    }

    .service-selection-modal .modal-body {
        padding: 1rem;
    }

    .service-selection-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-top: 10px;
    }

    .service-selection-card {
        padding: 20px;
        display: flex;
        flex-direction: column;
    }

    .service-selection-title {
        font-size: 1.2rem;
        margin-bottom: 8px;
        text-align: center;
        order: 1;
    }

    .service-selection-description {
        font-size: 0.9rem;
        margin-bottom: 15px;
        line-height: 1.4;
        text-align: center;
        order: 2;
    }

    .mobile-service-content {
        display: flex;
        align-items: center;
        gap: 15px;
        order: 3;
    }

    .service-selection-image {
        width: 100px;
        height: 70px;
        margin: 0;
        flex-shrink: 0;
    }

    .service-selection-features {
        flex: 1;
        gap: 6px;
        text-align: left;
    }

    .service-selection-features span {
        font-size: 0.85rem;
    }

    .service-selection-footer {
        margin-top: 20px;
        padding-top: 15px;
    }

    .service-selection-availability {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .service-selection-modal .modal-title {
        font-size: 1.2rem;
    }

    .service-selection-modal .modal-header {
        padding: 0.75rem 1.5rem;
    }

    .service-selection-card {
        padding: 15px;
    }

    .service-selection-image {
        width: 120px;
        height: 85px;
        margin: 0 auto 10px;
    }

    .service-selection-title {
        font-size: 1.1rem;
    }

    .service-selection-description {
        font-size: 0.85rem;
    }

    .service-selection-features span {
        font-size: 0.8rem;
    }
}

.footer-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

.footer-menu li {
    display: inline;
}

.footer-menu a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-menu a:hover {
    color: #67d9fc;
}
