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

:root {
    --primary-color: #61C7CA;
    --secondary-color: #026899;
    --bg-light: #F8FAFB;
    --bg-white: #FFFFFF;
    --text-dark: #1A1A1A;
    --text-gray: #4A5568;
    --text-light: #718096;
    --border-color: #E2E8F0;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--bg-white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-dark);
    margin-bottom: 16px;
}

h2 {
    font-size: clamp(32px, 4vw, 42px);
}

h3 {
    font-size: clamp(22px, 2.5vw, 28px);
}

p {
    margin-bottom: 16px;
    color: var(--text-gray);
}

/* ============================================
   HEADER
   ============================================ */
#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.04);
    border-bottom: 1px solid rgba(97, 199, 202, 0.1);
    animation: slideDown 0.6s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.header-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    width: 0;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    transition: width 0.1s ease;
    z-index: 1001;
    box-shadow: 0 0 10px rgba(97, 199, 202, 0.5);
}

#header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
    padding: 4px 0;
    border-bottom: 1px solid rgba(97, 199, 202, 0.15);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
    gap: 32px;
    transition: padding 0.4s ease;
}

#header.scrolled .header-content {
    padding: 14px 0;
}

.logo {
    position: relative;
    display: flex;
    align-items: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.logo:hover {
    transform: translateY(-2px);
}

.logo::before {
    content: '';
    position: absolute;
    inset: -10px;
    background: radial-gradient(circle at center, rgba(97, 199, 202, 0.12), transparent 70%);
    border-radius: 12px;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.logo:hover::before {
    opacity: 1;
}

.logo::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.logo:hover::after {
    opacity: 1;
}

.logo img {
    height: 55px;
    width: auto;
    display: block;
    object-fit: contain;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.05));
}

#header.scrolled .logo img {
    height: 48px;
}

.nav-menu {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-menu ul {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 40px;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 15px;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 8px 0;
    letter-spacing: 0.3px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-50%);
    box-shadow: 0 0 8px rgba(97, 199, 202, 0.5);
}

.nav-link:hover,
.nav-link.active {
    color: var(--secondary-color);
    transform: translateY(-2px);
}

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

/* Dropdown Menu Styles */
.nav-item-dropdown {
    position: relative;
    display: flex;
    align-items: center;
}

.nav-item-dropdown .nav-link {
    padding: 8px 0;
}

.dropdown-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    margin-left: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    transition: var(--transition);
}

.dropdown-toggle:hover {
    color: var(--secondary-color);
}

.dropdown-toggle svg {
    transition: transform 0.3s ease;
}

.nav-item-dropdown.active .dropdown-toggle svg {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    padding: 12px 0;
    min-width: 300px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    margin-top: 16px;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.nav-item-dropdown:hover .dropdown-menu,
.nav-item-dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu li {
    position: relative;
    width: 100%;
}

.dropdown-menu > li > a {
    display: block;
    padding: 13px 24px;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 14.5px;
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
    white-space: nowrap;
}

.dropdown-menu > li > a:hover {
    background: linear-gradient(90deg, var(--bg-light) 0%, transparent 100%);
    color: var(--secondary-color);
    border-left-color: var(--primary-color);
}

/* Separator for dropdown items on desktop */
@media (min-width: 769px) {
    .dropdown-menu > li:nth-child(2) {
        margin-bottom: 8px;
        padding-bottom: 8px;
        border-bottom: 1px solid #E5E7EB;
    }
}

/* Submenu Styles */
.dropdown-submenu {
    position: relative;
}

.dropdown-submenu > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-right: 40px !important;
    width: 100%;
}

.submenu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-gray);
    transition: var(--transition);
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}

.submenu-toggle svg {
    transition: transform 0.3s ease;
}

.dropdown-submenu:hover .submenu-toggle {
    color: var(--secondary-color);
}

.submenu {
    position: absolute;
    left: 100%;
    top: 0;
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    padding: 8px 0;
    min-width: 260px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-left: 8px;
    max-height: 450px;
    overflow-y: auto;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.dropdown-submenu:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.submenu li {
    width: 100%;
}

.submenu li a {
    display: block;
    padding: 11px 20px;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 13.5px;
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
    white-space: nowrap;
}

.submenu li a:hover {
    background: linear-gradient(90deg, var(--bg-light) 0%, transparent 100%);
    color: var(--secondary-color);
    border-left-color: var(--primary-color);
    padding-left: 23px;
}

/* Custom Scrollbar for Submenu */
.submenu::-webkit-scrollbar {
    width: 6px;
}

.submenu::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.submenu::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
}

.submenu::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}

.btn-primary {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #024d78 100%);
    color: var(--bg-white);
    padding: 13px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: none;
    box-shadow: 0 4px 15px rgba(2, 104, 153, 0.2);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, #51b8bb 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(2, 104, 153, 0.35);
    color: var(--bg-white);
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-primary:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(2, 104, 153, 0.3);
    color: var(--bg-white);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: linear-gradient(135deg, rgba(97, 199, 202, 0.1), rgba(2, 104, 153, 0.1));
    border: none;
    cursor: pointer;
    padding: 10px;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.menu-toggle:hover {
    background: linear-gradient(135deg, rgba(97, 199, 202, 0.15), rgba(2, 104, 153, 0.15));
    transform: scale(1.05);
}

.menu-toggle:active {
    transform: scale(0.95);
}

.menu-toggle span {
    display: block;
    width: 26px;
    height: 3px;
    background: var(--secondary-color);
    border-radius: 3px;
    transition: var(--transition);
}

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

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #61C7CA 0%, #E8F7F8 50%, #FFFFFF 100%);
    z-index: -1;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(97, 199, 202, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-background::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -15%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(2, 104, 153, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

/* Hero con imagen de fondo */
.hero-with-image {
    background: transparent;
}

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

.hero-image-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 80px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.5) 0%,
        rgba(0, 0, 0, 0.4) 50%,
        rgba(0, 0, 0, 0.3) 100%
    );
    z-index: -1;
}

