* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #667EEA;
    --primary-dark: #5568D3;
    --secondary-color: #764BA2;
    --accent-color: #F093FB;
    --text-dark: #2D3436;
    --text-light: #636E72;
    --background-light: #F8F9FA;
    --background-subtle: #F1F5FF;
    --white: #ffffff;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 8px 24px rgba(102, 126, 234, 0.15);
    --shadow-lg: 0 15px 40px rgba(0,0,0,0.12);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

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

header {
    background: var(--white);
    box-shadow: var(--shadow-sm);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.95);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.logo h1 {
    color: var(--primary-color);
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

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

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    background-attachment: fixed;
    color: var(--white);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 20px 20px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    filter: blur(80px);
    will-change: transform;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    filter: blur(80px);
    will-change: transform;
}

.hero-content h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease;
    font-weight: 800;
    letter-spacing: -1px;
    position: relative;
    z-index: 1;
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease 0.2s both;
    position: relative;
    z-index: 1;
    opacity: 0.95;
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: var(--white);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: transform 0.3s, box-shadow 0.3s;
    animation: fadeInUp 1s ease 0.4s both;
    position: relative;
    z-index: 1;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.cta-buttons-wrapper {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.4s both;
}

.mamikos-button {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: var(--white);
    border: 2px solid var(--white);
}

.mamikos-button:hover {
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
}

.gallery-section,
.facilities-section,
.coway-section,
.video-section,
.location-section,
.contact-section {
    padding: 80px 20px;
}

.promo-section {
    padding: 60px 20px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
}

.promo-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    filter: blur(80px);
    will-change: transform;
}

.promo-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    filter: blur(80px);
    will-change: transform;
}

.promo-banner {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    color: var(--white);
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.promo-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.25);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.promo-banner h3 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 800;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.promo-pricing {
    margin-bottom: 2rem;
}

.original-price {
    font-size: 1.8rem;
    text-decoration: line-through;
    opacity: 0.9;
    display: inline-block;
    letter-spacing: 0.5px;
}

.slash {
    margin-left: 0.5rem;
    font-size: 1rem;
    opacity: 0.85;
}

.promo-divider {
    width: 100%;
    height: 2px;
    background: rgba(255, 255, 255, 0.4);
    margin: 2rem 0;
}

.promo-pricing-new {
    margin-bottom: 1.5rem;
}

.discount-label {
    display: block;
    font-size: 0.95rem;
    opacity: 0.95;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.new-price {
    font-size: 3.5rem;
    font-weight: 800;
    display: inline-block;
    text-shadow: 0 3px 15px rgba(0,0,0,0.25);
    letter-spacing: -1px;
}

.promo-text {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    font-weight: 700;
}

.save-amount {
    display: inline-block;
    background: rgba(255, 255, 255, 0.25);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    margin: 0 0.5rem;
    font-weight: 800;
}

.promo-subtitle {
    font-size: 1rem;
    opacity: 0.9;
    margin-top: 1rem;
}

.gallery-section {
    background: var(--background-light);
}

.gallery-section h2,
.facilities-section h2,
.coway-section h2,
.video-section h2,
.location-section h2,
.contact-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

.slideshow-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 16 / 9;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide {
    display: none;
    position: relative;
    width: 100%;
    height: 100%;
    animation: fadeEffect 0.8s ease;
}

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

.slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9), rgba(0,0,0,0.5), transparent);
    color: var(--white);
    padding: 50px 30px 20px;
    text-align: left;
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    z-index: 5;
}

.prev,
.next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: auto;
    padding: 5px 10px;
    color: var(--white);
    font-weight: bold;
    font-size: 18px;
    transition: all 0.3s ease;
    border-radius: 0;
    background: transparent;
    user-select: none;
    z-index: 10;
    border: none;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
    opacity: 0.5;
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

.prev:hover,
.next:hover {
    background: transparent;
    opacity: 1;
    transform: translateY(-50%) scale(1.2);
}

