:root {
    /* Color Palette - Premium & Medical */
    --primary: #113f67;
    /* Deep Medical Blue */
    --primary-light: #226597;
    /* Soft Blue */
    --gold: #d4af37;
    /* Premium Gold */
    --gold-light: #f3e5ab;
    /* Soft Gold */
    --gold-hover: #b5952f;
    --dark: #0a192f;
    /* Very Dark Space Blue */
    --dark-glass: rgba(10, 25, 47, 0.85);
    --light: #f8f9fa;
    --white: #ffffff;
    --white-glass: rgba(255, 255, 255, 0.9);
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-700: #374151;
    --gray-800: #1f2937;

    /* Typography */
    --font-sans: 'Outfit', sans-serif;
    --font-serif: 'Playfair Display', serif;
    --font-heading: 'Cinzel', serif;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.25, 1, 0.5, 1);

    /* Box Shadows */
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-glass: 0 8px 32px 0 rgba(31, 38, 135, 0.07);
    --shadow-gold: 0 10px 25px -5px rgba(212, 175, 55, 0.4);
}

/* ================== GLOBAL & RESETS ================== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

body {
    font-family: var(--font-sans);
    color: var(--gray-800);
    line-height: 1.7;
    background-color: var(--light);
    overflow-x: hidden;
    letter-spacing: 0.015em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-serif);
    color: var(--primary);
    line-height: 1.25;
    margin-bottom: 0.5em;
    font-weight: 700;
}

body.no-scroll {
    overflow: hidden;
}

ul {
    list-style: none;
}

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

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

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* UTILITY CLASSES */
.font-serif {
    font-family: var(--font-serif) !important;
}

.font-heading {
    font-family: var(--font-heading) !important;
}

.text-gold {
    color: var(--gold);
}

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

.text-gray-400 {
    color: #9ca3af;
}

.text-gray-500 {
    color: #4b5563;
    /* Improved contrast for light backgrounds */
}

.text-light-gray {
    color: rgba(255, 255, 255, 0.75);
    /* Reliable light gray for dark backgrounds */
}

.text-gray-700 {
    color: var(--gray-700);
}

.text-xs {
    font-size: 0.75rem;
}

.text-sm {
    font-size: 0.875rem;
}

.text-2xl {
    font-size: 1.5rem;
}

.text-3xl {
    font-size: 1.875rem;
}

.text-4xl {
    font-size: 2.25rem;
}

.text-icon-lg {
    font-size: 3.5rem;
}

.text-title-lg {
    font-size: 2.5rem;
}

.tracking-widest {
    letter-spacing: 0.1em;
}

.uppercase {
    text-transform: uppercase;
}

.block {
    display: block;
}

.flex {
    display: flex;
}

.flex-wrap {
    flex-wrap: wrap;
}

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

.justify-between {
    justify-content: space-between;
}

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

.mt-4 {
    margin-top: 1rem;
}

.mt-6 {
    margin-top: 1.5rem;
}

.mt-8 {
    margin-top: 2rem;
}

.mt-10 {
    margin-top: 2.5rem;
}

.mt-12 {
    margin-top: 3rem;
}

