/* Sana Healing Home - Spiritual Water Theme */
@import url('https://fonts.googleapis.com/css2?family=Instrument+Sans:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Arapey:ital@0;1&display=swap');

:root {
    --aqua: #5AC8FA;
    --lavender: #B49CD9;
    --cream: #FFF7E6;
    --charcoal: #333333;
    --gold: #F2C94C;
    --white: #FFFFFF;
    --light-gray: #F5F5F5;
    --border: #E0E0E0;
    --shadow: rgba(0, 0, 0, 0.1);
    --shadow-hover: rgba(0, 0, 0, 0.15);
}

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

body {
    font-family: 'Instrument Sans', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: var(--charcoal);
    background: #a1bae2;
    background-attachment: fixed;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Arapey', serif;
    font-weight: 400;
}

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

/* Navigation */
.navbar {
    background: transparent;
    height: auto;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1000;
    box-shadow: none !important;
    border: none !important;
    border-bottom: none !important;
    border-top: none !important;
    outline: none !important;
    margin: 0;
    padding: 20px 0;
}

.navbar *,
.navbar::before,
.navbar::after,
.navbar .container,
.navbar .nav-wrapper {
    border: none !important;
    border-top: none !important;
    border-bottom: none !important;
    border-left: none !important;
    border-right: none !important;
    box-shadow: none !important;
    outline: none !important;
}

/* Extra specific rule to remove any possible border */
nav.navbar {
    border: 0 !important;
    border-bottom: 0 !important;
}

.navbar .container {
    border-bottom: 0 !important;
    padding: 0 20px !important;
    margin: 0 auto !important;
    max-width: 1400px;
    width: 100%;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    border: none;
    outline: none;
    gap: 2rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--charcoal);
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: bold;
}

.logo i {
    font-size: 1.8rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    align-items: center;
    justify-content: flex-end;
}

.nav-button {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 2rem;
}


.nav-menu a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-family: 'Instrument Sans', sans-serif;
    transition: all 0.3s;
    padding: 0.5rem 1rem;
    border-radius: 0;
    border: none;
    outline: none;
}

.nav-button a.btn,
.nav-menu a.btn {
    padding: 0.75rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    font-family: 'Instrument Sans', sans-serif;
}

.nav-menu a:hover,
.nav-menu a.active {
    background: transparent;
    color: #000000;
    font-weight: 600;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--white);
    border-radius: 3px;
    transition: 0.3s;
}

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

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

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

/* Hero Section */
.hero {
    position: relative;
    min-height: 537px;
    display: flex;
    align-items: center;
    padding: 60px 0;
    background: transparent;
    overflow: visible;
}

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

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 548px;
    gap: 4rem;
    align-items: center;
    height: 537px;
}

.hero-content {
    text-align: left;
    color: var(--charcoal);
}

.hero-title {
    font-size: 82px;
    margin-top: 0;
    margin-bottom: 1.5rem;
    text-shadow: none;
    color: var(--white);
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.hero-title-italic {
    font-style: italic;
    font-weight: 400;
}

.hero-description {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    line-height: 1.7;
    color: var(--white);
    opacity: 0.9;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
    width: 548px;
    height: 537px;
    border-radius: 20px;
    overflow: hidden;
    background: rgba(90, 200, 250, 0.1);
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    /* Performance optimizations */
    will-change: transform;
    transform: translateZ(0);
    backface-visibility: hidden;
    /* Ensure smooth playback */
    -webkit-transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    display: block;
}

/* Video loading optimization */
.hero-video[poster] {
    background-size: cover;
    background-position: center;
}

/* Animations */
.fade-in {
    animation: fadeIn 1s ease-in;
}

.fade-in-delay {
    animation: fadeIn 1s ease-in 0.3s both;
}

.fade-in-delay-2 {
    animation: fadeIn 1s ease-in 0.6s both;
}

.fade-in-delay-3 {
    animation: fadeIn 1s ease-in 0.9s both;
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--white);
    color: #a1bae2;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.btn-primary i {
    font-size: 0.85rem;
    background: #a1bae2;
    color: var(--white);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-primary:hover {
    background: #a1bae2;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(161, 186, 226, 0.4);
}

.btn-primary:hover i {
    background: var(--white);
    color: #a1bae2;
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

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

.btn-outline {
    background: transparent;
    color: var(--aqua);
    border-color: var(--aqua);
}

.btn-outline:hover {
    background: var(--aqua);
    color: var(--white);
}

.btn-large {
    padding: 15px 40px;
    font-size: 1.1rem;
    border: 2px solid #9eb9d4;
}

.btn-small {
    padding: 10px 24px;
    font-size: 0.9rem;
    border: 2px solid #9eb9d4;
    min-width: 120px;
}

/* Sections */
section {
    padding: 80px 0;
    background: transparent;
    border: none;
    margin: 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-icon {
    font-size: 3.5rem;
    color: rgba(255, 255, 255, 0.9) !important;
    margin-bottom: 1.5rem;
    display: block;
}

.section-header h2 {
    font-size: 2.8rem;
    color: #ffffff;
    margin-bottom: 1rem;
    font-weight: 400;
    letter-spacing: 1px;
}

.section-header p {
    font-size: 1.1rem;
    color: #ffffff;
}

/* Core Values Section */
.core-values {
    background: transparent;
    padding: 3rem 0;
}

.core-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.core-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.core-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #ffffff;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.core-icon i {
    font-size: 2rem;
    color: #ffffff;
    transition: all 0.3s ease;
}

.core-item:hover .core-icon {
    background: #ffffff;
    transform: scale(1.1);
}

.core-item:hover .core-icon i {
    color: var(--lavender);
}

.core-item h3 {
    font-size: 1.1rem;
    color: #ffffff;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 400;
}

/* Welcome Section */
.welcome-section {
    background: transparent;
    padding: 4rem 0;
}

.welcome-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 4rem;
    align-items: center;
}

.welcome-image {
    position: relative;
}

.welcome-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    object-fit: cover;
}

.welcome-content {
    padding: 2rem 0;
}

.welcome-icon {
    margin-bottom: 1.5rem;
}

.welcome-icon i {
    font-size: 3rem;
    color: #ffffff;
}

.welcome-content h2 {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.welcome-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #ffffff;
    margin-bottom: 2rem;
}

.welcome-author {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 3px solid #ffffff;
}

.author-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h3 {
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 0.3rem;
}

.author-info p {
    font-size: 0.95rem;
    color: #ffffff;
    margin: 0;
}

/* Services Preview */
.services-preview {
    background: transparent;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    border: 3px solid #9eb9d4;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.service-card.featured {
    background: var(--lavender);
    color: #ffffff;
    border: none;
}

.featured-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.3);
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-icon {
    width: 70px;
    height: 70px;
    background: #9eb9d4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.service-card.featured .service-icon {
    background: rgba(255, 255, 255, 0.3);
}

.service-icon i {
    font-size: 1.8rem;
    color: #ffffff;
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: #9eb9d4;
    font-weight: 600;
}

.service-card.featured h3 {
    color: #ffffff;
}

.service-duration {
    color: #9eb9d4;
    font-size: 0.95rem;
    margin: 0;
}

.service-card.featured .service-duration {
    color: rgba(255, 255, 255, 0.9);
}

.service-note {
    color: #9eb9d4;
    font-size: 0.85rem;
    margin: 0;
    font-style: italic;
}

.service-card.featured .service-note {
    color: rgba(255, 255, 255, 0.85);
}

.service-description {
    color: #9eb9d4;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0.5rem 0;
    min-height: 50px;
    flex-grow: 1;
}

.service-card.featured .service-description {
    color: rgba(255, 255, 255, 0.9);
}

.service-price {
    color: #9eb9d4;
    font-size: 2rem;
    font-weight: 700;
    margin: 1rem 0;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-card.featured .service-price {
    color: #ffffff;
}

.service-buttons {
    display: flex;
    gap: 0.75rem;
    margin-top: auto;
    align-items: stretch;
    width: 100%;
}

.btn-service,
.btn-service-featured,
.btn-whatsapp,
.btn-whatsapp-featured {
    padding: 14px 20px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s;
    font-size: 0.95rem;
    white-space: nowrap;
    flex: 1 1 0;
    min-width: 0;
}

.btn-whatsapp,
.btn-whatsapp-featured {
    background: #25D366;
    color: #ffffff;
    border: 2px solid #25D366;
    flex: 1.3 1 0;
}

.btn-whatsapp:hover,
.btn-whatsapp-featured:hover {
    background: #128C7E;
    border-color: #128C7E;
}

.btn-service {
    background: var(--white);
    color: #9eb9d4;
    border: 2px solid #9eb9d4;
    flex: 0.9 1 0;
}

.btn-service:hover {
    background: #9eb9d4;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(158, 185, 212, 0.4);
}

.btn-service-featured {
    background: var(--white);
    color: #a1bae2;
    border: 2px solid var(--white);
    flex: 0.9 1 0;
}

.btn-service-featured:hover {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    border-color: var(--white);
    transform: translateY(-2px);
}

/* CTA Section */
.cta-section {
    background: transparent;
    color: var(--charcoal);
    text-align: center;
    border: none;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #ffffff;
}

/* Face-to-Face Section */
.face-to-face-section {
    padding: 80px 0;
    background: transparent;
}

.face-to-face-content {
    display: grid;
    grid-template-columns: 500px 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.face-to-face-image {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.face-to-face-image img {
    width: 500px;
    height: 600px;
    object-fit: cover;
    display: block;
    border-radius: 20px;
    transition: transform 0.5s ease;
}

.face-to-face-image:hover img {
    transform: scale(1.05);
}

.face-to-face-text {
    color: #ffffff;
}

.face-to-face-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
    font-weight: 600;
}

.face-to-face-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.face-to-face-text .btn {
    margin-top: 1rem;
}

/* Page Header */
.page-header {
    background: transparent;
    color: #ffffff;
    text-align: center;
    padding: 3rem 0;
    border: none;
    margin: 0;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #ffffff;
    font-weight: 600;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3), 0 1px 3px rgba(0, 0, 0, 0.2);
}

.page-header p {
    font-size: 1.3rem;
    font-weight: 300;
    color: #ffffff;
    opacity: 0.95;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
}

/* Footer */
.footer {
    background: linear-gradient(to bottom, rgba(161, 186, 226, 0.15), rgba(161, 186, 226, 0.25));
    backdrop-filter: blur(10px);
    color: #ffffff;
    padding: 60px 0 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: #ffffff;
    font-weight: 600;
}

.footer-section p {
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

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

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: all 0.3s;
}

.footer-section ul li a:hover {
    color: #ffffff;
    padding-left: 5px;
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.9);
}