.dots-container {
    text-align: center;
    padding: 30px 0;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.dot {
    cursor: pointer;
    height: 12px;
    width: 12px;
    margin: 0;
    background-color: #d0d0d0;
    border-radius: 50%;
    display: inline-block;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.dot:hover {
    background-color: var(--primary-color);
    transform: scale(1.3);
}

.dot.active {
    background-color: var(--primary-color);
    width: 40px;
    border-radius: 6px;
}

.fade {
    animation: fadeEffect 1s;
}

@keyframes fadeEffect {
    from { opacity: 0.4; }
    to { opacity: 1; }
}

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

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

.facility-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.facility-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

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

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

.facility-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.facility-card h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.facility-card p {
    color: var(--text-light);
}

.coway-section {
    background: linear-gradient(135deg, var(--background-subtle) 0%, var(--white) 100%);
}

.coway-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.coway-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.coway-image img {
    width: 100%;
    height: auto;
    display: block;
    max-height: 600px;
    object-fit: cover;
}

.coway-info {
    padding: 2rem;
}

.coway-info h3 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.coway-highlight {
    color: var(--secondary-color);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.coway-benefits {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.benefit-item {
    display: flex;
    gap: 1rem;
    padding: 1.2rem;
    background: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary-color);
}

.benefit-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
    border-left-color: var(--accent-color);
}

.benefit-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.benefit-text h4 {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.benefit-text p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.coway-badge {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-md);
}

.coway-badge {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-md);
}

.badge-text {
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.video-section {
    background: var(--background-light);
    padding: 80px 20px;
}

.video-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

.video-tour-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
    align-items: stretch;
}

.media-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.media-content h3 {
    color: var(--primary-color);
    font-size: 1.4rem;
    font-weight: 600;
    margin: 0;
}

.tiktok-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 600px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    padding: 1rem;
    flex: 1;
}

.tiktok-embed {
    max-width: 100%;
    margin: 0 auto;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
    flex: 1;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.map-wrapper {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    margin-bottom: 2rem;
}

.map-wrapper iframe {
    display: block;
}

.address {
    text-align: center;
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
}

.address h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.address p {
    font-size: 1.2rem;
    color: var(--text-light);
}

.nearby-locations {
    margin-top: 3rem;
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
}

.nearby-locations h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 2rem;
    font-weight: 600;
}

.locations-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

.location-item {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding: 1.2rem 1.5rem;
    background: var(--background-light);
    border-radius: 10px;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.location-item:hover {
    transform: translateX(10px);
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    border-left-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.location-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.location-item:hover .location-icon {
    transform: scale(1.1);
}

.location-item span:last-child {
    font-size: 1.05rem;
    font-weight: 500;
    flex: 1;
}

.contact-section {
    background: var(--background-light);
}

.contact-content {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
}

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

.contact-info h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.contact-info p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.contact-details {
    text-align: left;
    display: inline-block;
    margin: 1.5rem 0;
}

.contact-details p {
    margin: 0.8rem 0;
    font-size: 1.1rem;
}

.contact-button-wrapper {
    text-align: center;
}

.whatsapp-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 40px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.2rem;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: var(--shadow-md);
}

.whatsapp-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.4);
}

.instagram-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 40px;
    background: linear-gradient(135deg, #E4405F 0%, #833AB4 50%, #FD1D1D 100%);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.2rem;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: var(--shadow-md);
    margin-left: 1rem;
}

.instagram-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(224, 64, 95, 0.4);
}

.instagram-icon {
    font-size: 1.5rem;
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
}

.wa-icon {
    font-size: 1.5rem;
}

footer {
    background: var(--text-dark);
    color: var(--white);
    text-align: center;
    padding: 2rem;
}

footer p {
    margin: 0;
}

.fullscreen-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s ease;
}

.fullscreen-overlay.active {
    display: flex;
}

