/* =============================================
   VARIABLES & RESET
   ============================================= */

:root {
/* Colors Header */
    --header-gold: #D4AF37;
    --header-gold-light: #E8D9A9;
    --header-gold-dark: #B8941F;
    --header-gray-dark: #2C2C2C;
    --header-gray-medium: #5A5A5A;
    --header-gray-light: #F5F5F5;
    --header-white: #FFFFFF;
    --header-whatsapp: #25D366;
    --header-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
/* Colors Landing Page */
    --lp-gold: #D4AF37;
    --lp-gold-light: #FFE8A3;
    --lp-gold-lighter: #FFF4D4;
    --lp-gold-dark: #B8941F;
    --lp-cream: #FFFBF0;
    --lp-white: #FFFFFF;
    --lp-gray-light: #F8F8F8;
    --lp-gray-dark: #3A3A3A;
    --lp-whatsapp: #25D366;
    --lp-shadow: 0 10px 30px rgba(212, 175, 55, 0.15);
    --lp-radius: 12px;
/* Colors Footer */
    --footer-gold: #D4AF37;
    --footer-gold-light: #E8D9A9;
    --footer-gold-dark: #B8941F;
    --footer-gray-dark: #2C2C2C;
    --footer-gray-medium: #5A5A5A;
    --footer-gray-light: #F5F5F5;
    --footer-white: #FFFFFF;
    --footer-whatsapp: #25D366;
    --footer-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);    
    
/* Fonts */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
    
/* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 5rem;
    
/* Breakpoints */
    --breakpoint-xs: 480px;
    --breakpoint-sm: 768px;
    --breakpoint-md: 992px;
    --breakpoint-lg: 1200px;
}

/* Background Classes */
.bg-light-gold {
    background: linear-gradient(135deg, var(--lp-cream) 0%, #FFF9EB 100%);
}

.bg-white {
    background: var(--lp-white);
}

.bg-gold-gradient {
    background: linear-gradient(135deg, var(--lp-gold) 0%, var(--lp-gold-dark) 100%);
    color: var(--lp-white);
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--gray-dark);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* =============================================
   LAYOUT & CONTAINERS
   ============================================= */

.container-fluid {
    width: 100%;
    padding: 0 var(--spacing-sm);
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* Improved Contrast Colors */
.landing-template h1,
.landing-template h2,
.landing-template h3,
.landing-template h4,
.landing-template .section-title,
.landing-template .hero-title,
.landing-template .cta-title {
    color: #1a1a1a;
    font-weight: 700;
    line-height: 1.3;
}

.landing-template p,
.landing-template .hero-subtitle,
.landing-template .section-subtitle,
.landing-template .cta-description {
    color: #333333;
    font-weight: 400;
}

/* WordPress Specific */
.alignwide {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.alignfull {
    max-width: 100vw;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}

.wp-block-image img {
    height: auto;
    max-width: 100%;
    display: block;
}

/* =============================================
   TYPOGRAPHY
   ============================================= */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
    color: var(--gray-dark);
    margin-bottom: var(--spacing-sm);
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.8rem;
}

h4 {
    font-size: 1.5rem;
}

p {
    margin-bottom: var(--spacing-sm);
    color: var(--gray-medium);
}

a {
    color: var(--gold-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--gold-dark);
}

.landing-template {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
}

/* =============================================
   UTILITY CLASSES
   ============================================= */

/* Text Alignment */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

/* Text Colors */
.text-gold { color: var(--gold-primary); }
.text-white { color: var(--white); }
.text-whatsapp { color: var(--whatsapp-green); }

/* Background Colors */
.bg-gray-light { background: var(--gray-light); }
.bg-gray-dark { background: var(--gray-dark); color: var(--white); }
.bg-gold { background: var(--gold-primary); color: var(--white); }

/* Margins */
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mt-1 { margin-top: var(--spacing-sm); }
.mb-1 { margin-bottom: var(--spacing-sm); }
.mt-2 { margin-top: var(--spacing-md); }
.mb-2 { margin-bottom: var(--spacing-md); }
.mt-3 { margin-top: var(--spacing-lg); }
.mb-3 { margin-bottom: var(--spacing-lg); }

/* Display */
.d-block { display: block; }
.d-inline-block { display: inline-block; }
.d-flex { display: flex; }
.d-grid { display: grid; }

/* Flexbox */
.flex-column { flex-direction: column; }
.justify-center { justify-content: center; }
.align-center { align-items: center; }
.gap-1 { gap: var(--spacing-sm); }
.gap-2 { gap: var(--spacing-md); }

/* =============================================
   BUTTONS
   ============================================= */

/* Base Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 500;
    text-decoration: none;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    gap: 0.5rem;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Primary Button */
.btn-primary {
    background: #1a1a1a;
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease;
}

.btn-primary:hover {
    background: #333;
}

.btn-primary-outline {
    background: transparent;
    color: var(--gold-primary);
    border-color: var(--gold-primary);
}

.btn-primary-outline:hover {
    background: var(--gold-primary);
    color: var(--white);
}

/* Secondary Button */
.btn-secondary {
    background: var(--gray-light);
    color: var(--gray-dark);
    border-color: var(--gray-light);
}

.btn-secondary:hover {
    background: var(--gray-medium);
    color: var(--white);
    border-color: var(--gray-medium);
}

.btn-secondary-outline {
    background: transparent;
    color: var(--gray-dark);
    border-color: var(--gray-light);
}

.btn-secondary-outline:hover {
    background: var(--gray-light);
    color: var(--gray-dark);
}

/* WhatsApp Buttons */
.btn-whatsapp {
    background: #25D366;
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease;
}

.btn-whatsapp:hover {
    background: #128C7E;
}

.btn-whatsapp-small {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    border: none;
    padding: 10px 22px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.2);
}

.btn-whatsapp-small:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp-small:active {
    transform: translateY(0);
}

.btn-whatsapp-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn-whatsapp-hero {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    padding: 18px 30px;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-size: 1.1rem;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
    max-width: 400px;
}

.btn-whatsapp-hero:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp-final {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    padding: 20px 40px;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 40px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp-cta {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.btn-whatsapp-footer {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    border: none;
    padding: 14px 25px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.2);
}

.btn-whatsapp-footer:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}

/* =============================================
   HEADER & NAVIGATION
   ============================================= */

/* Base Header Styles */
.header-top-bar {
    background: linear-gradient(135deg, var(--header-gray-dark) 0%, #1a1a1a 100%);
    padding: 8px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--header-gray-light);
    font-size: 0.85rem;
}

.site-header {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.site-header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* Header Main */
.header-main {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(245, 245, 245, 0.98) 100%);
    backdrop-filter: blur(10px);
    box-shadow: var(--header-shadow);
    position: relative;
    z-index: 1000;
}

/* Sticky header on scroll */
.site-header.sticky .header-main {
    animation: slideDown 0.3s ease;
}

/* Submenu dropdown indicator */
#primary-menu > li.menu-item-has-children:hover > .sub-menu {
    animation: fadeInUp 0.3s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Progress bar animation */
.site-header.scrolled .progress-fill {
    width: var(--scroll-percentage);
}

/* Mobile menu open animation */
.main-navigation.active .menu-container {
    animation: slideInRight 0.3s ease;
}

@keyframes slideInRight {
    from {
        right: -100%;
    }
    to {
        right: 0;
    }
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 80px;
    position: relative;
}

/* Site Branding */
.site-branding {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.logo-link:hover {
    transform: scale(1.02);
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--header-gold) 0%, var(--header-gold-dark) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}

.ring-icon {
    font-size: 1.8rem;
    animation: gentlePulse 3s infinite ease-in-out;
}

@keyframes gentlePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.logo-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.site-title {
    margin: 0;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--header-gray-dark);
    line-height: 1;
    display: flex;
    align-items: center;
    gap: 2px;
}

.site-title a {
    color: #1a1a1a;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
}

.site-title .highlight {
    color: var(--header-gold);
    font-weight: 800;
    position: relative;
}

.site-title .highlight::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--header-gold) 0%, transparent 100%);
}

.site-description {
    display: none;
    font-size: 0.9rem;
    color: #666;
    margin: 5px 0 0;
}

.site-tagline {
    margin: 0;
    font-size: 0.85rem;
    color: var(--header-gray-medium);
    font-weight: 400;
    letter-spacing: 0.5px;
}

/* Header Right Section */
.header-right {
    display: flex;
    align-items: center;
    gap: 30px;
}

/* Navigation */
.main-navigation {
    position: relative;
}

.menu-container {
    display: flex;
    align-items: center;
}