.mb-1 {
    margin-bottom: 0.25rem;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mb-6 {
    margin-bottom: 1.5rem;
}

.mb-8 {
    margin-bottom: 2rem;
}

.ml-1 {
    margin-left: 0.25rem;
}

.ml-2 {
    margin-left: 0.5rem;
}

.ml-3 {
    margin-left: 0.75rem;
}

.mr-2 {
    margin-right: 0.5rem;
}

.mx-1 {
    margin-left: 0.25rem;
    margin-right: 0.25rem;
}

.mx-2 {
    margin-left: 0.5rem;
    margin-right: 0.5rem;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.py-6 {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

.opacity-50 {
    opacity: 0.5;
    transition: opacity .3s;
}

.opacity-80 {
    opacity: 0.8;
    transition: opacity .3s;
}

.opacity-90 {
    opacity: 0.9;
}

.hover\:opacity-100:hover {
    opacity: 1;
}

.hover-gold:hover {
    color: var(--gold);
}

.transition {
    transition: var(--transition-normal);
}

.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

.overflow-hidden {
    overflow: hidden;
}

.max-w-700 {
    max-width: 700px;
}

.z-10 {
    z-index: 10;
}

.border-t {
    border-top-width: 1px;
    border-style: solid;
}

.border-gray-800 {
    border-color: rgba(255, 255, 255, 0.1);
}

/* GRID LAYOUTS */
.grid-cols-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.grid-cols-1-2 {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: center;
}

.grid-cols-contact {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: center;
}

.grid-cols-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.grid-footer {
    display: grid;
    grid-template-columns: 2fr 1.2fr 1.2fr 1.5fr;
    gap: 3rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--primary);
    line-height: 1.2;
}

.text-gradient {
    background: linear-gradient(135deg, var(--gold) 0%, #fff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-padding {
    padding: 7rem 0;
}

.section-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.badge-light {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.section-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

/* Base Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
    gap: 10px;
    z-index: 1;
}

.btn-whatsapp-rounded {
    background: #25d366;
    color: var(--white);
    border: none;
}

.btn-whatsapp-rounded:hover {
    background: #128c7e;
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
}

.floating-whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    background: #25d366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: var(--transition-normal);
    animation: pulse-whatsapp 2s infinite;
}

.floating-whatsapp-btn:hover {
    transform: scale(1.1) rotate(15deg);
    background: #128c7e;
    color: var(--white);
}

@keyframes pulse-whatsapp {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

.btn-xl {
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
}

.btn-block {
    width: 100%;
}

.btn-gold {
    background: var(--gold);
    color: var(--dark);
    box-shadow: var(--shadow-gold);
}

.btn-gold::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transform: skewX(-20deg);
    transition: 0.5s ease;
    z-index: -1;
}

.btn-gold:hover {
    background: var(--gold-hover);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px -5px rgba(212, 175, 55, 0.5);
    color: var(--white);
}

.btn-gold:hover::before {
    left: 150%;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    border: 1px solid var(--primary);
}

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

.btn-outline-glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
}

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

/* ================== LOADER ================== */
/* ================== PREMIUM LOADER ================== */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, var(--primary) 0%, var(--dark) 100%);
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 1.2s cubic-bezier(1, 0, 0, 1), opacity 0.8s ease;
    overflow: hidden;
}

.loader.loaded {
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
}

.loader-bg-decor {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
    animation: drift 20s infinite alternate linear;
}

@keyframes drift {
    from {
        transform: scale(1) rotate(0deg);
    }

    to {
        transform: scale(1.2) rotate(5deg);
    }
}

.loader-content {
    position: relative;
    z-index: 10;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.loader-logo-wrapper {
    position: relative;
    margin-bottom: 3rem;
    animation: loader-reveal 1.5s cubic-bezier(0.2, 0, 0.2, 1) forwards;
}

.loader-logo-premium {
    max-width: 450px;
    height: auto;
    filter: drop-shadow(0 0 30px rgba(212, 175, 55, 0.2));
    animation: breathe 4s ease-in-out infinite;
}

.loader-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: skewX(-25deg);
    animation: shine-sweep 3s infinite;
}

.loader-progress-wrap {
    width: 300px;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.loader-progress-bar {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: var(--gold);
    box-shadow: 0 0 15px var(--gold);
    animation: load-fill 2.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes loader-reveal {
    0% {
        opacity: 0;
        transform: scale(0.8) translateY(20px);
        filter: blur(10px);
    }

    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
        filter: blur(0);
    }
}

@keyframes breathe {

    0%,
    100% {
        transform: scale(1);
        filter: drop-shadow(0 0 30px rgba(212, 175, 55, 0.2));
    }

    50% {
        transform: scale(1.05);
        filter: drop-shadow(0 0 50px rgba(212, 175, 55, 0.4));
    }
}

@keyframes shine-sweep {
    0% {
        left: -150%;
    }

    100% {
        left: 250%;
    }
}

@keyframes load-fill {
    0% {
        width: 0%;
    }

    100% {
        width: 100%;
    }
}

@keyframes heartBeat {

    0%,
    100% {
        transform: scale(1);
        filter: drop-shadow(0 0 5px var(--gold));
    }

    50% {
        transform: scale(1.1);
        filter: drop-shadow(0 0 15px var(--gold));
    }
}

/* ================== PREMIUM HEADER ================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: transform var(--transition-normal);
}

.header.hide {
    transform: translateY(-100%);
}

.top-bar {
    background: rgba(10, 25, 47, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    height: 40px;
    display: flex;
    align-items: center;
    color: var(--gray-400);
    font-size: 0.8rem;
    transition: var(--transition-normal);
}

.header.scrolled .top-bar {
    height: 0;
    opacity: 0;
    overflow: hidden;
    padding: 0;
    border: none;
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

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

.top-link {
    display: flex;
    align-items: center;
    gap: 5px;
}

.top-link i {
    color: var(--gold);
}

.top-link:hover {
    color: var(--white);
}

.divider {
    color: rgba(255, 255, 255, 0.2);
}

.social-icons {
    display: flex;
    gap: 12px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    padding-right: 15px;
}

.social-icons a {
    color: var(--gray-400);
}

.social-icons a:hover {
    color: var(--gold);
    transform: translateY(-2px);
}

.language-selector {
    cursor: pointer;
    display: flex;
    align-items: center;
    color: var(--white);
    font-weight: 500;
}

.language-selector i.fa-globe {
    color: var(--gold);
    margin-right: 5px;
}

.navbar {
    background: transparent;
    transition: var(--transition-normal);
    padding: 1.5rem 0;
}

.header.scrolled .navbar {
    background: var(--white-glass);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 1rem 0;
    box-shadow: var(--shadow-sm);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.brand-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    border: 1px solid rgba(212, 175, 55, 0.4);
    transition: var(--transition-normal);
}

.header.scrolled .brand-icon {
    background: rgba(17, 63, 103, 0.05);
}

.brand-text {
    display: flex;
    flex-direction: column;
    color: var(--white);
    transition: var(--transition-normal);
    justify-content: center;
}

.header.scrolled .brand-text {
    color: var(--primary);
}

.brand-text .font-serif {
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 1;
}

.brand-text .subtitle {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--gold);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.nav-links .nav-item {
    font-weight: 500;
    font-size: 0.88rem;
    color: var(--white);
    position: relative;
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    transition: var(--transition-fast);
}

.nav-links .nav-item i:not(.fa-chevron-down) {
    color: var(--gold);
    transition: var(--transition-fast);
    opacity: 0.8;
}

.nav-links .nav-item:hover i:not(.fa-chevron-down) {
    opacity: 1;
    transform: scale(1.1);
}

.header.scrolled .nav-links .nav-item {
    color: var(--dark);
}

.nav-links .nav-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: var(--transition-normal);
}

.nav-links .nav-item:hover::after,
.nav-links .nav-item.active::after {
    width: 100%;
}

.header.scrolled .nav-links .nav-item:hover,
.header.scrolled .nav-links .nav-item.active {
    color: var(--primary);
}

/* Dropdown Menu */
.has-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: var(--white);
    box-shadow: var(--shadow-lg);
    border-radius: 12px;
    padding: 1rem;
    min-width: 250px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 12px;
    height: 12px;
    background: var(--white);
    border-left: 1px solid rgba(0, 0, 0, 0.05);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(10px);
}

.dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 15px;
    color: var(--gray-700);
    border-radius: 8px;
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.dropdown-menu a:hover {
    background: rgba(17, 63, 103, 0.05);
    color: var(--primary);
    transform: translateX(5px);
}

.dropdown-menu a i {
    color: var(--gold);
    font-size: 1.1rem;
    width: 25px;
    text-align: center;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.btn-header {
    padding: 0.7rem 1.8rem;
    font-size: 0.9rem;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    cursor: pointer;
    z-index: 1001;
}

.mobile-toggle span {
    width: 100%;
    height: 2px;
    background: var(--white);
    transition: var(--transition-normal);
    border-radius: 2px;
}

.header.scrolled .mobile-toggle span {
    background: var(--dark);
}

.mobile-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
    background: var(--dark);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
    background: var(--dark);
}

/* ================== HERO SECTION WITH VIDEO ================== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-bg .hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -1;
    object-fit: cover;
    opacity: 0.6;
}

.hero-premium-font {
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    font-size: clamp(3.5rem, 6vw, 5.5rem);
    line-height: 1.1;
    letter-spacing: 0px;
}

.bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(10, 25, 47, 0.9), rgba(17, 63, 103, 0.6));
    z-index: 1;
}

.glass-orbs {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
    pointer-events: none;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.5;
    animation: drift 20s infinite alternate ease-in-out;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: rgba(212, 175, 55, 0.2);
    top: -100px;
    left: -100px;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: rgba(17, 63, 103, 0.3);
    bottom: -150px;
    right: -100px;
    animation-duration: 25s;
}

.orb-3 {
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

@keyframes drift {
    100% {
        transform: translate(50px, 50px);
    }
}

.hero-container {
    position: relative;
    z-index: 2;
    color: var(--white);
    padding-top: 130px;
}

.badge-premium {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.5);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    letter-spacing: 1px;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.badge-premium i {
    color: var(--gold);
}

.hero-title {
    font-size: 5.5rem;
    line-height: 1.1;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin: 0 auto 3rem;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.icon-btn i {
    margin-left: 10px;
    transition: transform 0.3s;
}

.icon-btn:hover i.icon-anim {
    transform: translateX(5px) scale(1.1);
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
}

.hero-features span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
}

.hero-features i {
    color: var(--gold);
}

.mouse-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.5rem;
    color: var(--white);
    opacity: 0.7;
    z-index: 10;
}

.bounce {
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0) translateX(-50%);
    }

    40% {
        transform: translateY(-15px) translateX(-50%);
    }

    60% {
        transform: translateY(-7px) translateX(-50%);
    }
}

/* ================== EXCELLENCE STATS ================== */
.excellence-stats {
    position: relative;
    margin-top: -60px;
    z-index: 10;
}

.stats-glass-panel {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 20px;
    box-shadow: var(--shadow-glass);
    padding: 3rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.stat-icon-wrapper {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(17, 63, 103, 0.1), rgba(17, 63, 103, 0.05));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
    box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.8);
    flex-shrink: 0;
}

.stat-content h3 {
    font-size: 2.5rem;
    color: var(--dark);
    line-height: 1;
    display: inline-block;
}

.stat-content .symbol {
    font-size: 1.5rem;
    color: var(--gold);
    font-weight: 600;
    margin-left: 2px;
}

.stat-content p {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gray-500);
    font-weight: 500;
    margin-top: 5px;
}