.contact-info i {
    color: #ffffff;
    font-size: 1.1rem;
}

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

.social-links a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    transition: all 0.3s;
    backdrop-filter: blur(5px);
}

.social-links a:hover {
    background: #ffffff;
    color: #9eb9d4;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.8);
}

/* Floating Buttons Container */
.whatsapp-float,
.phone-float {
    position: fixed;
    right: 25px;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    z-index: 999;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* Notification Badge */
.whatsapp-float::before,
.phone-float::before {
    content: attr(data-tooltip);
    position: absolute;
    right: 75px;
    background: rgba(255, 255, 255, 0.95);
    color: #333;
    padding: 10px 15px;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 500;
    white-space: nowrap;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
}

.whatsapp-float::after,
.phone-float::after {
    content: '';
    position: absolute;
    right: 70px;
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 8px solid rgba(255, 255, 255, 0.95);
    opacity: 0;
    transition: all 0.3s ease;
}

/* Show tooltip once on page load for both buttons */
.phone-float::before,
.phone-float::after {
    animation: showOnce 4s ease-in-out 2s;
}

.whatsapp-float::before,
.whatsapp-float::after {
    animation: showOnce 4s ease-in-out 2.5s;
}

.whatsapp-float:hover::before,
.whatsapp-float:hover::after,
.phone-float:hover::before,
.phone-float:hover::after {
    opacity: 1;
    animation: none;
}

/* Notification Dot */
.notification-dot {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 12px;
    height: 12px;
    background: #ff4444;
    border-radius: 50%;
    border: 2px solid white;
    animation: blink 1.5s infinite;
}

/* Popup Notification Bubbles */
.popup-notification {
    position: fixed;
    right: 110px;
    bottom: 120px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 12px 18px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    z-index: 998;
    max-width: 250px;
    opacity: 0;
    transform: translateX(20px) scale(0.8);
    pointer-events: none;
    animation: popupSequence 15s ease-in-out infinite;
}

.popup-notification::after {
    content: '';
    position: absolute;
    right: -8px;
    bottom: 20px;
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 8px solid #764ba2;
}

.popup-notification:nth-child(2) {
    animation-delay: 5s;
}

.popup-notification:nth-child(3) {
    animation-delay: 10s;
}

.popup-notification .popup-icon {
    display: inline-block;
    margin-right: 8px;
    font-size: 1.2rem;
}

.popup-notification .popup-close {
    position: absolute;
    top: 5px;
    right: 8px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 0.7rem;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.popup-notification .popup-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

/* WhatsApp Float */
.whatsapp-float {
    bottom: 25px;
    background: #25D366;
    font-size: 2rem;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.5);
    animation: bounceIn 1s ease-out, pulse 2s infinite 1s;
}

.whatsapp-float:hover {
    transform: scale(1.15);
    box-shadow: 0 8px 35px rgba(37, 211, 102, 0.7);
    text-decoration: none;
    animation: none;
}

/* Phone Float */
.phone-float {
    bottom: 110px;
    background: linear-gradient(135deg, #007bff, #0056b3);
    font-size: 1.9rem;
    box-shadow: 0 5px 20px rgba(0, 123, 255, 0.5);
    animation: bounceIn 1s ease-out 0.3s, pulse 2s infinite 1.3s;
    animation-fill-mode: both;
}

.phone-float:hover {
    transform: scale(1.15);
    box-shadow: 0 8px 35px rgba(0, 123, 255, 0.7);
    text-decoration: none;
    animation: none;
}

/* Animations */
@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3) translateY(50px);
    }
    50% {
        opacity: 1;
        transform: scale(1.1);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
    }
}

@keyframes slideInOut {
    0%, 100% {
        opacity: 0;
        transform: translateX(10px);
    }
    10%, 90% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes showOnce {
    0% {
        opacity: 0;
        transform: translateX(10px);
    }
    10%, 70% {
        opacity: 1;
        transform: translateX(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-5px);
    }
}

@keyframes blink {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.3;
        transform: scale(1.2);
    }
}

@keyframes popupSequence {
    0%, 100% {
        opacity: 0;
        transform: translateX(20px) scale(0.8);
        pointer-events: none;
    }
    5%, 25% {
        opacity: 1;
        transform: translateX(0) scale(1);
        pointer-events: auto;
    }
    30% {
        opacity: 0;
        transform: translateX(-10px) scale(0.9);
        pointer-events: none;
    }
}

/* Responsive adjustments for floating buttons */
@media (max-width: 768px) {
    .whatsapp-float,
    .phone-float {
        width: 55px;
        height: 55px;
        right: 20px;
    }
    
    .whatsapp-float {
        bottom: 20px;
        font-size: 1.8rem;
    }
    
    .phone-float {
        bottom: 90px;
        font-size: 1.7rem;
    }

    .popup-notification {
        right: 85px;
        bottom: 100px;
        max-width: 200px;
        font-size: 0.85rem;
        padding: 10px 15px;
    }
}

@media (max-width: 480px) {
    .whatsapp-float,
    .phone-float {
        width: 50px;
        height: 50px;
        right: 15px;
    }
    
    .whatsapp-float {
        bottom: 15px;
        font-size: 1.6rem;
    }
    
    .phone-float {
        bottom: 80px;
        font-size: 1.5rem;
    }

    .popup-notification {
        right: 75px;
        bottom: 90px;
        max-width: 180px;
        font-size: 0.8rem;
        padding: 8px 12px;
    }
}

/* About Page */
.about-section {
    background: transparent;
    padding: 3rem 0;
}

.about-section .container {
    padding: 0 20px;
}

.about-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.about-intro-image {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.about-intro-image img,
.about-intro-image video {
    width: 100%;
    height: 700px;
    object-fit: cover;
    display: block;
    border-radius: 20px;
}

.about-intro-content {
    padding: 2rem 0;
    text-align: left;
}

.intro-icon {
    margin-bottom: 1.5rem;
}

.intro-icon i {
    font-size: 2.5rem;
    color: #ffffff;
}

.about-intro-content h2 {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
    font-weight: 600;
    line-height: 1.2;
    font-family: 'Arapey', serif;
    text-align: left;
}

.about-intro-content .intro-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #ffffff;
    margin-bottom: 2rem;
    text-align: left;
}

.founder-badge {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border-left: 4px solid #9eb9d4;
    margin-top: 2rem;
}

.founder-badge-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.founder-badge-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.founder-badge-info h4 {
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 0.3rem;
    font-weight: 600;
}

.founder-badge-info p {
    font-size: 1rem;
    color: #9eb9d4;
    font-weight: 500;
}

.intro-text {
    font-size: 1.2rem;
    line-height: 1.8;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    color: #555;
}

.founder-section {
    margin: 5rem 0;
}

.founder-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    align-items: center;
}

.founder-image {
    position: relative;
}

.founder-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 40px var(--shadow);
}

.image-decoration {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100px;
    height: 100px;
    background: var(--gold);
    border-radius: 50%;
    z-index: -1;
    opacity: 0.3;
}

