/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #FF6B6B;
    --secondary-color: #e77f24;
    --accent-color: #FF8E53;
    --dark-color: #2C3E50;
    --light-color: #F8F9FA;
    --text-color: #333;
    --text-light: #666;
    --gold-color: #D4AF37;
    --cream-color: #FFF8E7;
    --cream-dark: #F5E6D3;
    --gradient-1: linear-gradient(135deg, #FF6B6B 0%, #FFD93D 100%);
    --gradient-2: linear-gradient(135deg, #FF8E53 0%, #FF6B6B 100%);
    --gradient-3: linear-gradient(135deg, #FFD93D 0%, #FF8E53 100%);
    --gradient-cream: linear-gradient(180deg, #FFF8E7 0%, #F5E6D3 100%);
    --shadow-sm: 0 2px 10px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.15);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.2);
}

/* Enable hardware acceleration */
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Performance optimizations */
.service-card,
.usp-card,
.package-card,
.highlight-box {
    contain: layout style paint;
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Responsive Hero */
@media (max-width: 968px) {
    .hero-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-image-wrapper {
        order: -1;
    }
    
    .name-meaning {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .meaning-separator {
        display: none;
    }
    
    .nav-cta {
        display: none !important;
    }
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 20px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    color: var(--dark-color);
}

.logo-image {
    width: 150px;
    height: 80px;
    object-fit: contain;
    display: block;
}

.logo-text-wrapper {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-text-main {
    font-size: 1.3rem;
    font-weight: 700;
    font-family: 'Georgia', serif;
    color: var(--dark-color);
}

.logo-text-sub {
    font-size: 0.9rem;
    font-weight: 600;
    font-family: 'Georgia', serif;
    color: var(--dark-color);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-1);
    transition: width 0.3s ease;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-cta {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.btn-nav-call {
    padding: 0.6rem 1.2rem;
    border: 2px solid var(--secondary-color);
    border-radius: 50px;
    text-decoration: none;
    color: var(--dark-color);
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.btn-nav-call:hover {
    background: var(--secondary-color);
    color: white;
}

.btn-nav-whatsapp {
    padding: 0.6rem 1.2rem;
    background: var(--secondary-color);
    border-radius: 50px;
    text-decoration: none;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.btn-nav-whatsapp:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--dark-color);
    transition: all 0.3s ease;
}

/* Buttons */
.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background: var(--secondary-color);
    color: var(--dark-color);
    box-shadow: var(--shadow-md);
    font-weight: 600;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    background: var(--accent-color);
    color: white;
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-secondary {
    background: transparent;
    color: var(--dark-color);
    border: 2px solid var(--secondary-color);
    font-weight: 600;
}

.btn-secondary:hover {
    background: var(--secondary-color);
    color: var(--dark-color);
    transform: translateY(-2px);
}

.btn-secondary:active {
    transform: translateY(0);
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--gradient-cream);
    color: var(--text-color);
    padding-top: 80px;
    overflow: hidden;
}

@media (max-width: 768px) {
    .hero {
        overflow: visible;
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-cream);
    z-index: 0;
}

.hero-wrapper {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem 20px;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.premium-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--cream-color);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    font-size: 0.85rem;
    color: var(--secondary-color);
    font-weight: 600;
}

.premium-tag i {
    color: var(--secondary-color);
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
    font-family: 'Georgia', serif;
}

.title-part {
    display: inline-block;
    color: var(--dark-color);
}

.title-part.highlight {
    color: var(--secondary-color);
}

.hero-tagline {
    font-size: 1.3rem;
    font-weight: 300;
    font-style: italic;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.hero-description {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: var(--text-light);
}

.name-meaning {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1rem 0;
    border-top: 1px solid rgba(0,0,0,0.1);
    border-bottom: 1px solid rgba(0,0,0,0.1);
            display: ruby-text;
    animation: marquee-scroll 15s linear infinite;
}

.meaning-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.meaning-word {
    color: var(--text-color);
    font-weight: 600;
}

.meaning-separator {
    color: var(--text-light);
}

.meaning-definition {
    color: var(--secondary-color);
    font-weight: 600;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.trust-indicator {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}

.stars {
    display: flex;
    gap: 0.3rem;
    color: var(--secondary-color);
    font-size: 1.2rem;
}

.trust-indicator p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.trust-indicator strong {
    color: var(--dark-color);
    font-weight: 700;
}

.hero-image-wrapper {
    position: relative;
    z-index: 1;
}

.image-placeholder {
    width: 100%;
    /* aspect-ratio: 4/5; */
    background: linear-gradient(135deg, #e0e0e0 0%, #f5f5f5 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    position: relative;
}

.placeholder-content {
    text-align: center;
    color: var(--text-light);
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.placeholder-content img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.placeholder-content i {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: var(--text-light);
    opacity: 0.5;
}

.placeholder-content p {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.placeholder-content span {
    font-size: 0.9rem;
    color: var(--text-light);
}

.booking-tag {
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--cream-color);
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--secondary-color);
    font-weight: 600;
    box-shadow: var(--shadow-md);
    z-index: 3;
}

.booking-tag i {
    color: var(--secondary-color);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.2);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-2px);
    background: rgba(255,255,255,0.3);
}

.feature-item i {
    font-size: 1.2rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    color: white;
    font-size: 2rem;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Edge Parallax Effect */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-cream);
    z-index: 0;
    transform-origin: left center;
    will-change: transform;
}

.hero-image-wrapper {
    will-change: transform;
}

/* Parallax layers */
.hero-content {
    will-change: transform;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Section Styles */
section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-1);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-top: 1rem;
}

/* About Section */
.about-section {
    background: var(--light-color);
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-text h3 {
    font-size: 2rem;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 2rem;
    text-align: center;
}

.about-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.highlight-box {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.highlight-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.highlight-box i {
    font-size: 3rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}

.highlight-box h4 {
    font-size: 1.3rem;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.highlight-box p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* USP Section */
.usp-section {
    background: white;
}

.usp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.usp-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.usp-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.usp-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    transition: all 0.3s ease;
}

.usp-card:hover .usp-icon {
    transform: scale(1.1);
}

.usp-card h3 {
    font-size: 1.2rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.usp-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Services Section */
.services-section {
    background: var(--light-color);
}

.service-category {
    margin-bottom: 4rem;
}

.category-title {
    font-size: 2rem;
    color: var(--dark-color);
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.category-title i {
    color: var(--primary-color);
}

.category-description {
    color: var(--text-light);
    margin-bottom: 2rem;
    text-align: center;
    font-style: italic;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.service-card {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary-color);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.service-card.featured {
    border-left-color: var(--secondary-color);
    background: linear-gradient(135deg, #fff 0%, #fff9e6 100%);
}

.service-card.featured:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(255, 217, 61, 0.2);
}

.service-card.premium {
    border-left-color: #FF8E53;
    background: linear-gradient(135deg, #fff 0%, #ffe6f0 100%);
}

.service-card.premium:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(255, 142, 83, 0.2);
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.5rem;
    gap: 1rem;
}

.service-header h4 {
    font-size: 1rem;
    color: var(--dark-color);
    font-weight: 600;
    flex: 1;
}

.price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    white-space: nowrap;
}

.service-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.service-details {
    font-size: 0.85rem;
    color: var(--text-light);
    font-style: italic;
    margin-top: 0.5rem;
}

.package-note {
    font-size: 0.85rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-top: 0.5rem;
}

.facial-category {
    margin-bottom: 2rem;
}

.facial-category-title {
    font-size: 1.5rem;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
    padding-left: 1rem;
    border-left: 4px solid var(--secondary-color);
}

.machine-note {
    background: #fff3cd;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    border-left: 4px solid var(--secondary-color);
    margin-top: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.machine-note i {
    color: var(--accent-color);
    font-size: 1.5rem;
}

.machine-note p {
    color: var(--text-color);
    margin: 0;
}

/* Packages Section */
.packages-section {
    background: white;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.package-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
}

.package-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.package-card.featured {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, #fff 0%, #fff9e6 100%);
}

.package-card.featured:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(255, 107, 107, 0.3);
}

.package-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--gradient-1);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: var(--shadow-md);
}

.package-card h3 {
    font-size: 1.5rem;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
    margin-top: 1rem;
}

.package-price {
    display: flex;
    align-items: baseline;
    margin-bottom: 2rem;
    gap: 0.3rem;
}

.package-price .currency {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 600;
}

.package-price .amount {
    font-size: 3rem;
    color: var(--primary-color);
    font-weight: 800;
}

.package-description {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.package-list {
    list-style: none;
    margin-bottom: 2rem;
}

.package-list li {
    padding: 0.8rem 0;
    border-bottom: 1px solid #eee;
    color: var(--text-color);
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}

.package-list li:last-child {
    border-bottom: none;
}

.package-list i {
    color: var(--primary-color);
    margin-top: 0.3rem;
    flex-shrink: 0;
}

.package-list strong {
    color: var(--dark-color);
}

/* Contact Section */
.contact-section {
    background: var(--gradient-1);
    color: white;
}

.contact-section .section-title,
.contact-section .section-subtitle {
    color: white;
}

.contact-section .section-title::after {
    background: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info h3,
.cta-buttons h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    background: rgba(255,255,255,0.1);
    padding: 1.5rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.contact-item i {
    font-size: 2rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
}

.contact-item h4 {
    margin-bottom: 0.5rem;
}

.contact-item a {
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    transition: opacity 0.3s ease;
}

.contact-item a:hover {
    opacity: 0.8;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cta-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 1.5rem;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 15px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-btn:hover {
    background: rgba(255,255,255,0.25);
    transform: translateX(5px);
    border-color: rgba(255,255,255,0.5);
}

.cta-btn i {
    font-size: 1.5rem;
    width: 40px;
    text-align: center;
}

/* Footer */
.footer {
    background: #3E2723;
    color: rgba(255,255,255,0.9);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 2rem;
}

.footer-brand {
    max-width: 400px;
}

.footer-logo-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1.5rem;
}

.footer-logo-image {
    width: 60px;
    height: 60px;
    object-fit: contain;
    display: block;
}

.footer-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.footer-logo-main {
    font-size: 1.5rem;
    font-weight: 700;
    font-family: 'Georgia', serif;
    color: white;
}

.footer-logo-sub {
    font-size: 1rem;
    font-weight: 400;
    font-family: 'Georgia', serif;
    color: rgba(255,255,255,0.9);
}

.footer-description {
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
    font-size: 0.95rem;
}

.footer-links h4,
.footer-services h4 {
    margin-bottom: 1.5rem;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
}

.footer-links ul,
.footer-services ul {
    list-style: none;
}

.footer-links li,
.footer-services li {
    margin-bottom: 0.8rem;
}

.footer-links a,
.footer-services a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-links a:hover,
.footer-services a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.footer-divider {
    width: 100%;
    height: 1px;
    background: rgba(255,255,255,0.2);
    margin: 2rem 0 1.5rem;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    margin: 0;
}

.heart-icon {
    color: #FF6B6B;
    font-size: 1rem;
}

/* Floating WhatsApp Button */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    box-shadow: var(--shadow-lg);
    z-index: 999;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
    text-decoration: none;
    border: none;
    outline: none;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(37, 211, 102, 0.6);
    text-decoration: none;
}

.floating-whatsapp:focus,
.floating-whatsapp:active {
    text-decoration: none;
    outline: none;
    border: none;
}

.floating-whatsapp i {
    text-decoration: none;
    border: none;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Hide nav-cta on mobile */
    .nav-cta {
        display: none !important;
    }

    /* Bigger logo on mobile */
    .logo-image {
        width: 80px !important;
        height: 80px !important;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-md);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    /* Hero section mobile adjustments */
    .hero {
        padding-top: 90px;
        min-height: auto;
        padding-bottom: 2rem;
    }

    .hero-wrapper {
        gap: 0rem;
        padding: 1rem 0px;
        display: flex;
        flex-direction: column;
        width: 100%;
        max-width: 100%;
        overflow: visible;
    }

    .hero-content {
        text-align: center;
        width: 100%;
        order: 2;
        padding: 0;
        position: relative;
        z-index: 2;
        visibility: visible;
        opacity: 1;
    }

    .premium-tag {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
        margin-bottom: 1rem;
    }

    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 0.8rem;
    }

    .hero-tagline {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }
    
    .hero-description {
        font-size: 0.9rem;
        margin-bottom: 1rem;
        line-height: 1.6;
    }

    .name-meaning {
        justify-content: center;
        margin-bottom: 1rem;
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .hero-cta {
        flex-direction: column;
        align-items: stretch;
        gap: 0.8rem;
        margin-bottom: 1rem;
    }
    
    .hero-cta .btn-primary,
    .hero-cta .btn-secondary {
        width: 100%;
        text-align: center;
        padding: 0.9rem 1rem;
        font-size: 0.95rem;
    }

    .trust-indicator {
        justify-content: center;
        flex-wrap: wrap;
        gap: 0.5rem;
        margin-top: 1rem;
    }

    .trust-indicator p {
        font-size: 0.85rem;
    }

    /* Hero image mobile adjustments - auto adjust */
    .hero-image-wrapper {
        order: 1;
        /* margin-bottom: 1rem; */
        width: 100%;
        position: relative;
    }

    .image-placeholder {
        width: 100%;
        height: auto;
        min-height: 250px;
        max-height: 400px;
        border-radius: 15px;
        overflow: hidden;
        position: relative;
        display: block;
    }

    .image-placeholder img {
        width: 100%;
        height: auto;
        max-height: 400px;
        object-fit: cover;
        object-position: center;
        display: block;
    }

    .placeholder-content {
        width: 100%;
        height: auto;
        position: relative;
        display: block;
    }

    .placeholder-content img {
        width: 100%;
        height: auto;
        max-height: 400px;
        object-fit: cover;
        object-position: center;
        display: block;
    }

    .booking-tag {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 1rem;
        
        display: inline-flex;
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
        display: none;
    }

    .section-title {
        font-size: 2rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .packages-grid {
        grid-template-columns: 1fr;
    }

    .service-grid {
        grid-template-columns: 1fr;
    }

    .usp-grid {
        grid-template-columns: 1fr;
    }

    .about-highlights {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    /* Sticky bottom navigation for mobile */
    .mobile-bottom-nav {
        display: flex;
    }

    /* Adjust floating WhatsApp button position for mobile */
    .floating-whatsapp {
        bottom: 90px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        text-decoration: none;
    }

    .floating-whatsapp:hover {
        text-decoration: none;
    }

    .floating-whatsapp i {
        text-decoration: none;
    }

    /* Add padding to body for bottom nav */
    body {
        padding-bottom: 70px;
    }
}

/* Sticky Bottom Navigation for Mobile */
.mobile-bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
    padding: 0.5rem 0;
}

.mobile-bottom-nav ul {
    display: flex;
    justify-content: space-around;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    width: -webkit-fill-available;
    width: -moz-available;
    width: fill-available;
    width: 100%;
}

.mobile-bottom-nav li {
    flex: 1;
    text-align: center;
}

.mobile-bottom-nav a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    padding: 0.5rem;
    text-decoration: none;
    color: var(--text-light);
    font-size: 0.75rem;
    transition: all 0.3s ease;
    border: none;
    outline: none;
}

.mobile-bottom-nav a:focus,
.mobile-bottom-nav a:active {
    text-decoration: none;
    outline: none;
}

.mobile-bottom-nav a i {
    font-size: 1.2rem;
}

.mobile-bottom-nav a.active,
.mobile-bottom-nav a:hover {
    color: var(--secondary-color);
    text-decoration: none;
}

.mobile-bottom-nav a.active i {
    transform: scale(1.1);
}

.mobile-bottom-nav a.whatsapp-link {
    color: #25D366;
}

.mobile-bottom-nav a.whatsapp-link:hover {
    color: #25D366;
    opacity: 0.8;
}

@media (max-width: 480px) {
    /* Even bigger logo on small mobile */
    .logo-image {
        width: 90px !important;
        height: 90px !important;
    }

    .hero-title {
        font-size: 2rem;
        display: flex;
        gap: 10px;
    }
    
    .title-part {
        display: block;
    }

    .hero-tagline {
        font-size: 1.1rem;
    }

    .hero-description {
        font-size: 0.9rem;
    }

    .btn-large {
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
    }

    .package-card {
        padding: 1.5rem;
    }

    .package-price .amount {
        font-size: 2.5rem;
    }
    
    .logo-text-main {
        font-size: 1.1rem;
    }
    
    .logo-text-sub {
        font-size: 0.8rem;
    }
    
    .footer-logo-image {
        width: 50px;
        height: 50px;
    }
    
    .footer-logo-main {
        font-size: 1.2rem;
    }
    
    .footer-logo-sub {
        font-size: 0.9rem;
    }

    /* Adjust floating WhatsApp for small screens */
    .floating-whatsapp {
        bottom: 85px;
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
}
@keyframes marquee-scroll {
    0% {
      transform: translateX(100%); /* Start off-screen to the right */
    }
    100% {
      transform: translateX(-100%); /* End off-screen to the left */
    }
  }