.hero-with-image .hero-title,
.hero-with-image .hero-subtitle,
.hero-with-image .hero-badge span,
.hero-with-image .feature-badge span {
    color: #FFFFFF;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.hero-with-image .hero-title .highlight {
    color: #7FDBDA;
    text-shadow: 0 2px 12px rgba(127, 219, 218, 0.5);
}

.hero-with-image .hero-badge {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.hero-with-image .hero-badge svg {
    color: #7FDBDA;
}

.hero-with-image .feature-badge {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.hero-with-image .feature-badge svg {
    color: #7FDBDA;
}

.hero-with-image .btn-cta-primary {
    background: linear-gradient(135deg, #61C7CA 0%, #026899 100%);
    box-shadow: 0 8px 24px rgba(2, 104, 153, 0.4);
}

.hero-with-image .btn-cta-secondary {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.4);
    color: #FFFFFF;
}

.hero-with-image .btn-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.6);
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.03;
    background-image: radial-gradient(circle, var(--secondary-color) 1px, transparent 1px);
    background-size: 30px 30px;
    z-index: 0;
}

.hero-content {
    position: relative;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 24px;
    animation: fadeInUp 1s ease-out;
    z-index: 1;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(97, 199, 202, 0.15);
    border-radius: 50px;
    margin-bottom: 28px;
    font-size: 14px;
    font-weight: 500;
    color: var(--secondary-color);
    animation: fadeIn 1s ease-out 0.3s backwards;
}

.hero-badge svg {
    color: var(--primary-color);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.hero-title {
    font-size: clamp(42px, 6vw, 72px);
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 24px;
    letter-spacing: -1px;
    line-height: 1.15;
}

.hero-title .highlight {
    color: var(--primary-color);
    position: relative;
    display: inline-block;
}

.hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 0;
    width: 100%;
    height: 12px;
    background: rgba(97, 199, 202, 0.3);
    z-index: -1;
    border-radius: 4px;
}

.hero-subtitle {
    font-size: clamp(17px, 2vw, 20px);
    color: var(--text-gray);
    margin-bottom: 40px;
    line-height: 1.7;
    font-weight: 400;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta-group {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.btn-cta-primary,
.btn-cta {
    background: var(--secondary-color);
    color: var(--bg-white);
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 24px rgba(2, 104, 153, 0.25);
}

.btn-cta-primary:hover,
.btn-cta:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(97, 199, 202, 0.35);
}

.btn-cta-primary svg {
    width: 20px;
    height: 20px;
}

.btn-cta-secondary {
    background: transparent;
    color: var(--secondary-color);
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 2px solid var(--secondary-color);
}

.btn-cta-secondary:hover {
    background: var(--secondary-color);
    color: var(--bg-white);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(2, 104, 153, 0.25);
}

.btn-cta-secondary svg {
    width: 18px;
    height: 18px;
    transition: var(--transition);
}

.btn-cta-secondary:hover svg {
    transform: translateX(4px);
}

.hero-features {
    display: flex;
    gap: 32px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 50px;
    opacity: 0.9;
}

.feature-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: var(--text-gray);
    font-weight: 500;
}