#primary-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2px;
}

#primary-menu > li {
    position: relative;
}

#primary-menu > li > a {
    color: var(--header-gray-medium);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 12px 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: block;
    white-space: nowrap;
    position: relative;
}

#primary-menu > li > a::before {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 20px;
    right: 20px;
    height: 2px;
    background: linear-gradient(90deg, var(--header-gold) 0%, transparent 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

#primary-menu > li > a:hover,
#primary-menu > li.current-menu-item > a {
    color: var(--header-gray-dark);
}

#primary-menu > li > a:hover::before,
#primary-menu > li.current-menu-item > a::before {
    transform: scaleX(1);
}

#primary-menu > li.menu-item-has-children > a::after {
    content: '▼';
    font-size: 0.6rem;
    margin-left: 6px;
    transition: transform 0.3s ease;
}

#primary-menu > li.menu-item-has-children:hover > a::after {
    transform: rotate(180deg);
}

/* Submenu Styles */
#primary-menu .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--header-white);
    min-width: 220px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 100;
    border: 1px solid var(--header-gray-light);
}

#primary-menu li:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

#primary-menu .sub-menu li a {
    padding: 12px 24px;
    color: var(--header-gray-medium);
    font-size: 0.9rem;
    display: block;
    transition: all 0.2s ease;
    position: relative;
}

#primary-menu .sub-menu li a::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: var(--header-gold);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

#primary-menu .sub-menu li a:hover {
    color: var(--header-gray-dark);
    background: var(--header-gray-light);
    padding-left: 35px;
}

#primary-menu .sub-menu li a:hover::before {
    opacity: 1;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-whatsapp-header {
    background: linear-gradient(135deg, var(--header-whatsapp) 0%, #128C7E 100%);
    color: var(--header-white);
    border: none;
    padding: 12px 20px;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.2);
    position: relative;
    overflow: hidden;
}

.btn-whatsapp-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-whatsapp-header:hover::before {
    left: 100%;
}

.btn-whatsapp-header:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}

.whatsapp-icon {
    font-size: 1.2rem;
    animation: gentlePulse 2s infinite ease-in-out;
}

.cta-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
}

.cta-main {
    font-size: 0.9rem;
    font-weight: 600;
}

.cta-sub {
    font-size: 0.75rem;
    opacity: 0.9;
    font-weight: 400;
}

.btn-booking {
    background: linear-gradient(135deg, var(--header-gold) 0%, var(--header-gold-dark) 100%);
    color: var(--header-white);
    border: none;
    padding: 12px 20px;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}

.btn-booking:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
}

.booking-icon {
    font-size: 1.1rem;
}

/* Menu Toggle for Mobile */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    color: var(--header-gray-dark);
    transition: color 0.3s ease;
    align-items: center;
    gap: 8px;
}

.menu-toggle:hover {
    color: var(--header-gold);
}

.hamburger-box {
    width: 24px;
    height: 18px;
    display: inline-block;
    position: relative;
}

.hamburger-inner {
    display: block;
    top: 50%;
    margin-top: -1px;
}

.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
    width: 24px;
    height: 2px;
    background-color: currentColor;
    border-radius: 1px;
    position: absolute;
    transition-property: transform;
    transition-duration: 0.15s;
    transition-timing-function: ease;
}

.hamburger-inner::before,
.hamburger-inner::after {
    content: "";
    display: block;
}

.hamburger-inner::before {
    top: -8px;
}

.hamburger-inner::after {
    bottom: -8px;
}

.menu-toggle .bar {
    display: block;
    width: 24px;
    height: 2px;
    background: #333;
    margin: 5px auto;
    transition: all 0.3s ease;
}

.menu-toggle[aria-expanded="true"] .hamburger-inner {
    transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .hamburger-inner::before {
    top: 0;
    transform: rotate(90deg);
}

.menu-toggle[aria-expanded="true"] .hamburger-inner::after {
    top: 0;
    transform: rotate(90deg);
    opacity: 0;
}

.menu-text {
    font-size: 0.9rem;
    font-weight: 500;
}

/* Progress Bar */
.header-progress-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: rgba(212, 175, 55, 0.1);
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--header-gold) 0%, var(--header-whatsapp) 100%);
    width: 0%;
    transition: width 0.3s ease;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Header CTA */
.header-cta {
    flex: 0 0 auto;
}

/* Mobile menu overlay */
.menu-overlay {
    display: none;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
}

.menu-overlay.active {
    display: block;
}

/* =============================================
   HERO SECTIONS
   ============================================= */

/* Landing Hero Section */
.landing-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--lp-gold) 0%, var(--lp-gold-dark) 100%);
    color: var(--lp-white);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
    opacity: 0.2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.9) 0%, rgba(184, 148, 31, 0.8) 100%);
    z-index: 2;
}

.gold-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
    z-index: 3;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.hero-wrapper {
    position: relative;
    z-index: 4;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - 160px); /* Account for header height */
}

.hero-content {
    max-width: 800px;
    width: 100%;
    text-align: center;
    padding: 40px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 25px;
    padding: 12px 25px;
    backdrop-filter: blur(10px);
    animation: fadeInUp 0.6s ease;
}

.badge-icon {
    color: var(--lp-white);
    font-size: 1.2rem;
}

.badge-text {
    color: var(--lp-white);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.2;
    margin: 0;
    color: var(--lp-white);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2);
    font-weight: 700;
    animation: fadeInUp 0.6s ease 0.2s both;
}

.hero-subtitle {
    font-size: 1.4rem;
    line-height: 1.6;
    margin: 0;
    color: var(--lp-gold-lighter);
    opacity: 0.95;
    max-width: 700px;
    animation: fadeInUp 0.6s ease 0.4s both;
}

/* Hero Stats */
.hero-stats {
    width: 100%;
    animation: fadeInUp 0.6s ease 0.6s both;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 600px;
    margin: 0 auto;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 25px 20px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: var(--lp-radius);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-5px);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--lp-white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    line-height: 1;
}

.stat-label {
    font-size: 0.95rem;
    color: var(--lp-gold-lighter);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
}

/* Hero CTA */
.hero-cta {
    width: 100%;
    animation: fadeInUp 0.6s ease 0.8s both;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    max-width: 600px;
    margin: 0 auto;
}

.btn-whatsapp-hero {
    background: linear-gradient(135deg, var(--lp-whatsapp) 0%, #128C7E 100%);
    color: var(--lp-white);
    border: none;
    padding: 20px 40px;
    border-radius: var(--lp-radius);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    position: relative;
    overflow: hidden;
    flex: 1;
    min-width: 280px;
    justify-content: center;
}

.btn-whatsapp-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-whatsapp-hero:hover::before {
    left: 100%;
}

.btn-whatsapp-hero:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.5);
}

.whatsapp-icon {
    font-size: 1.5rem;
    animation: gentlePulse 2s infinite ease-in-out;
}

.whatsapp-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 3px;
    text-align: left;
}

.whatsapp-text strong {
    font-size: 1.2rem;
    font-weight: 700;
}

.whatsapp-text small {
    font-size: 0.9rem;
    opacity: 0.9;
    font-weight: 400;
}

.btn-booking-hero {
    background: rgba(255, 255, 255, 0.2);
    color: var(--lp-white);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 20px 40px;
    border-radius: var(--lp-radius);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    flex: 1;
    min-width: 280px;
    justify-content: center;
}

.btn-booking-hero:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(255, 255, 255, 0.3);
}

.booking-icon {
    font-size: 1.4rem;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 4;
    animation: fadeIn 1s ease 1s both;
}

.scroll-text {
    color: var(--lp-white);
    font-size: 0.95rem;
    opacity: 0.8;
    letter-spacing: 1px;
    font-weight: 500;
}

.scroll-arrow {
    color: var(--lp-white);
    font-size: 1.8rem;
    animation: bounce 2s infinite ease-in-out;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes gentlePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Section Common Styles */
.section-padding {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    padding: 10px 20px;
    margin-bottom: 20px;
    color: var(--lp-gold);
    font-weight: 600;
    font-size: 0.95rem;
}

.badge-light {
    background: rgba(212, 175, 55, 0.15);
    border-color: rgba(212, 175, 55, 0.3);
}

.bg-gold-gradient .section-badge {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    color: var(--lp-white);
}

.section-title {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--lp-gray-dark);
    font-weight: 700;
}

.bg-gold-gradient .section-title {
    color: var(--lp-white);
}

.section-subtitle {
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--lp-gray-dark);
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.8;
}

.bg-gold-gradient .section-subtitle {
    color: var(--lp-gold-lighter);
    opacity: 0.9;
}

