/* Professional Spa Website Styles */
:root {
    --primary-color: #007AFF;
    --secondary-color: #F2F2F7;
    --accent-color: #1C1C1E;
    --light-blue: #E3F2FD;
    --light-gray: #F2F2F7;
    --purple: #5856D6;
    --light-purple: #E8E8F7;
    --medium-gray: #8E8E93;
    --dark-purple: #3A3A3C;
    --pale-purple: #F5F5F7;
    --text-primary: #1C1C1E;
    --text-secondary: #8E8E93;
    --text-tertiary: #C7C7CC;
    --background-primary: #FFFFFF;
    --background-secondary: #F2F2F7;
    --background-tertiary: #FFFFFF;
    --border-color: #E5E5EA;
    --shadow-light: rgba(0, 0, 0, 0.04);
    --shadow-medium: rgba(0, 0, 0, 0.08);
    --shadow-heavy: rgba(0, 0, 0, 0.12);
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    line-height: 1.47059;
    color: var(--text-primary);
    background-color: var(--background-primary);
    font-size: 17px;
    font-weight: 400;
    letter-spacing: -0.022em;
}

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

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 0.5px solid var(--border-color);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.nav-logo-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    border-radius: 8px;
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-link {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 400;
    font-size: 17px;
    transition: color 0.2s ease;
    padding: 8px 0;
}

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

.nav-link.active {
    color: var(--primary-color);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
    position: relative;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
    pointer-events: none;
}

.hamburger:hover {
    background: rgba(8, 156, 200, 0.1);
    border-radius: 5px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

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

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Hero Section */
.hero {
    background: var(--background-primary);
    color: var(--text-primary);
    padding: 120px 0 80px;
    text-align: center;
}

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

.hero-logo {
    margin-bottom: 30px;
}

.hero-logo-img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
}

.hero-title {
    font-size: 56px;
    font-weight: 600;
    margin-bottom: 8px;
    letter-spacing: -0.005em;
    line-height: 1.07143;
}

.hero-subtitle {
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 19px;
    color: var(--text-secondary);
    line-height: 1.14286;
}

.hero-description {
    font-size: 21px;
    font-weight: 400;
    margin-bottom: 40px;
    color: var(--text-secondary);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.381;
}

.cta-button {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 12px 24px;
    border-radius: 980px;
    text-decoration: none;
    font-weight: 400;
    font-size: 17px;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background: #0056CC;
    transform: scale(1.02);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 20px;
}

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

/* Services Section */
.services {
    padding: 80px 0;
    background: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--light-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.service-icon i {
    font-size: 2rem;
    color: white;
}

.service-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.service-card p {
    color: #666;
    line-height: 1.6;
}

/* About Section */
.about {
    padding: 80px 0;
    background: var(--secondary-color);
}

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

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 30px;
}

.about-text p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.7;
}

.about-image-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, var(--light-blue), var(--pale-purple));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-image-placeholder i {
    font-size: 4rem;
    color: white;
}