.feature-badge svg {
    width: 24px;
    height: 24px;
    color: var(--primary-color);
    flex-shrink: 0;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-indicator span {
    display: block;
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, var(--secondary-color));
    border-radius: 10px;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section {
    padding: 100px 0;
    background: var(--bg-white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.about-image {
    position: relative;
}

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

.image-frame::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 120px;
    height: 120px;
    background: var(--primary-color);
    opacity: 0.15;
    border-radius: 20px;
    z-index: -1;
}

.image-placeholder {
    width: 100%;
    aspect-ratio: 4/5;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-title {
    font-size: clamp(32px, 4vw, 42px);
    color: var(--secondary-color);
    margin-bottom: 16px;
    line-height: 1.3;
}

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

.title-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    margin-bottom: 32px;
    border-radius: 2px;
}

.title-divider.center {
    margin-left: auto;
    margin-right: auto;
}

.title-divider.white {
    background: linear-gradient(to right, var(--bg-white), rgba(255, 255, 255, 0.7));
}

.about-description {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 24px;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 40px;
}

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

.feature-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: rgba(97, 199, 202, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-item h3 {
    font-size: 19px;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 4px;
}

.feature-item p {
    font-size: 15px;
    color: var(--text-light);
    margin: 0;
}

/* ============================================
   ABOUT SECTION NEW - WITH CAROUSEL
   ============================================ */
.about-section-new {
    padding: 100px 0;
    background: linear-gradient(135deg, #F8FAFB 0%, #FFFFFF 100%);
    position: relative;
    overflow: hidden;
}

.about-section-new::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(97, 199, 202, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.about-content-new {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: stretch;
    margin-top: 60px;
}

/* Carousel Wrapper */
.about-carousel-wrapper {
    position: relative;
}

.about-carousel {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    background: var(--bg-white);
}

.about-carousel-track-container {
    overflow: hidden;
    position: relative;
    aspect-ratio: 4/5;
}

.about-carousel-track {
    position: relative;
    width: 100%;
    height: 100%;
}

.about-carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.about-carousel-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.about-slide-content {
    position: relative;
    width: 100%;
    height: 100%;
}

.about-slide-image {
    width: 100%;
    height: 100%;
    position: relative;
}

.about-slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-slide-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(2, 104, 153, 0.95), transparent);
    padding: 32px 24px 24px;
    display: flex;
    align-items: flex-end;
}

.about-slide-label {
    font-size: 22px;
    font-weight: 600;
    color: white;
    font-family: 'Playfair Display', serif;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* Carousel Buttons */
.about-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.about-carousel-btn:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.about-carousel-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.about-carousel-btn svg {
    color: var(--secondary-color);
}

.about-carousel-prev {
    left: 20px;
}

.about-carousel-next {
    right: 20px;
}

/* Carousel Indicators */
.about-carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 24px;
}

.about-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #D1D5DB;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.about-indicator.active {
    background: var(--primary-color);
    transform: scale(1.2);
    border-color: var(--secondary-color);
}

.about-indicator:hover:not(.active) {
    background: #9CA3AF;
    transform: scale(1.1);
}

/* About Text Content */
.about-text-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 24px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.about-stat-item {
    text-align: center;
    padding: 12px;
}

.about-stat-number {
    font-size: clamp(32px, 4vw, 42px);
    font-weight: 700;
    color: var(--secondary-color);
    font-family: 'Playfair Display', serif;
    margin-bottom: 8px;
    line-height: 1;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-stat-label {
    font-size: 14px;
    color: var(--text-gray);
    font-weight: 500;
    line-height: 1.4;
}

.about-content-title {
    font-size: clamp(24px, 3vw, 30px);
    color: var(--secondary-color);
    margin-bottom: 12px;
    line-height: 1.3;
    font-family: 'Playfair Display', serif;
}

.about-description {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-gray);
    margin-bottom: 0;
}

.about-description strong {
    color: var(--secondary-color);
    font-weight: 600;
}

/* About Values */
.about-values {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 8px;
}

.about-value-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 18px;
    background: rgba(97, 199, 202, 0.05);
    border-radius: 16px;
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
}

.about-value-item:hover {
    background: rgba(97, 199, 202, 0.1);
    transform: translateX(8px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.about-value-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.about-value-icon svg {
    width: 32px;
    height: 32px;
}

.about-value-content h4 {
    font-size: 17px;
    color: var(--secondary-color);
    margin-bottom: 6px;
    font-weight: 600;
}

.about-value-content p {
    font-size: 14px;
    color: var(--text-gray);
    margin: 0;
    line-height: 1.5;
}

/* About CTA */
.about-cta {
    display: flex;
    gap: 12px;
    margin-top: 8px;
    flex-wrap: wrap;
}

.btn-about-primary,
.btn-about-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 26px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid;
    cursor: pointer;
}

.btn-about-primary {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    color: white;
    border-color: transparent;
    box-shadow: 0 4px 16px rgba(2, 104, 153, 0.3);
}

.btn-about-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(2, 104, 153, 0.4);
}

.btn-about-secondary {
    background: transparent;
    color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.btn-about-secondary:hover {
    background: var(--secondary-color);
    color: white;
    transform: translateY(-2px);
}

/* ============================================
   FACILITIES SECTION
   ============================================ */
.facilities-section {
    padding: 100px 0;
    background: var(--bg-white);
}

.video-container {
    max-width: 900px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.video-container video {
    width: 100%;
    height: auto;
    display: block;
    background: #000;
}

/* ============================================
   FACILITIES SECTION NEW
   ============================================ */
.facilities-section-new {
    padding: 100px 0;
    background: var(--bg-white);
}

.facilities-content {
    margin-top: 60px;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

/* Video Wrapper */
.facilities-video-wrapper {
    width: 100%;
}

.video-container-new {
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    position: relative;
}

.video-container-new video {
    width: 100%;
    height: auto;
    display: block;
    background: #000;
}

.video-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.video-container-new:hover .video-overlay {
    opacity: 0.9;
}

/* Facilities Features Grid */
.facilities-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.facilities-feature-card {
    background: white;
    padding: 32px 24px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.facilities-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-color);
}

.feature-card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, rgba(97, 199, 202, 0.1) 0%, rgba(2, 104, 153, 0.1) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.facilities-feature-card:hover .feature-card-icon {
    background: linear-gradient(135deg, rgba(97, 199, 202, 0.2) 0%, rgba(2, 104, 153, 0.2) 100%);
    transform: scale(1.1);
}

.facilities-feature-card h3 {
    font-size: 18px;
    color: var(--secondary-color);
    margin-bottom: 12px;
    font-weight: 600;
}

.facilities-feature-card p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

/* ============================================
   TREATMENTS SECTION
   ============================================ */
.treatments-section {
    padding: 100px 0;
    background: var(--bg-light);
}

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

.section-subtitle {
    font-size: 18px;
    color: var(--text-gray);
    margin: 0;
}

.treatments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.treatment-card {
    background: var(--bg-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

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

.card-image {
    position: relative;
    height: 240px;
    overflow: hidden;
    background: var(--bg-light);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(2, 104, 153, 0.05) 100%);
    opacity: 0;
    transition: var(--transition);
}

.treatment-card:hover .image-overlay {
    opacity: 1;
}

.card-content {
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.card-title {
    font-size: 22px;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 12px;
}

.card-description {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-gray);
    margin-bottom: 24px;
    flex: 1;
}

.btn-secondary {
    background: transparent;
    color: var(--secondary-color);
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    border: 2px solid var(--secondary-color);
    transition: var(--transition);
    display: inline-block;
    text-align: center;
    align-self: flex-start;
}

.btn-secondary:hover {
    background: var(--secondary-color);
    color: var(--bg-white);
    transform: translateX(4px);
}

/* ========================================
   New Treatments Section Styles
======================================== */

.section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 30px;
    margin-bottom: 16px;
    box-shadow: 0 4px 15px rgba(97, 199, 202, 0.3);
}

.treatments-grid-new {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 28px;
    margin-top: 48px;
}

.treatment-card-new {
    position: relative;
    background: var(--bg-white);
    border-radius: 20px;
    padding: 40px 32px 32px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(97, 199, 202, 0.1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.treatment-card-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.treatment-card-new:hover::before {
    transform: scaleX(1);
}

.treatment-card-new:hover {
    transform: translateY(-12px);
    box-shadow: 0 12px 40px rgba(97, 199, 202, 0.2);
    border-color: var(--primary-color);
}

.card-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 6px 16px;
    background: var(--primary-color);
    color: white;
    font-size: 12px;
    font-weight: 600;
    border-radius: 20px;
    z-index: 2;
    box-shadow: 0 2px 10px rgba(97, 199, 202, 0.3);
}

.card-badge.highlight {
    background: linear-gradient(135deg, var(--secondary-color), #014f73);
}

/* Treatment Cards with Images */
.treatment-card-with-image {
    padding-top: 0;
    overflow: hidden;
}

.card-image-wrapper {
    position: relative;
    width: calc(100% + 64px);
    margin: 0 -32px 24px -32px;
    height: 200px;
    overflow: hidden;
}

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

.treatment-card-with-image:hover .card-image-wrapper img {
    transform: scale(1.08);
}

.card-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(to top, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    pointer-events: none;
}

.treatment-card-with-image .card-badge {
    top: 16px;
    z-index: 3;
}

.card-icon-wrapper {
    margin-bottom: 24px;
    display: flex;
    justify-content: center;
}

.card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(97, 199, 202, 0.1), rgba(2, 104, 153, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    transition: all 0.4s ease;
    position: relative;
}

.card-icon::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.treatment-card-new:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
    color: white;
}

.treatment-card-new:hover .card-icon::before {
    opacity: 1;
}

.card-icon svg {
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.card-title-new {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
    text-align: center;
    transition: color 0.3s ease;
}

.treatment-card-new:hover .card-title-new {
    color: var(--secondary-color);
}

.card-description-new {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-gray);
    text-align: center;
    margin-bottom: 20px;
    flex: 1;
}

.card-features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.card-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-primary);
    font-weight: 500;
    padding: 8px 12px;
    background: rgba(97, 199, 202, 0.05);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.card-features li:hover {
    background: rgba(97, 199, 202, 0.1);
    transform: translateX(4px);
}

.card-features svg {
    flex-shrink: 0;
}

.btn-treatment {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(97, 199, 202, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-treatment::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn-treatment:hover::before {
    width: 300px;
    height: 300px;
}

.btn-treatment:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(97, 199, 202, 0.4);
}

.btn-treatment svg {
    transition: transform 0.3s ease;
}

.btn-treatment:hover svg {
    transform: translateX(4px);
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #61C7CA 0%, #4AB8BC 100%);
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

.contact-info {
    color: var(--bg-white);
}

.contact-lead {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.95);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
}

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

.contact-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-item h3 {
    font-size: 17px;
    font-weight: 600;
    color: var(--bg-white);
    margin-bottom: 4px;
}

.contact-item p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-link {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-white);
    transition: var(--transition);
}

.social-link:hover {
    background: var(--bg-white);
    color: var(--secondary-color);
    transform: translateY(-4px);
}

.contact-form-wrapper {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea {
    padding: 14px 16px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
    transition: var(--transition);
    background: var(--bg-white);
    color: var(--text-dark);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(97, 199, 202, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    background: var(--secondary-color);
    color: var(--bg-white);
    padding: 16px 32px;
    border-radius: 50px;
    border: none;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Poppins', sans-serif;
}

.btn-submit:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(97, 199, 202, 0.3);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--secondary-color);
    color: var(--bg-white);
    padding: 60px 0 32px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    margin-bottom: 48px;
}

.footer-title {
    font-size: 28px;
    color: var(--bg-white);
    margin-bottom: 20px;
}

.footer-description {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.footer-column h3 {
    font-size: 17px;
    font-weight: 600;
    color: var(--bg-white);
    margin-bottom: 16px;
}

.footer-column ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
}

.footer-column a:hover {
    color: var(--primary-color);
    padding-left: 4px;
}

.footer-column li {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin: 0;
}

.footer-credit {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.footer-credit:hover {
    color: #ffffff;
    text-decoration: underline;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-white);
    transition: var(--transition);
}

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

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

/* Tablets */
@media (max-width: 1024px) {
    .container {
        padding: 0 20px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-image {
        max-width: 500px;
        margin: 0 auto;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .treatments-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 24px;
    }
    
    .treatments-grid-new {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 24px;
    }
    
    .treatment-card-new {
        padding: 32px 24px 24px;
    }
    
    .treatment-card-with-image {
        padding-top: 0;
    }
    
    .card-image-wrapper {
        width: calc(100% + 48px);
        margin: 0 -24px 20px -24px;
        height: 180px;
    }
    
    .card-icon {
        width: 70px;
        height: 70px;
    }
    
    .card-icon svg {
        width: 42px;
        height: 42px;
    }

    /* Facilities Section - Tablet */
    .facilities-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .card-title-new {
        font-size: 22px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    #header {
        box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
    }

    .header-content {
        padding: 14px 0;
    }

    #header.scrolled .header-content {
        padding: 12px 0;
    }

    .logo img {
        height: 45px;
    }

    #header.scrolled .logo img {
        height: 42px;
    }

    .nav-menu {
        position: fixed;
        top: 76px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 76px);
        background: var(--bg-white);
        flex-direction: column;
        justify-content: flex-start;
        padding: 24px;
        transition: left 0.4s ease;
        box-shadow: var(--shadow-lg);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .nav-menu::-webkit-scrollbar {
        width: 6px;
    }

    .nav-menu::-webkit-scrollbar-track {
        background: #f1f1f1;
    }

    .nav-menu::-webkit-scrollbar-thumb {
        background: var(--primary-color);
        border-radius: 10px;
    }

    .nav-menu::-webkit-scrollbar-thumb:hover {
        background: var(--secondary-color);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        width: 100%;
    }

    .nav-menu ul > li {
        width: 100%;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        padding: 0;
    }

    .nav-menu ul > li:last-child {
        border-bottom: none;
    }

    .nav-link {
        font-size: 16px;
        display: block;
        padding: 16px 0;
        width: 100%;
        font-weight: 500;
    }

    .nav-link:focus,
    .nav-link:focus-visible {
        outline: none;
    }

    .nav-link::after {
        display: none;
    }

    /* Dropdown Mobile Styles */
    .nav-item-dropdown {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        position: relative;
    }

    .nav-item-dropdown .nav-link {
        padding: 16px 40px 16px 0;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .dropdown-toggle {
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        padding: 12px;
        margin-left: 0;
    }

    .dropdown-toggle svg {
        width: 16px;
        height: 16px;
    }

    .nav-item-dropdown.active .dropdown-toggle svg {
        transform: rotate(180deg);
    }

    .dropdown-menu {
        position: static;
        width: 100%;
        box-shadow: none;
        border-radius: 0;
        padding: 0;
        margin: 0;
        border-left: 3px solid var(--primary-color);
        background: rgba(97, 199, 202, 0.05);
        opacity: 1;
        visibility: visible;
        transform: none !important;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease;
        left: auto;
        border: none;
    }

    .nav-item-dropdown.active .dropdown-menu {
        max-height: 2000px;
        padding: 8px 0;
        border-left: 3px solid var(--primary-color);
    }

    .dropdown-menu > li {
        border-bottom: none;
    }

    .dropdown-menu > li:not(:last-child) {
        margin-bottom: 4px;
    }

    .dropdown-menu > li > a {
        padding: 12px 20px;
        font-size: 15px;
        border-left: none;
        font-weight: 500;
        color: var(--text-dark);
    }

    .dropdown-menu > li > a:hover {
        background: rgba(97, 199, 202, 0.1);
        color: var(--secondary-color);
    }

    /* Separación entre categorías principales */
    .dropdown-menu > li:nth-child(2) {
        margin-bottom: 12px;
        padding-bottom: 8px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    }

    .dropdown-submenu {
        position: relative;
    }

    .dropdown-submenu > a {
        padding: 12px 44px 12px 20px !important;
        display: flex;
        align-items: center;
    }

    .submenu-toggle {
        right: 12px;
        top: 50%;
        transform: translateY(-50%);
        padding: 12px;
    }

    .submenu-toggle svg {
        width: 12px;
        height: 12px;
    }

    .dropdown-submenu.active .submenu-toggle svg {
        transform: rotate(90deg);
    }

    .submenu {
        position: static;
        width: 100%;
        box-shadow: none;
        border-radius: 0;
        margin: 0;
        padding: 0;
        border-left: 3px solid var(--secondary-color);
        background: rgba(2, 104, 153, 0.03);
        opacity: 1;
        visibility: visible;
        transform: none;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease;
    }

    .dropdown-submenu.active .submenu {
        max-height: 1500px;
        padding: 8px 0;
    }

    .submenu li {
        border-bottom: none;
    }

    .submenu li a {
        padding: 11px 20px 11px 28px;
        font-size: 14px;
        border-left: none;
        font-weight: 400;
        color: var(--text-dark);
    }

    .submenu li a:hover {
        padding-left: 32px;
        background: rgba(2, 104, 153, 0.08);
        color: var(--secondary-color);
    }

    .btn-primary {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .menu-toggle.active {
        background: linear-gradient(135deg, rgba(97, 199, 202, 0.2), rgba(2, 104, 153, 0.2));
        box-shadow: 0 2px 10px rgba(97, 199, 202, 0.3);
    }

    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(7px, 7px);
    }

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

    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .hero {
        min-height: 100vh;
        padding-top: 76px;
    }

    .hero-content {
        padding: 40px 20px;
    }

    .hero-badge {
        font-size: 13px;
        padding: 8px 16px;
        margin-bottom: 20px;
    }

    .hero-title {
        font-size: 38px;
        letter-spacing: -0.5px;
    }

    .hero-title .highlight::after {
        height: 10px;
        bottom: 6px;
    }

    .hero-subtitle {
        font-size: 17px;
        margin-bottom: 32px;
    }

    .hero-cta-group {
        flex-direction: column;
        gap: 12px;
    }

    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        justify-content: center;
        padding: 14px 28px;
    }

    .hero-features {
        gap: 20px;
        margin-top: 40px;
    }

    .feature-badge {
        font-size: 13px;
    }

    .feature-badge svg {
        width: 20px;
        height: 20px;
    }

    .about-section,
    .facilities-section,
    .facilities-section-new,
    .treatments-section,
    .contact-section {
        padding: 60px 0;
    }

    .video-container {
        border-radius: 12px;
    }

    /* Facilities Section New - Responsive */
    .facilities-features {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .facilities-feature-card {
        padding: 28px 20px;
    }

    .feature-card-icon {
        width: 70px;
        height: 70px;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .about-features {
        gap: 20px;
        margin-top: 32px;
    }

    .feature-item {
        flex-direction: column;
        gap: 12px;
    }

    /* About Section New - Responsive */
    .about-section-new {
        padding: 60px 0;
    }

    .about-content-new {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-top: 40px;
    }

    .about-carousel-btn {
        width: 40px;
        height: 40px;
    }

    .about-carousel-prev {
        left: 12px;
    }

    .about-carousel-next {
        right: 12px;
    }

    .about-slide-label {
        font-size: 18px;
    }

    .about-stats {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 24px;
    }

    .about-stat-item {
        padding: 16px;
        border-bottom: 1px solid var(--border-color);
    }

    .about-stat-item:last-child {
        border-bottom: none;
    }

    .about-value-item {
        padding: 20px;
    }

    .about-value-icon {
        width: 48px;
        height: 48px;
    }

    .about-cta {
        flex-direction: column;
    }

    .btn-about-primary,
    .btn-about-secondary {
        width: 100%;
        justify-content: center;
        padding: 14px 28px;
    }

    .treatments-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .treatments-grid-new {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .treatment-card-new {
        padding: 28px 20px 20px;
    }
    
    .treatment-card-with-image {
        padding-top: 0;
    }
    
    .card-image-wrapper {
        width: calc(100% + 40px);
        margin: 0 -20px 16px -20px;
        height: 160px;
    }
    
    .card-icon {
        width: 65px;
        height: 65px;
    }
    
    .card-icon svg {
        width: 38px;
        height: 38px;
    }
    
    .card-title-new {
        font-size: 20px;
    }
    
    .card-description-new {
        font-size: 14px;
    }
    
    .card-features li {
        font-size: 13px;
        padding: 6px 10px;
    }
    
    .btn-treatment {
        padding: 12px 24px;
        font-size: 14px;
    }

    .contact-form-wrapper {
        padding: 32px 24px;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    html {
        font-size: 14px;
    }

    .container {
        padding: 0 16px;
    }

    .hero-badge {
        font-size: 12px;
        padding: 7px 14px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-title .highlight::after {
        height: 8px;
        bottom: 4px;
    }

    .hero-features {
        flex-direction: column;
        gap: 16px;
    }

    .section-title {
        font-size: 28px;
    }

    .card-content {
        padding: 24px 20px;
    }

    .contact-form-wrapper {
        padding: 24px 20px;
    }
}

/* Animations */
.fade-in {
    opacity: 0;
    animation: fadeIn 0.8s ease-out forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

.slide-up {
    opacity: 0;
    transform: translateY(40px);
    animation: slideUp 0.8s ease-out forwards;
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   MAP SECTION
   ============================================ */
.map-section {
    padding: 100px 0;
    background: var(--bg-white);
}

.map-container {
    margin-top: 50px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.map-container:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.map-container iframe {
    display: block;
    width: 100%;
    height: 500px;
}

@media (max-width: 768px) {
    .map-section {
        padding: 60px 0;
    }
    
    .map-container {
        margin-top: 40px;
        border-radius: 16px;
    }
    
    .map-container iframe {
        height: 400px;
    }
}

@media (max-width: 480px) {
    .map-container iframe {
        height: 350px;
    }
}

/* ============================================
   REVIEWS CAROUSEL SECTION
   ============================================ */
.reviews-section {
    padding: 100px 0;
    background: var(--bg-light);
    overflow: hidden;
}

.reviews-carousel {
    position: relative;
    margin: 60px auto 40px;
    max-width: 900px;
    overflow: hidden;
    padding: 0 60px;
}

.reviews-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.review-card {
    min-width: 100%;
    width: 100%;
    flex-shrink: 0;
    padding: 40px;
    background: var(--bg-white);
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    opacity: 0;
    transform: scale(0.95);
    transition: all 0.5s ease;
    box-sizing: border-box;
}

.review-card.active {
    opacity: 1;
    transform: scale(1);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 24px;
}

.review-author-info {
    display: flex;
    align-items: center;
    gap: 16px;
}

.review-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    flex-shrink: 0;
}

.review-author {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 4px;
    font-family: 'Poppins', sans-serif;
}

.review-stars {
    display: flex;
    gap: 4px;
}

.review-stars .star {
    color: #FBBC05;
    font-size: 18px;
}

.google-logo {
    height: 24px;
    width: auto;
}

.review-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 16px;
    font-style: italic;
}

.review-date {
    font-size: 14px;
    color: var(--text-light);
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--bg-white);
    border: 2px solid var(--primary-color);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
    color: var(--primary-color);
}

.carousel-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn-prev {
    left: 0;
}

.carousel-btn-next {
    right: 0;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 32px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--border-color);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--primary-color);
    transform: scale(1.2);
}

.google-link-container {
    text-align: center;
    margin-top: 40px;
}

.google-reviews-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: var(--bg-white);
    border: 2px solid var(--primary-color);
    border-radius: 50px;
    color: var(--secondary-color);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.google-reviews-link:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ============================================
   REVIEWS SECTION NEW
   ============================================ */
.reviews-section-new {
    padding: 100px 0;
    background: linear-gradient(135deg, #F8FAFB 0%, #FFFFFF 50%, #F8FAFB 100%);
    overflow: hidden;
}

/* Carousel New */
.reviews-carousel-new {
    position: relative;
    margin: 60px auto 0;
    max-width: 900px;
    overflow: visible;
    padding: 30px 70px 0;
}

.reviews-track-new {
    position: relative;
    width: 100%;
    height: auto;
    min-height: 350px;
}

.review-card-new {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease, visibility 0.6s ease;
    padding: 36px 36px 32px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
}

.review-card-new.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.review-card-new:hover {
    border-color: rgba(97, 199, 202, 0.3);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.review-quote-icon {
    position: absolute;
    top: -24px;
    left: 36px;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 4px 12px rgba(2, 104, 153, 0.3);
}

.review-quote-icon svg {
    width: 24px;
    height: 24px;
}

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

.review-author-section {
    display: flex;
    align-items: center;
    gap: 14px;
}

.review-avatar-new {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    flex-shrink: 0;
}

.review-author-name {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 5px;
    font-family: 'Poppins', sans-serif;
}

.review-stars-new {
    display: flex;
    gap: 3px;
}

.review-stars-new .star-filled {
    font-size: 16px;
    color: #FFB800;
}

.google-logo-small {
    height: 18px;
    width: auto;
    opacity: 0.7;
}

.review-text-new {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-gray);
    margin-bottom: 16px;
    font-style: italic;
}

.review-date-new {
    font-size: 13px;
    color: var(--text-light);
    font-weight: 500;
}

/* Carousel Buttons New */
.carousel-btn-new {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: 2px solid var(--primary-color);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.carousel-btn-new:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 16px rgba(2, 104, 153, 0.3);
}

.carousel-btn-prev-new {
    left: 0;
}

.carousel-btn-next-new {
    right: 0;
}

/* Carousel Dots New */
.carousel-dots-new {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 35px;
}

.dot-new {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #D1D5DB;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot-new.active {
    background: var(--primary-color);
    transform: scale(1.2);
}

.dot-new:hover:not(.active) {
    background: #9CA3AF;
    transform: scale(1.1);
}

/* Google Link Box */
.google-link-box {
    text-align: center;
    margin-top: 45px;
}

.google-reviews-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: white;
    border: 2px solid var(--secondary-color);
    border-radius: 50px;
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.google-reviews-btn:hover {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(2, 104, 153, 0.3);
}

.google-reviews-btn svg:first-child {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
}

.google-reviews-btn svg:last-child {
    transition: transform 0.3s ease;
    width: 18px;
    height: 18px;
}

.google-reviews-btn:hover svg:last-child {
    transform: translate(2px, -2px);
}

.google-reviews-link svg {
    transition: var(--transition);
}

.google-reviews-link:hover svg path:nth-child(1) {
    fill: white;
}

.google-reviews-link:hover svg path:nth-child(2) {
    fill: white;
}

.google-reviews-link:hover svg path:nth-child(3) {
    fill: white;
}

.google-reviews-link:hover svg path:nth-child(4) {
    fill: white;
}

/* Reviews section responsive */
@media (max-width: 968px) {
    .reviews-carousel {
        padding: 0 50px;
    }
    
    .carousel-btn-prev {
        left: 0;
    }
    
    .carousel-btn-next {
        right: 0;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 768px) {
    .reviews-section,
    .reviews-section-new {
        padding: 60px 0;
    }

    /* Reviews Section New - Responsive */
    .reviews-carousel-new {
        margin: 40px auto 0;
        padding: 25px 50px 0;
    }

    .reviews-track-new {
        min-height: 380px;
    }

    .review-card-new {
        padding: 32px 24px 28px;
    }

    .carousel-btn-new {
        width: 42px;
        height: 42px;
    }

    .review-quote-icon {
        left: 24px;
        width: 44px;
        height: 44px;
        top: -22px;
    }

    .review-quote-icon svg {
        width: 20px;
        height: 20px;
    }

    .review-avatar-new {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }

    .review-author-name {
        font-size: 16px;
    }

    .review-text-new {
        font-size: 15px;
        line-height: 1.6;
    }

    .google-reviews-btn {
        padding: 14px 26px;
        font-size: 14px;
    }
    
    .reviews-carousel {
        margin: 40px auto 30px;
        padding: 0 45px;
    }
    
    .review-card {
        padding: 28px 24px;
    }
    
    .carousel-btn {
        width: 36px;
        height: 36px;
    }
    
    .carousel-btn-prev {
        left: 0;
    }
    
    .carousel-btn-next {
        right: 0;
    }
    
    .review-header {
        flex-direction: column;
        gap: 16px;
    }
    
    .google-logo {
        align-self: flex-start;
    }
    
    .review-text {
        font-size: 15px;
    }
    
    .google-reviews-link {
        padding: 14px 24px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .reviews-carousel {
        padding: 0 40px;
    }
    
    .review-card {
        padding: 24px 20px;
    }
    
    .review-avatar {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }
    
    .review-author {
        font-size: 16px;
    }
    
    .review-stars .star {
        font-size: 16px;
    }
    
    .google-reviews-link {
        width: 100%;
        justify-content: center;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Focus styles for accessibility */
a:focus,
button:focus,
input:focus,
textarea:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* ============================================
   NEW CONTACT SECTION
   ============================================ */
.contact-section-new {
    padding: 100px 0;
    background: var(--bg-white);
}

/* Contact Cards Grid */
.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 60px 0;
}

.contact-card {
    background: var(--bg-white);
    padding: 40px 32px;
    border-radius: 16px;
    text-align: center;
    border: 2px solid var(--border-color);
    transition: var(--transition);
}

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

.contact-card.highlight {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-color: transparent;
}

.contact-card.highlight .contact-card-title,
.contact-card.highlight .contact-card-text,
.contact-card.highlight .contact-card-link {
    color: var(--bg-white);
}

.contact-card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: rgba(97, 199, 202, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-card.highlight .contact-card-icon {
    background: rgba(255, 255, 255, 0.2);
}

.contact-card-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 12px;
}

.contact-card-text {
    color: var(--text-gray);
    margin-bottom: 8px;
    font-size: 16px;
    line-height: 1.6;
}

.contact-card-text-small {
    color: var(--text-light);
    font-size: 14px;
    font-style: italic;
}

.contact-card-link {
    display: inline-block;
    margin-top: 16px;
    color: var(--bg-white);
    background: var(--primary-color);
    padding: 10px 24px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.contact-card-link:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.contact-card.highlight .contact-card-link {
    background: rgba(255, 255, 255, 0.2);
    padding: 10px 24px;
    border-radius: 25px;
}

.contact-card.highlight .contact-card-link:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* Main Contact Grid */
.contact-main-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin: 60px 0;
}

/* Contact Form Section */
.contact-form-section {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 16px;
}

.form-section-title {
    font-size: 28px;
    color: var(--secondary-color);
    margin-bottom: 12px;
}

.form-section-subtitle {
    color: var(--text-gray);
    margin-bottom: 32px;
    font-size: 16px;
}

.contact-form-new {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-form-new .form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-form-new label {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 14px;
}

.contact-form-new input,
.contact-form-new select,
.contact-form-new textarea {
    padding: 14px 16px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
    transition: var(--transition);
    background: var(--bg-white);
}

.contact-form-new input:focus,
.contact-form-new select:focus,
.contact-form-new textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(97, 199, 202, 0.1);
}

.contact-form-new select {
    cursor: pointer;
}

.contact-form-new textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-form-submit {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    color: var(--bg-white);
    padding: 16px 32px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 8px 24px rgba(2, 104, 153, 0.25);
}

.btn-form-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(97, 199, 202, 0.35);
}

/* WhatsApp Button Style */
.btn-form-submit.btn-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
}

.btn-form-submit.btn-whatsapp:hover {
    background: linear-gradient(135deg, #20BD5A 0%, #0E7A6E 100%);
    box-shadow: 0 12px 32px rgba(37, 211, 102, 0.4);
}

/* Map Section */
.contact-map-section {
    background: var(--bg-white);
    padding: 0;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    overflow: hidden;
    height: 100%;
    min-height: 550px;
}

.map-wrapper {
    width: 100%;
    height: 100%;
    min-height: 550px;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    display: block;
}

/* Social Section */
.social-section {
    text-align: center;
    margin-top: 60px;
    padding: 40px;
    background: linear-gradient(135deg, rgba(97, 199, 202, 0.05) 0%, rgba(2, 104, 153, 0.05) 100%);
    border-radius: 16px;
}

.social-title {
    font-size: 24px;
    color: var(--secondary-color);
    margin-bottom: 24px;
}

.social-links-new {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
}

.social-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
}

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

.social-btn.whatsapp:hover {
    background: var(--secondary-color);
}

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

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

.social-btn.facebook {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
}

.social-btn.facebook:hover {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

/* ========================================
   WhatsApp Floating Button
======================================== */

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    transition: all 0.3s ease;
    text-decoration: none;
    cursor: pointer;
    animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
    animation: none;
}

.whatsapp-float svg {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.whatsapp-tooltip {
    position: absolute;
    left: 80px;
    top: 50%;
    transform: translateY(-50%);
    background: #2c3e50;
    color: white;
    padding: 12px 18px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    z-index: 10000;
    animation: slideTooltip 3s ease-in-out infinite;
}

.whatsapp-tooltip::before {
    content: '';
    position: absolute;
    left: -8px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-right: 8px solid #2c3e50;
}

@keyframes slideTooltip {
    0%, 100% {
        opacity: 0;
        transform: translateY(-50%) translateX(-10px);
    }
    10%, 90% {
        opacity: 1;
        transform: translateY(-50%) translateX(0);
    }
}

@keyframes pulse-whatsapp {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7), 0 0 0 15px rgba(37, 211, 102, 0.1);
    }
}

/* Responsive for Floating Button */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 60px;
        height: 60px;
        bottom: 20px;
        left: 20px;
    }
    
    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }
    
    .whatsapp-tooltip {
        display: none;
    }
}

@media (max-width: 480px) {
    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 15px;
        left: 15px;
    }
    
    .whatsapp-float svg {
        width: 26px;
        height: 26px;
    }
}

/* ========================================
   Responsive Design
======================================== */
/* Responsive Design */
@media (max-width: 968px) {
    .contact-main-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .contact-section-new {
        padding: 60px 0;
    }
    
    .contact-cards-grid {
        grid-template-columns: 1fr;
        margin: 40px 0;
    }
    
    .contact-form-section {
        padding: 28px 20px;
    }
    
    .contact-map-section {
        min-height: 400px;
    }
    
    .map-wrapper {
        min-height: 400px;
    }
    
    .social-section {
        padding: 30px 20px;
    }
    
    .social-links-new {
        flex-direction: column;
        align-items: stretch;
    }
    
    .social-btn {
        justify-content: center;
    }
}

/* ============================================
   RESULTS GALLERY SECTION
   ============================================ */
.results-gallery-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #F8FAFB 0%, #FFFFFF 50%, #F8FAFB 100%);
    position: relative;
    overflow: hidden;
}

.results-gallery-section::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(97, 199, 202, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.results-gallery-section::after {
    content: '';
    position: absolute;
    bottom: -200px;
    left: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(2, 104, 153, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

/* Gallery Grid */
.results-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 50px;
}

/* Gallery Item */
.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    background: var(--bg-white);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.gallery-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(97, 199, 202, 0.3);
}

.gallery-image-wrapper {
    position: relative;
    width: 100%;
    padding-top: 100%; /* Square aspect ratio for all items */
    overflow: hidden;
}

.gallery-image-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item:hover .gallery-image-wrapper img {
    transform: scale(1.1);
}

/* Gallery Overlay */
.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(2, 104, 153, 0.9) 0%,
        rgba(97, 199, 202, 0.8) 100%
    );
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transform: scale(0.8);
    transition: transform 0.4s ease;
    backdrop-filter: blur(4px);
}