.section-footer {
    text-align: center;
    margin-top: 50px;
}

.btn-view-all {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--lp-gold);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 12px 30px;
    border: 2px solid var(--lp-gold);
    border-radius: 25px;
    transition: all 0.3s ease;
    background: transparent;
}

.btn-view-all:hover {
    background: var(--lp-gold);
    color: var(--lp-white);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

.bg-gold-gradient .btn-view-all {
    border-color: var(--lp-white);
    color: var(--lp-white);
}

.bg-gold-gradient .btn-view-all:hover {
    background: var(--lp-white);
    color: var(--lp-gold-dark);
}

.arrow-icon {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.btn-view-all:hover .arrow-icon {
    transform: translateX(5px);
}

/* Portfolio Grid */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.portfolio-card {
    background: var(--lp-white);
    border-radius: var(--lp-radius);
    overflow: hidden;
    box-shadow: var(--lp-shadow);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.portfolio-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2);
    border-color: var(--lp-gold);
}

.portfolio-card-inner {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.portfolio-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.portfolio-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-card:hover .portfolio-img {
    transform: scale(1.05);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.9) 0%, rgba(184, 148, 31, 0.8) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portfolio-card:hover .portfolio-overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
}

.portfolio-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--lp-white);
    text-decoration: none;
    font-weight: 600;
    padding: 12px 25px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.portfolio-link:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
}

.link-icon {
    font-size: 1.2rem;
}

.portfolio-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.portfolio-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.portfolio-theme {
    background: rgba(212, 175, 55, 0.1);
    color: var(--lp-gold);
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
}

.portfolio-date {
    color: var(--lp-gray-dark);
    font-size: 0.9rem;
    opacity: 0.6;
}

.portfolio-title {
    font-size: 1.4rem;
    color: var(--lp-gray-dark);
    margin-bottom: 10px;
    font-weight: 600;
    line-height: 1.3;
}

.portfolio-venue {
    color: var(--lp-gray-dark);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    opacity: 0.8;
}

.venue-icon {
    color: var(--lp-gold);
}

/* Calendar CTA Section */
.calendar-cta-wrapper {
    width: 100%;
}

.calendar-cta-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.section-header.mobile-center {
    text-align: center;
}

.cta-title {
    font-size: 2.2rem;
    line-height: 1.2;
    color: var(--lp-gray-dark);
    margin-bottom: 15px;
    font-weight: 700;
}

.cta-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--lp-gray-dark);
    margin-bottom: 30px;
    opacity: 0.8;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.calendar-mini-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.calendar-mini {
    background: var(--lp-white);
    border-radius: var(--lp-radius);
    padding: 25px;
    box-shadow: var(--lp-shadow);
    border: 1px solid rgba(212, 175, 55, 0.1);
    width: 100%;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--lp-gold-light);
    flex-wrap: wrap;
    gap: 10px;
}

.calendar-header h4 {
    font-size: 1.2rem;
    color: var(--lp-gray-dark);
    margin: 0;
    font-weight: 600;
}

.calendar-note {
    font-size: 0.85rem;
    color: var(--lp-gold);
    font-weight: 500;
}

.calendar-container {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 10px;
}

.calendar-container table {
    min-width: 300px;
    width: 100%;
}

.cta-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

.btn-primary, .btn-whatsapp {
    background: linear-gradient(135deg, var(--lp-gold) 0%, var(--lp-gold-dark) 100%);
    color: var(--lp-white);
    border: none;
    padding: 16px 30px;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
    min-width: 200px;
    justify-content: center;
    text-align: center;
}

.btn-whatsapp {
    background: linear-gradient(135deg, var(--lp-whatsapp) 0%, #128C7E 100%);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.2);
}

.btn-primary:hover, .btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
}

.btn-whatsapp:hover {
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}

.btn-icon {
    font-size: 1.2rem;
}

.calendar-cta-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-card {
    background: var(--lp-white);
    border-radius: var(--lp-radius);
    padding: 20px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    box-shadow: var(--lp-shadow);
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.15);
    border-color: var(--lp-gold);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--lp-gold-light) 0%, var(--lp-gold) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon span {
    font-size: 1.5rem;
    color: var(--lp-white);
}

.feature-content {
    flex: 1;
}

.feature-content h4 {
    font-size: 1.1rem;
    color: var(--lp-gray-dark);
    margin: 0 0 8px 0;
    font-weight: 600;
    line-height: 1.3;
}

.feature-content p {
    font-size: 0.95rem;
    color: var(--lp-gray-dark);
    line-height: 1.5;
    margin: 0;
    opacity: 0.7;
}

/* Testimonials Section */
.testimonials-wrapper {
    width: 100%;
    overflow: hidden;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    width: 100%;
}

.testimoni-card {
    background: var(--lp-white);
    border-radius: var(--lp-radius);
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: var(--lp-shadow);
}

.testimoni-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.15);
    border-color: var(--lp-gold);
}

.testimoni-card-inner {
    padding: 25px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.testimoni-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.testimoni-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--lp-gold);
    flex-shrink: 0;
}

.avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.default-avatar {
    background: linear-gradient(135deg, var(--lp-gold-light) 0%, var(--lp-gold) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.avatar-icon {
    font-size: 1.8rem;
    color: var(--lp-white);
}

.testimoni-client {
    flex: 1;
    min-width: 0;
}

.client-name {
    font-size: 1.2rem;
    color: var(--lp-gray-dark);
    margin: 0 0 5px 0;
    font-weight: 600;
    line-height: 1.3;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.wedding-date {
    font-size: 0.9rem;
    color: var(--lp-gold);
    opacity: 0.8;
    display: block;
}

.testimoni-content {
    flex: 1;
    position: relative;
    min-height: 180px;
}

.quote-icon {
    font-size: 4rem;
    color: var(--lp-gold-light);
    opacity: 0.3;
    position: absolute;
    top: -10px;
    left: -5px;
    font-family: serif;
    line-height: 1;
}

.testimoni-content blockquote {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--lp-gray-dark);
    margin: 0 0 20px 0;
    font-style: italic;
    position: relative;
    z-index: 1;
    opacity: 0.8;
    
    /* Line clamp untuk 4 baris */
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    overflow: hidden;
    
    /* Fallback untuk browser yang tidak support */
    max-height: 6.4em; /* 4 lines * 1.6 line-height */
}

.testimoni-rating {
    display: flex;
    gap: 5px;
    margin-top: auto;
}

.star {
    font-size: 1.2rem;
    color: var(--lp-gold);
}

/* Articles Section */
.articles-wrapper {
    width: 100%;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    width: 100%;
}

.article-card {
    background: var(--lp-white);
    border-radius: var(--lp-radius);
    overflow: hidden;
    box-shadow: var(--lp-shadow);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.article-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2);
    border-color: var(--lp-gold);
}

.article-card-inner {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.article-image {
    position: relative;
    height: 200px;
    overflow: hidden;
    display: block;
    text-decoration: none;
    flex-shrink: 0;
}

.article-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.article-card:hover .article-img {
    transform: scale(1.05);
}

.article-category {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 2;
}

.category-badge {
    background: linear-gradient(135deg, var(--lp-gold) 0%, var(--lp-gold-dark) 100%);
    color: var(--lp-white);
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
    display: inline-block;
}

.article-content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.article-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    font-size: 0.85rem;
    color: var(--lp-gray-dark);
    opacity: 0.6;
    flex-wrap: wrap;
    gap: 10px;
}

.article-date {
    font-weight: 500;
}

.article-read-time {
    display: flex;
    align-items: center;
    gap: 5px;
}

.article-title {
    font-size: 1.3rem;
    color: var(--lp-gray-dark);
    margin: 0 0 12px 0;
    font-weight: 600;
    line-height: 1.3;
    
    /* Line clamp untuk 2 baris */
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    overflow: hidden;
    
    /* Fallback */
    min-height: 3.2em; /* 2 lines * 1.6 line-height */
    max-height: 3.2em;
}

.article-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.article-title a:hover {
    color: var(--lp-gold);
}

.article-excerpt {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--lp-gray-dark);
    margin-bottom: 15px;
    flex: 1;
    opacity: 0.7;
    
    /* Line clamp untuk 3 baris */
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    overflow: hidden;
    
    /* Fallback */
    max-height: 4.8em; /* 3 lines * 1.6 line-height */
}

.article-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--lp-gold);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    margin-top: auto;
}

.article-link:hover {
    gap: 12px;
    color: var(--lp-gold-dark);
}

