/* ========================================
   HANNAH ANY - ULTRA PREMIUM HOMEPAGE
   Modern, Elegant & Eye-Catching Design
   ======================================== */

/* ========== CSS VARIABLES ========== */
:root {
    --primary: #D4A5A5;
    --primary-dark: #B8858B;
    --primary-light: #F0D9DA;
    --accent: #E8B4B8;
    --gold: #D4AF37;
    
    --text-dark: #2D2424;
    --text-medium: #5A5555;
    --text-light: #8B8585;
    
    --bg-light: #FBF7F7;
    --bg-cream: #FAF4F4;
    --white: #FFFFFF;
    
    --shadow-sm: 0 2px 20px rgba(212, 165, 165, 0.1);
    --shadow-md: 0 8px 40px rgba(212, 165, 165, 0.15);
    --shadow-lg: 0 20px 60px rgba(212, 165, 165, 0.25);
    
    --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    --gradient-hero: linear-gradient(135deg, #FDF5F6 0%, #FAE8EB 50%, #F7DDE2 100%);
    
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ========== RESET & BASE ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.3;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ========== PRELOADER ========== */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-light), var(--white));
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.5s ease;
}

.preloader-content {
    text-align: center;
}

.logo-animation {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    margin-bottom: 30px;
    display: flex;
    gap: 15px;
}

.logo-first-anim {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
    animation: fadeInUp 0.8s ease-out;
}

.logo-last-anim {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 300;
    font-style: italic;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.loading-bar {
    width: 200px;
    height: 3px;
    background: rgba(212, 165, 165, 0.2);
    border-radius: 10px;
    overflow: hidden;
}

.loading-progress {
    width: 0;
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 10px;
    animation: loadProgress 1.5s ease-out forwards;
}

@keyframes loadProgress {
    to { width: 100%; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========== HEADER ========== */
#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0);
    backdrop-filter: blur(0px);
    transition: var(--transition);
    padding: 25px 0;
}

#header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-sm);
    padding: 15px 0;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* ========== PREMIUM LOGO ========== */
.logo-link {
    display: inline-block;
    transition: var(--transition);
    position: relative;
}

.logo-link::before {
    content: '';
    position: absolute;
    left: -12px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 0;
    background: var(--gradient-primary);
    transition: var(--transition);
    border-radius: 10px;
}

.logo-link:hover::before {
    height: 70%;
}

.logo-link:hover {
    transform: translateX(8px);
}

.logo-text h1 {
    margin: 0;
    line-height: 1;
    font-size: 32px;
    font-weight: 300;
    display: flex;
    gap: 10px;
}

.logo-first {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
    letter-spacing: 2px;
}

.logo-last {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 300;
    font-style: italic;
    letter-spacing: 3px;
    position: relative;
}

.logo-last::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), transparent);
    border-radius: 10px;
}

.logo-tagline {
    font-family: 'Poppins', sans-serif;
    font-size: 9px;
    color: var(--text-light);
    letter-spacing: 5px;
    text-transform: uppercase;
    font-weight: 600;
    padding-left: 2px;
    margin-top: 5px;
    display: block;
}

/* ========== NAVIGATION ========== */
.main-nav {
    display: flex;
    gap: 15px;
    align-items: center;
}

/* ========== FLOATING CONNECT BUTTON ========== */
.floating-connect-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    background: var(--gradient-primary);
    border: none;
    padding: 18px 28px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    box-shadow: 0 8px 30px rgba(212, 165, 165, 0.4);
    transition: var(--transition);
    animation: slideInRight 1s ease-out 2s both;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.floating-connect-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(212, 165, 165, 0.5);
}

.connect-btn-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 22px;
}

.connect-btn-text {
    color: white;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 0.5px;
}

.connect-btn-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: var(--primary);
    border-radius: 50px;
    opacity: 0.6;
    animation: pulse 2s ease-in-out infinite;
    z-index: -1;
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.3;
    }
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }
}

/* ========== CONTACT POPUP ========== */
.contact-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10001;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.contact-popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.contact-popup {
    background: white;
    border-radius: 30px;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: scale(0.8) translateY(50px);
    transition: var(--transition);
}