.founder-bio h3 {
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.founder-title {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.founder-bio p {
    line-height: 1.8;
    color: #ffffff;
}

.heritage-section {
    background: transparent;
    padding: 5rem 2rem;
    border-radius: 0;
    margin: 5rem 0;
    border: none;
}

.heritage-intro {
    font-size: 1.15rem;
    line-height: 1.9;
    text-align: center;
    max-width: 850px;
    margin: 0 auto 4rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 400;
    letter-spacing: 0.3px;
}

.lineage-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.lineage-card {
    background: transparent;
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: none;
    border: none;
    transition: transform 0.3s ease;
}

.lineage-card:hover {
    transform: translateY(-5px);
}

.lineage-card i {
    font-size: 3.5rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    display: block;
}

.lineage-card h4 {
    font-size: 1.4rem;
    color: #ffffff;
    margin-bottom: 1.2rem;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.lineage-card p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    font-size: 1rem;
    font-weight: 300;
}

.element-section {
    margin: 6rem 0;
    padding: 4rem 2rem;
    text-align: center;
}

.element-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.element-text {
    width: 100%;
    margin-bottom: 3rem;
}

.element-text .section-header {
    margin-bottom: 2.5rem;
}

.element-text p {
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
    letter-spacing: 0.3px;
}

.element-visual {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.water-circle {
    width: 280px;
    height: 280px;
    background: linear-gradient(135deg, rgba(90, 200, 250, 0.3), rgba(180, 156, 217, 0.3));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse 4s infinite ease-in-out;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.water-circle i {
    font-size: 6rem;
    color: rgba(255, 255, 255, 0.95);
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 40px rgba(90, 200, 250, 0.4), 0 0 80px rgba(180, 156, 217, 0.2);
    }
    50% {
        transform: scale(1.08);
        box-shadow: 0 0 60px rgba(90, 200, 250, 0.6), 0 0 120px rgba(180, 156, 217, 0.3);
    }
}

.services-offered {
    margin: 6rem 0;
    padding: 4rem 2rem;
    text-align: center;
}

.services-offered .section-header {
    margin-bottom: 3.5rem;
}

.services-offered .section-icon {
    font-size: 3rem;
    margin-bottom: 1.25rem;
}

.offerings-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    max-width: 1100px;
    margin: 0 auto;
    margin-top: 3rem;
}

.offering-card {
    background: rgba(255, 255, 255, 0.08);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.offering-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.offering-card i {
    font-size: 3.5rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    display: block;
}

.offering-card h4 {
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 1rem;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.offering-card p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    font-size: 1rem;
    font-weight: 300;
}

.mission-section {
    text-align: center;
    margin: 6rem 0;
    padding: 4rem 2rem;
}

.mission-content {
    max-width: 900px;
    margin: 0 auto;
}

.mission-content blockquote {
    font-size: 1.4rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.95);
    max-width: 850px;
    margin: 0 auto 3rem;
    padding: 2.5rem 2rem;
    border: none;
    background: transparent;
    border-radius: 0;
    font-weight: 300;
    line-height: 1.8;
    letter-spacing: 0.3px;
}

.mission-content blockquote p {
    margin: 0;
}

.mission-text {
    font-size: 1.05rem;
    line-height: 1.9;
    max-width: 800px;
    margin: 0 auto 2.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
    letter-spacing: 0.3px;
}

/* Services Page */
.services-section {
    background: transparent;
    padding: 3rem 0;
}

.services-section .container {
    max-width: 1400px;
    margin: 0 auto;
}

.services-table-container {
    overflow-x: auto;
    margin-bottom: 4rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
}

.services-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: transparent;
}

.services-table thead {
    background: linear-gradient(135deg, #9eb9d4, var(--lavender));
    color: #ffffff;
}

.services-table thead th {
    padding: 1.5rem;
    text-align: left;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.services-table thead th:first-child {
    border-top-left-radius: 15px;
}

.services-table thead th:last-child {
    border-top-right-radius: 15px;
}

.services-table tbody tr {
    border-bottom: 1px solid rgba(158, 185, 212, 0.2);
    transition: all 0.3s;
}

.services-table tbody tr:hover {
    background: rgba(158, 185, 212, 0.1);
    transform: scale(1.01);
}

.services-table tbody tr.featured-row {
    background: linear-gradient(to right, rgba(158, 185, 212, 0.15), rgba(161, 186, 226, 0.15));
}

.services-table tbody tr.featured-row:hover {
    background: linear-gradient(to right, rgba(158, 185, 212, 0.25), rgba(161, 186, 226, 0.25));
}

.services-table td {
    padding: 1.5rem;
    color: #9eb9d4;
    font-size: 0.95rem;
}

.services-table td strong {
    color: #9eb9d4;
    font-weight: 600;
    font-size: 1.05rem;
}

.services-table td i {
    color: #9eb9d4;
    margin-right: 10px;
    font-size: 1.2rem;
}

.popular-badge {
    display: inline-block;
    background: var(--lavender);
    color: #ffffff;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    margin-left: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.booking-instructions {
    text-align: center;
    margin: 4rem 0;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.booking-instructions h3 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #ffffff;
    font-weight: 600;
}

.instructions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.instruction-step {
    text-align: center;
    padding: 2rem;
    background: transparent;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s;
}

.instruction-step:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.step-number {
    width: 70px;
    height: 70px;
    background: #9eb9d4;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    box-shadow: 0 5px 15px rgba(158, 185, 212, 0.3);
}

.instruction-step h4 {
    font-size: 1.4rem;
    color: #ffffff;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.instruction-step p {
    color: #ffffff;
    line-height: 1.6;
}

.booking-widget {
    background: rgba(255, 255, 255, 0.95);
    padding: 3rem;
    border-radius: 25px;
    text-align: center;
    max-width: 1200px;
    margin: 4rem auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.booking-widget h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #9eb9d4;
    font-weight: 600;
}

/* SimplyBook Widget Container */
.simplybook-widget-container {
    background: rgba(255, 255, 255, 0.95);
    padding: 3rem;
    border-radius: 25px;
    text-align: center;
    max-width: 1200px;
    margin: 4rem auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.simplybook-widget-container h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #9eb9d4;
    font-weight: 600;
}

.widget-intro {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

#sbw-widget {
    min-height: 600px;
    width: 100%;
    background: #ffffff;
    border-radius: 15px;
    padding: 1rem;
}

/* SimplyBook iframe styling */
#sbw-widget iframe {
    width: 100% !important;
    border: none;
    border-radius: 15px;
    min-height: 600px;
    background: #ffffff;
}

/* Dark mode support for SimplyBook widget */
@media (prefers-color-scheme: dark) {
    .simplybook-widget-container {
        background: rgba(30, 30, 30, 0.95);
    }
    
    .simplybook-widget-container h2 {
        color: #9eb9d4;
    }
    
    .widget-intro {
        color: #ccc;
    }
}

/* Testimonials Page */
.testimonials-section {
    background: transparent;
    padding: 4rem 0;
}

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

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-bottom: 5rem;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.08);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    text-align: left;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.testimonial-stars {
    color: #FFD700;
    margin-bottom: 1.25rem;
    font-size: 1.1rem;
    letter-spacing: 2px;
}

.testimonial-text {
    font-style: italic;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.75rem;
    font-size: 1rem;
    font-weight: 300;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonial-author strong {
    color: #ffffff;
    font-size: 1.05rem;
    font-weight: 500;
}

.testimonial-author span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    font-weight: 300;
}

.submit-testimonial {
    text-align: center;
    margin-top: 4rem;
}

.submit-card {
    background: rgba(255, 255, 255, 0.08);
    padding: 3.5rem 3rem;
    border-radius: 25px;
    max-width: 700px;
    margin: 0 auto;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.submit-card i {
    font-size: 3.5rem;
    color: rgba(90, 200, 250, 0.9);
    margin-bottom: 1.5rem;
}

.submit-card h3 {
    font-size: 2.2rem;
    color: #ffffff;
    margin-bottom: 1rem;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.submit-card > p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2rem;
    line-height: 1.7;
    font-weight: 300;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.submit-testimonial .note {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin-top: 1.5rem;
    font-style: italic;
}

/* Contact Buttons for Testimonials */
.contact-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 500px;
    margin: 2rem auto 0;
}

.contact-buttons .btn-large {
    width: 100%;
    padding: 1.2rem 2rem;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
}

.contact-buttons .btn-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #ffffff;
    border: none;
}

.contact-buttons .btn-whatsapp:hover {
    background: linear-gradient(135deg, #128C7E 0%, #075E54 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

.contact-buttons .btn-primary {
    background: linear-gradient(135deg, #9eb9d4 0%, #7ea5cc 100%);
}

.contact-buttons .btn-primary:hover {
    background: linear-gradient(135deg, #7ea5cc 0%, #6b94bb 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(158, 185, 212, 0.3);
}

.loading-message,
.no-testimonials {
    text-align: center;
    padding: 5rem 2rem;
    grid-column: 1 / -1;
}

.loading-message i,
.no-testimonials i {
    font-size: 4rem;
    color: rgba(90, 200, 250, 0.8);
    margin-bottom: 1.5rem;
}

.loading-message p,
.no-testimonials p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.15rem;
    font-weight: 300;
}

.no-testimonials h3 {
    font-size: 2.2rem;
    color: #ffffff;
    margin: 1rem 0;
    font-weight: 400;
}

/* Testimonial Submission Form */
.testimonial-form {
    margin: 2rem 0;
    text-align: left;
}

.testimonial-form .form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.testimonial-form .form-group {
    margin-bottom: 1.5rem;
}

.testimonial-form label {
    display: block;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.testimonial-form input,
.testimonial-form select,
.testimonial-form textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s;
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    backdrop-filter: blur(5px);
}

.testimonial-form input::placeholder,
.testimonial-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.testimonial-form input:focus,
.testimonial-form select:focus,
.testimonial-form textarea:focus {
    outline: none;
    border-color: rgba(90, 200, 250, 0.6);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(90, 200, 250, 0.15);
}

.testimonial-form select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23ffffff' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 3rem;
}

.testimonial-form select option {
    background: #2c3e50;
    color: #ffffff;
}

.testimonial-form textarea {
    resize: vertical;
    min-height: 120px;
}

.testimonial-form .checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.testimonial-form .checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 0.3rem;
}

.testimonial-form .checkbox-group label {
    margin-bottom: 0;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
    line-height: 1.5;
}

.testimonial-form .checkbox-group input[type="checkbox"] {
    accent-color: rgba(90, 200, 250, 0.8);
}

.testimonial-form .required {
    color: #ff6b6b;
}

.testimonial-form .btn-large {
    width: 100%;
    padding: 1.1rem 2rem;
    font-size: 1.05rem;
    margin-top: 1rem;
}

/* Submission Messages */
.submission-message {
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    margin: 2rem 0;
    animation: fadeInUp 0.5s ease;
    backdrop-filter: blur(10px);
}

.submission-message i {
    font-size: 3.5rem;
    margin-bottom: 1.25rem;
}

.submission-message h4 {
    font-size: 1.8rem;
    margin-bottom: 0.75rem;
    font-weight: 400;
}

.submission-message p {
    font-weight: 300;
    line-height: 1.6;
}

.success-message {
    background: rgba(40, 167, 69, 0.15);
    border: 1px solid rgba(40, 167, 69, 0.3);
    color: rgba(255, 255, 255, 0.95);
}

.success-message i {
    color: #28a745;
}

.error-message {
    background: rgba(220, 53, 69, 0.15);
    border: 1px solid rgba(220, 53, 69, 0.3);
    color: rgba(255, 255, 255, 0.95);
}

.error-message i {
    color: #dc3545;
}

/* Contact Page */
.contact-section {
    background: transparent;
    padding: 4rem 0;
}

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

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-bottom: 5rem;
}

.contact-card {
    background: rgba(255, 255, 255, 0.08);
    padding: 3rem 2rem;
    border-radius: 25px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
}

.contact-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.contact-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, rgba(90, 200, 250, 0.3), rgba(180, 156, 217, 0.3));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.75rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.contact-icon i {
    font-size: 2.8rem;
    color: rgba(255, 255, 255, 0.95);
}