/* ================== PREMIUM ABOUT SECTION ================== */
.premium-about {
    background: url('https://www.transparenttextures.com/patterns/clean-gray-paper.png') var(--white);
}

.about-visuals {
    position: relative;
}

.img-wrapper {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-lg);
}

.main-img {
    height: 550px;
}

.main-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay-grad {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(10, 25, 47, 0.6), transparent 100%);
}

.sub-img {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 300px;
    height: 350px;
    border: 10px solid var(--white);
    border-radius: 20px;
}

.sub-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.floating-badge {
    position: absolute;
    top: 40px;
    left: -40px;
    background: var(--white);
    padding: 15px;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    animation: floatingCustom 3s ease-in-out infinite;
}

@keyframes floatingCustom {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

.badge-inner {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(212, 175, 55, 0.1);
    padding: 15px 20px;
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.badge-inner i {
    font-size: 2.5rem;
    color: var(--gold);
}

.badge-inner strong {
    display: block;
    color: var(--dark);
    font-size: 1.1rem;
    line-height: 1.2;
}

.badge-inner span {
    font-size: 0.8rem;
    color: var(--gray-500);
}

.lead-text {
    font-size: 1.25rem;
    color: var(--dark);
    font-weight: 500;
    margin-bottom: 1rem;
}

.sub-text {
    color: var(--gray-500);
    line-height: 1.8;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.feature-item .f-icon {
    width: 50px;
    height: 50px;
    background: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.2rem;
    flex-shrink: 0;
    transition: var(--transition-normal);
}

.feature-item:hover .f-icon {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 10px 20px rgba(17, 63, 103, 0.3);
}

.feature-item h4 {
    font-family: var(--font-sans);
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--dark);
}

.feature-item p {
    color: var(--gray-500);
    font-size: 0.95rem;
}

/* ================== TREATMENTS (SERVICES) ================== */
.treatments-section {
    background: var(--light);
}

.treatment-card {
    background: var(--white);
    border-radius: 20px;
    padding: 3rem 2rem;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-slow);
    border: 1px solid rgba(0, 0, 0, 0.03);
    z-index: 1;
}

.card-glass-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary), var(--dark));
    opacity: 0;
    transition: var(--transition-normal);
    z-index: -1;
}