.contact-popup-overlay.active .contact-popup {
    transform: scale(1) translateY(0);
}

.popup-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.05);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    z-index: 1;
}

.popup-close:hover {
    background: rgba(0, 0, 0, 0.1);
    transform: rotate(90deg);
}

.popup-close i {
    font-size: 18px;
    color: var(--text-dark);
}

.popup-header {
    text-align: center;
    padding: 50px 40px 30px;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--bg-cream) 100%);
}

.popup-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 8px 25px rgba(212, 165, 165, 0.3);
    animation: popIn 0.6s ease-out 0.3s both;
}

@keyframes popIn {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.popup-icon i {
    font-size: 36px;
    color: white;
}

.popup-header h3 {
    font-size: 32px;
    color: var(--text-dark);
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
}

.popup-header p {
    font-size: 16px;
    color: var(--text-medium);
}

.popup-content {
    padding: 40px;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.contact-option {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: white;
    border: 2px solid var(--primary-light);
    border-radius: 15px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.contact-option::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 165, 165, 0.1), transparent);
    transition: left 0.6s;
}

.contact-option:hover::before {
    left: 100%;
}

.contact-option:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(212, 165, 165, 0.2);
    border-color: var(--primary);
}

.option-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    flex-shrink: 0;
    transition: var(--transition);
}

.contact-option:hover .option-icon {
    transform: scale(1.1) rotate(5deg);
}