/* Info Section */
.info {
    padding: 80px 0;
    background: white;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.info-card {
    text-align: center;
    padding: 40px 20px;
}

.info-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--light-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.info-icon i {
    font-size: 1.8rem;
    color: white;
}

.info-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.info-card p {
    color: #666;
    line-height: 1.6;
}

.info-card strong {
    color: var(--accent-color);
}

/* Footer */
.footer {
    background: var(--background-primary);
    color: var(--text-primary);
    padding: 60px 0 40px;
    border-top: 0.5px solid var(--border-color);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.footer-logo-img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    border-radius: 10px;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-link {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.2s ease;
    font-size: 17px;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 44px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 44px);
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: saturate(180%) blur(20px);
        -webkit-backdrop-filter: saturate(180%) blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 40px;
        transition: left 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        border-right: 0.5px solid var(--border-color);
        z-index: 999;
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .nav-link {
        margin: 16px 0;
        font-size: 21px;
        font-weight: 400;
        padding: 12px 24px;
        border-radius: 980px;
        transition: all 0.2s ease;
    }
    
    .nav-link:hover {
        background: var(--primary-color);
        color: white;
        transform: scale(1.02);
    }
    
    .hero-title {
        font-size: 40px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .service-card {
        padding: 30px 20px;
    }
}


/* Remove link underline from service cards */
.service-card {
    text-decoration: none !important;
    color: inherit; /* Keep normal text color */
    display: block; /* Ensure the whole card is clickable */
    border-radius: 12px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: none;
    outline: none;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
    text-decoration: none !important;
    color: inherit;
}

.service-card:focus {
    text-decoration: none !important;
    outline: none;
}

.service-card:visited {
    text-decoration: none !important;
    color: inherit;
}

.service-card h3,
.service-card p {
    text-decoration: none !important;
    color: inherit;
}

.service-card h3:hover,
.service-card p:hover {
    text-decoration: none !important;
    color: inherit;
}

/* Map Card Styles */
.map-card {
    grid-column: span 2;
}

.map-container {
    margin: 20px 0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.map-container iframe {
    display: block;
    width: 100%;
    height: 200px;
    border: none;
    border-radius: 10px;
}

/* Google Maps Link */
.map-link {
    display: inline-block;
    margin-top: 15px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.map-link:hover {
    color: var(--accent-color);
    text-decoration: none;
}

.map-link i {
    margin-right: 5px;
}

/* Responsive Map */
@media (max-width: 768px) {
    .map-card {
        grid-column: span 1;
    }
    
    .map-container iframe {
        height: 180px;
    }
}

/* WhatsApp Button */
.whatsapp-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    z-index: 1000;
}

.whatsapp-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
    text-decoration: none;
}

.whatsapp-button i {
    font-size: 30px;
    color: white;
}

/* Responsive WhatsApp Button */
@media (max-width: 768px) {
    .whatsapp-button {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }
    
    .whatsapp-button i {
        font-size: 25px;
    }
}

/* Products Page Styles */
.products-hero {
    background: var(--background-primary);
    color: var(--text-primary);
    padding: 80px 0 30px;
    text-align: center;
}

.products-hero .section-header h1 {
    color: var(--text-primary);
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 8px;
    letter-spacing: -0.003em;
    line-height: 1.08333;
}

.products-hero .section-header p {
    color: var(--text-secondary);
    font-size: 21px;
    font-weight: 400;
    line-height: 1.381;
}

.products-section {
    padding: 80px 0;
    background: var(--background-secondary);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 350px));
    gap: 30px;
    margin-top: 40px;
    justify-content: center;
}

.product-card {
    background: var(--background-primary);
    border-radius: 18px;
    box-shadow: 0 4px 16px var(--shadow-light);
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 0.5px solid var(--border-color);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px var(--shadow-medium);
    border-color: var(--primary-color);
}

.product-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
}

.product-image img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.02);
}

.product-info {
    padding: 24px;
}

.product-title {
    font-size: 22px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
    line-height: 1.27273;
    letter-spacing: -0.022em;
}

.product-description {
    color: var(--text-secondary);
    line-height: 1.47059;
    margin-bottom: 16px;
    font-size: 17px;
    font-weight: 400;
}

.product-price {
    font-size: 28px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 20px;
    letter-spacing: -0.003em;
}

.whatsapp-product-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #25D366;
    color: white;
    padding: 12px 24px;
    border-radius: 980px;
    text-decoration: none;
    font-weight: 400;
    font-size: 17px;
    transition: all 0.2s ease;
    width: 100%;
    justify-content: center;
    border: none;
    cursor: pointer;
}

.whatsapp-product-button:hover {
    background: #20B858;
    transform: scale(1.02);
    text-decoration: none;
    color: white;
}

.whatsapp-product-button i {
    font-size: 1.2rem;
}

/* Active navigation link */
.nav-link.active {
    color: var(--primary-color);
    font-weight: 600;
}

/* Responsive Products */
@media (max-width: 768px) {
    .products-hero {
        padding: 60px 0 25px;
    }
    
    .products-hero .section-header h1 {
        font-size: 36px;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 320px));
        gap: 25px;
        margin-top: 30px;
    }
    
    .product-card {
        margin: 0 10px;
    }
    
    .product-image {
        height: 180px;
        padding: 12px;
    }
    
    .product-info {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .products-hero {
        padding: 50px 0 20px;
    }
    
    .products-hero .section-header h1 {
        font-size: 32px;
    }
    
    .products-hero .section-header p {
        font-size: 1rem;
    }
    
    .product-info {
        padding: 20px;
    }
    
    .product-title {
        font-size: 1.2rem;
    }
    
    .product-price {
        font-size: 1.3rem;
    }
    
    .whatsapp-product-button {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .product-image {
        height: 160px;
        padding: 10px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 350px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .product-card {
        margin: 0;
    }
}