:root {
    --bg-main: #F4F1E9;
    --bg-secondary: #E3EBE4;
    --bg-dark: #355348;
    --text-dark: #2A322E;
    --text-muted: #6B7A72;
    --primary: #355348;
    --accent: #d4a373;
    --white: #ffffff;
    --glass: rgba(255, 255, 255, 0.85);
    --radius-lg: 40px;
    --radius-md: 24px;
    --radius-sm: 12px;
    --radius-pill: 100px;
    --shadow-soft: 0 10px 40px rgba(0,0,0,0.05);
    --shadow-float: 0 20px 40px rgba(55, 83, 71, 0.15);
    --transition: all 0.5s cubic-bezier(0.25, 1, 0.3, 1);
}

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

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

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.1;
    color: var(--text-dark);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    display: block;
    object-fit: cover;
}

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

/* Typography */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--white);
    border-radius: var(--radius-pill);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary);
    box-shadow: var(--shadow-soft);
    margin-bottom: 20px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: var(--radius-pill);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.btn-primary {
    background: var(--bg-dark);
    color: var(--white);
}
.btn-primary:hover {
    background: var(--text-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-float);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--text-muted);
    color: var(--text-dark);
}
.btn-outline:hover {
    border-color: var(--bg-dark);
    color: var(--bg-dark);
}

.btn-whatsapp {
    background: #25d366;
    color: var(--white);
}
.btn-whatsapp:hover {
    background: #1da851;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
}

/* Floating Header */
.header-wrapper {
    position: fixed;
    top: 20px;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 0 20px;
    pointer-events: none;
}
.navbar {
    width: 100%;
    max-width: 1450px;
    margin: 0 auto 10px;
    background: var(--glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--radius-pill);
    padding: 15px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(255,255,255,0.5);
    pointer-events: auto;
    transition: var(--transition);
}
.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-float);
    transform: translateY(-5px);
}
.logo-area {
    display: flex;
    align-items: center;
    gap: 20px;
}
.logo img {
    height: 70px;
    transition: var(--transition);
}
.phone-badge {
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--bg-secondary);
    padding: 8px 15px;
    border-radius: var(--radius-pill);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}
.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-dark);
}
.nav-links a:hover {
    color: var(--accent);
}
/* Hide Google Translate UI completely */
.goog-te-banner-frame,
.skiptranslate iframe,
.VIpgJd-ZVi9od-ORHb-Oevmcd {
    display: none !important;
    visibility: hidden !important;
} 
body {
    top: 0px !important; 
    position: static !important;
}
html {
    top: 0px !important;
}
#goog-gt-tt, .goog-te-balloon-frame {
    display: none !important;
}
.goog-text-highlight {
    background: none !important;
    box-shadow: none !important;
}
.search-btn {
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    color: var(--text-dark);
}
.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-dark);
    cursor: pointer;
}

/* Hero Section */
.hero-wrapper {
    padding: 130px 20px 40px;
}
.hero {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    height: 80vh;
    min-height: 650px;
    display: flex;
    align-items: flex-end;
    padding: 60px;
}
.hero-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    object-fit: cover;
    z-index: 1;
}
video::-webkit-media-controls {
    display: none !important;
}
video::-webkit-media-controls-start-playback-button {
    display: none !important;
}
.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.1) 60%);
    z-index: 2;
}
.hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
}
.hero-content h1 {
    font-size: 5rem;
    color: var(--white);
    margin-bottom: 30px;
}
.hero-actions {
    display: flex;
    gap: 20px;
    align-items: center;
}

/* Floating Badges in Hero */
.float-badge {
    position: absolute;
    background: var(--white);
    border-radius: var(--radius-pill);
    padding: 10px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: var(--shadow-float);
    z-index: 3;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}
.float-badge::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 50%, rgba(255,255,255,0) 100%);
    transform: skewX(-25deg);
    animation: shimmer 3s infinite;
}
.float-badge.badge-1 {
    top: 250px;
    right: 80px;
    animation-delay: 1s;
}
.float-badge.badge-2 {
    top: 360px;
    right: 130px;
    animation-delay: 0.5s;
}
.float-badge.badge-3 {
    top: 470px;
    right: 70px;
    animation-delay: 1.5s;
}

@keyframes shimmer {
    0% { left: -100%; }
    20% { left: 200%; }
    100% { left: 200%; }
}

/* Sections General */
.section {
    padding: 100px 0;
}
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}
.section-header h2 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