.treatment-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.treatment-card:hover .card-glass-bg {
    opacity: 1;
}

.treatment-card .t-icon {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
    transition: var(--transition-normal);
}

.treatment-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    transition: var(--transition-normal);
}

.treatment-card p {
    color: var(--gray-500);
    margin-bottom: 2rem;
    transition: var(--transition-normal);
}

.card-actions {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.t-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    transition: var(--transition-normal);
}

.t-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: #25d366;
    color: var(--white) !important;
    border-radius: 50%;
    font-size: 1rem;
    transition: var(--transition-normal);
}

.t-whatsapp:hover {
    transform: scale(1.1) rotate(15deg);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
}

.treatment-card:hover .t-icon,
.treatment-card:hover h3,
.treatment-card:hover p,
.treatment-card:hover .t-link {
    color: var(--white);
}

.treatment-card:hover .t-link:hover {
    color: var(--gold);
}

.treatment-card:hover p {
    color: rgba(255, 255, 255, 0.8);
}

.treatment-card:hover .t-link i:first-of-type {
    transform: translateX(3px);
}

.highlight-card {
    border: 2px solid var(--gold);
}

.highlight-card::before {
    content: 'VIP PROGRAM';
    position: absolute;
    top: 20px;
    right: -30px;
    background: var(--gold);
    color: var(--dark);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 5px 30px;
    transform: rotate(45deg);
    letter-spacing: 1px;
}