.contact-card h3 {
    font-size: 1.6rem;
    color: #ffffff;
    margin-bottom: 1rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.contact-card p {
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2rem;
    line-height: 1.7;
    font-weight: 300;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
}

.social-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.social-btn.facebook {
    background: rgba(24, 119, 242, 0.9);
    color: var(--white);
}

.social-btn.tiktok {
    background: rgba(0, 0, 0, 0.9);
    color: var(--white);
}

.social-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Contact Button Styles */
.btn-whatsapp {
    background: #25D366;
    color: #ffffff;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    font-size: 1rem;
}

.btn-whatsapp:hover {
    background: #20BA5A;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}

.btn-email {
    background: rgba(90, 200, 250, 0.9);
    color: #ffffff;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    font-size: 1rem;
}

.btn-email:hover {
    background: rgba(90, 200, 250, 1);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(90, 200, 250, 0.4);
}

.phone-link {
    color: rgba(90, 200, 250, 0.9);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.phone-link:hover {
    color: #ffffff;
    text-decoration: underline;
}

.contact-info-section {
    text-align: center;
    margin: 5rem 0;
}

.contact-info-section h2 {
    font-size: 2.2rem;
    margin-bottom: 3rem;
    color: #ffffff;
    font-weight: 400;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 2rem 1.5rem;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.info-item-link {
    text-decoration: none;
    cursor: pointer;
}

.info-item:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.info-item-link:hover i {
    transform: scale(1.1);
    color: rgba(90, 200, 250, 1);
}

.info-item i {
    font-size: 2.2rem;
    color: rgba(255, 255, 255, 0.95);
    flex-shrink: 0;
}

.info-item h4 {
    color: #ffffff;
    margin-bottom: 0.5rem;
    font-weight: 500;
    font-size: 1.1rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.info-item p {
    color: rgba(255, 255, 255, 0.95);
    font-weight: 300;
    margin: 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
}

.cta-box {
    background: rgba(255, 255, 255, 0.08);
    padding: 4rem 3rem;
    border-radius: 25px;
    text-align: center;
    margin-top: 5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.cta-box h3 {
    font-size: 2.2rem;
    color: #ffffff;
    margin-bottom: 1.25rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.cta-box p {
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2.5rem;
    line-height: 1.7;
    font-weight: 300;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
}

/* Terms Page */
.terms-section {
    background: transparent;
    padding: 4rem 0;
}

.terms-section .container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.terms-content {
    max-width: 900px;
    margin: 0 auto;
}

.terms-card {
    background: rgba(255, 255, 255, 0.08);
    padding: 3rem 2.5rem;
    border-radius: 25px;
    margin-bottom: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.terms-card:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-3px);
}

.terms-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, rgba(90, 200, 250, 0.3), rgba(180, 156, 217, 0.3));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.terms-icon i {
    font-size: 2.8rem;
    color: rgba(255, 255, 255, 0.95);
}

.terms-card h2 {
    font-size: 2.2rem;
    color: #ffffff;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 400;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.terms-text p {
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.25rem;
    font-weight: 300;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
}

.terms-text strong {
    color: #ffffff;
    font-weight: 500;
}

.policy-highlight {
    background: rgba(242, 201, 76, 0.15);
    border-left: 4px solid #FFD700;
    padding: 1.75rem;
    margin: 2rem 0;
    border-radius: 15px;
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    backdrop-filter: blur(5px);
}

.policy-highlight.warning {
    background: rgba(255, 107, 107, 0.15);
    border-left-color: #ff6b6b;
}

.policy-highlight i {
    font-size: 1.6rem;
    color: #FFD700;
    margin-top: 3px;
    flex-shrink: 0;
}

.policy-highlight.warning i {
    color: #ff6b6b;
}

.policy-highlight p {
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
}

.policy-box {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.policy-box h4 {
    color: #ffffff;
    margin-bottom: 1.25rem;
    font-weight: 500;
    font-size: 1.2rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.policy-box ul {
    list-style: none;
    padding-left: 0;
}

.policy-box ul li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
}

.policy-box ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: rgba(90, 200, 250, 0.9);
    font-weight: bold;
    font-size: 1.2rem;
}

.general-terms {
    list-style: none;
    padding-left: 0;
}

.general-terms li {
    padding: 1.25rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
    line-height: 1.7;
}

.general-terms li:last-child {
    border-bottom: none;
}

.general-terms li strong {
    color: #ffffff;
    font-weight: 500;
}

.contact-support {
    text-align: center;
    margin: 4rem 0;
    padding: 3.5rem 3rem;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.contact-support h3 {
    font-size: 2.2rem;
    color: #ffffff;
    margin-bottom: 1.25rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.contact-support p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    font-weight: 300;
    line-height: 1.7;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
}

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

.acceptance-note {
    background: rgba(90, 200, 250, 0.1);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    border: 1px solid rgba(90, 200, 250, 0.2);
    backdrop-filter: blur(5px);
}

.acceptance-note i {
    font-size: 1.8rem;
    color: rgba(90, 200, 250, 0.9);
    margin-top: 3px;
    flex-shrink: 0;
}

.acceptance-note p {
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.8;
    font-weight: 300;
    margin: 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
}

/* Custom Booking System */
.booking-steps {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    padding: 2rem 0;
    border-bottom: 2px solid var(--border);
}

.booking-steps .step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.5;
    transition: all 0.3s;
}

.booking-steps .step.active {
    opacity: 1;
}

.booking-steps .step-number {
    width: 50px;
    height: 50px;
    background: var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--charcoal);
    transition: all 0.3s;
}

.booking-steps .step.active .step-number {
    background: linear-gradient(135deg, var(--aqua), var(--lavender));
    color: var(--white);
}

.booking-steps .step span {
    font-weight: 600;
    color: var(--charcoal);
}

.booking-step-content {
    display: none;
    animation: fadeInUp 0.5s ease;
}

.booking-step-content.active {
    display: block;
}

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

/* Service Selection */
.service-selection {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.service-option {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid #9eb9d4;
    text-align: center;
    transition: all 0.3s;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 280px;
}

.service-option:hover {
    border-color: #9eb9d4;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(158, 185, 212, 0.3);
}

.service-option.selected {
    border-color: #9eb9d4;
    background: rgba(158, 185, 212, 0.1);
}

.service-option h4 {
    font-size: 1.3rem;
    color: #000000;
    margin-bottom: 1rem;
    font-weight: 600;
    min-height: 2.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-option .duration {
    color: #9eb9d4;
    font-weight: 600;
    margin: 0.5rem 0;
}

.service-option .price {
    color: #9eb9d4;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 1rem 0;
    min-height: 2rem;
}

.service-option .btn i {
    color: #ffffff;
    margin-right: 0.5rem;
    transition: color 0.3s;
}

.service-option .btn:hover i {
    color: #9eb9d4;
}

/* Back Button */
.back-btn {
    background: none;
    border: none;
    color: var(--aqua);
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    padding: 0.5rem 1rem;
    transition: all 0.3s;
}

.back-btn:hover {
    color: var(--lavender);
    transform: translateX(-5px);
}

/* Selected Service Info */
.selected-service-info {
    background: linear-gradient(135deg, rgba(90, 200, 250, 0.1), rgba(180, 156, 217, 0.1));
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    text-align: center;
}

.selected-service-info h4 {
    font-size: 1.5rem;
    color: var(--charcoal);
    margin-bottom: 0.5rem;
}

/* Calendar */
.calendar-container {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--shadow);
    margin-bottom: 2rem;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.calendar-nav {
    background: var(--aqua);
    color: var(--white);
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

.calendar-nav:hover {
    background: var(--lavender);
    transform: translateY(-2px);
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.5rem;
    width: 100%;
    box-sizing: border-box;
}

.calendar-day-header {
    text-align: center;
    font-weight: bold;
    color: var(--charcoal);
    padding: 1rem 0;
    font-size: 0.9rem;
}

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 600;
    background: var(--light-gray);
    color: var(--charcoal);
}

.calendar-day:hover:not(.disabled):not(.past) {
    background: var(--aqua);
    color: var(--white);
    transform: scale(1.1);
}

.calendar-day.selected {
    background: linear-gradient(135deg, var(--aqua), var(--lavender));
    color: var(--white);
}

.calendar-day.today {
    border: 2px solid var(--gold);
}

.calendar-day.disabled,
.calendar-day.past {
    opacity: 0.3;
    cursor: not-allowed;
}

.calendar-day.other-month {
    opacity: 0.3;
}

.calendar-day.weekend {
    color: var(--lavender);
}

/* Time Slots */
.time-slots-container {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--shadow);
}

.time-slots-container h4 {
    font-size: 1.5rem;
    color: var(--charcoal);
    margin-bottom: 1.5rem;
}

.time-slots {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 1rem;
}

.time-slot {
    padding: 1rem;
    background: var(--light-gray);
    border: 2px solid var(--border);
    border-radius: 10px;
    text-align: center;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

.time-slot:hover:not(.disabled) {
    background: var(--aqua);
    color: var(--white);
    border-color: var(--aqua);
    transform: translateY(-3px);
}

.time-slot.selected {
    background: linear-gradient(135deg, var(--aqua), var(--lavender));
    color: var(--white);
    border-color: var(--aqua);
}

.time-slot.disabled {
    opacity: 0.3;
    cursor: not-allowed;
    text-decoration: line-through;
}

/* Booking Confirmation */
.booking-confirmation {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    margin: 2rem 0;
}

.booking-form {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--shadow);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 0.5rem;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"] {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid var(--border);
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s;
}

.form-group input:focus {
    outline: none;
    border-color: var(--aqua);
    box-shadow: 0 0 0 3px rgba(90, 200, 250, 0.1);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.checkbox-group input[type="checkbox"] {
    margin-top: 0.3rem;
}

.checkbox-group label {
    margin-bottom: 0;
}

.required {
    color: #ff6b6b;
}

/* Booking Summary */
.booking-summary {
    background: linear-gradient(135deg, rgba(90, 200, 250, 0.1), rgba(180, 156, 217, 0.1));
    padding: 2rem;
    border-radius: 15px;
    height: fit-content;
}

.booking-summary h4 {
    font-size: 1.5rem;
    color: var(--charcoal);
    margin-bottom: 1.5rem;
}

.booking-summary p {
    margin: 1rem 0;
    color: var(--charcoal);
}

.summary-price {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--gold);
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border);
}

/* Success Message */
.booking-success {
    text-align: center;
    padding: 3rem;
    animation: fadeInUp 0.5s ease;
}

.success-icon {
    font-size: 5rem;
    color: #4CAF50;
    margin-bottom: 1.5rem;
}

.booking-success h3 {
    font-size: 2.2rem;
    color: #000000;
    margin-bottom: 1.25rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    text-shadow: none;
}

.booking-success > p {
    color: #000000;
    font-weight: 300;
    margin-bottom: 2rem;
    text-shadow: none;
}

.success-details {
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 20px;
    margin: 2rem auto;
    max-width: 500px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.success-details p {
    margin: 1rem 0;
    font-size: 1.05rem;
    color: #000000;
    font-weight: 300;
    text-shadow: none;
}

.success-details strong {
    color: #000000;
    font-weight: 500;
}

.notification-buttons {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    margin: 2.5rem 0;
    flex-wrap: wrap;
}

.btn-whatsapp {
    background: #25D366;
    color: var(--white);
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s;
}

.btn-whatsapp:hover {
    background: #20BA5A;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.btn-email {
    background: var(--aqua);
    color: var(--white);
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s;
}

.btn-email:hover {
    background: var(--lavender);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(90, 200, 250, 0.4);
}

/* Opening Hours */
.opening-hours {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--shadow);
    margin-top: 3rem;
}

.opening-hours h3 {
    font-size: 1.8rem;
    color: var(--charcoal);
    margin-bottom: 1.5rem;
    text-align: center;
}

.hours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    padding: 1rem;
    background: var(--light-gray);
    border-radius: 10px;
    transition: all 0.3s;
}

.hours-item:hover {
    background: linear-gradient(135deg, rgba(90, 200, 250, 0.1), rgba(180, 156, 217, 0.1));
    transform: translateX(5px);
}

.hours-item .day {
    font-weight: 600;
    color: var(--charcoal);
}

.hours-item .time {
    color: #9eb9d4;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 1200px) {
    .logo img {
        width: 300px;
        height: auto;
    }

    .nav-menu {
        gap: 1rem;
    }

    .nav-button {
        gap: 1rem;
    }
}

@media (max-width: 1070px) and (min-width: 761px) {
    .nav-menu li:nth-child(3),
    .nav-menu li:nth-child(4) {
        display: none;
    }
}

@media (max-width: 1200px) {
    .hero-grid {
        gap: 3rem;
    }

    .hero-title {
        font-size: 4rem;
    }
}

@media (max-width: 1024px) {
    .hero {
        padding: 50px 0;
    }

    .hero-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
        align-items: center;
    }

    .hero-content {
        text-align: left;
    }

    .hero-title {
        font-size: 3.75rem;
        line-height: 1.1;
    }

    .hero-description {
        font-size: 1rem;
        max-width: 450px;
    }

    .hero-buttons {
        justify-content: flex-start;
    }

    .hero-image {
        width: 100%;
        max-width: 480px;
        height: auto;
        aspect-ratio: 548 / 537;
    }

    .hero-video {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

@media (max-width: 992px) and (min-width: 781px) {
    .logo img {
        width: 250px;
        height: auto;
    }

    .nav-menu {
        gap: 0.75rem;
        font-size: 0.9rem;
    }

    .hero {
        padding: 40px 0;
    }

    .hero-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
        height: auto;
    }

    .hero-content {
        text-align: left;
    }

    .hero-title {
        font-size: 3rem;
        line-height: 1.15;
    }

    .hero-description {
        max-width: 100%;
        font-size: 0.95rem;
    }

    .hero-buttons {
        justify-content: flex-start;
    }

    .hero-image {
        width: 100%;
        max-width: 420px;
        height: auto;
        aspect-ratio: 548 / 537;
    }

    .hero-video {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

@media (max-width: 780px) {
    .hero {
        padding: 30px 0;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        height: auto;
    }

    .hero-content {
        text-align: center;
        order: 2;
    }

    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
    }

    .hero-description {
        max-width: 100%;
        font-size: 1rem;
        margin: 0 auto 2rem;
    }

    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-image {
        width: 100%;
        max-width: 100%;
        height: auto;
        order: 1;
    }

    .hero-video {
        width: 100%;
        height: auto;
        min-height: 300px;
        object-fit: cover;
    }
}

@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 10px 0;
    }

    .navbar .container {
        padding: 0 15px !important;
    }

    .logo img {
        width: 200px;
        height: auto;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .nav-wrapper {
        flex-wrap: nowrap;
        overflow: visible;
    }

    .nav-button {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #a1bae2;
        flex-direction: column;
        padding: 1rem;
        gap: 0;
        display: none;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        z-index: 999;
    }

    .nav-button.active {
        display: flex;
    }

    .nav-menu {
        flex-direction: column;
        gap: 0;
        width: 100%;
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-menu a {
        display: block;
        padding: 1rem;
        width: 100%;
        text-align: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        font-family: 'Instrument Sans', sans-serif;
    }

    .nav-menu li:last-child a {
        border-bottom: none;
    }

    .nav-button > a.btn {
        background: var(--white);
        color: #a1bae2;
        margin-top: 0.5rem;
        border-radius: 30px;
        border-bottom: none;
        display: inline-flex;
        align-items: center;
        gap: 0.75rem;
        justify-content: center;
        width: auto;
        padding: 0.75rem 2rem;
    }

    .nav-button > a.btn i {
        background: #a1bae2;
        color: var(--white);
    }

    .hero {
        padding: 30px 0;
        min-height: auto;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        height: auto;
    }

    .hero-content {
        text-align: center;
        padding: 0;
        order: 1;
    }

    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }

    .hero-description {
        font-size: 1rem;
        max-width: 100%;
        margin-bottom: 1.5rem;
        padding: 0 10px;
    }

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

    .hero-buttons .btn {
        flex: 1;
        min-width: 140px;
        max-width: 200px;
        justify-content: center;
    }

    .hero-image {
        width: 100%;
        height: auto;
        min-height: 300px;
        max-width: 100%;
        order: 2;
    }

    .hero-video {
        width: 100%;
        height: auto;
        min-height: 300px;
    }

    .core-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 400px;
    }

    .welcome-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .welcome-image {
        order: 1;
    }

    .welcome-content {
        order: 2;
        padding: 1rem 0;
    }

    .welcome-content h2 {
        font-size: 2rem;
    }

    .welcome-author {
        flex-direction: row;
        gap: 1rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-card {
        padding: 2rem 1.5rem;
    }

    .service-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }

    .btn-whatsapp,
    .btn-whatsapp-featured,
    .btn-service,
    .btn-service-featured {
        width: 100%;
        flex: 1;
    }

    .instructions-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .services-table-container {
        padding: 1rem;
    }

    .services-table thead {
        display: none;
    }

    .services-table tbody tr {
        display: block;
        margin-bottom: 1.5rem;
        border: 2px solid rgba(158, 185, 212, 0.3);
        border-radius: 15px;
        padding: 1rem;
    }

    .services-table td {
        display: block;
        text-align: left;
        padding: 0.75rem 0;
        border-bottom: 1px solid rgba(158, 185, 212, 0.1);
    }

    .services-table td:last-child {
        border-bottom: none;
    }

    .services-table td::before {
        content: attr(data-label);
        font-weight: 600;
        display: block;
        margin-bottom: 0.5rem;
        color: #9eb9d4;
        font-size: 0.85rem;
        text-transform: uppercase;
    }

    .booking-widget {
        padding: 2rem 1.5rem;
    }

    .simplybook-widget-container {
        padding: 2rem 1.5rem;
    }

    .simplybook-widget-container h2 {
        font-size: 2rem;
    }

    .widget-intro {
        font-size: 1rem;
    }

    .booking-instructions h3 {
        font-size: 2rem;
    }

    .instruction-step {
        padding: 1.5rem;
    }

    .booking-confirmation {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .face-to-face-section {
        padding: 60px 0;
    }

    .face-to-face-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .face-to-face-image {
        margin: 0 auto;
    }

    .face-to-face-image img {
        width: 100%;
        height: auto;
        max-width: 500px;
        margin: 0 auto;
    }

    .face-to-face-text h2 {
        font-size: 2rem;
    }

    .face-to-face-text p {
        font-size: 1.1rem;
    }

    .about-section {
        padding: 2rem 0;
    }

    .about-section .container {
        padding: 0 15px;
    }

    .about-intro {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-intro-image img,
    .about-intro-image video {
        height: 500px;
    }

    .about-intro-content h2 {
        font-size: 2rem;
    }

    .founder-badge {
        padding: 1.25rem;
    }

    .founder-section {
        margin: 3rem 0;
    }

    .founder-content {
        gap: 2rem;
    }

    .founder-bio h3 {
        font-size: 1.8rem;
    }

    .founder-title {
        font-size: 1.1rem;
    }

    .heritage-section {
        padding: 3rem 1.5rem;
        margin: 3rem 0;
    }

    .heritage-content .heritage-intro {
        font-size: 1rem;
    }

    .lineage-cards {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 500px;
    }

    .lineage-card {
        padding: 2rem 1.5rem;
    }

    .lineage-card i {
        font-size: 3rem;
    }

    .lineage-card h4 {
        font-size: 1.3rem;
    }

    .element-section {
        margin: 3rem 0;
        padding: 3rem 1.5rem;
    }

    .element-text p {
        font-size: 1rem;
    }

    .water-circle {
        width: 200px;
        height: 200px;
    }

    .water-circle i {
        font-size: 4.5rem;
    }

    .services-offered {
        margin: 4rem 0;
        padding: 3rem 1.5rem;
    }

    .offerings-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 500px;
    }

    .offering-card {
        padding: 2rem 1.5rem;
    }

    .offering-card i {
        font-size: 3rem;
    }

    .offering-card h4 {
        font-size: 1.2rem;
    }

    .mission-section {
        padding: 3rem 1.5rem;
        margin: 4rem 0;
    }

    .mission-content blockquote {
        font-size: 1.25rem;
        padding: 2rem 1.5rem;
    }

    .testimonials-section {
        padding: 3rem 0;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 600px;
        margin: 0 auto 4rem;
    }

    .testimonial-card {
        padding: 2rem 1.5rem;
    }

    .submit-card {
        padding: 2.5rem 2rem;
    }

    .submit-card h3 {
        font-size: 1.9rem;
    }

    .testimonial-form .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contact-section {
        padding: 3rem 0;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 600px;
        margin: 0 auto 4rem;
    }

    .contact-card {
        padding: 2.5rem 2rem;
    }

    .info-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .info-item {
        padding: 1.75rem 1.25rem;
    }

    .cta-box {
        padding: 3rem 2rem;
        margin-top: 4rem;
    }

    .terms-section {
        padding: 3rem 0;
    }

    .terms-card {
        padding: 2.5rem 2rem;
        margin-bottom: 2.5rem;
    }

    .terms-icon {
        width: 80px;
        height: 80px;
    }

    .terms-icon i {
        font-size: 2.5rem;
    }

    .terms-card h2 {
        font-size: 2rem;
    }

    .policy-highlight {
        padding: 1.5rem;
        gap: 1rem;
    }

    .policy-box {
        padding: 1.75rem;
    }

    .contact-support {
        padding: 3rem 2rem;
    }

    .contact-support h3 {
        font-size: 2rem;
    }

    .acceptance-note {
        padding: 2rem 1.5rem;
    }

    .calendar-header {
        flex-direction: column;
        gap: 1rem;
    }

    .calendar-nav {
        width: 100%;
        padding: 0.7rem 1rem;
        font-size: 0.9rem;
    }

    .calendar-grid {
        gap: 0.3rem;
    }

    .calendar-day {
        font-size: 0.85rem;
        padding: 0.5rem;
    }

    .time-slots {
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
        gap: 0.75rem;
    }

    .time-slot {
        padding: 0.8rem;
        font-size: 0.9rem;
    }

    .booking-form {
        padding: 1.5rem;
    }

    .booking-summary {
        padding: 1.5rem;
    }

    .opening-hours {
        padding: 1.5rem;
    }

    .hours-grid {
        gap: 0.75rem;
    }

    .notification-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .notification-buttons .btn {
        width: 100%;
    }
}

@media (max-width: 600px) {
    .booking-steps {
        gap: 0.5rem;
        padding: 1rem 0;
    }

    .booking-steps .step-number {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }

    .booking-steps .step span {
        font-size: 0.75rem;
    }

    .service-selection {
        gap: 1.5rem;
    }

    .service-option {
        padding: 1.5rem;
    }

    .service-option h4 {
        font-size: 1.1rem;
    }

    .calendar-container {
        padding: 1rem;
    }

    .calendar-grid {
        gap: 0.2rem;
    }

    .calendar-day {
        font-size: 0.75rem;
        border-radius: 5px;
    }

    .time-slots {
        grid-template-columns: repeat(2, 1fr);
    }

    .booking-widget h2 {
        font-size: 1.8rem;
    }

    .booking-widget h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .services-section .container {
        padding: 0 1rem;
    }

    .services-table-container {
        padding: 0.75rem;
        border-radius: 15px;
    }

    .services-table td {
        padding: 0.5rem 0;
        font-size: 0.9rem;
    }

    .services-table td strong {
        font-size: 1rem;
    }

    .services-table td::before {
        font-size: 0.75rem;
    }

    .popular-badge {
        display: block;
        margin: 0.5rem 0 0 0;
        font-size: 0.7rem;
        padding: 4px 10px;
    }

    .btn-primary.btn-small {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }

    .booking-instructions h3 {
        font-size: 1.5rem;
    }

    .instruction-step {
        padding: 1rem;
    }

    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .instruction-step h4 {
        font-size: 1.2rem;
    }

    .instruction-step p {
        font-size: 0.9rem;
    }

    .booking-widget {
        padding: 1.5rem 1rem;
        border-radius: 20px;
    }

    .booking-widget h2 {
        font-size: 1.5rem;
    }

    .booking-widget h3 {
        font-size: 1.3rem;
    }

    .simplybook-widget-container {
        padding: 1.5rem 1rem;
        border-radius: 20px;
    }

    .simplybook-widget-container h2 {
        font-size: 1.5rem;
    }

    .widget-intro {
        font-size: 0.95rem;
    }

    #sbw-widget,
    #sbw-widget iframe {
        min-height: 500px;
    }

    .service-option {
        padding: 1.25rem;
    }

    .service-option h4 {
        font-size: 1rem;
    }

    .service-option .price {
        font-size: 1.3rem;
    }

    .calendar-container {
        padding: 0.75rem;
    }

    .calendar-header h3 {
        font-size: 1.2rem;
    }

    .calendar-nav {
        padding: 0.6rem 0.8rem;
        font-size: 0.85rem;
    }

    .time-slots-container {
        padding: 1rem;
    }

    .time-slots-container h4 {
        font-size: 1.2rem;
    }

    .time-slot {
        padding: 0.7rem 0.5rem;
        font-size: 0.85rem;
    }

    .booking-form {
        padding: 1rem;
    }

    .form-group {
        margin-bottom: 1.25rem;
    }

    .form-group label {
        font-size: 0.9rem;
    }

    .form-group input {
        padding: 0.7rem;
        font-size: 0.9rem;
    }

    .booking-summary {
        padding: 1rem;
    }

    .booking-summary h4 {
        font-size: 1.2rem;
    }

    .booking-summary p {
        font-size: 0.9rem;
    }

    .summary-price {
        font-size: 1.3rem;
    }

    .btn-large {
        padding: 0.9rem 1.5rem;
        font-size: 1rem;
    }

    .booking-success {
        padding: 2rem 1rem;
    }

    .success-icon {
        font-size: 4rem;
        margin-bottom: 1.25rem;
    }

    .booking-success h3 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }

    .booking-success > p {
        font-size: 0.95rem;
        margin-bottom: 1.75rem;
    }

    .success-details {
        padding: 1.75rem 1.5rem;
        max-width: 100%;
    }

    .success-details p {
        font-size: 1rem;
        margin: 0.85rem 0;
    }

    .notification-buttons {
        gap: 1rem;
        margin: 2rem 0;
    }

    .btn-whatsapp,
    .btn-email {
        padding: 0.9rem 1.75rem;
        font-size: 1rem;
    }

    .success-details {
        padding: 1.5rem;
    }

    .success-details p {
        font-size: 1rem;
    }

    .btn-whatsapp,
    .btn-email {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
        width: 100%;
    }

    .opening-hours {
        padding: 1.5rem 1rem;
    }

    .opening-hours h3 {
        font-size: 1.5rem;
    }

    .hours-grid {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .hours-item {
        padding: 0.75rem;
        font-size: 0.9rem;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .page-header p {
        font-size: 1rem;
    }

    .face-to-face-section {
        padding: 40px 0;
    }

    .face-to-face-content {
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .face-to-face-image {
        border-radius: 15px;
    }

    .face-to-face-image img {
        max-width: 100%;
        border-radius: 15px;
    }

    .face-to-face-text h2 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }

    .face-to-face-text p {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .face-to-face-text .btn {
        width: 100%;
        max-width: 300px;
    }

    .about-section {
        padding: 1.5rem 0;
    }

    .about-section .container {
        padding: 0 10px;
    }

    .about-intro-image img,
    .about-intro-image video {
        height: 400px;
    }

    .about-intro-content h2 {
        font-size: 1.8rem;
    }

    .about-intro-content .intro-text {
        font-size: 1rem;
    }

    .intro-icon i {
        font-size: 2rem;
    }

    .founder-badge {
        padding: 1rem;
        gap: 1rem;
    }

    .founder-badge-image {
        width: 60px;
        height: 60px;
    }

    .founder-badge-info h4 {
        font-size: 1.1rem;
    }

    .founder-badge-info p {
        font-size: 0.9rem;
    }

    .founder-section {
        margin: 2rem 0;
    }

    .founder-bio h3 {
        font-size: 1.5rem;
    }

    .founder-title {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .founder-bio p {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .heritage-section {
        padding: 2rem 1rem;
        margin: 2rem 0;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .section-header i {
        font-size: 2rem;
    }

    .heritage-content .heritage-intro {
        font-size: 0.95rem;
    }

    .lineage-card {
        padding: 1.25rem;
    }

    .lineage-card i {
        font-size: 2rem;
    }

    .lineage-card h4 {
        font-size: 1.1rem;
    }

    .lineage-card p {
        font-size: 0.9rem;
    }

    .element-section {
        margin: 2rem 0;
        padding: 2.5rem 1rem;
    }

    .element-text p {
        font-size: 0.95rem;
        margin-bottom: 1.25rem;
    }

    .water-circle {
        width: 180px;
        height: 180px;
    }

    .water-circle i {
        font-size: 4rem;
    }

    .services-offered {
        margin: 2.5rem 0;
        padding: 2.5rem 1rem;
    }

    .offerings-grid {
        gap: 1.5rem;
    }

    .offering-card {
        padding: 2rem 1.25rem;
    }

    .offering-card i {
        font-size: 2.8rem;
    }

    .offering-card h4 {
        font-size: 1.15rem;
    }

    .offering-card p {
        font-size: 0.95rem;
    }

    .mission-section {
        padding: 2.5rem 1rem;
        margin: 2.5rem 0;
    }

    .mission-content blockquote {
        font-size: 1.15rem;
        padding: 2rem 1.25rem;
    }

    .mission-text {
        font-size: 1rem;
    }

    .testimonials-section {
        padding: 2.5rem 0;
    }

    .testimonials-grid {
        gap: 1.5rem;
        margin-bottom: 3rem;
    }

    .testimonial-card {
        padding: 1.75rem 1.25rem;
    }

    .testimonial-stars {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .testimonial-text {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .submit-card {
        padding: 2.25rem 1.5rem;
    }

    .submit-card i {
        font-size: 3rem;
    }

    .submit-card h3 {
        font-size: 1.7rem;
    }

    .testimonial-form input,
    .testimonial-form select,
    .testimonial-form textarea {
        padding: 0.9rem;
    }

    .contact-section {
        padding: 2.5rem 0;
    }

    .contact-grid {
        gap: 1.5rem;
        margin-bottom: 3rem;
    }

    .contact-card {
        padding: 2.25rem 1.5rem;
    }

    .contact-icon {
        width: 80px;
        height: 80px;
    }

    .contact-icon i {
        font-size: 2.5rem;
    }

    .contact-card h3 {
        font-size: 1.4rem;
    }

    .btn-whatsapp,
    .btn-email {
        padding: 0.9rem 1.5rem;
        font-size: 0.95rem;
    }

    .contact-info-section {
        margin: 4rem 0;
    }

    .contact-info-section h2 {
        font-size: 2rem;
        margin-bottom: 2.5rem;
    }

    .info-grid {
        gap: 1.5rem;
    }

    .info-item {
        padding: 1.5rem 1.25rem;
    }

    .info-item i {
        font-size: 2rem;
    }

    .cta-box {
        padding: 2.5rem 2rem;
        margin-top: 3rem;
    }

    .cta-box h3 {
        font-size: 1.9rem;
    }

    .terms-section {
        padding: 2.5rem 0;
    }

    .terms-card {
        padding: 2.25rem 1.5rem;
        margin-bottom: 2rem;
    }

    .terms-icon {
        width: 70px;
        height: 70px;
    }

    .terms-icon i {
        font-size: 2.2rem;
    }

    .terms-card h2 {
        font-size: 1.8rem;
        margin-bottom: 1.75rem;
    }

    .terms-text p {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }

    .policy-highlight {
        padding: 1.5rem 1.25rem;
        gap: 1rem;
        margin: 1.75rem 0;
    }

    .policy-highlight i {
        font-size: 1.4rem;
    }

    .policy-box {
        padding: 1.5rem;
        margin: 1.75rem 0;
    }

    .policy-box h4 {
        font-size: 1.1rem;
    }

    .policy-box ul li {
        padding: 0.6rem 0;
        font-size: 0.95rem;
    }

    .general-terms li {
        padding: 1rem 0;
        font-size: 0.95rem;
    }

    .contact-support {
        padding: 2.5rem 2rem;
        margin: 3rem 0;
    }

    .contact-support h3 {
        font-size: 1.8rem;
    }

    .contact-support p {
        font-size: 0.95rem;
    }

    .support-buttons {
        gap: 0.85rem;
    }

    .acceptance-note {
        padding: 2rem 1.5rem;
    }

    .acceptance-note i {
        font-size: 1.6rem;
    }

    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
    }

    .hero-description {
        font-size: 0.9375rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
    }

    .hero-image {
        min-height: 250px;
    }

    .hero-video {
        min-height: 250px;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .founder-content,
    .element-content {
        grid-template-columns: 1fr;
    }

    .services-table {
        font-size: 0.9rem;
    }

    .services-table thead {
        display: none;
    }

    .services-table tr {
        display: block;
        margin-bottom: 1rem;
        border: 1px solid var(--border);
        border-radius: 10px;
    }

    .services-table td {
        display: block;
        text-align: right;
        padding: 0.8rem 1rem;
        border-bottom: 1px solid var(--border);
    }

    .services-table td:last-child {
        border-bottom: none;
    }

    .services-table td:before {
        content: attr(data-label);
        float: left;
        font-weight: bold;
        color: var(--aqua);
    }

    .booking-steps {
        gap: 1rem;
        padding: 1rem 0;
    }

    .booking-steps .step span {
        font-size: 0.9rem;
    }

    .service-selection {
        grid-template-columns: 1fr;
    }

    .calendar-header {
        flex-direction: column;
        gap: 1rem;
    }

    .calendar-nav {
        width: 100%;
    }

    .calendar-grid {
        gap: 0.3rem;
    }

    .calendar-day {
        font-size: 0.9rem;
    }

    .time-slots {
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    }

    .booking-confirmation {
        grid-template-columns: 1fr;
    }

    .hours-grid {
        grid-template-columns: 1fr;
    }

    .notification-buttons {
        flex-direction: column;
    }

    .btn-whatsapp,
    .btn-email {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 375px) {
    body {
        overflow-x: hidden !important;
    }

    .calendar-container {
        padding: 0.5rem 0.5rem !important;
        overflow: hidden !important;
        width: 100% !important;
        max-width: 100vw !important;
        box-sizing: border-box !important;
        margin: 0 !important;
    }

    .calendar-header {
        margin-bottom: 0.75rem;
        padding: 0 0.25rem;
        box-sizing: border-box;
    }

    .calendar-header h3 {
        font-size: 0.9rem;
    }

    .calendar-nav {
        padding: 0.5rem;
        font-size: 0.7rem;
    }

    .calendar-grid {
        gap: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
        padding: 0 !important;
        grid-template-columns: repeat(7, minmax(0, 1fr)) !important;
    }

    .calendar-day-header {
        font-size: 0.6rem;
        padding: 0.4rem 0.05rem;
        font-weight: 700;
        box-sizing: border-box;
        min-width: 0;
        overflow: hidden;
        text-align: center;
    }

    .calendar-day {
        font-size: 0.65rem;
        padding: 0.3rem 0.05rem !important;
        font-weight: 600;
        box-sizing: border-box !important;
        min-width: 0 !important;
        max-width: 100% !important;
        width: 100% !important;
        aspect-ratio: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 5px;
        margin: 0 !important;
        overflow: hidden;
    }

    .calendar-day.selected {
        transform: none !important;
        scale: 1 !important;
        box-shadow: inset 0 0 0 2px rgba(90, 200, 250, 0.8);
        background: linear-gradient(135deg, var(--aqua), var(--lavender)) !important;
    }

    .calendar-day:hover:not(.disabled):not(.past) {
        transform: none !important;
        scale: 1 !important;
    }

    .calendar-day.today {
        border: 1px solid var(--gold);
        box-sizing: border-box;
    }

    .time-slots-container {
        padding: 0.75rem 0.5rem;
        box-sizing: border-box;
        width: 100%;
    }

    .time-slots {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .time-slot {
        padding: 0.8rem;
        font-size: 0.9rem;
        box-sizing: border-box;
        width: 100%;
    }

    .booking-widget {
        padding: 1rem 0.5rem;
        box-sizing: border-box;
        width: 100%;
        overflow: hidden;
    }

    .booking-widget h2 {
        font-size: 1.3rem;
    }

    .booking-widget h3 {
        font-size: 1.1rem;
    }

    .simplybook-widget-container {
        padding: 1rem 0.5rem;
        box-sizing: border-box;
        width: 100%;
        margin: 2rem auto;
    }

    .simplybook-widget-container h2 {
        font-size: 1.3rem;
    }

    .widget-intro {
        font-size: 0.9rem;
        padding: 0 0.5rem;
    }

    #sbw-widget,
    #sbw-widget iframe {
        min-height: 450px;
    }

    .service-option {
        padding: 1rem;
        box-sizing: border-box;
    }

    .service-option h4 {
        font-size: 0.95rem;
    }

    .booking-steps {
        gap: 0.3rem;
        overflow: hidden;
    }

    .booking-steps .step-number {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .booking-steps .step span {
        font-size: 0.7rem;
    }

    .services-table-container {
        padding: 0.5rem;
        box-sizing: border-box;
        overflow: hidden;
    }

    .services-table td {
        font-size: 0.85rem;
    }

    .booking-form,
    .booking-summary {
        padding: 0.75rem;
        box-sizing: border-box;
        width: 100%;
    }

    .form-group input {
        font-size: 0.85rem;
        box-sizing: border-box;
        width: 100%;
    }

    .services-section .container {
        padding: 0 0.5rem;
        box-sizing: border-box;
        overflow: hidden;
    }

    .booking-confirmation {
        overflow: hidden;
    }

    .opening-hours {
        box-sizing: border-box;
        overflow: hidden;
    }

    .face-to-face-section {
        padding: 30px 0;
    }

    .face-to-face-content {
        gap: 1rem;
        padding: 0 0.5rem;
    }

    .face-to-face-image {
        border-radius: 12px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    }

    .face-to-face-image img {
        border-radius: 12px;
    }

    .face-to-face-text h2 {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }

    .face-to-face-text p {
        font-size: 0.9rem;
        margin-bottom: 0.75rem;
    }

    .face-to-face-text .btn {
        width: 100%;
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
    }

    .about-section {
        padding: 1rem 0;
    }

    .about-section .container {
        padding: 0 10px;
    }

    .about-intro {
        gap: 1.5rem;
    }

    .about-intro-image img,
    .about-intro-image video {
        height: 350px;
    }

    .about-intro-content {
        padding: 1rem 0;
    }

    .about-intro-content h2 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .about-intro-content .intro-text {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .intro-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 1rem;
    }

    .intro-icon i {
        font-size: 1.5rem;
    }

    .founder-section {
        margin: 1.5rem 0;
    }

    .founder-image {
        margin-bottom: 1.5rem;
    }

    .founder-bio h3 {
        font-size: 1.3rem;
        margin-bottom: 0.5rem;
    }

    .founder-title {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }

    .founder-bio p {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .heritage-section {
        padding: 1.5rem 0.75rem;
        margin: 1.5rem 0;
    }

    .section-header {
        margin-bottom: 1.5rem;
    }

    .section-header h2 {
        font-size: 1.5rem;
    }

    .section-header i {
        font-size: 1.5rem;
    }

    .heritage-content .heritage-intro {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }

    .lineage-cards {
        gap: 1rem;
    }

    .lineage-card {
        padding: 1rem;
    }

    .lineage-card i {
        font-size: 1.8rem;
        margin-bottom: 0.75rem;
    }

    .lineage-card h4 {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }

    .lineage-card p {
        font-size: 0.85rem;
        line-height: 1.5;
    }

    .element-section {
        margin: 1.5rem 0;
        padding: 2rem 0.75rem;
    }

    .element-text p {
        font-size: 0.9rem;
        line-height: 1.7;
        margin-bottom: 1.25rem;
    }

    .element-visual {
        margin-top: 2rem;
    }

    .water-circle {
        width: 160px;
        height: 160px;
    }

    .water-circle i {
        font-size: 3.5rem;
    }

    .services-offered {
        margin: 2rem 0;
        padding: 2rem 0.75rem;
    }

    .offerings-grid {
        gap: 1.25rem;
    }

    .offering-card {
        padding: 1.75rem 1rem;
    }

    .offering-card i {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    .offering-card h4 {
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
    }

    .offering-card p {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .mission-section {
        padding: 2rem 0.75rem;
        margin: 2rem 0;
    }

    .mission-content blockquote {
        margin-bottom: 2rem;
        font-size: 1.05rem;
        padding: 1.5rem 1rem;
        line-height: 1.6;
    }

    .mission-text {
        font-size: 0.95rem;
        line-height: 1.7;
        margin-bottom: 2rem;
    }

    .mission-content .btn {
        width: 100%;
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }

    .page-header {
        padding: 2rem 0;
    }

    .page-header h1 {
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
    }

    .page-header p {
        font-size: 0.9rem;
    }

    .testimonials-section {
        padding: 2rem 0;
    }

    .testimonials-grid {
        gap: 1.25rem;
        margin-bottom: 2.5rem;
    }

    .testimonial-card {
        padding: 1.5rem 1rem;
    }

    .testimonial-stars {
        font-size: 0.95rem;
        margin-bottom: 0.9rem;
    }

    .testimonial-text {
        font-size: 0.9rem;
        line-height: 1.7;
        margin-bottom: 1.25rem;
    }

    .testimonial-author {
        padding-top: 0.9rem;
    }

    .testimonial-author strong {
        font-size: 1rem;
    }

    .testimonial-author span {
        font-size: 0.85rem;
    }

    .submit-testimonial {
        margin-top: 3rem;
    }

    .submit-card {
        padding: 2rem 1.25rem;
    }

    .submit-card i {
        font-size: 2.5rem;
        margin-bottom: 1.25rem;
    }

    .submit-card h3 {
        font-size: 1.5rem;
        margin-bottom: 0.9rem;
    }

    .submit-card > p {
        font-size: 0.95rem;
        margin-bottom: 1.75rem;
    }

    .testimonial-form input,
    .testimonial-form select,
    .testimonial-form textarea {
        padding: 0.85rem;
        font-size: 0.95rem;
    }

    .testimonial-form label {
        font-size: 0.9rem;
        margin-bottom: 0.6rem;
    }

    .testimonial-form .form-group {
        margin-bottom: 1.25rem;
    }

    .testimonial-form .btn-large {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }

    .submit-testimonial .note {
        font-size: 0.85rem;
        margin-top: 1.25rem;
    }

    .contact-section {
        padding: 2rem 0;
    }

    .contact-grid {
        gap: 1.25rem;
        margin-bottom: 2.5rem;
    }

    .contact-card {
        padding: 2rem 1.25rem;
    }

    .contact-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 1.5rem;
    }

    .contact-icon i {
        font-size: 2.2rem;
    }

    .contact-card h3 {
        font-size: 1.3rem;
        margin-bottom: 0.9rem;
    }

    .contact-card p {
        font-size: 0.95rem;
        margin-bottom: 1.75rem;
    }

    .btn-whatsapp,
    .btn-email {
        padding: 0.85rem 1.25rem;
        font-size: 0.9rem;
    }

    .social-buttons {
        gap: 0.85rem;
    }

    .social-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .contact-info-section {
        margin: 3rem 0;
    }

    .contact-info-section h2 {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }

    .info-grid {
        gap: 1.25rem;
    }

    .info-item {
        padding: 1.5rem 1rem;
        gap: 1rem;
    }

    .info-item i {
        font-size: 1.8rem;
    }

    .info-item h4 {
        font-size: 1rem;
        margin-bottom: 0.4rem;
    }

    .info-item p {
        font-size: 0.9rem;
    }

    .cta-box {
        padding: 2.5rem 1.5rem;
        margin-top: 2.5rem;
    }

    .cta-box h3 {
        font-size: 1.6rem;
        margin-bottom: 1rem;
    }

    .cta-box p {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }

    .terms-section {
        padding: 2rem 0;
    }

    .terms-card {
        padding: 2rem 1.25rem;
        margin-bottom: 1.75rem;
    }

    .terms-icon {
        width: 65px;
        height: 65px;
        margin-bottom: 1.5rem;
    }

    .terms-icon i {
        font-size: 2rem;
    }

    .terms-card h2 {
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
    }

    .terms-text p {
        font-size: 0.9rem;
        line-height: 1.7;
        margin-bottom: 1rem;
    }

    .policy-highlight {
        padding: 1.25rem 1rem;
        gap: 0.9rem;
        margin: 1.5rem 0;
    }

    .policy-highlight i {
        font-size: 1.3rem;
    }

    .policy-highlight p {
        font-size: 0.9rem;
    }

    .policy-box {
        padding: 1.5rem 1.25rem;
        margin: 1.5rem 0;
    }

    .policy-box h4 {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .policy-box ul li {
        padding: 0.5rem 0;
        padding-left: 1.75rem;
        font-size: 0.9rem;
    }

    .general-terms li {
        padding: 1rem 0;
        font-size: 0.9rem;
    }

    .contact-support {
        padding: 2.5rem 1.5rem;
        margin: 2.5rem 0;
    }

    .contact-support h3 {
        font-size: 1.6rem;
        margin-bottom: 1rem;
    }

    .contact-support p {
        font-size: 0.9rem;
        margin-bottom: 2rem;
    }

    .support-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }

    .support-buttons .btn {
        width: 100%;
        max-width: 300px;
    }

    .acceptance-note {
        padding: 1.75rem 1.25rem;
        gap: 1rem;
    }

    .acceptance-note i {
        font-size: 1.5rem;
    }

    .acceptance-note p {
        font-size: 0.9rem;
        line-height: 1.6;
    }
}

/* Hide additional image on desktop by default */
.author-additional-image {
    display: none;
}

/* Mobile Image Replacements */
@media screen and (max-width: 400px) {
    /* Hide Tamlyn Venn.png on mobile */
    .welcome-author .author-image {
        display: none;
    }
    
    /* Show additional image on mobile */
    img.author-additional-image {
        display: block;
        margin-top: 1.5rem;
        border-radius: 15px;
        width: 200px;
        height: 200px;
        object-fit: cover;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    }
}