.fullscreen-image {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
    animation: zoomIn 0.3s ease;
}

.close-overlay {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    font-weight: bold;
    color: var(--white);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2001;
}

.close-overlay:hover {
    transform: scale(1.2);
    color: var(--accent-color);
}

.fullscreen-prev,
.fullscreen-next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: var(--white);
    font-weight: bold;
    font-size: 28px;
    padding: 10px 15px;
    background: transparent;
    border: none;
    user-select: none;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
    opacity: 0.6;
    transition: all 0.3s ease;
    z-index: 2001;
}

.fullscreen-prev {
    left: 20px;
}

.fullscreen-next {
    right: 20px;
}

.fullscreen-prev:hover,
.fullscreen-next:hover {
    opacity: 1;
    transform: translateY(-50%) scale(1.2);
}

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

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .nav-links {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero-content h2 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1.2rem;
    }
    
    .cta-buttons-wrapper {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-button {
        width: 100%;
        max-width: 300px;
    }
    
    .facilities-grid {
        grid-template-columns: 1fr;
    }
    
    .coway-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .coway-info {
        padding: 1.5rem;
    }
    
    .coway-info h3 {
        font-size: 1.5rem;
    }
    
    .coway-highlight {
        font-size: 1.1rem;
    }
    
    .slideshow-container {
        aspect-ratio: 4 / 3;
        max-width: 100%;
        border-radius: 15px;
    }
    
    .slide img {
        height: auto;
    }
    
    .slide-caption {
        padding: 25px 15px 15px;
        font-size: 1.1rem;
        background: linear-gradient(to top, rgba(0,0,0,0.85), rgba(0,0,0,0.4), transparent);
    }
    
    .prev,
    .next {
        padding: 5px 8px;
        font-size: 14px;
        left: 5px;
        opacity: 0.5;
        background: transparent;
    }
    
    .next {
        left: auto;
        right: 5px;
    }
    
    .dots-container {
        padding: 20px 0;
        gap: 8px;
    }
    
    .dot {
        height: 10px;
        width: 10px;
    }
    
    .dot.active {
        width: 30px;
    }
    
    .promo-banner {
        padding: 2rem 1.5rem;
        margin: 0 auto;
        max-width: 100%;
    }
    
    .promo-banner h3 {
        font-size: 1.8rem;
    }
    
    .original-price {
        font-size: 1.3rem;
    }
    
    .new-price {
        font-size: 2.5rem;
    }
    
    .promo-text {
        font-size: 1.1rem;
    }
    
    .promo-badge {
        font-size: 0.9rem;
        padding: 0.6rem 1.2rem;
    }
    
    .gallery-section h2,
    .facilities-section h2,
    .coway-section h2,
    .media-section h2,
    .location-section h2,
    .contact-section h2,
    .video-section h2 {
        font-size: 1.8rem;
    }
    
    .video-tour-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .media-content h3 {
        font-size: 1.2rem;
    }
    
    .tiktok-wrapper {
        min-height: 450px;
    }
    
    .video-wrapper {
        padding-bottom: 56.25%;
    }
    
    .contact-content {
        padding: 2rem 1.5rem;
    }
    
    .contact-button-wrapper {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
    
    .whatsapp-button,
    .instagram-button {
        width: 100%;
        margin: 0;
    }
    
    .nearby-locations {
        padding: 1.5rem;
    }

    .locations-grid {
        max-width: 100%;
    }
    
    .location-item {
        padding: 1rem;
        gap: 1rem;
    }
    
    .location-item span:last-child {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    nav {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }
    
    .logo h1 {
        font-size: 1.3rem;
    }
    
    .nav-links {
        font-size: 0.85rem;
        gap: 0.8rem;
    }
    
    .hero {
        padding: 70px 15px 15px;
    }
    
    .hero-content h2 {
        font-size: 1.4rem;
        margin-bottom: 0.8rem;
    }
    
    .hero-content p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
    
    .cta-button {
        padding: 12px 25px;
        font-size: 0.95rem;
    }
    
    .gallery-section,
    .facilities-section,
    .coway-section,
    .video-section,
    .location-section,
    .contact-section {
        padding: 50px 15px;
    }
    
    .promo-section {
        padding: 40px 15px;
    }
    
    .promo-banner {
        padding: 1.5rem 1rem;
    }
    
    .promo-banner h3 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .original-price {
        font-size: 1.1rem;
    }
    
    .new-price {
        font-size: 2rem;
    }
    
    .promo-pricing {
        margin-bottom: 1.5rem;
    }
    
    .promo-divider {
        margin: 1.5rem 0;
    }
    
    .promo-text {
        font-size: 1rem;
        margin-top: 1rem;
    }
    
    .promo-badge {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }
    
    .slideshow-container {
        aspect-ratio: 3 / 2;
        border-radius: 12px;
        max-width: 100%;
    }
    
    .slide-caption {
        padding: 15px 10px 10px;
        font-size: 0.95rem;
        background: linear-gradient(to top, rgba(0,0,0,0.9), rgba(0,0,0,0.5), transparent);
    }
    
    .prev,
    .next {
        padding: 4px 8px;
        font-size: 12px;
        left: 3px;
        opacity: 0.5;
        background: transparent;
    }
    
    .next {
        left: auto;
        right: 3px;
    }
    
    .dots-container {
        padding: 15px 0;
        gap: 6px;
    }
    
    .dot {
        height: 8px;
        width: 8px;
    }
    
    .dot.active {
        width: 24px;
    }
    
    .gallery-section h2,
    .facilities-section h2,
    .coway-section h2,
    .video-section h2,
    .location-section h2,
    .contact-section h2 {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .facility-card {
        padding: 1.5rem 1rem;
    }
    
    .facility-icon {
        font-size: 2.5rem;
    }
    
    .facility-card h3 {
        font-size: 1.1rem;
    }
    
    .facility-card p {
        font-size: 0.9rem;
    }
    
    .coway-info {
        padding: 1rem;
    }
    
    .coway-info h3 {
        font-size: 1.3rem;
    }
    
    .coway-highlight {
        font-size: 0.95rem;
    }
    
    .coway-benefits {
        gap: 1rem;
    }
    
    .benefit-item {
        padding: 0.8rem;
        gap: 0.8rem;
    }
    
    .benefit-icon {
        font-size: 2rem;
    }
    
    .benefit-text h4 {
        font-size: 0.95rem;
    }
    
    .benefit-text p {
        font-size: 0.85rem;
    }
    
    .video-wrapper {
        padding-bottom: 56.25%;
    }
    
    .address {
        padding: 1.5rem 1rem;
    }
    
    .address h3 {
        font-size: 1.5rem;
    }
    
    .address p {
        font-size: 1rem;
    }
    
    .nearby-locations {
        padding: 1.5rem 1rem;
        margin-top: 2rem;
    }
    
    .nearby-locations h3 {
        font-size: 1.3rem;
        margin-bottom: 1.5rem;
    }
    
    .location-item {
        padding: 0.9rem;
        gap: 0.8rem;
    }
    
    .location-item span:last-child {
        font-size: 0.9rem;
    }
    
    .location-icon {
        font-size: 1.5rem;
        width: 36px;
        height: 36px;
    }
    
    .contact-content {
        padding: 1.5rem 1rem;
    }
    
    .contact-info h3 {
        font-size: 1.5rem;
    }
    
    .contact-info p {
        font-size: 0.95rem;
    }
    
    .contact-details p {
        font-size: 0.95rem;
    }
    
    .contact-button-wrapper {
        display: flex;
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .whatsapp-button,
    .instagram-button {
        width: 100%;
        padding: 14px 20px;
        font-size: 1rem;
    }
    
    .wa-icon,
    .instagram-icon {
        font-size: 1.2rem;
    }
}