/* ================== EXCELLENCE PILLARS ================== */
.excellence-section {
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 4rem;
}

.pillar-card {
    background: var(--light);
    border-radius: 24px;
    padding: 3.5rem 2.5rem;
    position: relative;
    transition: var(--transition-slow);
    border: 1px solid rgba(0, 0, 0, 0.03);
    overflow: hidden;
    z-index: 1;
}

.pillar-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    opacity: 0;
    transition: var(--transition-normal);
    z-index: -1;
}

.pillar-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-lg);
}

.pillar-card:hover::before {
    opacity: 1;
}

.pillar-icon {
    font-size: 3.5rem;
    color: var(--gold);
    margin-bottom: 2rem;
    transition: var(--transition-normal);
}

.pillar-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
    transition: var(--transition-normal);
}

.pillar-list {
    list-style: none;
    padding: 0;
}

.pillar-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    color: var(--gray-500);
    transition: var(--transition-normal);
    line-height: 1.4;
}

.pillar-list li i {
    color: var(--gold);
    font-size: 0.9rem;
    margin-top: 4px;
}

.pillar-card:hover h3,
.pillar-card:hover .pillar-list li {
    color: var(--white);
}

.pillar-card:hover .pillar-icon {
    color: var(--white);
    transform: scale(1.1);
}

.pillar-card:hover .pillar-list li i {
    color: var(--gold-light);
}

@media (max-width: 992px) {
    .pillars-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }
}


/* ================== TOURISM IN CYPRUS ================== */
.tourism-section {
    position: relative;
    padding: 8rem 0;
}

.tourism-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1549140608-f9b84a9ffc12?q=80&w=2670&auto=format&fit=crop') center/cover fixed;
}

.tourism-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 25, 47, 0.85);
}

.glass-neo-dark {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 30px;
    padding: 4rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.pr-lg {
    padding-right: 3rem;
}

.tourism-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.t-mini-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: var(--transition-normal);
}

.t-mini-card:hover {
    background: rgba(212, 175, 55, 0.2);
    border-color: rgba(212, 175, 55, 0.5);
    transform: translateY(-3px);
}

.t-mini-card i {
    font-size: 1.8rem;
    color: var(--gold);
}

.t-mini-card span {
    color: var(--white);
    font-weight: 500;
    font-size: 0.95rem;
    line-height: 1.4;
}

.tourism-images {
    position: relative;
    height: 500px;
}

.t-img-1 {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 80%;
    height: 80%;
    object-fit: cover;
    border-radius: 20px;
    border: 5px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow-lg);
}

.t-img-2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 60%;
    height: 60%;
    object-fit: cover;
    border-radius: 20px;
    border: 5px solid var(--white);
    box-shadow: var(--shadow-lg);
    z-index: 2;
}

.float-anim-1 {
    animation: floatingCustom 4s ease-in-out infinite alternate;
}

.play-vid-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    transition: .3s;
}

.pulse-btn::before,
.pulse-btn::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--gold);
    border-radius: 50%;
    z-index: -1;
    animation: ripple 2s infinite;
}

.pulse-btn::after {
    animation-delay: 1s;
}