.gallery-item:hover .gallery-icon {
    transform: scale(1);
}

/* Gallery CTA */
.gallery-cta {
    text-align: center;
    margin-top: 50px;
}

.btn-gallery-more {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 36px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(2, 104, 153, 0.3);
}

.btn-gallery-more:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(97, 199, 202, 0.4);
}

.btn-gallery-more svg {
    flex-shrink: 0;
}

/* Gallery Responsive */
@media (max-width: 1024px) {
    .results-gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 14px;
    }
}

@media (max-width: 768px) {
    .results-gallery-section {
        padding: 60px 0;
    }
    
    .results-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        margin-top: 40px;
    }
    
    .gallery-item {
        border-radius: 10px;
    }
    
    .gallery-icon {
        width: 50px;
        height: 50px;
    }
    
    .gallery-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .gallery-cta {
        margin-top: 40px;
    }
    
    .btn-gallery-more {
        padding: 14px 28px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .results-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .gallery-item {
        border-radius: 8px;
    }
    
    .gallery-icon {
        width: 44px;
        height: 44px;
    }
    
    .btn-gallery-more {
        width: 100%;
        justify-content: center;
    }
}

/* ============================================
   LIGHTBOX MODAL
   ============================================ */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    backdrop-filter: blur(10px);
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transform: scale(0.9);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.4s ease;
}

