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

:root {
    --primary-color: #2e7d32;
    --secondary-color: #66bb6a;
    --accent-color: #ffa726;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --shadow: 0 2px 10px rgba(0,0,0,0.1);
    --shadow-hover: 0 5px 20px rgba(0,0,0,0.15);
}

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

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Navigation - Mobile First */
.navbar {
    background: var(--bg-white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--primary-color);
}

.nav-logo {
    height: 40px;
    width: auto;
    object-fit: contain;
}

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

.nav-toggle {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: all 0.3s;
}

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

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

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

.nav-menu {
    position: fixed;
    left: -100%;
    top: 60px;
    width: 100%;
    height: calc(100vh - 60px);
    background: var(--bg-white);
    list-style: none;
    padding: 2rem 0;
    transition: left 0.3s;
    overflow-y: auto;
}

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

.nav-link {
    display: block;
    padding: 1rem 2rem;
    color: var(--text-dark);
    text-decoration: none;
    transition: background 0.3s;
}

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

/* Hero Section - Mobile First */
.hero {
    background: linear-gradient(135deg, rgba(46, 125, 50, 0.1) 0%, rgba(102, 187, 106, 0.1) 100%), 
                url('../images/massage_with_logo.webp') center/cover no-repeat;
    color: white;
    padding: 3rem 0;
    text-align: center;
    min-height: 60vh;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-content {
    width: 100%;
    padding: 0 15px;
}

.hero-title {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.hero-icon {
    font-size: 1.8rem;
}

.hero-tagline {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 300;
}

.hero-description {
    font-size: 1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

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

/* Fix Font Awesome icon alignment in all buttons */
.btn i {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    vertical-align: middle;
}

/* Specific fix for WhatsApp icons in buttons */
.btn i.fab.fa-whatsapp,
.btn i.fa-whatsapp {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

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

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

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

.btn-block {
    width: 100%;
    justify-content: center;
}

/* Offer Banner */
.offer-banner {
    background: linear-gradient(135deg, #ffa726 0%, #ffb74d 100%);
    color: white;
    padding: 2rem 0;
    text-align: center;
}

.offer-content {
    position: relative;
}

.offer-badge {
    background: rgba(255,255,255,0.3);
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    display: inline-block;
    margin-bottom: 10px;
}

.offer-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.offer-text {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.offer-bonus {
    font-size: 0.95rem;
    opacity: 0.95;
}

/* Services Section */
.services {
    padding: 3rem 0;
    background: var(--bg-light);
}

.section-title {
    text-align: center;
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.service-card {
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: var(--shadow);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

/* Service card background images */
.service-card:nth-child(1) {
    background: linear-gradient(rgba(255,255,255,0.95), rgba(255,255,255,0.95)), 
                url('../images/massage_with_logo.webp') center/cover no-repeat;
}

.service-card:nth-child(2),
.service-card:nth-child(3),
.service-card:nth-child(5) {
    background: linear-gradient(rgba(255,255,255,0.95), rgba(255,255,255,0.95)), 
                url('../images/herbs_withlogo.webp') center/cover no-repeat;
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

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

.service-card p {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.service-list {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-list li {
    padding: 0.3rem 0;
    font-size: 0.9rem;
    color: var(--text-dark);
    position: relative;
    padding-left: 20px;
}

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

.btn-service {
    display: inline-block;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    padding: 8px 16px;
    border: 2px solid var(--primary-color);
    border-radius: 20px;
    transition: all 0.3s;
    font-size: 0.9rem;
}

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

/* Academy & Partnerships Section */
.academy-partnerships {
    padding: 3rem 0;
    background: white;
}

.academy-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.academy-card {
    background: var(--bg-light);
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: var(--shadow);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.academy-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

/* Academy card background images */
.academy-card:nth-child(1),
.academy-card:nth-child(2) {
    background: linear-gradient(rgba(248,249,250,0.95), rgba(248,249,250,0.95)), 
                url('../images/herbs_withlogo.webp') center/cover no-repeat;
}

.academy-card:nth-child(3) {
    background: linear-gradient(rgba(248,249,250,0.95), rgba(248,249,250,0.95)), 
                url('../images/massage_with_logo.webp') center/cover no-repeat;
}

.academy-card:nth-child(4) {
    background: linear-gradient(rgba(248,249,250,0.95), rgba(248,249,250,0.95)), 
                url('../images/herbs_withlogo.webp') center/cover no-repeat;
}

.academy-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

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

.academy-card p {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.academy-list {
    list-style: none;
    margin-bottom: 1.5rem;
}

.academy-list li {
    padding: 0.3rem 0;
    font-size: 0.9rem;
    color: var(--text-dark);
    position: relative;
    padding-left: 20px;
}

.academy-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

.btn-academy {
    display: inline-block;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    padding: 8px 16px;
    border: 2px solid var(--primary-color);
    border-radius: 20px;
    transition: all 0.3s;
    font-size: 0.9rem;
}

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

/* Partnership Benefits */
.partnership-benefits {
    margin-top: 3rem;
    text-align: center;
}

.partnership-benefits h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

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

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

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

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

/* Why Choose Section */
.why-choose {
    padding: 3rem 0;
    background: var(--bg-light);
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.feature {
    text-align: center;
    padding: 1.5rem;
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.feature h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

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

/* Contact Section */
.contact {
    padding: 3rem 0;
    background: var(--bg-light);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    width: 30px;
    display: flex !important;
    align-items: center;
    justify-content: center;
}

/* Specific fix for WhatsApp icon in contact section */
.contact-item i.fab.fa-whatsapp {
    display: flex !important;
    align-items: center;
    justify-content: center;
}

.contact-item h4 {
    color: var(--primary-color);
    margin-bottom: 0.3rem;
    font-size: 1rem;
}

.contact-item p {
    color: var(--text-dark);
    font-size: 0.9rem;
}

.contact-item a {
    color: var(--primary-color);
    text-decoration: none;
}

.contact-item small {
    color: var(--text-light);
    font-size: 0.85rem;
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.map-container iframe {
    border-radius: 10px;
}

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

/* CTA Section */
.cta {
    background: linear-gradient(135deg, #2e7d32 0%, #66bb6a 100%);
    color: white;
    padding: 3rem 0;
    text-align: center;
}

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

.cta p {
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 2rem 0 1rem;
}

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

.footer-brand h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.footer-brand p {
    opacity: 0.8;
    font-size: 0.9rem;
}

.footer-links h5,
.footer-social h5 {
    margin-bottom: 1rem;
    font-size: 1rem;
}

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

.footer-links a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    font-size: 0.9rem;
    display: block;
    padding: 0.3rem 0;
    transition: opacity 0.3s;
}

.footer-links a:hover {
    opacity: 1;
}

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

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.85rem;
    opacity: 0.7;
}

/* Floating Action Buttons */
.fab-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 999;
}

.fab {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: var(--shadow-hover);
    transition: all 0.3s;
    font-size: 1.2rem;
}

/* Fix Font Awesome icon alignment in circular buttons */
.fab i {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

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

.fab-whatsapp {
    background: #25d366;
    color: white;
}

.fab:hover {
    transform: scale(1.1);
}

/* Tablet Styles */
@media (min-width: 768px) {
    /* Navigation */
    .nav-toggle {
        display: none;
    }
    
    .nav-menu {
        position: static;
        width: auto;
        height: auto;
        background: transparent;
        display: flex;
        flex-direction: row;
        padding: 0;
        left: 0;
    }
    
    .nav-link {
        padding: 0.5rem 1rem;
    }
    
    .nav-logo {
        height: 50px;
    }
    
    /* Hero */
    .hero {
        min-height: 70vh;
        padding: 4rem 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-tagline {
        font-size: 1.5rem;
    }
    
    /* Services Grid */
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    /* Academy Grid */
    .academy-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    /* Benefits Grid */
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    /* Features Grid */
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    /* Contact Grid */
    .contact-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 2fr 1fr 1fr;
        gap: 3rem;
    }
}

/* Desktop Styles */
@media (min-width: 1024px) {
    /* Hero */
    .hero-title {
        font-size: 3rem;
    }
    
    /* Services Grid */
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    /* Academy Grid */
    .academy-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
    
    /* Benefits Grid */
    .benefits-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
    }
    
    /* Features Grid */
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    /* Sections Padding */
    .services,
    .academy-partnerships,
    .why-choose,
    .contact,
    .cta {
        padding: 4rem 0;
    }
}

/* Large Desktop */
@media (min-width: 1200px) {
    .services-grid {
        gap: 2.5rem;
    }
    
    .service-card {
        padding: 2rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card,
.feature {
    animation: fadeIn 0.6s ease-out;
}