/* About / Split Section */
.split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.split-images {
    position: relative;
    height: 600px;
}
.img-main {
    width: 80%;
    height: 80%;
    border-radius: var(--radius-lg);
    object-fit: cover;
    position: absolute;
    top: 0; left: 0;
    box-shadow: var(--shadow-soft);
}
.img-sub {
    width: 60%;
    height: 50%;
    border-radius: var(--radius-md);
    object-fit: cover;
    position: absolute;
    bottom: 0; right: 0;
    box-shadow: var(--shadow-float);
}
.split-text h2 {
    font-size: 3rem;
    margin-bottom: 25px;
}
.split-text p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 20px;
}

/* Team Grid (Horizontal Scroll look) */
.team-container {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 80px 40px;
    margin-top: 40px;
}
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}
.team-card {
    background: var(--bg-main);
    border-radius: var(--radius-md);
    padding: 20px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--glass-border);
}
.team-card:hover {
    transform: translateY(-10px);
    background: var(--bg-secondary);
}
.team-img {
    width: 100%;
    aspect-ratio: 1;
    border-radius: var(--radius-sm);
    overflow: hidden;
    margin-bottom: 20px;
}
.team-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}
.team-card:hover .team-img img {
    transform: scale(1.05);
}
.team-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 15px;
}
.team-card .btn {
    width: 100%;
    padding: 12px;
    font-size: 0.8rem;
}

/* Green Section (Special Massage) */
.green-section {
    background: var(--bg-secondary);
    border-radius: var(--radius-lg);
    padding: 100px 60px;
    margin: 50px 20px;
}
.green-section .split-grid {
    grid-template-columns: 1.2fr 0.8fr;
}
.green-section .img-main {
    width: 100%; height: 100%; position: relative;
    border-radius: var(--radius-md);
}

/* Dark Green Section */
.dark-section {
    background: var(--bg-dark);
    color: var(--white);
    border-radius: var(--radius-lg);
    padding: 100px 60px;
    margin: 50px 20px;
}
.dark-section h2 {
    color: var(--white);
}
.dark-section p {
    color: rgba(255,255,255,0.8);
}
.dark-section .split-grid {
    grid-template-columns: 1fr 1fr;
}

/* Footer */
.footer {
    background: var(--bg-dark);
    color: var(--white);
    padding: 100px 40px 40px;
    border-top-left-radius: var(--radius-lg);
    border-top-right-radius: var(--radius-lg);
    margin-top: 100px;
}
.footer h4 {
    color: var(--white);
    font-family: 'Outfit', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 25px;
    opacity: 0.9;
}
.footer a {
    color: rgba(255,255,255,0.7);
    display: block;
    margin-bottom: 12px;
}
.footer a:hover {
    color: var(--white);
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 80px;
}
.footer-logo {
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
    height: 90px;
}
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
}
.footer-bottom-links {
    display: flex;
    gap: 20px;
}

/* Floating WhatsApp */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: var(--shadow-float);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}
.floating-whatsapp:hover {
    transform: scale(1.1) translateY(-5px);
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}
.gallery-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    aspect-ratio: 4/5;
    box-shadow: var(--shadow-soft);
    cursor: pointer;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.gallery-item:hover img {
    transform: scale(1.05);
}

.wa-tooltip {
    position: absolute;
    right: 80px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--white);
    color: var(--text-dark);
    padding: 10px 18px;
    border-radius: var(--radius-pill);
    font-size: 0.95rem;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: var(--shadow-float);
    animation: tooltipBounce 3s infinite;
    pointer-events: none;
}
.wa-tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border-width: 6px 0 6px 6px;
    border-style: solid;
    border-color: transparent transparent transparent var(--white);
}

.notification-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: #ff3b30;
    color: white;
    font-size: 0.75rem;
    font-weight: bold;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--bg-main);
    animation: bounceBadge 2s infinite;
}

.pulse-animation::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #25d366;
    border-radius: 50%;
    z-index: -1;
    animation: pulse 2s infinite;
}

/* Animations */
@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    70% {
        transform: scale(1.5);
        opacity: 0;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

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

@keyframes tooltipBounce {
    0%, 100% { transform: translateY(-50%) translateX(0); }
    50% { transform: translateY(-50%) translateX(-8px); }
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.25, 1, 0.3, 1);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-content h1 { font-size: 4rem; }
    .hero { min-height: 550px; padding: 40px; }
    .split-text h2 { font-size: 2.6rem; }
    .section-header h2 { font-size: 3rem; }
}