@keyframes ripple {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

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

/* ================== TESTIMONIALS ================== */
.swiper-nav-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.swiper-btn-prev,
.swiper-btn-next {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    cursor: pointer;
    background: transparent;
    transition: 0.3s;
    font-size: 1.2rem;
}

.swiper-btn-prev:hover,
.swiper-btn-next:hover {
    background: var(--gold);
    color: var(--white);
    border-color: var(--gold);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.testimonial-slider-wrapper {
    min-width: 0;
    overflow: hidden;
}

.testi-card {
    background: var(--white);
    border-radius: 20px;
    padding: 3rem;
    position: relative;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-400);
}

.quote-mark {
    position: absolute;
    right: 2rem;
    top: 2rem;
    font-size: 4rem;
    color: rgba(212, 175, 55, 0.1);
    line-height: 1;
}

.rating {
    color: var(--gold);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.testi-text {
    font-size: 1.4rem;
    color: var(--dark);
    line-height: 1.6;
    margin-bottom: 2rem;
    font-style: italic;
}

.testi-user {
    display: flex;
    align-items: center;
    gap: 15px;
}

.avatar {
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-sans);
    font-weight: 600;
    letter-spacing: 1px;
}

.user-info h4 {
    font-size: 1rem;
    font-family: var(--font-sans);
    margin-bottom: 0;
    color: var(--dark);
}

.user-info span {
    font-size: 0.85rem;
    color: var(--gray-500);
}

/* ================== CONTACT & UI/UX FORM ================== */
.contact-ultra-section {
    background: var(--dark);
    padding: 8rem 0;
}

.bg-abstract-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 15% 50%, rgba(212, 175, 55, 0.08), transparent 25%), radial-gradient(circle at 85% 30%, rgba(17, 63, 103, 0.4), transparent 30%);
    z-index: 0;
}

.method-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    transition: var(--transition-normal);
}

.method-card .icon {
    width: 50px;
    height: 50px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.2rem;
}

.method-card .text {
    display: flex;
    flex-direction: column;
}

.method-card .text span {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.method-card .text strong {
    font-size: 1.2rem;
    color: var(--white);
    font-family: var(--font-serif);
}

.hover-lift:hover {
    transform: translateX(10px);
    background: rgba(212, 175, 55, 0.1);
    border-color: rgba(212, 175, 55, 0.3);
}

/* The Glass Form */
.glass-morphism {
    background: rgba(255, 255, 255, 0.98);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    border: 4px solid rgba(255, 255, 255, 1);
}

.glass-morphism h3 {
    font-size: 2.2rem;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.input-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.input-float {
    position: relative;
    background: var(--light);
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    transition: .3s;
}

.input-float:hover {
    border-color: rgba(0, 0, 0, 0.15);
}

.input-float input,
.input-float select,
.input-float textarea {
    width: 100%;
    background: transparent;
    border: none;
    padding: 26px 20px 10px 45px;
    font-family: var(--font-sans);
    font-size: 1rem;
    color: var(--dark);
    outline: none;
    z-index: 10;
    position: relative;
}

.input-float select {
    appearance: none;
    padding-top: 20px;
    padding-bottom: 16px;
    cursor: pointer;
}

.input-float label {
    position: absolute;
    top: 18px;
    left: 45px;
    font-size: 0.95rem;
    color: var(--gray-500);
    transition: var(--transition-fast);
    pointer-events: none;
    z-index: 11;
}

.input-float .req {
    color: #ef4444;
}

.input-float .input-icon {
    position: absolute;
    top: 18px;
    left: 15px;
    color: var(--primary-light);
    font-size: 1.1rem;
    z-index: 11;
    transition: .3s;
}

.input-border {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition-normal);
    border-radius: 0 0 8px 8px;
}

/* Focus / Filled State */
.input-float input:focus~label,
.input-float input:not(:placeholder-shown)~label,
.input-float select:focus~label,
.input-float select:valid~label,
.input-float textarea:focus~label,
.input-float textarea:not(:placeholder-shown)~label {
    top: 6px;
    font-size: 0.75rem;
    color: var(--primary);
    font-weight: 600;
}

.input-float input:focus~.input-border,
.input-float select:focus~.input-border,
.input-float textarea:focus~.input-border {
    width: 100%;
}

.input-float input:focus~.input-icon,
.input-float select:focus~.input-icon,
.input-float textarea:focus~.input-icon {
    color: var(--primary);
}

.textarea-float textarea {
    resize: none;
    height: 120px;
}

.custom-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 0.95rem;
    color: var(--gray-500);
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.custom-checkbox input {
    display: none;
}

.checkmark {
    width: 22px;
    height: 22px;
    border: 2px solid var(--gray-400);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
    flex-shrink: 0;
    margin-top: 2px;
}

.custom-checkbox input:checked~.checkmark {
    background: var(--primary);
    border-color: var(--primary);
}

.custom-checkbox input:checked~.checkmark::after {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--white);
    font-size: 0.75rem;
}

.custom-checkbox a {
    color: var(--primary);
    text-decoration: underline;
    font-weight: 500;
}

/* ================== MEGA FOOTER ================== */
.footer-ultra {
    background: var(--dark);
    color: rgba(255, 255, 255, 0.7);
    position: relative;
    overflow: hidden;
}