.contact-option.whatsapp .option-icon { background: linear-gradient(135deg, #25D366, #1da851); }
.contact-option.telegram .option-icon { background: linear-gradient(135deg, #0088CC, #006699); }
.contact-option.facebook .option-icon { background: linear-gradient(135deg, #1877F2, #0d5dbf); }
.contact-option.instagram .option-icon { background: linear-gradient(45deg, #F09433, #E6683C, #DC2743, #CC2366); }
.contact-option.email .option-icon { background: linear-gradient(135deg, #EA4335, #C5221F); }
.contact-option.tiktok .option-icon { background: linear-gradient(135deg, #000000, #333333); }

.option-content {
    flex: 1;
}

.option-content h4 {
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 3px;
    font-weight: 600;
}

.option-content p {
    font-size: 13px;
    color: var(--text-light);
    margin: 0;
}

.option-arrow {
    color: var(--primary);
    font-size: 18px;
    transition: var(--transition);
}

.contact-option:hover .option-arrow {
    transform: translateX(5px);
}

.popup-footer {
    text-align: center;
    padding: 25px;
    background: var(--bg-light);
    border-radius: 15px;
}

.popup-footer p {
    font-size: 15px;
    color: var(--text-medium);
    margin: 0;
}


.nav-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-dark);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.nav-link i {
    font-size: 16px;
    transition: var(--transition);
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: var(--gradient-primary);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
    z-index: -1;
}

.nav-link:hover::before,
.nav-link.active::before {
    width: 200%;
    height: 200%;
}

.nav-link:hover,
.nav-link.active {
    color: white;
    transform: translateY(-2px);
}

.nav-link-special {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 15px rgba(212, 165, 165, 0.3);
}

.nav-link-special:hover {
    box-shadow: 0 6px 25px rgba(212, 165, 165, 0.4);
    transform: translateY(-3px);
}

/* ========== HAMBURGER MENU ========== */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: var(--gradient-primary);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 12px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(212, 165, 165, 0.3);
    transition: var(--transition);
}

.menu-toggle:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(212, 165, 165, 0.4);
}

.hamburger-line {
    width: 24px;
    height: 2px;
    background: white;
    border-radius: 2px;
    transition: var(--transition);
}

.menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ========== HERO SECTION ========== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 140px 0 80px;
    background: var(--gradient-hero);
    position: relative;
    overflow: hidden;
}

.hero-bg-pattern {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(212, 165, 165, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(212, 165, 165, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.hero-gradient-overlay {
    position: absolute;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(212, 165, 165, 0.15), transparent 70%);
    border-radius: 50%;
    top: -200px;
    right: -200px;
    animation: float 20s ease-in-out infinite;
    pointer-events: none;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(30px, -30px) rotate(5deg); }
    50% { transform: translate(-20px, 20px) rotate(-5deg); }
    75% { transform: translate(20px, 30px) rotate(3deg); }
}

/* Particles */
.particles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: radial-gradient(circle, var(--primary), transparent);
    border-radius: 50%;
    opacity: 0.3;
    animation: particleFloat 15s infinite;
}

.particle:nth-child(1) { left: 10%; animation-delay: 0s; }
.particle:nth-child(2) { left: 20%; animation-delay: 2s; }
.particle:nth-child(3) { left: 35%; animation-delay: 4s; }
.particle:nth-child(4) { left: 50%; animation-delay: 1s; }
.particle:nth-child(5) { left: 65%; animation-delay: 3s; }
.particle:nth-child(6) { left: 75%; animation-delay: 5s; }
.particle:nth-child(7) { left: 85%; animation-delay: 2.5s; }
.particle:nth-child(8) { left: 92%; animation-delay: 4.5s; }

@keyframes particleFloat {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 0.3;
    }
    90% {
        opacity: 0.3;
    }
    100% {
        transform: translateY(-100px) scale(1);
        opacity: 0;
    }
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.5s forwards;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: white;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-dark);
    box-shadow: var(--shadow-sm);
    margin-bottom: 30px;
}

.hero-badge i {
    color: var(--primary);
    font-size: 18px;
}

.hero-title {
    font-size: clamp(42px, 5vw, 64px);
    color: var(--text-dark);
    margin-bottom: 25px;
    line-height: 1.1;
}

.hero-highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    display: inline-block;
}

.hero-highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 15px;
    background: linear-gradient(90deg, var(--primary-light), transparent);
    opacity: 0.5;
    z-index: -1;
    border-radius: 5px;
}

.hero-subtitle {
    font-size: clamp(18px, 2.5vw, 24px);
    color: var(--text-medium);
    margin-bottom: 40px;
    line-height: 1.6;
}

.text-accent {
    color: var(--primary-dark);
    font-weight: 600;
    position: relative;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.hero-stat {
    display: flex;
    align-items: center;
    gap: 15px;
    background: white;
    padding: 15px 20px;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.hero-stat:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 22px;
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    font-family: 'Playfair Display', serif;
}

.stat-label {
    font-size: 13px;
    color: var(--text-light);
    font-weight: 500;
}

/* Hero CTA */
.hero-cta {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 8px 25px rgba(212, 165, 165, 0.35);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(212, 165, 165, 0.45);
}

.btn-secondary {
    background: white;
    color: var(--primary-dark);
    border: 2px solid var(--primary-light);
    box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
    background: var(--primary-light);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

/* Social Proof */
.social-proof {
    display: flex;
    align-items: center;
    gap: 15px;
}

.social-avatars {
    display: flex;
}

.avatar {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 50%;
    border: 3px solid white;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
    margin-left: -12px;
}

.avatar:first-child {
    margin-left: 0;
}

.social-text {
    font-size: 14px;
    color: var(--text-medium);
}

.social-text strong {
    color: var(--primary-dark);
}

/* Hero Image */
.hero-image {
    position: relative;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.7s forwards;
}

.image-frame {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.image-frame img {
    width: 100%;
    height: auto;
    display: block;
}

.image-decoration {
    position: absolute;
    border: 3px solid var(--primary-light);
    border-radius: 30px;
}

.decoration-1 {
    width: 100%;
    height: 100%;
    top: -20px;
    left: -20px;
}

.decoration-2 {
    width: 150px;
    height: 150px;
    bottom: -20px;
    right: -20px;
    background: var(--gradient-primary);
    opacity: 0.2;
}

/* Floating Cards */
.floating-card {
    position: absolute;
    background: white;
    padding: 15px 20px;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 12px;
    animation: floatCard 3s ease-in-out infinite;
    z-index: 2;
}

.floating-card i {
    width: 45px;
    height: 45px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    flex-shrink: 0;
}

.floating-card div {
    display: flex;
    flex-direction: column;
}

.floating-card strong {
    font-size: 15px;
    color: var(--text-dark);
    font-weight: 600;
}

.floating-card span {
    font-size: 12px;
    color: var(--text-light);
}

.card-1 {
    top: 10%;
    right: -30px;
    animation-delay: 0s;
}

.card-2 {
    bottom: 30%;
    left: -40px;
    animation-delay: 1s;
}

.card-3 {
    bottom: 10%;
    right: 10%;
    animation-delay: 2s;
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    opacity: 0;
    animation: fadeIn 1s ease-out 1.5s forwards;
}

.scroll-indicator span {
    font-size: 13px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 10px;
}

.scroll-arrow {
    width: 30px;
    height: 50px;
    border: 2px solid var(--primary);
    border-radius: 20px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 8px;
    margin: 0 auto;
}

.scroll-arrow i {
    color: var(--primary);
    font-size: 14px;
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(10px); }
}

@keyframes fadeIn {
    to { opacity: 1; }
}

/* ========== SECTIONS GENERAL ========== */
section {
    padding: 80px 0;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary-light);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.section-badge i {
    font-size: 16px;
}

.section-title {
    font-size: clamp(36px, 4vw, 54px);
    color: var(--text-dark);
    margin-bottom: 20px;
}

.title-highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.title-highlight-white {
    color: white;
    background: none;
    -webkit-text-fill-color: white;
    text-decoration: underline;
    text-decoration-color: rgba(255, 255, 255, 0.5);
    text-underline-offset: 8px;
}

.section-description {
    font-size: 18px;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto 50px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    opacity: 0;
    transform: translateY(30px);
}

.section-header.visible {
    animation: fadeInUp 0.8s ease-out forwards;
}

/* ========== ABOUT SECTION ========== */
.about {
    background: white;
    padding: 80px 0;
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
    opacity: 0;
    transform: translateX(-50px);
}

.about-image-wrapper.visible {
    animation: slideInLeft 1s ease-out forwards;
}

@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.about-image-frame {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
}

.about-image-frame img {
    width: 100%;
    height: auto;
    display: block;
}

.about-image-border {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 20px;
    left: 20px;
    border: 3px solid var(--primary-light);
    border-radius: 30px;
    z-index: -1;
}

.quote-card {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: white;
    padding: 20px 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    max-width: 80%;
    z-index: 2;
}

.quote-card i {
    color: var(--primary);
    font-size: 24px;
    margin-bottom: 10px;
}

.quote-card p {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-style: italic;
    color: var(--text-dark);
    margin: 0;
}

.experience-badge {
    position: absolute;
    top: 30px;
    right: -20px;
    background: var(--gradient-primary);
    color: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    text-align: center;
    z-index: 2;
}

.badge-number {
    font-size: 36px;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    line-height: 1;
}

.badge-text {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
}

.about-content {
    opacity: 0;
    transform: translateX(50px);
}

.about-content.visible {
    animation: slideInRight 1s ease-out forwards;
}

@keyframes slideInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.about-intro {
    background: linear-gradient(135deg, var(--primary-light) 0%, rgba(232, 180, 184, 0.3) 100%);
    padding: 25px 30px;
    border-radius: 15px;
    border-left: 4px solid var(--primary);
    margin: 25px 0;
}

.about-intro p {
    font-size: 17px;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.7;
}

.about-text {
    font-size: 16px;
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 30px;
}

.about-highlights {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: var(--bg-light);
    border-radius: 12px;
    transition: var(--transition);
}

.highlight-item:hover {
    background: var(--primary-light);
    transform: translateX(10px);
}

.highlight-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 22px;
    flex-shrink: 0;
}

.highlight-content h4 {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.highlight-content p {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
}

.about-cta {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.social-links-inline {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.social-icon.instagram {
    background: linear-gradient(45deg, #F09433, #E6683C, #DC2743, #CC2366, #BC1888);
    color: white;
}

.social-icon.facebook {
    background: #1877F2;
    color: white;
}

.social-icon.twitter {
    background: #1DA1F2;
    color: white;
}

.social-icon:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

/* ========== GALLERY SECTION ========== */
.gallery-section {
    background: var(--bg-light);
    padding: 80px 0;
}

.gallery-grid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    aspect-ratio: 1;
    box-shadow: var(--shadow-sm);
    opacity: 0;
    transform: scale(0.9);
}

.gallery-item.visible {
    animation: scaleIn 0.6s ease-out forwards;
}

.gallery-item:nth-child(1) { animation-delay: 0.1s; }
.gallery-item:nth-child(2) { animation-delay: 0.2s; }
.gallery-item:nth-child(3) { animation-delay: 0.3s; }
.gallery-item:nth-child(4) { animation-delay: 0.4s; }
.gallery-item:nth-child(5) { animation-delay: 0.5s; }
.gallery-item:nth-child(6) { animation-delay: 0.6s; }

@keyframes scaleIn {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.gallery-item-large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item-wide {
    grid-column: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 165, 165, 0.95), rgba(184, 133, 139, 0.95));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-content {
    text-align: center;
    color: white;
    padding: 20px;
    transform: translateY(20px);
    transition: var(--transition);
}

.gallery-item:hover .gallery-content {
    transform: translateY(0);
}

.gallery-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 15px;
}

.gallery-content h3 {
    font-size: 24px;
    margin-bottom: 8px;
}

.gallery-content p {
    font-size: 15px;
    margin-bottom: 15px;
    opacity: 0.9;
}

.gallery-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: white;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 25px;
    transition: var(--transition);
}

.gallery-link:hover {
    background: white;
    color: var(--primary-dark);
}

/* ========== BLOG SECTION ========== */
.blog-section {
    background: white;
    padding: 80px 0;
}

.blog-grid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
}

.blog-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    opacity: 0;
    transform: translateY(30px);
}

.blog-card.visible {
    animation: fadeInUp 0.8s ease-out forwards;
}

.blog-card:nth-child(1) { animation-delay: 0.2s; }
.blog-card:nth-child(2) { animation-delay: 0.4s; }
.blog-card:nth-child(3) { animation-delay: 0.6s; }

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.blog-card-featured {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.blog-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, var(--gold), #F4C430);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
    z-index: 2;
}

.blog-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/10;
}

.blog-card-featured .blog-image {
    aspect-ratio: auto;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-category {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: white;
    backdrop-filter: blur(10px);
    z-index: 1;
}

.blog-category.nature { background: rgba(76, 175, 80, 0.9); }
.blog-category.lifestyle { background: rgba(255, 152, 0, 0.9); }
.blog-category.travel { background: rgba(33, 150, 243, 0.9); }

.blog-content {
    padding: 30px;
}

.blog-meta {
    display: flex;
    gap: 20px;
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 15px;
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.blog-title {
    font-size: 24px;
    color: var(--text-dark);
    margin-bottom: 15px;
    line-height: 1.3;
}

.blog-excerpt {
    font-size: 15px;
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 20px;
}

.blog-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid var(--primary-light);
}

.blog-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-dark);
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition);
}

.blog-link:hover {
    gap: 15px;
    color: var(--primary);
}

.blog-engagement {
    display: flex;
    gap: 15px;
    font-size: 14px;
    color: var(--text-light);
}

.blog-engagement span {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* ========== NEWSLETTER SECTION ========== */
.newsletter {
    background: var(--gradient-primary);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.newsletter::before,
.newsletter::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
}

.newsletter::before {
    width: 500px;
    height: 500px;
    top: -200px;
    right: -150px;
}

.newsletter::after {
    width: 400px;
    height: 400px;
    bottom: -150px;
    left: -100px;
}

.newsletter-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 40px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.newsletter-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: white;
    margin: 0 auto 30px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.newsletter-title {
    font-size: clamp(36px, 4vw, 48px);
    color: white;
    margin-bottom: 20px;
}

.newsletter-text {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 40px;
    line-height: 1.6;
}

.newsletter-form {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.form-group {
    flex: 1;
    position: relative;
}

.form-group i {
    position: absolute;
    left: 25px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
    font-size: 18px;
}

.newsletter-form input {
    width: 100%;
    padding: 20px 25px 20px 60px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    outline: none;
    background: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-submit {
    padding: 20px 40px;
    background: var(--text-dark);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-submit:hover {
    background: #1a1414;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.newsletter-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
}

.newsletter-features {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-size: 15px;
}

.feature-item i {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
}

/* ========== FOOTER ========== */
.footer {
    background: linear-gradient(135deg, #2D2424 0%, #1a1414 100%);
    color: white;
    padding: 60px 0 30px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 60px;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo h3 {
    font-size: 32px;
    margin-bottom: 10px;
}

.footer-logo p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin-bottom: 20px;
}

.footer-desc {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 25px;
}

.footer-social {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.social-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.social-btn.facebook { background: #1877F2; }
.social-btn.instagram { background: linear-gradient(45deg, #F09433, #E6683C, #DC2743, #CC2366, #BC1888); }
.social-btn.twitter { background: #1DA1F2; }
.social-btn.whatsapp { background: #25D366; }
.social-btn.telegram { background: #229ED9; }
.social-btn.tiktok { background: #000000; }

.social-btn:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--primary-light);
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    transition: var(--transition);
    display: inline-block;
}

.footer-column ul li a:hover {
    color: white;
    transform: translateX(5px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.footer-bottom i {
    color: var(--primary);
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    transition: var(--transition);
}

.footer-bottom-links a:hover {
    color: white;
}

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 1024px) {
    .hero-container,
    .about-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .hero-image,
    .about-image-wrapper {
        order: -1;
    }
    
    .gallery-item-large {
        grid-column: span 1;
        grid-row: span 1;
    }
    
    .blog-card-featured {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    
    .main-nav {
        position: fixed;
        top: 90px;
        right: -100%;
        width: 300px;
        height: calc(100vh - 90px);
        background: white;
        flex-direction: column;
        align-items: flex-start;
        padding: 30px 20px;
        box-shadow: var(--shadow-lg);
        transition: var(--transition);
        overflow-y: auto;
        gap: 5px;
    }
    
    .main-nav.active {
        right: 0;
    }
    
    .nav-link {
        width: 100%;
        justify-content: flex-start;
        padding: 15px 20px;
        border-radius: 12px;
    }
    
    .header-container {
        padding: 0 20px;
    }
    
    /* Floating Connect Button Mobile */
    .floating-connect-btn {
        bottom: 20px;
        right: 20px;
        padding: 15px 22px;
    }
    
    .connect-btn-text {
        font-size: 14px;
    }
    
    .connect-btn-icon {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    
    /* Contact Popup Mobile */
    .contact-popup {
        width: 95%;
        border-radius: 20px;
    }
    
    .popup-header {
        padding: 40px 25px 25px;
    }
    
    .popup-header h3 {
        font-size: 26px;
    }
    
    .popup-content {
        padding: 25px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .contact-option {
        padding: 18px;
    }
    
    
    .hero {
        padding: 120px 0 60px;
    }
    
    .hero-container {
        padding: 0 20px;
    }
    
    .hero-stats {
        gap: 15px;
    }
    
    .hero-stat {
        flex: 1;
        min-width: calc(50% - 8px);
    }
    
    .hero-cta {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .floating-card {
        display: none;
    }
    
    section {
        padding: 60px 0;
    }
    
    .about-container,
    .gallery-grid,
    .blog-grid,
    .newsletter-container,
    .footer-container {
        padding: 0 20px;
    }
    
    .gallery-item-wide {
        grid-column: span 1;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form input,
    .btn-submit {
        width: 100%;
    }
    
    .newsletter-features {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .logo-text h1 {
        font-size: 24px;
    }
    
    .hero-stats {
        flex-direction: column;
    }
    
    .hero-stat {
        min-width: 100%;
    }
}

/* ========== UTILITY CLASSES ========== */
.visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

body.menu-open {
    overflow: hidden;
}