.link-arrow {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.article-link:hover .link-arrow {
    transform: translateX(5px);
}

/* Final CTA Section */
.final-cta-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.final-cta-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.final-cta-title {
    font-size: 2.2rem;
    line-height: 1.2;
    color: var(--lp-white);
    margin-bottom: 15px;
    font-weight: 700;
}

.final-cta-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--lp-gold-lighter);
    margin-bottom: 20px;
    opacity: 0.9;
    max-width: 600px;
}

.final-cta-actions {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.main-cta-button {
    width: 100%;
}

.btn-whatsapp-final {
    background: linear-gradient(135deg, var(--lp-whatsapp) 0%, #128C7E 100%);
    color: var(--lp-white);
    border: none;
    padding: 20px 30px;
    border-radius: var(--lp-radius);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    width: 100%;
    max-width: 400px;
}

.btn-whatsapp-final:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 3px;
    text-align: left;
}

.whatsapp-text strong {
    font-size: 1.2rem;
    font-weight: 700;
}

.whatsapp-text small {
    font-size: 0.9rem;
    opacity: 0.9;
    font-weight: 400;
}

.contact-alternatives {
    width: 100%;
}

.alternative-title {
    color: var(--lp-gold-lighter);
    font-size: 1rem;
    margin-bottom: 15px;
    opacity: 0.8;
    text-align: center;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 400px;
    margin: 0 auto;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--lp-white);
    text-decoration: none;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    width: 100%;
}

.contact-method:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    border-color: var(--lp-white);
}

.method-icon {
    font-size: 1.3rem;
    color: var(--lp-gold-lighter);
    flex-shrink: 0;
}