.footer-bg-glow {
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.footer-top {
    position: relative;
    transform: translateY(-50%);
    z-index: 10;
}

.newsletter-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(17, 63, 103, 0.9);
    padding: 3rem 4rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow-lg);
}

.nl-form .input-wrapper {
    display: flex;
    background: var(--white);
    padding: 6px;
    border-radius: 50px;
    width: 450px;
    align-items: center;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
}

.nl-form .input-wrapper i {
    color: var(--gray-400);
    padding-left: 20px;
    font-size: 1.1rem;
}

.nl-form input {
    flex: 1;
    border: none;
    padding: 12px 15px;
    outline: none;
    font-size: 1rem;
    background: transparent;
    color: var(--dark);
    font-family: var(--font-sans);
}

.nl-form button {
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 1rem;
}

.footer-main {
    padding-top: 0;
    padding-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.footer-logo {
    display: inline-flex;
}

.social-mega {
    display: flex;
    gap: 15px;
}

.social-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition-normal);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1.1rem;
}

.social-btn:hover {
    transform: translateY(-5px);
}

.social-btn.facebook:hover {
    background: #1877f2;
    border-color: #1877f2;
}

.social-btn.instagram:hover {
    background: #e4405f;
    border-color: #e4405f;
}

.social-btn.youtube:hover {
    background: #ff0000;
    border-color: #ff0000;
}

.social-btn.whatsapp:hover {
    background: #25d366;
    border-color: #25d366;
}

.footer-heading {
    color: var(--white);
    font-family: var(--font-serif);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 40%;
    height: 2px;
    background: var(--gold);
}

.footer-ul li {
    margin-bottom: 1rem;
}

.footer-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.6);
    transition: 0.3s;
}

.footer-link i {
    font-size: 0.7rem;
    color: var(--gold);
}

.footer-link:hover {
    color: var(--white);
    transform: translateX(8px);
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.footer-contact-item i {
    color: var(--gold);
    font-size: 1.2rem;
    margin-top: 3px;
}

.footer-link-inline {
    color: var(--gray-500);
    transition: 0.3s;
}

.footer-link-inline:hover {
    color: var(--white);
}

/* ================== MEDIA QUERIES ================== */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 4.5rem;
    }

    .grid-footer {
        gap: 2rem;
    }
}

@media (max-width: 1200px) {
    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: var(--dark);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 5rem 2rem;
        transition: transform 0.6s cubic-bezier(0.85, 0, 0.15, 1);
        transform: translateY(-100%);
        z-index: 1000;
        visibility: hidden;
    }

    .nav-links.active {
        transform: translateY(0);
        visibility: visible;
    }

    .nav-links .nav-item {
        color: var(--white) !important;
        font-size: 1.8rem;
        margin-bottom: 2rem;
        width: 100%;
        text-align: center;
        justify-content: center;
        padding: 0;
        border: none;
        opacity: 0;
        transform: translateY(20px);
        transition: 0.4s ease;
    }

    .nav-links.active .nav-item {
        opacity: 1;
        transform: translateY(0);
    }

    /* Staggered entry for menu items */
    .nav-links.active .nav-item:nth-child(1) {
        transition-delay: 0.3s;
    }

    .nav-links.active .nav-item:nth-child(2) {
        transition-delay: 0.4s;
    }

    .nav-links.active .nav-item:nth-child(3) {
        transition-delay: 0.5s;
    }

    .nav-links.active .nav-item:nth-child(4) {
        transition-delay: 0.6s;
    }

    .nav-links.active .nav-item:nth-child(5) {
        transition-delay: 0.7s;
    }

    .nav-links.active .nav-item:nth-child(6) {
        transition-delay: 0.8s;
    }

    .nav-links .nav-item i {
        display: none;
        /* Hide icons in full screen mobile to keep it elegant */
    }

    .dropdown-menu {
        position: static;
        background: transparent;
        box-shadow: none;
        border: none;
        padding: 1rem 0;
        width: 100%;
        text-align: center;
        display: none;
    }

    .dropdown-menu a {
        color: rgba(255, 255, 255, 0.7) !important;
        font-size: 1.1rem;
        justify-content: center;
    }

    .mobile-toggle {
        display: flex;
    }

    .top-bar,
    .hidden-mobile {
        display: none !important;
    }

    .stats-glass-panel {
        grid-template-columns: repeat(2, 1fr);
        padding: 2rem;
    }

    .floating-badge {
        left: 10px;
        top: 10px;
        transform: scale(0.9);
    }

    .sub-img {
        width: 220px;
        height: 260px;
        right: 0;
        bottom: -20px;
    }

    .main-img {
        height: 400px;
    }

    .grid-cols-2,
    .grid-cols-1-2,
    .grid-cols-3,
    .grid-cols-contact {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .section-padding {
        padding: 4rem 1rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .hero-premium-font {
        font-size: 2.8rem;
    }

    .stats-glass-panel {
        grid-template-columns: 1fr;
    }

    .grid-cols-3 {
        grid-template-columns: repeat(2, 1fr);
    }

    .pr-lg {
        padding-right: 0;
    }

    .newsletter-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
        padding: 2.5rem 2rem;
    }

    .grid-footer {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem 2rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 3.5rem;
    }

    .hero-features {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .hero-actions {
        flex-direction: column;
    }

    .stats-glass-panel {
        grid-template-columns: 1fr;
    }

    .grid-cols-3 {
        grid-template-columns: 1fr;
    }

    .input-grid {
        grid-template-columns: 1fr;
    }

    .t-img-1,
    .t-img-2 {
        position: static;
        width: 100%;
        height: auto;
        margin-bottom: 1rem;
        display: block;
    }

    .tourism-images {
        height: auto;
    }

    .grid-footer {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .nl-form .input-wrapper {
        width: 100%;
        flex-direction: column;
        border-radius: 12px;
        padding: 0;
        background: transparent;
        box-shadow: none;
        gap: 10px;
    }

    .nl-form .input-wrapper i {
        display: none;
    }

    .nl-form input {
        width: 100%;
        border-radius: 50px;
        background: var(--white);
        text-align: center;
    }

    .nl-form button {
        width: 100%;
    }

    .glass-morphism {
        padding: 2rem 1.5rem;
    }
}

/* Direct Patient Priority Box */
.direct-contact-box {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 20px;
    padding: 3rem 2rem;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3), inset 0 0 20px rgba(255, 255, 255, 0.02);
}

.direct-contact-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 50%);
    z-index: 0;
    pointer-events: none;
    animation: slowSpin 20s linear infinite;
}

