/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    --primary: #6CE600;
}

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

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

/* Top Bar */
.top-bar {
    background: #1a1a1a;
    color: white;
    padding: 8px 0;
    font-size: 0.9rem;
}

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

.top-bar-left {
    display: flex;
    gap: 2rem;
}

.top-bar-left span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.top-bar-right {
    display: flex;
    gap: 1rem;
}

.social-link {
    color: white;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: var(--primary);
}

/* Navigation */
.navbar {
    background: var(--primary);
    color: white;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-icon {
    background: rgba(255,255,255,0.2);
    padding: 0.8rem;
    border-radius: 12px;
    font-size: 1.5rem;
}

.logo-text h2 {
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1;
}

.logo-text span {
    font-size: 0.9rem;
    opacity: 0.9;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 8px;
}

.nav-link:hover,
.nav-link.active {
    background-color: rgba(255,255,255,0.2);
    transform: translateY(-2px);
}

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

.btn-outline-white {
    background: transparent;
    color: white;
    border: 2px solid rgba(255,255,255,0.3);
}

.btn-outline-white:hover {
    background: rgba(255,255,255,0.2);
    border-color: white;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger .bar {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 3px 0;
    transition: 0.3s;
}

/* Main Content */
main {
    margin-top: 0;
}

.page {
    display: none;
    min-height: calc(100vh - 160px);
}

.page.active {
    display: block;
}

/* Page Headers */
.page-header {
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    padding: 3rem 0 2rem;
    border-bottom: 1px solid #e2e8f0;
}

.breadcrumb, .breadcrumb-white {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.breadcrumb a, .breadcrumb-white a {
    color: #64748b;
    text-decoration: none;
}

.breadcrumb-white a {
    color: rgba(255,255,255,0.8);
}

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

.page-header h1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.page-header p {
    font-size: 1.1rem;
    color: #64748b;
}

/* Hero Premium */
.hero-premium {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(28, 79, 144, 0.8), rgba(28, 79, 144, 0.8));
    z-index: 2;
}

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

.hero-content-premium {
    position: relative;
    z-index: 3;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
    color: white;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.2);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    margin-bottom: 2rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.hero-content-premium h1 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.highlight {
    color: #fbbf24;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: #fbbf24;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-top: 0.5rem;
}

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

.hero-trust {
    margin-top: 3rem;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    justify-content: center;
}

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

.btn-primary:hover {
    background: linear-gradient(135deg, #16a34a, #15803d);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(34, 197, 94, 0.4);
}

.btn-primary-large {
    padding: 16px 32px;
    font-size: 1.1rem;
    background: var(--primary);
    color: white;
}

.btn-primary-large:hover {
    background: linear-gradient(135deg, #16a34a, #15803d);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(34, 197, 94, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

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

.btn-secondary-large {
    padding: 16px 32px;
    font-size: 1.1rem;
    background: transparent;
    color: white;
    border: 2px solid rgba(255,255,255,0.3);
}

.btn-secondary-large:hover {
    background: rgba(255,255,255,0.2);
    border-color: white;
}

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

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

.btn-outline-large {
    padding: 16px 32px;
    font-size: 1.1rem;
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

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

.btn-outline-white-large {
    padding: 16px 32px;
    font-size: 1.1rem;
    background: transparent;
    color: white;
    border: 2px solid rgba(255,255,255,0.3);
}

.btn-outline-white-large:hover {
    background: rgba(255,255,255,0.2);
    border-color: white;
}

.btn-full {
    width: 100%;
}

/* Sections */
section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.2rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

/* Services Overview */
.services-overview {
    background: white;
}

.services-grid-premium {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card-premium {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 1px solid #f1f5f9;
}

.service-card-premium:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.service-icon {
    background: #1C4F90;
    color: white;
    width: 70px;
    height: 70px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.service-card-premium h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.service-card-premium p {
    color: #64748b;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-features {
    list-style: none;
}

.service-features li {
    color: #64748b;
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1rem;
}

.service-features li:before {
    content: "•";
    color: var(--primary);
    position: absolute;
    left: 0;
}

/* Units Preview Premium */
.units-preview-premium {
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
}

.units-grid-premium {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.unit-card-premium {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.unit-card-premium:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.unit-image-container {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.unit-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.unit-card-premium:hover .unit-image-container img {
    transform: scale(1.05);
}

.unit-badges {
    position: absolute;
    top: 1rem;
    left: 1rem;
    display: flex;
    gap: 0.5rem;
}

.badge-24h {
    background: var(--primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.badge-premium {
    background: #fbbf24;
    color: #1e293b;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.unit-content {
    padding: 2rem;
}

.unit-header {
    margin-bottom: 1rem;
}

.unit-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.unit-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.stars {
    color: #fbbf24;
    font-size: 1rem;
}

.unit-address {
    color: #64748b;
    margin-bottom: 1rem;
}

.unit-amenities {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.amenity {
    background: #f0fdf4;
    color: #16a34a;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.unit-actions {
    display: flex;
    gap: 1rem;
}

.view-all-units {
    text-align: center;
}

/* Units List Premium */
.units-filter {
    margin-bottom: 3rem;
}

.filter-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-tab {
    background: transparent;
    border: 2px solid #e2e8f0;
    color: #64748b;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.filter-tab.active,
.filter-tab:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

.units-list-premium {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.unit-list-card-premium {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.unit-list-card-premium:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.unit-status-badges {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    display: flex;
    gap: 0.5rem;
    z-index: 2;
}

.badge-pool {
    background: #3b82f6;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.unit-list-content-premium {
    display: grid;
    grid-template-columns: 400px 1fr;
    min-height: 400px;
}

.unit-list-image-premium {
    position: relative;
    overflow: hidden;
}

.unit-list-image-premium img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.unit-list-card-premium:hover .unit-list-image-premium img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.unit-list-card-premium:hover .image-overlay {
    opacity: 1;
}

.view-gallery-btn {
    background: rgba(255,255,255,0.9);
    color: #1e293b;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.unit-list-info-premium {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.unit-header-premium {
    margin-bottom: 1rem;
}

.unit-header-premium h3 {
    font-size: 2rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.unit-rating-premium {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.rating-score {
    font-weight: 700;
    color: #1e293b;
}

.rating-count {
    color: #64748b;
    font-size: 0.9rem;
}

.unit-description-premium {
    color: #64748b;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 1.1rem;
}

.unit-highlights {
    margin-bottom: 1.5rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    color: #64748b;
}

.highlight-item i {
    color: var(--primary);
    width: 20px;
}

.unit-amenities-premium {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.amenity-premium {
    background: linear-gradient(135deg, #f0fdf4, #dcfce7);
    color: #16a34a;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid #bbf7d0;
}

.unit-actions-premium {
    display: flex;
    gap: 1rem;
}

/* Unit Detail Premium */
.unit-detail-hero-premium {
    position: relative;
    height: 60vh;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.9), rgba(22, 163, 74, 0.8)), 
                url('./public/assets/gym/IMG-20250905-WA0369.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    color: white;
    overflow: hidden;
}

.hero-overlay-dark {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.9), rgba(22, 163, 74, 0.8));
    z-index: 1;
}

.unit-hero-content-premium {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 3rem;
    width: 100%;
}

.unit-hero-badges-premium {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.hero-badge-premium {
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    backdrop-filter: blur(10px);
}

.hero-badge-premium.green {
    background: rgba(34, 197, 94, 0.3);
    border: 1px solid rgba(255,255,255,0.3);
}

.hero-badge-premium.blue {
    background: rgba(59, 130, 246, 0.3);
    border: 1px solid rgba(255,255,255,0.3);
}

.hero-badge-premium.gold {
    background: rgba(251, 191, 36, 0.3);
    border: 1px solid rgba(255,255,255,0.3);
}

.unit-hero-content-premium h1 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.unit-hero-rating-premium {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.rating-stars-large {
    color: #fbbf24;
    font-size: 1.5rem;
}

.rating-text-large {
    font-weight: 600;
}

.separator {
    opacity: 0.7;
}

.hero-quick-actions {
    display: flex;
    gap: 1rem;
}

/* Unit Detail Container */
.unit-detail-container-premium {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 20px;
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 3rem;
}

.unit-detail-main-premium {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.unit-tabs-premium {
    display: flex;
    border-bottom: 2px solid #f1f5f9;
}

.tab-btn-premium {
    flex: 1;
    background: none;
    border: none;
    padding: 1.5rem 1rem;
    font-size: 1rem;
    font-weight: 600;
    color: #64748b;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.tab-btn-premium.active,
.tab-btn-premium:hover {
    color: var(--primary);
    border-bottom-color: var(--primary);
    background: #f8fafc;
}

.tab-content-premium {
    padding: 3rem;
}

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

.tab-pane-premium.active {
    display: block;
}

.about-section-premium .section-intro h2 {
    color: #1e293b;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    text-align: left;
}

.unit-features-premium {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.feature-card-large {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: #f8fafc;
    border-radius: 15px;
    border: 1px solid #e2e8f0;
}

.feature-icon-large {
    background: var(--primary);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.feature-content h4 {
    color: #1e293b;
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.feature-content p {
    color: #64748b;
    font-size: 0.9rem;
}

/* Gallery */
.gallery-section-premium {
    margin-top: 3rem;
}

.gallery-section-premium h3 {
    color: #1e293b;
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.photo-gallery-premium {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
    aspect-ratio: 4/3;
}

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

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

/* Services Section Premium */
.services-grid-detailed {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.service-card-detailed {
    background: #f8fafc;
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
}

.service-image {
    height: 200px;
    overflow: hidden;
}

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

.service-content {
    padding: 2rem;
}

.service-content h3 {
    color: #1e293b;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.service-content p {
    color: #64748b;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-details {
    list-style: none;
}

.service-details li {
    color: #64748b;
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.service-details li:before {
    content: "✓";
    color: var(--primary);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Plans Premium */
.plans-grid-premium {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.plan-card-premium {
    background: white;
    border: 2px solid #f1f5f9;
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    transition: all 0.3s ease;
}

.plan-card-premium:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.plan-card-premium.featured {
    border-color: var(--primary);
    background: linear-gradient(135deg, #f0fdf4, #dcfce7);
}

.plan-badge-premium {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.plan-header-premium {
    text-align: center;
    margin-bottom: 2rem;
}

.plan-header-premium h3 {
    font-size: 1.5rem;
    color: #1e293b;
    margin-bottom: 1rem;
}

.price-premium {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.2rem;
    margin-bottom: 0.5rem;
}

.currency {
    font-size: 1.2rem;
    color: #64748b;
}

.amount {
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary);
}

.period {
    font-size: 1rem;
    color: #64748b;
}

.price-note {
    font-size: 0.9rem;
    color: #16a34a;
    font-weight: 600;
}

.plan-features-premium {
    list-style: none;
    margin-bottom: 2rem;
}

.plan-features-premium li {
    padding: 0.8rem 0;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    border-bottom: 1px solid #f1f5f9;
}

.plan-features-premium li:last-child {
    border-bottom: none;
}

.plan-features-premium i {
    color: var(--primary);
    font-size: 1.1rem;
}

/* Schedule Section */
.schedule-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.schedule-card {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid #e2e8f0;
}

.schedule-card h3 {
    color: #1e293b;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.schedule-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 0;
    border-bottom: 1px solid #e2e8f0;
}

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

.day {
    color: #64748b;
    font-weight: 500;
}

.time {
    color: #1e293b;
    font-weight: 600;
}

/* Reviews Premium */
.reviews-header {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.reviews-header h2 {
    text-align: left;
    margin-bottom: 2rem;
}

.rating-overview-large {
    text-align: center;
}

.rating-number {
    font-size: 4rem;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
}

.rating-stars-summary {
    color: #fbbf24;
    font-size: 1.5rem;
    margin: 1rem 0;
}

.rating-text {
    color: #64748b;
}

.rating-breakdown {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.rating-bar {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.9rem;
}

.rating-bar span:first-child {
    min-width: 80px;
    color: #64748b;
}

.rating-bar span:last-child {
    min-width: 40px;
    color: #64748b;
    text-align: right;
}

.bar {
    flex: 1;
    height: 8px;
    background: #f1f5f9;
    border-radius: 4px;
    overflow: hidden;
}

.fill {
    height: 100%;
    background: var(--primary);
    border-radius: 4px;
}

.reviews-list-premium {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.review-card-premium {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid #e2e8f0;
}

.review-header-premium {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.reviewer-avatar {
    background: #e2e8f0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
}

.reviewer-details h4 {
    color: #1e293b;
    margin-bottom: 0.2rem;
}

.reviewer-details span {
    color: #64748b;
    font-size: 0.9rem;
}

.review-rating {
    text-align: right;
}

.review-rating .stars {
    color: #fbbf24;
    margin-bottom: 0.3rem;
}

.review-date {
    color: #64748b;
    font-size: 0.8rem;
}

.review-text {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.helpful-btn {
    background: transparent;
    border: 1px solid #e2e8f0;
    color: #64748b;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.helpful-btn:hover {
    background: #f8fafc;
    border-color: var(--primary);
    color: var(--primary);
}

.load-more-reviews {
    text-align: center;
    margin-top: 2rem;
}

/* Sidebar Premium */
.unit-detail-sidebar-premium {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.quick-contact-premium,
.unit-info-sidebar-premium,
.special-offer-sidebar {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.quick-contact-premium h3,
.unit-info-sidebar-premium h4,
.special-offer-sidebar h4 {
    color: #1e293b;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.contact-phone-premium {
    text-align: center;
    margin-bottom: 2rem;
}

.phone-number,
.phone-whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.phone-number {
    color: #1e293b;
}

.phone-whatsapp {
    color: #25d366;
}

.contact-phone-premium small {
    color: #64748b;
}

.contact-buttons-premium {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.info-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.info-item-premium {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 10px;
}

.info-icon {
    background: var(--primary);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-content {
    flex: 1;
}

.info-label {
    color: #64748b;
    font-size: 0.9rem;
    display: block;
}

.info-value {
    color: #1e293b;
    font-weight: 600;
    font-size: 1.1rem;
}

.special-offer-sidebar {
    background: var(--primary);
    color: white;
}

.special-offer-sidebar h4 {
    color: white;
}

.offer-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.offer-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.offer-content p {
    opacity: 0.9;
    margin-bottom: 1.5rem;
}

/* Plans Comparison */
.plans-comparison {
    margin-bottom: 4rem;
}

.comparison-header {
    text-align: center;
    margin-bottom: 3rem;
}

.comparison-header h2 {
    margin-bottom: 2rem;
}

.billing-toggle {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: center;
}

.toggle-label {
    font-weight: 600;
    color: #64748b;
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: var(--primary);
}

input:checked + .slider:before {
    transform: translateX(26px);
}

.discount-badge {
    background: var(--primary);
    color: white;
    padding: 0.2rem 0.5rem;
    border-radius: 10px;
    font-size: 0.8rem;
    margin-left: 0.5rem;
}

.plans-grid-comparison {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.plan-card-comparison {
    background: white;
    border: 2px solid #f1f5f9;
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    transition: all 0.3s ease;
}

.plan-card-comparison:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.plan-card-comparison.featured {
    border-color: var(--primary);
    background: linear-gradient(135deg, #f0fdf4, #dcfce7);
    transform: scale(1.05);
}

.plan-badge-comparison {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.plan-header-comparison {
    text-align: center;
    margin-bottom: 2rem;
}

.plan-header-comparison h3 {
    font-size: 1.5rem;
    color: #1e293b;
    margin-bottom: 1rem;
}

.plan-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.2rem;
    margin-bottom: 0.5rem;
}

.plan-description {
    color: #64748b;
    font-size: 0.9rem;
}

.plan-features-comparison {
    list-style: none;
    margin-bottom: 2rem;
}

.plan-features-comparison li {
    padding: 0.8rem 0;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    border-bottom: 1px solid #f1f5f9;
}

.plan-features-comparison li:last-child {
    border-bottom: none;
}

.plan-features-comparison .fa-check {
    color: var(--primary);
}

.plan-features-comparison .fa-times {
    color: #ef4444;
}

.plans-benefits {
    background: #f8fafc;
    padding: 4rem 0;
    border-radius: 20px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.benefit-item {
    text-align: center;
    padding: 2rem;
}

.benefit-item i {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.benefit-item h4 {
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.benefit-item p {
    color: #64748b;
}

/* Modalities Premium */
.modalities-categories {
    margin-bottom: 3rem;
}

.category-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.category-tab {
    background: transparent;
    border: 2px solid #e2e8f0;
    color: #64748b;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.category-tab.active,
.category-tab:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

.modalities-grid-premium {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.modality-card-premium {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.modality-card-premium:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.modality-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

.modality-overlay {
    position: absolute;
    top: 1rem;
    right: 1rem;
}

.modality-level {
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.modality-content {
    padding: 2rem;
}

.modality-content h3 {
    color: #1e293b;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.modality-content p {
    color: #64748b;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.modality-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.feature-tag {
    background: #f0fdf4;
    color: #16a34a;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.modality-stats {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.stat {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #64748b;
    font-size: 0.9rem;
}

.stat i {
    color: var(--primary);
    width: 16px;
}

.modalities-cta {
    text-align: center;
    margin-top: 4rem;
    padding: 3rem;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    border-radius: 20px;
}

.cta-content h2 {
    margin-bottom: 1rem;
}

.cta-content p {
    margin-bottom: 2rem;
    color: white;
}

/* About Page */
.about-content {
    max-width: 1000px;
    margin: 0 auto;
}

.about-story {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-bottom: 5rem;
    align-items: center;
}

.story-content h2 {
    color: #1e293b;
    margin-bottom: 2rem;
    font-size: 2.5rem;
}

.story-content p {
    color: #64748b;
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-size: 1.1rem;
}

.story-image {
    border-radius: 20px;
    overflow: hidden;
}

.story-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.about-numbers {
    margin-bottom: 5rem;
}

.about-numbers h2 {
    text-align: center;
    color: #1e293b;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.numbers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.number-card {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.label {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.description {
    color: #64748b;
    font-size: 0.9rem;
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.mission-card {
    text-align: center;
    padding: 3rem 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.mission-icon {
    background: var(--primary);
    color: white;
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 2rem;
}

.mission-card h3 {
    color: #1e293b;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.mission-card p {
    color: #64748b;
    line-height: 1.6;
}

.about-awards {
    margin-top: 5rem;
}

.about-awards h2 {
    text-align: center;
    color: #1e293b;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.award-card {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    border-radius: 20px;
}

.award-icon {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 1rem;
}

.award-card h4 {
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.award-card p {
    color: #64748b;
    font-size: 0.9rem;
}

/* Contact Premium */
.contact-content-premium {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    background: white;
    border-radius: 20px;
    padding: 4rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.contact-info-premium h2 {
    color: #1e293b;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 15px;
}

.method-icon {
    background: var(--primary);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.method-content h4 {
    color: #1e293b;
    margin-bottom: 0.3rem;
}

.method-content p {
    color: var(--primary);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
}

.method-content span {
    color: #64748b;
    font-size: 0.9rem;
}

.headquarters-info {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 15px;
}

.headquarters-info h3 {
    color: #1e293b;
    margin-bottom: 1rem;
}

.headquarters-details p {
    color: #64748b;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.headquarters-details i {
    color: var(--primary);
    width: 16px;
}

.contact-form-premium h2 {
    color: #1e293b;
    margin-bottom: 2rem;
    font-size: 2rem;
}

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

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: #1e293b;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

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

/* Testimonials */
.testimonials {
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.testimonial-content {
    margin-bottom: 2rem;
}

.testimonial-content .stars {
    color: #fbbf24;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.testimonial-content p {
    color: #64748b;
    line-height: 1.6;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    background: #e2e8f0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
}

.author-info h4 {
    color: #1e293b;
    margin-bottom: 0.2rem;
}

.author-info span {
    color: #64748b;
    font-size: 0.9rem;
}

/* CTA Section */
.cta-section {
    background: #1C4F90;
    color: white;
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content > p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.cta-offer {
    background: rgba(255,255,255,0.3);
    padding: 2rem;
    border-radius: 20px;
    margin-bottom: 3rem;
    backdrop-filter: blur(10px);
}

.offer-badge {
    display: inline-block;
    background: #fbbf24;
    color: #1e293b;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    margin-bottom: 1rem;
}

.offer-details h3 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 0.5rem;
}

.offer-details p {
    opacity: 0.9;
}

.cta-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

/* Footer Premium */
.footer-premium {
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    color: black;
    padding: 4rem 0 2rem;
}

.footer-content-premium {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section-premium h4 {
    color: black;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-logo {
    margin-bottom: 1.5rem;
}

.footer-section-premium p {
    color: black;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.social-links-premium {
    display: flex;
    gap: 1rem;
}

.social-link-premium {
    background: rgba(255,255,255,0.1);
    color: black;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link-premium:hover {
    background: var(--primary);
    transform: translateY(-2px);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: black;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary);
}

.contact-info-footer p {
    color: black;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-info-footer i {
    color: #1C4F90;
    width: 16px;
}

.footer-bottom-premium {
    border-top: 1px solid black;
    padding-top: 2rem;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom-content p {
    color: black;
    margin: 0;
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    color: black;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--primary);
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    z-index: 1000;
    overflow: hidden;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    width: auto;
    padding: 0 1rem;
    border-radius: 30px;
}

.whatsapp-float:hover .whatsapp-text{
    display: block;
}

.whatsapp-text {
    margin-left: 0.5rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s ease;
    display: none;
}

.whatsapp-float:hover .whatsapp-text {
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .unit-list-content-premium {
        grid-template-columns: 300px 1fr;
    }
    
    .unit-detail-container-premium {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .top-bar {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--primary);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 2rem 0;
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-actions {
        display: none;
    }
    
    .hero-content-premium h1 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .trust-badges {
        flex-direction: column;
        gap: 1rem;
    }
    
    .services-grid-premium {
        grid-template-columns: 1fr;
    }
    
    .units-grid-premium {
        grid-template-columns: 1fr;
    }
    
    .unit-list-content-premium {
        grid-template-columns: 1fr;
    }
    
    .unit-list-image-premium {
        height: 250px;
    }
    
    .unit-hero-content-premium h1 {
        font-size: 2.5rem;
    }
    
    .unit-tabs-premium {
        flex-wrap: wrap;
    }
    
    .tab-btn-premium {
        flex: none;
        padding: 1rem 0.8rem;
        font-size: 0.9rem;
    }
    
    .tab-content-premium {
        padding: 2rem;
    }
    
    .unit-features-premium {
        grid-template-columns: 1fr;
    }
    
    .services-grid-detailed {
        grid-template-columns: 1fr;
    }
    
    .plans-grid-premium,
    .plans-grid-comparison {
        grid-template-columns: 1fr;
    }
    
    .reviews-header {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-content-premium {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 3rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .about-story {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .numbers-grid,
    .mission-grid,
    .awards-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .modalities-grid-premium {
        grid-template-columns: 1fr;
    }
    
    .filter-tabs,
    .category-tabs {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 1rem;
    }
    
    .filter-tab,
    .category-tab {
        flex-shrink: 0;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .page-header {
        padding: 2rem 0 1.5rem;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .hero-content-premium h1 {
        font-size: 2rem;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .service-card-premium {
        padding: 2rem;
    }
    
    .unit-list-info-premium {
        padding: 2rem;
    }
    
    .unit-actions-premium {
        flex-direction: column;
    }
    
    .unit-hero-content-premium {
        padding: 0 15px 2rem;
    }
    
    .unit-hero-content-premium h1 {
        font-size: 2rem;
    }
    
    .hero-quick-actions {
        flex-direction: column;
    }
    
    .tab-content-premium {
        padding: 1.5rem;
    }
    
    .quick-contact-premium,
    .unit-info-sidebar-premium,
    .special-offer-sidebar {
        padding: 1.5rem;
    }
    
    .contact-content-premium {
        padding: 2rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .whatsapp-float {
        bottom: 1rem;
        right: 1rem;
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .whatsapp-float:hover {
        width: 50px;
        padding: 0;
        border-radius: 50%;
    }
    
    .whatsapp-text {
        display: none;
    }
}