.method-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.method-title {
    font-size: 0.9rem;
    color: var(--lp-gold-lighter);
    opacity: 0.8;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.method-info {
    font-size: 1rem;
    font-weight: 500;
    color: var(--lp-white);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.trust-badges {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    flex: 1;
    min-width: 180px;
    backdrop-filter: blur(10px);
}

.trust-icon {
    font-size: 1.8rem;
    color: var(--lp-gold-lighter);
    flex-shrink: 0;
}

.trust-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.trust-title {
    font-size: 1rem;
    color: var(--lp-white);
    font-weight: 600;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.trust-desc {
    font-size: 0.85rem;
    color: var(--lp-gold-lighter);
    opacity: 0.8;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.final-cta-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-wrapper {
    background: rgba(255, 255, 255, 0.15);
    border-radius: var(--lp-radius);
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    text-align: center;
    width: 100%;
    max-width: 350px;
    backdrop-filter: blur(10px);
}

.image-icon {
    font-size: 3.5rem;
    color: var(--lp-white);
    display: block;
    margin-bottom: 20px;
    animation: gentlePulse 3s infinite ease-in-out;
}

.image-content h4 {
    font-size: 1.3rem;
    color: var(--lp-white);
    margin: 0 0 10px 0;
    font-weight: 600;
}

.image-content p {
    font-size: 1rem;
    color: var(--lp-gold-lighter);
    line-height: 1.5;
    opacity: 0.9;
}

/* =============================================
   FOOTER
   ============================================= */

/* Pre-Footer CTA */
.pre-footer-cta {
    background: linear-gradient(135deg, var(--footer-gray-dark) 0%, #1a1a1a 100%);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.pre-footer-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path fill="%23D4AF37" fill-opacity="0.03" d="M0,0 L100,0 L100,100 Z"/></svg>');
    background-size: cover;
}

.pre-footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.cta-icon {
    flex-shrink: 0;
}

.ring-icon {
    font-size: 3rem;
    display: block;
    animation: gentlePulse 3s infinite ease-in-out;
    filter: drop-shadow(0 4px 8px rgba(212, 175, 55, 0.3));
}

.cta-text {
    flex: 1;
    color: var(--footer-white);
}

.cta-text h3 {
    color: var(--footer-white);
    font-size: 1.8rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.cta-text p {
    color: var(--footer-gold-light);
    font-size: 1.1rem;
    margin: 0;
    opacity: 0.9;
}

.cta-actions {
    display: flex;
    gap: 15px;
    flex-shrink: 0;
}

.btn-whatsapp-cta {
    background: linear-gradient(135deg, var(--footer-whatsapp) 0%, #128C7E 100%);
    color: var(--footer-white);
    border: none;
    padding: 14px 25px;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.2);
}

.btn-whatsapp-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}

.btn-call-cta {
    background: linear-gradient(135deg, var(--footer-gold) 0%, var(--footer-gold-dark) 100%);
    color: var(--footer-white);
    border: none;
    padding: 14px 25px;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}

.btn-call-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
}

.whatsapp-icon, .phone-icon {
    font-size: 1.2rem;
}

/* Footer Main */
.footer-main {
    background: linear-gradient(135deg, var(--footer-gray-light) 0%, #e8e8e8 100%);
    padding: 80px 0 60px;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1.5fr;
    gap: 60px;
}

/* Footer Brand Section */
.footer-brand-section {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.footer-logo-link {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.footer-logo-link:hover {
    transform: translateX(5px);
}

.footer-logo-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--footer-gold) 0%, var(--footer-gold-dark) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}

.footer-ring-icon {
    font-size: 1.8rem;
    animation: gentlePulse 3s infinite ease-in-out;
}

.footer-logo-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.footer-site-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--footer-gray-dark);
    line-height: 1;
    display: flex;
    align-items: center;
    gap: 2px;
}

.footer-site-title .highlight {
    color: var(--footer-gold);
    font-weight: 800;
}

.footer-tagline {
    font-size: 0.9rem;
    color: var(--footer-gray-medium);
    font-weight: 400;
}

.footer-description {
    color: var(--footer-gray-medium);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.footer-trust-badges {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    background: rgba(212, 175, 55, 0.08);
    border-radius: 8px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.badge-icon {
    color: var(--footer-gold);
    font-size: 1.1rem;
}

.badge-text {
    font-size: 0.9rem;
    color: var(--footer-gray-dark);
    font-weight: 500;
}

/* Footer Navigation */
.footer-navigation {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.footer-column-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--footer-gray-dark);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--footer-gold);
}

.title-icon {
    color: var(--footer-gold);
}

.footer-column ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-column li {
    margin: 0;
}

.footer-column a {
    color: var(--footer-gray-medium);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    position: relative;
    padding-left: 15px;
}

.footer-column a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: var(--footer-gold);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.footer-column a:hover {
    color: var(--footer-gray-dark);
    transform: translateX(5px);
}

.footer-column a:hover::before {
    opacity: 1;
}

/* Footer Contact Section */
.footer-contact-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-method-icon {
    width: 40px;
    height: 40px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.whatsapp-contact-icon,
.email-contact-icon,
.location-contact-icon,
.hours-contact-icon {
    font-size: 1.2rem;
    color: var(--footer-gold);
}

.contact-method-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-method-label {
    font-size: 0.85rem;
    color: var(--footer-gray-medium);
    font-weight: 500;
}

.contact-link,
.contact-address,
.contact-hours {
    color: var(--footer-gray-dark);
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    line-height: 1.5;
}

.contact-link:hover {
    color: var(--footer-gold);
}

/* Footer Social */
.footer-social {
    margin-top: 20px;
}

.social-title {
    font-size: 1rem;
    color: var(--footer-gray-dark);
    margin-bottom: 15px;
    font-weight: 600;
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 15px;
    background: rgba(212, 175, 55, 0.08);
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.social-link:hover {
    background: rgba(212, 175, 55, 0.15);
    transform: translateY(-2px);
    border-color: var(--footer-gold);
}

.social-icon-wrapper {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-icon {
    font-size: 1.1rem;
    color: var(--footer-gold);
}

.social-label {
    font-size: 0.9rem;
    color: var(--footer-gray-dark);
    font-weight: 500;
}

/* Newsletter */
.newsletter-wrapper {
    background: var(--footer-white);
    border-radius: 15px;
    padding: 25px;
    box-shadow: var(--footer-shadow);
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.newsletter-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.newsletter-description {
    color: var(--footer-gray-medium);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-group {
    width: 100%;
}

.newsletter-input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--footer-gray-light);
    border-radius: 8px;
    font-size: 0.95rem;
    color: var(--footer-gray-dark);
    transition: all 0.3s ease;
    background: var(--footer-white);
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--footer-gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.newsletter-input::placeholder {
    color: var(--footer-gray-medium);
    opacity: 0.7;
}

.btn-newsletter {
    background: linear-gradient(135deg, var(--footer-gold) 0%, var(--footer-gold-dark) 100%);
    color: var(--footer-white);
    border: none;
    padding: 14px 20px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}

.btn-newsletter:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
}

.btn-icon {
    font-size: 1.2rem;
}

.btn-text {
    font-size: 0.95rem;
}

.newsletter-note {
    font-size: 0.8rem;
    color: var(--footer-gray-medium);
    line-height: 1.5;
    margin: 0;
}

.newsletter-note a {
    color: var(--footer-gold);
    text-decoration: none;
}

.newsletter-note a:hover {
    text-decoration: underline;
}

/* Newsletter Success Message */
.newsletter-success {
    background: rgba(37, 211, 102, 0.1);
    border: 1px solid rgba(37, 211, 102, 0.2);
    border-radius: 8px;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.success-icon {
    color: var(--footer-whatsapp);
    font-weight: bold;
    font-size: 1.2rem;
}

.success-text {
    color: var(--footer-gray-dark);
    font-size: 0.9rem;
    font-weight: 500;
}

/* Footer Bottom */
.footer-bottom {
    background: var(--footer-gray-dark);
    padding: 25px 0;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright-section {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.copyright {
    color: var(--footer-gray-light);
    font-size: 0.9rem;
    margin: 0;
    opacity: 0.8;
}

.copyright strong {
    color: var(--footer-white);
    font-weight: 600;
}

.footer-badges {
    display: flex;
    gap: 10px;
}

.footer-badge {
    background: rgba(212, 175, 55, 0.15);
    color: var(--footer-gold-light);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.footer-links-section {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: flex-end;
}

.footer-legal-links {
    display: flex;
    gap: 15px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.footer-legal-links a {
    color: var(--footer-gray-light);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.footer-legal-links a:hover {
    color: var(--footer-gold);
}

.link-separator {
    color: var(--footer-gray-medium);
    font-size: 0.8rem;
}

.payment-methods {
    display: flex;
    align-items: center;
    gap: 10px;
}

.payment-text {
    color: var(--footer-gray-light);
    font-size: 0.85rem;
    opacity: 0.8;
}

.payment-icons {
    display: flex;
    gap: 8px;
}

.payment-icon {
    color: var(--footer-gold);
    font-size: 1.2rem;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--footer-gold) 0%, var(--footer-gold-dark) 100%);
    color: var(--footer-white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 100;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: linear-gradient(135deg, var(--footer-gold-dark) 0%, var(--footer-gold) 100%);
    transform: translateY(-5px);
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.4);
}

.back-to-top-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.arrow-up {
    font-size: 1.4rem;
    font-weight: bold;
    animation: bounce 2s infinite ease-in-out;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.back-to-top-text {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* =============================================
   NO RESULTS / 404 PAGE STYLES
   ============================================= */

.no-results {
    padding: 5rem 0;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.page-header {
    text-align: center;
    margin-bottom: 3rem;
}

.page-title {
    font-size: 3rem;
    color: var(--gray-dark);
    margin-bottom: 1rem;
    font-weight: 600;
}

.page-title .search-query {
    color: var(--gold-primary);
    font-style: italic;
}

.page-content {
    max-width: 800px;
    margin: 0 auto;
}

.page-content > div {
    margin-bottom: 3rem;
}

.page-content p {
    font-size: 1.2rem;
    color: var(--gray-medium);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Search Form */
.search-form-container {
    max-width: 500px;
    margin: 2rem auto;
}

.search-form {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.search-form label {
    display: none;
}

.search-form .search-field {
    flex: 1;
    padding: 1rem 1.5rem;
    border: 2px solid var(--gray-light);
    border-radius: 50px;
    font-size: 1rem;
    font-family: var(--font-body);
    transition: all 0.3s ease;
}

.search-form .search-field:focus {
    outline: none;
    border-color: var(--gold-primary);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.search-form .search-submit {
    background: var(--gold-primary);
    color: var(--white);
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.search-form .search-submit:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

/* Search Suggestions */
.search-suggestions {
    background: var(--gray-light);
    border-radius: 15px;
    padding: 1.5rem;
    margin: 2rem 0;
}

.search-suggestions h3 {
    color: var(--gray-dark);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.search-suggestions ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.search-suggestions li {
    padding: 0.5rem 0;
    color: var(--gray-medium);
    position: relative;
    padding-left: 1.5rem;
}

.search-suggestions li:before {
    content: "✓";
    color: var(--gold-primary);
    position: absolute;
    left: 0;
}

/* Suggested Actions */
.suggested-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin: 2rem 0;
    flex-wrap: wrap;
}

/* Popular Pages */
.popular-pages-section {
    margin: 4rem 0;
    text-align: center;
}

.popular-pages-section h3 {
    font-size: 1.8rem;
    color: var(--gray-dark);
    margin-bottom: 0.5rem;
}

.section-description {
    color: var(--gray-medium);
    margin-bottom: 2rem;
}

.popular-pages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.popular-page-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--white);
    border: 2px solid var(--gray-light);
    border-radius: 15px;
    padding: 1.5rem;
    text-decoration: none;
    color: var(--gray-dark);
    transition: all 0.3s ease;
    text-align: left;
}

.popular-page-card:hover {
    border-color: var(--gold-primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.popular-page-card:hover .page-arrow {
    transform: translateX(5px);
}

.page-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.page-title {
    flex: 1;
    font-weight: 600;
    font-size: 1.1rem;
}

.page-arrow {
    color: var(--gold-primary);
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

/* WhatsApp CTA */
.whatsapp-cta-section {
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-dark) 100%);
    border-radius: 20px;
    padding: 3rem;
    margin: 4rem 0;
    text-align: center;
    color: var(--white);
}

.whatsapp-cta-section .cta-content h3 {
    color: var(--white);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.whatsapp-cta-section .cta-content p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* =============================================
   COMPONENTS
   ============================================= */

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #25D366;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 100;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: #128C7E;
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.arrow-up {
    font-size: 1.5rem;
    font-weight: bold;
}

/* =============================================
   ACCESSIBILITY
   ============================================= */

/* Skip link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--header-gold);
    color: var(--header-gray-dark);
    padding: 10px 20px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 0 0 8px 0;
    z-index: 1001;
    transition: top 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}

.skip-link:focus {
    top: 0;
}

/* Screen reader text */
.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal !important;
}

/* Focus styles for accessibility */
a:focus,
button:focus,
.menu-toggle:focus,
.social-icon:focus,
.btn-whatsapp-header:focus,
.btn-booking:focus {
    outline: 2px solid var(--header-gold);
    outline-offset: 2px;
}

.btn-whatsapp-hero:focus,
.btn-booking-hero:focus,
.btn-view-all:focus,
.btn-primary:focus,
.btn-whatsapp:focus,
.btn-whatsapp-final:focus,
.contact-method:focus,
.article-title a:focus,
.portfolio-link:focus,
.article-link:focus {
    outline: 2px solid var(--lp-gold);
    outline-offset: 3px;
}

.back-to-top:focus,
.btn-whatsapp-cta:focus,
.btn-call-cta:focus,
.contact-link:focus,
.footer-column a:focus,
.social-link:focus,
.newsletter-input:focus,
.btn-newsletter:focus {
    outline: 2px solid var(--footer-gold);
    outline-offset: 2px;
}

/* High contrast support */
@media (prefers-contrast: high) {
    
    .header-top-bar {
        background: #000000;
        border-bottom: 2px solid var(--header-gold);
    }

    #primary-menu > li > a,
    .contact-item a,
    .social-icon {
        color: #000000;
    }
    
    .btn-whatsapp-header,
    .btn-booking {
        border: 2px solid #000000;
    }    

    .landing-hero {
        background: #000000;
    }
    
    .bg-gray-dark {
        background: #000000;
        border-top: 2px solid var(--lp-gold);
        border-bottom: 2px solid var(--lp-gold);
    }
    
    .portfolio-card,
    .article-card,
    .feature-card,
    .calendar-mini {
        border: 2px solid var(--lp-gray-dark);
    }
    
    .testimoni-card {
        border: 2px solid var(--lp-gold);
    }
        
    .pre-footer-cta {
        background: #000000;
    }
    
    .footer-main {
        background: #f0f0f0;
        border-top: 2px solid var(--footer-gold);
    }
    
    .footer-bottom {
        background: #000000;
        border-top: 2px solid var(--footer-gold);
    }
    
    .footer-column a,
    .contact-link,
    .copyright {
        color: #000000;
    }
    
    .footer-legal-links a {
        color: #ffffff;
        text-decoration: underline;
    }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    .ring-icon,
    .whatsapp-icon {
        animation: none;
    }
    
    .btn-whatsapp-header:hover,
    .btn-booking:hover,
    .social-icon:hover,
    .logo-link:hover {
        transform: none;
    }
    
    .btn-whatsapp-header::before {
        display: none;
    }
    
    #primary-menu > li > a::before,
    #primary-menu .sub-menu li a::before {
        transition: none;
    }

    .btn-whatsapp-hero::before,
    .whatsapp-icon,
    .scroll-indicator,
    .arrow-icon,
    .link-arrow,
    .image-icon,
    .portfolio-img,
    .article-img,
    .portfolio-card:hover,
    .article-card:hover,
    .testimoni-card:hover,
    .feature-card:hover,
    .contact-method:hover,
    .btn-view-all:hover,
    .btn-primary:hover,
    .btn-whatsapp:hover,
    .btn-whatsapp-hero:hover,
    .btn-booking-hero:hover,
    .btn-whatsapp-final:hover {
        animation: none;
        transition: none;
        transform: none;
    }
    
    .portfolio-card,
    .article-card,
    .testimoni-card,
    .feature-card {
        transition: none;
    }

    .ring-icon,
    .footer-ring-icon,
    .arrow-up {
        animation: none;
    }
    
    .back-to-top:hover,
    .btn-whatsapp-cta:hover,
    .btn-call-cta:hover,
    .social-link:hover,
    .btn-newsletter:hover,
    .footer-logo-link:hover,
    .footer-column a:hover {
        transform: none;
    }
    
    .newsletter-success {
        animation: none;
    }
}

/* Touch-friendly elements */
.btn-primary, .btn-whatsapp, .btn-whatsapp-final,
.contact-method, .feature-card, .testimoni-card,
.article-card, .trust-badge {
    min-height: 44px;
}

/* Better touch targets for mobile */
@media (max-width: 767px) {
    .btn-primary, .btn-whatsapp, .btn-whatsapp-final {
        min-height: 48px;
    }
    
    .contact-method {
        min-height: 60px;
    }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    .feature-card:hover,
    .testimoni-card:hover,
    .article-card:hover,
    .btn-primary:hover,
    .btn-whatsapp:hover,
    .btn-whatsapp-final:hover,
    .contact-method:hover {
        transform: none;
        transition: none;
    }
    
    .article-img,
    .image-icon,
    .link-arrow {
        transition: none;
    }
    
    .article-card:hover .article-img {
        transform: none;
    }
    
    .article-link:hover .link-arrow {
        transform: none;
    }
}

/* High contrast mode */
@media (prefers-contrast: high) {
    .calendar-mini,
    .feature-card,
    .testimoni-card,
    .article-card {
        border: 2px solid var(--lp-gray-dark);
    }
    
    .btn-primary,
    .btn-whatsapp,
    .btn-whatsapp-final {
        border: 2px solid var(--lp-gray-dark);
    }
}

/* Print styles */
@media print {
    .calendar-cta-features,
    .testimonials-grid,
    .articles-grid,
    .final-cta-image {
        break-inside: avoid;
    }
    
    .btn-primary,
    .btn-whatsapp,
    .btn-whatsapp-final {
        display: none;
    }
}

/* =============================================
   ACCESSIBILITY & CONTRAST IMPROVEMENTS
   ============================================= */

/* Kontras warna untuk readability */
.bg-light-gold .section-title,
.bg-light-gold .section-subtitle,
.bg-light-gold .feature-content h4,
.bg-light-gold .feature-content p,
.bg-light-gold .calendar-header h4,
.bg-light-gold .calendar-note,
.bg-light-gold .cta-title,
.bg-light-gold .cta-description {
    color: var(--lp-gray-dark) !important;
}

.bg-white .section-title,
.bg-white .section-subtitle,
.bg-white .portfolio-title,
.bg-white .portfolio-venue,
.bg-white .portfolio-date,
.bg-white .client-name,
.bg-white .wedding-date,
.bg-white .testimoni-content blockquote,
.bg-white .article-title,
.bg-white .article-excerpt,
.bg-white .article-meta {
    color: var(--lp-gray-dark) !important;
}

/* Focus styles untuk accessibility */
.btn-whatsapp-hero:focus,
.btn-booking-hero:focus,
.btn-view-all:focus,
.btn-primary:focus,
.btn-whatsapp:focus,
.btn-whatsapp-final:focus,
.contact-method:focus,
.article-title a:focus,
.portfolio-link:focus,
.article-link:focus {
    outline: 3px solid var(--lp-gold-dark);
    outline-offset: 3px;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    .hero-badge,
    .hero-title,
    .hero-subtitle,
    .hero-stats,
    .hero-cta,
    .scroll-indicator {
        animation: none !important;
    }
    
    .stat-item:hover,
    .btn-whatsapp-hero:hover,
    .btn-booking-hero:hover {
        transform: none !important;
    }
    
    .btn-whatsapp-hero::before {
        display: none;
    }
    
    .whatsapp-icon,
    .scroll-arrow {
        animation: none;
    }
}

/* High contrast mode */
@media (prefers-contrast: high) {
    .hero-badge,
    .stat-item {
        border: 2px solid var(--lp-white);
    }
    
    .btn-whatsapp-hero,
    .btn-booking-hero {
        border: 2px solid var(--lp-white);
    }
}

/* Print styles */
@media print {
    .landing-hero {
        min-height: auto;
        background: #ffffff !important;
        color: #000000 !important;
    }
    
    .hero-background,
    .hero-overlay,
    .gold-gradient-overlay,
    .scroll-indicator {
        display: none !important;
    }
    
    .hero-title {
        color: #000000 !important;
        text-shadow: none !important;
    }
    
    .hero-subtitle {
        color: #000000 !important;
    }
    
    .stat-item {
        background: #f0f0f0 !important;
        border: 1px solid #000000 !important;
    }
    
    .stat-number {
        color: #000000 !important;
    }
    
    .hero-cta {
        display: none !important;
    }
}

/* =============================================
   RESPONSIVE DESIGN
   ============================================= */

/* Tablet */
@media (max-width: 1024px) {
    /* Header */    
    .header-top-bar {
        display: none;
    }

    .header-inner {
        min-height: 70px;
    }

    .logo-icon {
        width: 45px;
        height: 45px;
    }
    
    .ring-icon {
        font-size: 1.6rem;
    }
    
    .site-title {
        font-size: 1.6rem;
    }    
    
    #primary-menu > li > a {
        padding: 10px 16px;
        font-size: 0.9rem;
    }
    
    .header-right {
        gap: 20px;
    }

    #primary-menu > li > a {
        padding: 10px 16px;
        font-size: 0.9rem;
    }
    
    .btn-whatsapp-header,
    .btn-booking {
        padding: 10px 16px;
        font-size: 0.9rem;
    }

    /* Hero */    
    .hero-content {
        max-width: 700px;
        padding: 30px 0;
        gap: 25px;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
        max-width: 600px;
    }
    
    .stats-grid {
        gap: 20px;
        max-width: 500px;
    }
    
    .stat-item {
        padding: 20px 15px;
    }
    
    .stat-number {
        font-size: 2.2rem;
    }
    
    .cta-buttons {
        max-width: 500px;
    }
    
    .btn-whatsapp-hero,
    .btn-booking-hero {
        padding: 18px 30px;
        min-width: 240px;
    }

        .calendar-mini-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .testimonials-grid,
    .articles-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .final-cta-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .final-cta-image {
        order: -1;
    }
    
    .image-wrapper {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .btn-whatsapp-final {
        max-width: 100%;
    }
    
    .contact-methods {
        max-width: 100%;
    }

    /* Footer */    
    .pre-footer-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .cta-text h3 {
        font-size: 1.6rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .footer-contact-section {
        grid-column: span 2;
        grid-template-columns: 1fr 1fr;
    }
}

/* Tablet Landscape (≥992px) */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2.8rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .cta-title,
    .final-cta-title {
        font-size: 2rem;
    }
    
    .page-title {
        font-size: 2.5rem;
    }
    
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .portfolio-grid,
    .articles-grid,
    .popular-pages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Footer */
    .footer-top {
        padding: 60px 0 40px;
    }
    
    .footer-widgets {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 30px;
    }
    
    .footer-logo img {
    max-height: 60px;
    width: auto;
    }
    
    .footer-site-title {
    color: #ffffff;
    font-size: 2rem;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 10px;
    }
}

/* Mobile Responsive Breakpoints */
@media (max-width: 768px) {
    /* Header */
    .container {
        padding: 0 16px;
    }
    
    .header-inner {
        min-height: 65px;
    }

    .logo-icon {
        width: 40px;
        height: 40px;
    }
    
    .ring-icon {
        font-size: 1.4rem;
    }    
     
    .site-title {
        font-size: 1.4rem;
    }

    .site-tagline {
        display: none;
    }
    
    .header-actions {
        gap: 10px;
    }
    
    .btn-whatsapp-header,
    .btn-booking {
        padding: 8px 12px;
    }
    
    .cta-text {
        display: none;
    }
    
    .btn-whatsapp-header .whatsapp-icon,
    .btn-booking .booking-icon {
        margin: 0;
    }
    
    .header-right {
        gap: 15px;
    }
    
    .btn-whatsapp-small {
        padding: 9px 18px;
        font-size: 0.9rem;
    }

    /* Hero */    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-stats {
        gap: 15px;
    }
    
    .stat-item {
        min-width: 120px;
        padding: 15px 20px;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn-whatsapp-hero,
    .btn-booking-hero {
        justify-content: center;
        text-align: center;
    }
    
    .section-padding {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .portfolio-grid,
    .testimonials-grid,
    .articles-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-actions {
        flex-direction: column;
    }
    
    .btn-primary,
    .btn-whatsapp {
        justify-content: center;
    }
    
    .trust-badges {
        flex-direction: column;
    }
    
    .trust-badge {
        min-width: 100%;
    }

    .calendar-mini-wrapper {
        gap: 25px;
    }
    
    .calendar-mini {
        padding: 20px;
    }
    
    .calendar-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .calendar-header h4 {
        font-size: 1.1rem;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .btn-primary, .btn-whatsapp {
        width: 100%;
        max-width: 300px;
        min-width: unset;
        padding: 16px 25px;
    }
    
    .feature-card {
        flex-direction: row;
        align-items: center;
        padding: 18px;
    }
    
    .testimonials-grid,
    .articles-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .article-image {
        height: 180px;
    }
    
    .article-title {
        font-size: 1.2rem;
        min-height: 2.8em;
    }
    
    .final-cta-title {
        font-size: 1.8rem;
    }
    
    .final-cta-description {
        font-size: 1rem;
    }
    
    .btn-whatsapp-final {
        padding: 18px 25px;
    }
    
    .whatsapp-text strong {
        font-size: 1.1rem;
    }
    
    .trust-badges {
        flex-direction: column;
        gap: 12px;
    }
    
    .trust-badge {
        min-width: 100%;
    }    

    /* Footer */    
    .footer-main {
        padding: 60px 0 40px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-contact-section {
        grid-column: span 1;
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-navigation {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .footer-links-section {
        align-items: center;
    }
    
    .footer-legal-links {
        justify-content: center;
    } 
}

/* Tablet Portrait (≥768px) */
@media (max-width: 767px) {
    .hero-wrapper {
        min-height: calc(100vh - 120px);
    }
    
    .hero-content {
        max-width: 100%;
        padding: 20px 0;
        gap: 20px;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        max-width: 100%;
        padding: 0 10px;
    }
    
    .hero-badge {
        padding: 10px 20px;
    }
    
    .badge-text {
        font-size: 0.95rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        max-width: 300px;
    }
    
    .stat-item {
        padding: 18px 15px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
        max-width: 100%;
    }
    
    .btn-whatsapp-hero,
    .btn-booking-hero {
        width: 100%;
        max-width: 320px;
        min-width: unset;
        padding: 18px 25px;
    }
    
    .scroll-indicator {
        bottom: 30px;
    }
    
    .scroll-text {
        font-size: 0.9rem;
    }
    
    /* Header */
    .header-inner {
        min-height: 70px;
    }
    
    #primary-menu > li > a {
        padding: 10px 16px;
        font-size: 0.9rem;
    }
    
    .header-right {
        gap: 20px;
    }
    
    /* Footer */
    .footer-top {
        padding: 50px 0 30px;
    }
    
    .footer-widgets {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-brand {
        text-align: center;
        align-items: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-menu ul {
        align-items: center;
        text-align: center;
    }
    
    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .footer-links {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}

/* Mobile Large (640px) */
@media (max-width: 640px) {
    .menu-toggle {
        display: flex;
    }
    
    .main-navigation .menu-container {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 400px;
        height: 100vh;
        background: linear-gradient(135deg, var(--header-white) 0%, var(--header-gray-light) 100%);
        z-index: 1000;
        transition: right 0.3s ease;
        overflow-y: auto;
        padding: 80px 20px 30px;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
    }
    
    .main-navigation.active .menu-container {
        right: 0;
    }
    
    #primary-menu {
        flex-direction: column;
        gap: 5px;
    }
    
    #primary-menu > li {
        width: 100%;
    }
    
    #primary-menu > li > a {
        padding: 15px;
        font-size: 1rem;
        border-radius: 10px;
        background: var(--header-white);
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    }
    
    #primary-menu > li > a::before {
        display: none;
    }
    
    #primary-menu > li.menu-item-has-children > a::after {
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
    }
    
    /* Submenu for Mobile */
    #primary-menu .sub-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: var(--header-white);
        border-radius: 8px;
        margin: 10px 0;
        padding: 8px 0;
        display: none;
        border: 1px solid var(--header-gray-light);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    #primary-menu li.menu-item-has-children.active > .sub-menu {
        display: block;
        max-height: 500px;
    }
    
    #primary-menu .sub-menu li a {
        padding: 12px 20px;
        font-size: 0.95rem;
    }

    #primary-menu .sub-menu li a::before {
        display: block;
    }
    
    .header-cta-secondary {
        display: none;
    }

    /* Hero */
    .hero-wrapper {
        min-height: calc(100vh - 100px);
    }
    
    .hero-content {
        padding: 15px 0;
        gap: 15px;
    }
    
    .hero-title {
        font-size: 1.8rem;
        padding: 0 10px;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        padding: 0 15px;
    }
    
    .hero-badge {
        flex-direction: column;
        gap: 5px;
        text-align: center;
        padding: 8px 15px;
    }
    
    .stats-grid {
        max-width: 280px;
    }
    
    .stat-item {
        padding: 15px 12px;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
    
    .btn-whatsapp-hero,
    .btn-booking-hero {
        padding: 16px 20px;
        max-width: 100%;
    }
    
    .whatsapp-text strong {
        font-size: 1.1rem;
    }
    
    .whatsapp-text small {
        font-size: 0.85rem;
    }
    
    .scroll-indicator {
        bottom: 20px;
    }

    .calendar-mini {
        padding: 18px 15px;
    }
    
    .calendar-header h4 {
        font-size: 1rem;
    }
    
    .calendar-note {
        font-size: 0.8rem;
    }
    
    .feature-card {
        flex-direction: column;
        text-align: center;
        padding: 20px 15px;
    }
    
    .feature-icon {
        margin: 0 auto;
    }
    
    .feature-content h4 {
        font-size: 1rem;
    }
    
    .feature-content p {
        font-size: 0.9rem;
    }
    
    .btn-primary, .btn-whatsapp {
        max-width: 100%;
        padding: 15px 20px;
    }
    
    .testimoni-card-inner {
        padding: 20px;
    }
    
    .testimoni-header {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    
    .testimoni-avatar {
        width: 70px;
        height: 70px;
    }
    
    .client-name {
        text-align: center;
        white-space: normal;
    }
    
    .testimoni-content {
        min-height: 160px;
    }
    
    .testimoni-content blockquote {
        /* Fallback menggunakan max-height dan overflow */
        max-height: 6.4em;
        position: relative;
    }
    
    .article-card-inner {
        flex-direction: column;
    }
    
    .article-image {
        height: 160px;
    }
    
    .article-content {
        padding: 18px;
    }
    
    .article-title {
        font-size: 1.1rem;
        min-height: 2.6em;
    }
    
    .article-excerpt {
        /* Fallback untuk excerpt */
        max-height: 4.8em;
        position: relative;
    }
    
    .final-cta-title {
        font-size: 1.6rem;
    }
    
    .final-cta-description {
        font-size: 0.95rem;
    }
    
    .btn-whatsapp-final {
        padding: 16px 20px;
    }
    
    .whatsapp-text strong {
        font-size: 1rem;
    }
    
    .whatsapp-text small {
        font-size: 0.85rem;
    }
    
    .contact-method {
        flex-direction: column;
        text-align: center;
        gap: 10px;
        padding: 15px;
    }
    
    .method-details {
        align-items: center;
    }
    
    .method-title, .method-info {
        text-align: center;
        white-space: normal;
    }
    
    .image-wrapper {
        padding: 25px 20px;
    }
    
    .image-icon {
        font-size: 3rem;
    }
    
    .image-content h4 {
        font-size: 1.2rem;
    }    

    /* Footer */
    .pre-footer-cta {
        padding: 40px 0;
    }
    
    .cta-text h3 {
        font-size: 1.4rem;
    }
    
    .cta-text p {
        font-size: 1rem;
    }
    
    .footer-main {
        padding: 40px 0 30px;
    }
    
    .footer-logo-link {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .footer-logo-icon {
        width: 40px;
        height: 40px;
    }
    
    .footer-ring-icon {
        font-size: 1.4rem;
    }
    
    .footer-site-title {
        font-size: 1.5rem;
    }
    
    .footer-trust-badges {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .trust-badge {
        flex: 1;
        min-width: 140px;
    }
    
    .social-links {
        flex-direction: column;
    }
    
    .social-link {
        justify-content: flex-start;
    }
    
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }
    
    .back-to-top-text {
        display: none;
    }
}

/* Mobile (≥480px) */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 1.6rem;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
    }
    
    .badge-text {
        font-size: 0.9rem;
    }
    
    .stats-grid {
        max-width: 100%;
    }
    
    .stat-item {
        padding: 12px 10px;
    }
    
    .stat-number {
        font-size: 1.6rem;
    }
    
    .stat-label {
        font-size: 0.85rem;
    }
    
    .cta-buttons {
        gap: 12px;
    }
    
    .btn-whatsapp-hero,
    .btn-booking-hero {
        padding: 14px 18px;
    }
    
    .whatsapp-text strong {
        font-size: 1rem;
    }
    
    .booking-icon {
        font-size: 1.2rem;
    }
    
    .scroll-text {
        font-size: 0.85rem;
    }
    
    .scroll-arrow {
        font-size: 1.5rem;
    }

    .calendar-mini {
        padding: 15px 12px;
    }
    
    .calendar-container {
        font-size: 0.9rem;
    }
    
    .btn-primary, .btn-whatsapp {
        padding: 14px 18px;
        font-size: 0.95rem;
    }
    
    .btn-icon {
        font-size: 1.1rem;
    }
    
    .testimoni-card-inner {
        padding: 18px 15px;
    }
    
    .testimoni-content {
        min-height: 140px;
    }
    
    .testimoni-content blockquote {
        -webkit-line-clamp: 5;
        line-clamp: 5;
        max-height: 8em;
        font-size: 0.95rem;
    }
    
    .article-image {
        height: 140px;
    }
    
    .article-content {
        padding: 15px;
    }
    
    .article-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .article-title {
        font-size: 1rem;
        min-height: 2.4em;
    }
    
    .article-excerpt {
        -webkit-line-clamp: 4;
        line-clamp: 4;
        max-height: 6.4em;
        font-size: 0.9rem;
    }
    
    .article-link {
        font-size: 0.9rem;
    }
    
    .final-cta-title {
        font-size: 1.4rem;
    }
    
    .btn-whatsapp-final {
        padding: 14px 18px;
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .whatsapp-text {
        align-items: center;
        text-align: center;
    }
    
    .image-wrapper {
        padding: 20px 15px;
    }
    
    .image-icon {
        font-size: 2.5rem;
    }
    
    .image-content h4 {
        font-size: 1.1rem;
    }
    
    .image-content p {
        font-size: 0.9rem;
    }    
    
    /* Header */
    .container {
        padding: 0 12px;
    }
    
    .header-inner {
        min-height: 60px;
    }

    .logo-icon {
        width: 35px;
        height: 35px;
    }

    .ring-icon {
        font-size: 1.2rem;
    }
    
    .site-title {
        font-size: 1.5rem;
    }

    .btn-whatsapp-header,
    .btn-booking {
        padding: 8px;
        border-radius: 8px;
    }

    .main-navigation .menu-container {
        width: 90%;
        padding: 70px 15px 20px;
    }    

    #primary-menu {
        top: 60px;
        height: calc(100vh - 60px);
        max-width: 280px;
    }
    
    /* Footer */
    .pre-footer-cta {
        padding: 30px 0;
    }
    
    .cta-text h3 {
        font-size: 1.2rem;
    }
    
    .ring-icon {
        font-size: 2.5rem;
    }
    
    .btn-whatsapp-cta,
    .btn-call-cta {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .newsletter-wrapper {
        padding: 20px;
    }
    
    .footer-badges {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .footer-legal-links {
        flex-direction: column;
        gap: 10px;
    }
    
    .link-separator {
        display: none;
    }
    
    .back-to-top {
        bottom: 15px;
        right: 15px;
        width: 45px;
        height: 45px;
    }
    
    .arrow-up {
        font-size: 1.2rem;
    }
}

/* =============================================
   TOUCH DEVICE OPTIMIZATIONS
   ============================================= */

@media (hover: none) and (pointer: coarse) {
    .btn-primary,
    .btn-whatsapp,
    .btn-whatsapp-hero,
    .btn-whatsapp-final,
    .contact-method {
        min-height: 48px;
        padding: 16px 24px;
    }
    
    .contact-method {
        min-height: 44px;
    }
}

/* =============================================
   PRINT STYLES
   ============================================= */

@media print {
    .hero-cta,
    .btn-whatsapp,
    .btn-whatsapp-hero,
    .btn-whatsapp-final,
    .contact-methods {
        display: none !important;
    }

    .landing-template {
        color: #000000 !important;
        background: white !important;
    }
    
    .hero-title,
    .section-title,
    .cta-title,
    .final-cta-title {
        color: #000000 !important;
    }

    .hero-section {
        min-height: auto;
        color: #000;
    }
    
    .hero-overlay {
        display: none;
    }
    
    .btn-whatsapp,
    .contact-method,
    .hero-cta,
    .btn-whatsapp-hero,
    .btn-whatsapp-final,
    .contact-methods,
    .back-to-top {
        display: none !important;
    }
    
    a {
        color: #000;
        text-decoration: underline;
    }
    
    .no-results {
        padding: 2rem 0;
    }
    
    .landing-template {
        color: #000000 !important;
        background: white !important;
    }
    
    .hero-title,
    .section-title,
    .cta-title,
    .final-cta-title {
        color: #000000 !important;
    }
}

@media (max-width: 991px) {
    .menu-toggle {
        display: flex !important;
        align-items: center;
        gap: 8px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 10px;
        z-index: 1001;
    }
    
    #primary-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 320px;
        height: 100vh;
        background: #fff;
        box-shadow: -5px 0 25px rgba(0,0,0,0.1);
        padding: 80px 25px 40px;
        overflow-y: auto;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
        margin: 0;
        list-style: none;
    }
    
    #primary-menu.active {
        right: 0;
    }
    
    .mobile-menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.5);
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
        z-index: 999;
    }
    
    .mobile-menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }
    
    body.menu-open {
        overflow: hidden;
    }
    
    #primary-menu li {
        margin: 0;
        padding: 0;
        width: 100%;
    }
    
    #primary-menu a {
        display: block;
        padding: 15px 0;
        border-bottom: 1px solid rgba(0,0,0,0.1);
        font-size: 16px;
        font-weight: 500;
    }
    
    /* Hamburger animation */
    .hamburger-box {
        display: inline-block;
        width: 24px;
        height: 18px;
        position: relative;
    }
    
    .hamburger-inner {
        display: block;
        width: 100%;
        height: 2px;
        background: #333;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        transition: all 0.3s ease;
    }
    
    .hamburger-inner::before,
    .hamburger-inner::after {
        content: '';
        position: absolute;
        width: 100%;
        height: 2px;
        background: #333;
        left: 0;
        transition: all 0.3s ease;
    }
    
    .hamburger-inner::before {
        top: -8px;
    }
    
    .hamburger-inner::after {
        bottom: -8px;
    }
    
    .menu-toggle.active .hamburger-inner {
        background: transparent;
    }
    
    .menu-toggle.active .hamburger-inner::before {
        transform: rotate(45deg);
        top: 0;
    }
    
    .menu-toggle.active .hamburger-inner::after {
        transform: rotate(-45deg);
        bottom: 0;
    }
    
    /* Submenu for mobile */
    .menu-item-has-children > a {
        position: relative;
        padding-right: 30px;
    }
    
    .menu-item-has-children > a::after {
        content: '▸';
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        transition: transform 0.3s;
    }
    
    .menu-item-has-children.submenu-open > a::after {
        transform: translateY(-50%) rotate(90deg);
    }
    
    .sub-menu {
        display: none;
        padding-left: 20px;
        margin: 0;
    }
    
    .menu-item-has-children.submenu-open > .sub-menu {
        display: block;
    }
}