@keyframes slowSpin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.direct-contact-content {
    position: relative;
    z-index: 1;
}

.d-contact-btn {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
    padding: 1.2rem 1.5rem;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin-bottom: 1rem;
    position: relative;
    overflow: hidden;
}

.d-contact-btn.whatsapp-btn {
    border-color: rgba(37, 211, 102, 0.4);
    background: rgba(37, 211, 102, 0.05);
}

.d-contact-btn.whatsapp-btn:hover {
    background: rgba(37, 211, 102, 0.15);
    border-color: rgba(37, 211, 102, 0.8);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.2);
}

.d-contact-btn.phone-btn:hover {
    background: rgba(212, 175, 55, 0.15);
    border-color: var(--gold);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.2);
}

.d-contact-btn.email-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.1);
}

.d-contact-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-right: 1.2rem;
    transition: all 0.3s ease;
}

.whatsapp-btn .d-contact-icon {
    color: #25d366;
    background: rgba(37, 211, 102, 0.1);
}

.phone-btn .d-contact-icon {
    color: var(--gold);
    background: rgba(212, 175, 55, 0.1);
}

.email-btn .d-contact-icon {
    color: var(--white);
}

.d-contact-btn:hover .d-contact-icon {
    transform: scale(1.1) rotate(5deg);
}

.d-contact-texts {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.d-contact-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 2px;
}

.d-contact-sub {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: lowercase;
}

.whatsapp-btn .d-contact-sub {
    text-transform: none;
}

.d-contact-arrow {
    margin-left: auto;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    color: var(--gold);
}

.whatsapp-btn .d-contact-arrow {
    color: #25d366;
}

.email-btn .d-contact-arrow {
    color: var(--white);
}

.d-contact-btn:hover .d-contact-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* ================== SPECIAL PATIENT GROUPS ================== */
.special-groups-section {
    background: var(--light);
}

.groups-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 4rem;
}

.group-card {
    background: var(--white);
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    transition: var(--transition-normal);
    border: 1px solid rgba(0, 0, 0, 0.03);
    box-shadow: var(--shadow-sm);
}

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

.group-icon {
    width: 80px;
    height: 80px;
    background: rgba(17, 63, 103, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: var(--primary);
    font-size: 2rem;
    transition: var(--transition-normal);
}

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

.group-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.group-card p {
    font-size: 0.95rem;
    color: var(--gray-500);
}

@media (max-width: 992px) {
    .groups-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .groups-grid {
        grid-template-columns: 1fr;
    }
}