.lightbox.active .lightbox-content img {
    transform: scale(1);
    opacity: 1;
}

/* Close Button */
.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: white;
    transition: all 0.3s ease;
    z-index: 10;
}

.lightbox-close:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: rotate(90deg) scale(1.1);
}

/* Navigation Buttons */
.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: white;
    transition: all 0.3s ease;
    z-index: 10;
}

.lightbox-nav:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
    left: 30px;
}

.lightbox-next {
    right: 30px;
}

/* Counter */
.lightbox-counter {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.15);
    padding: 10px 24px;
    border-radius: 30px;
    color: white;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    backdrop-filter: blur(10px);
}

/* Lightbox Responsive */
@media (max-width: 768px) {
    .lightbox-close {
        top: 15px;
        right: 15px;
        width: 44px;
        height: 44px;
    }
    
    .lightbox-nav {
        width: 48px;
        height: 48px;
    }
    
    .lightbox-prev {
        left: 15px;
    }
    
    .lightbox-next {
        right: 15px;
    }
    
    .lightbox-content {
        max-width: 95vw;
        max-height: 80vh;
    }
    
    .lightbox-content img {
        max-height: 80vh;
        border-radius: 8px;
    }
    
    .lightbox-counter {
        bottom: 20px;
        padding: 8px 20px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .lightbox-nav {
        width: 42px;
        height: 42px;
    }
    
    .lightbox-prev {
        left: 10px;
    }
    
    .lightbox-next {
        right: 10px;
    }
    
    .lightbox-close {
        top: 10px;
        right: 10px;
        width: 40px;
        height: 40px;
    }
}

/* Print styles */
@media print {
    header,
    .hero,
    .scroll-indicator,
    .contact-section,
    .contact-section-new,
    footer {
        display: none;
    }

    body {
        color: #000;
        background: #fff;
    }
}