@media (max-width: 992px) {
    .header-btn {
        display: none; 
    }
    .phone-badge {
        display: none; 
    }
    .nav-links {
        position: fixed;
        top: -20px;
        left: -20px;
        width: 100vw;
        height: 100vh;
        background: rgba(244, 241, 233, 0.98); /* Match --bg-main with blur */
        backdrop-filter: blur(25px);
        -webkit-backdrop-filter: blur(25px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 0;
        margin: 0;
        border-radius: 0;
        box-shadow: none;
        display: flex;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-30px);
        transition: all 0.4s ease;
        z-index: -1;
        gap: 30px !important;
    }
    .nav-links.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    .nav-links a {
        font-size: 2.5rem;
        font-family: 'Playfair Display', serif;
        text-transform: capitalize;
        color: var(--primary);
        letter-spacing: 1px;
    }
    .menu-toggle {
        display: block;
        z-index: 10;
        position: relative;
    }
    
    .hero-content h1 { font-size: 3.5rem; }
    .hero { min-height: 500px; padding: 40px 30px; }
    .float-badge.top-right { top: 80px; right: 30px; }
    .float-badge.bottom-right { bottom: 80px; right: 30px; }
    
    .split-grid, .green-section .split-grid, .dark-section .split-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .split-images {
        height: 400px;
        order: -1;
    }
    .green-section .split-images, .dark-section .split-images {
        height: 350px !important;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    .green-section, .dark-section {
        padding: 60px 30px;
        margin: 30px 10px;
    }
    .team-container {
        padding: 50px 30px;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 12px 20px;
    }
    .logo img {
        height: 65px; /* Enlarged mobile logo even more */
    }
    .phone-badge a {
        display: none; 
    }
    .phone-badge {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
    
    .section {
        padding: 60px 0;
    }
    .hero-wrapper {
        padding: 10px 10px 20px; /* Let the slider go to the very top, behind the header */
    }
    .hero {
        padding: 110px 20px 30px; /* Push the internal content down so it doesn't get covered by the floating header */
        border-radius: var(--radius-md);
        height: auto;
        min-height: 700px; /* Adjusted to exact requested height */
    }
    .hero-content h1 {
        font-size: 2.8rem;
    }
    .float-badge {
        font-size: 0.75rem;
        padding: 8px 15px;
    }
    .float-badge.badge-1 { top: 120px; right: 15px; }
    .float-badge.badge-2 { top: 180px; right: 40px; }
    .float-badge.badge-3 { top: 240px; right: 10px; }
    
    .section-header h2 {
        font-size: 2.4rem;
    }
    .split-text h2 {
        font-size: 2.2rem;
    }
    .split-text p {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .logo img {
        height: 65px; /* Fixed: Forced enlargement for all mobile devices */
    }
    .hero-content h1 {
        font-size: 2.2rem;
    }
    .hero-actions {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
    .hero-actions .btn {
        width: 100%;
    }
    .float-badge {
        display: none; /* Hide floating badges on very small screens to avoid clutter */
    }
    
    .split-images {
        height: 300px;
    }
    .img-main {
        width: 90%;
        height: 90%;
    }
    .img-sub {
        width: 50%;
        height: 45%;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    .split-text h2 {
        font-size: 1.8rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-top: 30px;
    }
    
    .green-section, .dark-section {
        padding: 40px 20px;
        border-radius: var(--radius-md);
    }
    .team-container {
        padding: 40px 15px;
    }
    
    .footer {
        padding: 60px 20px 30px;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    .footer-bottom-links {
        flex-direction: column;
        gap: 10px;
    }
    
    .floating-whatsapp {
        width: 50px;
        height: 50px;
        font-size: 25px;
        bottom: 20px;
        right: 20px;
    }
}

/* Hero Wxman Image */
.hero-wxman {
    position: absolute;
    right: 25%;
    bottom: 0;
    height: 85%;
    max-width: 450px;
    object-fit: contain;
    z-index: 4; /* Below float badges (3) but above overlay (2)? Wait, badges are 3. Content is 3. Overlay is 2. Let's make it 2, or 3. Let's make it 3. */
}

@media (max-width: 1200px) {
    .hero-wxman {
        right: 15%;
        height: 70%;
    }
}

@media (max-width: 992px) {
    .hero-wxman {
        display: none; /* Hide on mobile so it doesn't break layout */
    }
}
