/* CSS Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --sky-blue: #9ccee9;
    --dark-sky-blue: #7bb8df;
    --light-sky-blue: #e6f4f9;
    --black: #0F172A;
    --white: #ffffff;
    --light-gray: #F8FAFC;
    --gray: #64748B;
    --dark-gray: #334155;
    --accent-gold: #F59E0B;
    --success-green: #10B981;
    --shadow: 0 10px 25px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-subtle: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --border-radius: 16px;
    --border-radius-lg: 24px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --gradient-primary: linear-gradient(135deg, var(--sky-blue) 0%, var(--dark-sky-blue) 100%);
    --gradient-light: linear-gradient(135deg, var(--light-sky-blue) 0%, var(--white) 100%);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Assistant', sans-serif;
    line-height: 1.6;
    color: var(--black);
    direction: rtl;
    text-align: right;
    overflow-x: hidden;
    padding-top: 80px; /* Account for fixed navbar */
}

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

/* Modern Background Elements */
.background-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.blob {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(156, 206, 233, 0.15), rgba(123, 184, 223, 0.08));
    filter: blur(40px);
    animation: float 20s infinite ease-in-out;
}

.blob-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.blob-2 {
    width: 200px;
    height: 200px;
    top: 60%;
    right: 15%;
    background: linear-gradient(45deg, rgba(245, 158, 11, 0.12), rgba(217, 119, 6, 0.06));
    animation-delay: 5s;
}

.blob-3 {
    width: 250px;
    height: 250px;
    bottom: 20%;
    left: 20%;
    background: linear-gradient(45deg, rgba(16, 185, 129, 0.12), rgba(5, 150, 105, 0.06));
    animation-delay: 10s;
}

.geometric-shape {
    position: absolute;
    opacity: 0.15;
    animation: rotate 30s linear infinite;
}

.triangle {
    width: 0;
    height: 0;
    border-left: 25px solid transparent;
    border-right: 25px solid transparent;
    border-bottom: 43px solid rgba(156, 206, 233, 0.2);
    top: 30%;
    right: 5%;
    animation-delay: 3s;
}

.circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(245, 158, 11, 0.2);
    top: 70%;
    left: 5%;
    animation-delay: 8s;
}

.square {
    width: 30px;
    height: 30px;
    background: rgba(16, 185, 129, 0.2);
    top: 20%;
    right: 30%;
    animation-delay: 15s;
    transform: rotate(45deg);
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) translateX(0px) scale(1);
    }
    33% {
        transform: translateY(-30px) translateX(20px) scale(1.1);
    }
    66% {
        transform: translateY(20px) translateX(-15px) scale(0.9);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.section-background-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(156, 206, 233, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(245, 158, 11, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(16, 185, 129, 0.06) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.dots-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 1px 1px, rgba(156, 206, 233, 0.25) 1px, transparent 0);
    background-size: 20px 20px;
    opacity: 0.6;
    pointer-events: none;
    z-index: 0;
}

/* Wave Background Element */
.wave-background {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(180deg, transparent 0%, rgba(156, 206, 233, 0.05) 100%);
    clip-path: polygon(0 20px, 100% 0, 100% 100%, 0 100%);
    pointer-events: none;
    z-index: 0;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

h1 {
    font-size: 3rem;
    line-height: 1.2;
}

h2 {
    font-size: 2.5rem;
    line-height: 1.3;
}

h3 {
    font-size: 1.5rem;
    line-height: 1.4;
}

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    position: relative;
    z-index: 2;
}

.section-title {
    text-align: center;
    color: var(--black);
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    right: 50%;
    transform: translateX(50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--sky-blue), var(--dark-sky-blue));
    border-radius: 2px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-subtle);
    z-index: 1000;
    padding: 0.75rem 0;
    height: 80px;
    display: flex;
    align-items: center;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1400px;
    position: relative;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--black);
    text-decoration: none;
    order: 1; /* Move logo to the right on desktop */
}

.nav-logo {
    height: 50px;
    width: auto;
}

.nav-brand-text {
    color: var(--sky-blue);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    order: 2; /* Keep menu centered */
}

.nav-whatsapp {
    order: 3; /* Move WhatsApp button to the left on desktop */
}

.nav-link {
    color: var(--black);
    text-decoration: none;
    font-weight: 600;
    padding: 0.5rem 0;
    position: relative;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--sky-blue);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 2px;
    background: var(--sky-blue);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-whatsapp {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #25D366, #20B954);
    color: var(--white);
    padding: 12px 24px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.nav-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.nav-whatsapp .whatsapp-icon {
    width: 20px;
    height: 20px;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

/* Hide mobile WhatsApp button on desktop */
.mobile-whatsapp {
    display: none;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--black);
    transition: var(--transition);
}

/* Buttons */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 18px 36px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: var(--transition);
    box-shadow: var(--shadow);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25D366, #20B954);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}

.whatsapp-btn:hover {
    background: linear-gradient(135deg, #20B954, #1da851);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.4);
}

.contact-btn {
    background: transparent;
    border: 2px solid var(--sky-blue) !important;
    color: var(--sky-blue);
    box-shadow: 0 8px 25px rgba(156, 206, 233, 0.2);
}

.contact-btn:hover {
    background: var(--sky-blue);
    color: var(--white);
    box-shadow: 0 12px 35px rgba(156, 206, 233, 0.4);
}

.whatsapp-icon {
    width: 24px;
    height: 24px;
}



/* Hero Section */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 2rem 0;
    /* Stronger ocean gradient fallback */
    background: 
        radial-gradient(ellipse at top, rgba(156, 206, 233, 0.4) 0%, transparent 60%),
        radial-gradient(ellipse at bottom, rgba(123, 184, 223, 0.5) 0%, transparent 60%),
        linear-gradient(135deg, 
            #9ccee9 0%,
            #7bb8df 15%,
            #6ba8d5 35%,
            #5b98cb 55%,
            #4b88c1 75%,
            #3b78b7 90%,
            #1E293B 100%
        );
    position: relative;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            90deg,
            transparent 0px,
            rgba(255, 255, 255, 0.02) 1px,
            transparent 2px,
            transparent 100px
        );
    animation: oceanFlow 12s ease-in-out infinite;
    z-index: 1;
}

@keyframes oceanFlow {
    0%, 100% {
        opacity: 0.3;
        transform: translateX(0px);
    }
    50% {
        opacity: 0.6;
        transform: translateX(20px);
    }
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-image: url('../assets/images/back.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 20% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 40%),
        radial-gradient(ellipse at 80% 80%, rgba(156, 206, 233, 0.4) 0%, transparent 50%),
        linear-gradient(
            135deg,
            rgba(156, 206, 233, 0.85) 0%,
            rgba(123, 184, 223, 0.8) 30%,
            rgba(107, 168, 213, 0.9) 70%,
            rgba(7, 89, 133, 0.95) 100%
        );
    z-index: 2;
}

.hero .container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 6rem;
    align-items: center;
    z-index: 10;
    position: relative;
    max-width: 1400px;
}

.hero-content {
    position: relative;
    z-index: 10;
    padding-right: 2rem;
}

/* Logo styles removed from hero - now only in navbar */

.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 2rem;
    line-height: 1.1;
    text-shadow: 2px 4px 12px rgba(0, 0, 0, 0.4);
    letter-spacing: -0.02em;
}

.title-line {
    display: block;
    opacity: 0;
    transform: translateY(50px);
    animation: slideInUp 0.8s ease-out forwards;
}

.title-line:nth-child(1) {
    animation-delay: 0.2s;
}

.title-line:nth-child(2) {
    animation-delay: 0.4s;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.4rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.6;
    max-width: 500px;
    opacity: 0;
    transform: translateY(30px);
    animation: slideInUp 0.8s ease-out 0.6s forwards;
}

.hero-cta-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    opacity: 0;
    transform: translateY(30px);
    animation: slideInUp 0.8s ease-out 0.8s forwards;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 10;
}

/* Removed duplicate fallback - already defined above */

.hero-professional-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    animation: slideInFromRight 1s ease-out 0.4s forwards;
}

.hero-professional-image::before {
    content: '';
    position: absolute;
    top: -25px;
    left: -25px;
    right: -25px;
    bottom: -25px;
    background: 
        linear-gradient(45deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.08)),
        linear-gradient(135deg, rgba(156, 206, 233, 0.2), rgba(107, 168, 213, 0.1));
    border-radius: 35px;
    z-index: -1;
    animation: pulse 3s ease-in-out infinite;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.hero-professional-image::after {
    content: '';
    position: absolute;
    top: -15px;
    right: -15px;
    width: 40px;
    height: 40px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ffffff'%3E%3Cpath d='M21 16v-2l-8-5V3.5c0-.83-.67-1.5-1.5-1.5S10 2.67 10 3.5V9l-8 5v2l8-2.5V19l-2 1.5V22l3.5-1 3.5 1v-1.5L13 19v-5.5l8 2.5z'/%3E%3C/svg%3E") center/contain no-repeat;
    animation: bounce 2s infinite;
    z-index: 2;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.professional-photo {
    width: 420px;
    height: 500px;
    object-fit: cover;
    object-position: center top;
    border-radius: 25px;
    border: 5px solid rgba(255, 255, 255, 0.4);
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    z-index: 1;
    filter: brightness(1.05) contrast(1.1);
}

/* Removed heavy hover effect to improve performance */

/* Enhanced CTA Button in Hero */
.hero .cta-button {
    padding: 20px 40px;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50px;
    position: relative;
    overflow: hidden;
}

.hero .cta-button.whatsapp-btn {
    background: linear-gradient(135deg, #25D366 0%, #20B954 50%, #1da851 100%);
    box-shadow:
        0 10px 30px rgba(37, 211, 102, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.hero .cta-button::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;
}

.hero .cta-button:hover::before {
    left: 100%;
}

.hero .cta-button.whatsapp-btn:hover {
    transform: translateY(-3px);
    box-shadow:
        0 15px 40px rgba(37, 211, 102, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.hero .cta-button.contact-btn {
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.8) !important;
    color: var(--white);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.hero .cta-button.contact-btn:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.2);
}

/* Animations */
@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@keyframes pulse {
    0%, 100% {
        opacity: 0.5;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

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

.about-professional-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-photo {
    width: 280px;
    height: 350px;
    object-fit: cover;
    object-position: center top;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2),
                0 6px 12px rgba(0, 0, 0, 0.1);
    border: 3px solid var(--white);
    transition: var(--transition);
}

.about-photo:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3),
                0 8px 16px rgba(0, 0, 0, 0.2);
}

.about-photo-frame {
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    border: 2px solid var(--sky-blue);
    border-radius: 25px;
    pointer-events: none;
    opacity: 0.3;
}

/* Remove old placeholder styles */
.image-placeholder {
    width: 300px;
    height: 400px;
    background: linear-gradient(135deg, var(--light-gray), #e9ecef);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray);
    font-size: 1.1rem;
    border: 2px dashed var(--gray);
}

.guy-image {
    width: 250px;
    height: 300px;
}

/* Features Section */
.features {
    padding: 8rem 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    position: relative;
}

/* Mobile scroll hint for features section */
@media (max-width: 768px) {
    .features::after {
        content: "→ גלול לעוד שירותים ←";
        position: absolute;
        bottom: 2rem;
        left: 50%;
        transform: translateX(-50%);
        background: linear-gradient(135deg, var(--sky-blue), var(--dark-sky-blue));
        color: var(--white);
        padding: 0.6rem 1.5rem;
        border-radius: 25px;
        font-size: 0.85rem;
        font-weight: 600;
        white-space: nowrap;
        animation: pulseHint 3s ease-in-out infinite;
        box-shadow: 0 4px 15px rgba(156, 206, 233, 0.3);
        border: 2px solid rgba(255, 255, 255, 0.2);
        z-index: 5;
        opacity: var(--hint-opacity, 1);
        transition: opacity 0.5s ease;
        text-align: center;
    }
    
    .features.scrolled::after {
        opacity: 0;
        pointer-events: none;
    }
}

@keyframes pulseHint {
    0%, 100% { 
        opacity: 0.7; 
        transform: translateX(-50%) scale(1); 
    }
    50% { 
        opacity: 1; 
        transform: translateX(-50%) scale(1.05); 
    }
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--sky-blue), transparent);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 4rem;
    position: relative;
    z-index: 2;
}

.feature-card {
    background: linear-gradient(135deg, var(--white) 0%, #fafcff 100%);
    padding: 2rem 1.5rem;
    border-radius: var(--border-radius-lg);
    text-align: right;
    box-shadow: 0 4px 20px rgba(156, 206, 233, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(156, 206, 233, 0.1);
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-primary);
    transform: scaleY(0);
    transition: var(--transition);
    transform-origin: bottom;
}

.feature-card:hover::before {
    transform: scaleY(1);
}

.feature-card::after {
    content: attr(data-number);
    position: absolute;
    top: -10px;
    left: -5px;
    font-size: 5rem;
    font-weight: 900;
    color: var(--sky-blue);
    opacity: 0.12;
    line-height: 1;
    pointer-events: none;
    z-index: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover::after {
    opacity: 0.18;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(156, 206, 233, 0.12);
    border-color: var(--sky-blue);
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: var(--gradient-primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 1.2rem auto;
    color: var(--white);
    box-shadow:
        0 6px 20px rgba(156, 206, 233, 0.3),
        0 0 0 6px rgba(156, 206, 233, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.feature-icon::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(156, 206, 233, 0.3), rgba(123, 184, 223, 0.05));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-icon svg {
    width: 30px;
    height: 30px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.feature-card:hover .feature-icon {
    box-shadow:
        0 8px 28px rgba(156, 206, 233, 0.4),
        0 0 0 6px rgba(156, 206, 233, 0.12);
    transform: rotate(-6deg);
}

.feature-card:hover .feature-icon::before {
    opacity: 1;
}

.feature-card:hover .feature-icon svg {
    transform: scale(1.1);
}

.feature-card h3 {
    color: var(--black);
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.feature-card:hover h3 {
    color: var(--sky-blue);
}

.feature-more {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.3s ease;
    opacity: 0;
}

.feature-more p {
    padding-top: 0.8rem;
    border-top: 1px solid rgba(156, 206, 233, 0.15);
    margin-top: 0.8rem;
}

.feature-card.expanded .feature-more {
    max-height: 300px;
    opacity: 1;
}

.feature-toggle {
    background: none;
    border: none;
    color: var(--sky-blue);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    padding: 0.5rem 0 0;
    transition: color 0.3s ease;
    font-family: inherit;
}

.feature-toggle:hover {
    color: var(--dark-sky-blue);
}

.feature-card.expanded .feature-toggle::after {
    content: '';
}

.feature-card p {
    color: var(--gray);
    line-height: 1.7;
    font-size: 0.95rem;
    margin: 0;
    transition: color 0.3s ease;
}

.feature-card:hover p {
    color: var(--dark-gray);
}

/* Timeline Section */
.timeline {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 100%);
    position: relative;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
    z-index: 2;
    margin-top: 3rem;
}

.step-card {
    text-align: center;
    padding: 2rem 1.5rem;
    position: relative;
}

.step-number-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    position: relative;
}

.step-number {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--sky-blue), var(--dark-sky-blue));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 800;
    box-shadow: 0 4px 15px rgba(156, 206, 233, 0.4);
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}

.step-connector {
    display: none;
}

.steps-grid::before {
    content: '';
    position: absolute;
    top: calc(2rem + 24px);
    left: calc(12.5% + 24px);
    right: calc(12.5% + 24px);
    height: 2px;
    background: linear-gradient(90deg, rgba(156, 206, 233, 0.3), var(--sky-blue), var(--sky-blue), rgba(156, 206, 233, 0.3));
    z-index: 1;
}

.step-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.2rem;
    background: var(--white);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--sky-blue);
    box-shadow: 0 4px 20px rgba(156, 206, 233, 0.15);
    transition: all 0.3s ease;
}

.step-icon svg {
    width: 30px;
    height: 30px;
}

.step-card:hover .step-icon {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(156, 206, 233, 0.25);
    background: var(--gradient-primary);
    color: var(--white);
}

.step-card h3 {
    color: var(--black);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
}

.step-card p {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    .steps-grid::before {
        display: none;
    }
}

@media (max-width: 480px) {
    .steps-grid {
        grid-template-columns: 1fr;
    }
}

/* About Section */
.about {
    padding: 6rem 0;
    background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 100%);
    position: relative;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.about-description {
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

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

.social-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: var(--shadow);
    position: relative;
    z-index: 2;
}

.social-link svg {
    width: 20px;
    height: 20px;
}

.social-link.facebook {
    background: #1877F2;
    color: var(--white);
}

.social-link.instagram {
    background: linear-gradient(45deg, #F56040, #E1306C, #C13584);
    color: var(--white);
}

.social-link.whatsapp {
    background: linear-gradient(135deg, #25D366, #20B954);
    color: var(--white);
}

.social-link:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

/* Why Choose Me Section */
.why-choose-me {
    padding: 8rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 100%);
    position: relative;
}

.why-choose-me::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--sky-blue), transparent);
}

.why-choose-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.why-choose-subtitle {
    font-size: 1.2rem;
    color: var(--gray);
    margin-top: 1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-bottom: 5rem;
    position: relative;
    z-index: 2;
}

.why-choose-card {
    background: var(--white);
    padding: 3rem 2.5rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(156, 206, 233, 0.1);
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.why-choose-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--sky-blue), var(--dark-sky-blue));
    transform: scaleX(0);
    transition: var(--transition);
    transform-origin: center;
}

.why-choose-card:hover::before {
    transform: scaleX(1);
}

.why-choose-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--sky-blue);
}

.why-choose-card.quality {
    border-left: 4px solid #F59E0B;
}

.why-choose-card.experience {
    border-left: 4px solid #10B981;
}

.why-choose-card.satisfaction {
    border-left: 4px solid #8B5CF6;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.card-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: var(--shadow);
    flex-shrink: 0;
}

.why-choose-card.quality .card-icon {
    background: linear-gradient(135deg, #F59E0B, #D97706);
}

.why-choose-card.experience .card-icon {
    background: linear-gradient(135deg, #10B981, #059669);
}

.why-choose-card.satisfaction .card-icon {
    background: linear-gradient(135deg, #8B5CF6, #7C3AED);
}

.card-icon svg {
    width: 35px;
    height: 35px;
}

.card-header h3 {
    color: var(--black);
    margin: 0;
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.3;
}

.why-choose-card p {
    color: var(--gray);
    line-height: 1.8;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.card-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--sky-blue);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: var(--shadow);
}

.why-choose-card.quality .card-badge {
    background: #F59E0B;
}

.why-choose-card.experience .card-badge {
    background: #10B981;
}

.why-choose-card.satisfaction .card-badge {
    background: #8B5CF6;
}

.reviews-gallery {
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.reviews-title {
    text-align: center;
    color: var(--black);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2.5rem;
    position: relative;
}

.reviews-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    padding: 0 1rem;
}

.review-image-container {
    border-radius: var(--border-radius);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-subtle);
    cursor: pointer;
    background: var(--white);
    padding: 12px; /* give breathing room for varied aspect ratios */
}

.review-image-container:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.review-image-container:hover .zoom-indicator {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.zoom-indicator {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    opacity: 0;
    transition: var(--transition);
    z-index: 3;
    backdrop-filter: blur(4px);
}

.zoom-indicator svg {
    width: 24px;
    height: 24px;
}

.review-image {
    width: 100%;
    height: 100%;
    object-fit: contain; /* show full image regardless of aspect ratio */
    border-radius: calc(var(--border-radius) - 6px);
    transition: var(--transition);
    background: transparent;
}

.review-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
    backdrop-filter: blur(10px);
}

.review-modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.modal-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.modal-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    z-index: 3;
    color: var(--black);
}

.modal-close:hover {
    background: white;
    transform: scale(1.1);
}

.modal-close svg {
    width: 20px;
    height: 20px;
}

.modal-image-container {
    position: relative;
    max-width: 100%;
    max-height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-image {
    max-width: 100%;
    max-height: 90vh;
    width: auto;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-hover);
    object-fit: contain;
}

/* Responsive adjustments for different screen sizes */
@media (max-width: 768px) {
    .reviews-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 1rem;
        padding: 0 0.5rem;
    }
    
    .reviews-title {
        font-size: 1.3rem;
        margin-bottom: 2rem;
    }
}

@media (max-width: 480px) {
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    .reviews-title {
        font-size: 1.2rem;
        margin-bottom: 1.5rem;
    }
    
    .modal-content {
        max-width: 95vw;
        max-height: 85vh;
        margin: 20px;
    }
    
    .modal-close {
        top: -40px;
        right: 10px;
        width: 35px;
        height: 35px;
    }
    
    .modal-image {
        max-height: 80vh;
    }
    
    .zoom-indicator {
        width: 40px;
        height: 40px;
    }
    
    .zoom-indicator svg {
        width: 20px;
        height: 20px;
    }
}

.cta-section {
    text-align: center;
    padding: 3rem;
    background: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    border: 1px solid rgba(156, 206, 233, 0.1);
    position: relative;
    z-index: 2;
}

.cta-section h3 {
    color: var(--black);
    margin-bottom: 2rem;
    font-size: 1.8rem;
    font-weight: 700;
}

/* Destinations Section */
.destinations {
    padding: 8rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e6f7ff 100%);
    position: relative;
}

.destinations::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--sky-blue), transparent);
}

.destinations-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}



.destinations-subtitle {
    font-size: 1.2rem;
    color: var(--gray);
    margin-top: 1rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.destinations-categories {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.category-pill {
    padding: 12px 24px;
    background: var(--light-gray);
    color: var(--gray);
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
    font-size: 0.95rem;
    border: 2px solid transparent;
}

.category-pill:hover {
    background: var(--light-sky-blue);
    color: var(--dark-sky-blue);
}

.category-pill.active {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: var(--shadow);
}

.destinations-grid {
    display: flex;
    overflow-x: auto;
    gap: 2rem;
    padding: 0 20px 20px 20px;
    margin-top: 4rem;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--sky-blue) var(--light-gray);
    position: relative;
    z-index: 2;
}

.destinations-grid::-webkit-scrollbar {
    height: 8px;
}

.destinations-grid::-webkit-scrollbar-track {
    background: var(--light-gray);
    border-radius: 4px;
}

.destinations-grid::-webkit-scrollbar-thumb {
    background: linear-gradient(90deg, var(--sky-blue), var(--dark-sky-blue));
    border-radius: 4px;
}

.destinations-grid::-webkit-scrollbar-thumb:hover {
    background: var(--dark-sky-blue);
}

.destination-card {
    position: relative;
    background: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    transition: var(--transition);
    cursor: pointer;
    overflow: hidden;
    height: 380px;
    border: 1px solid rgba(156, 206, 233, 0.1);
    display: flex;
    flex-direction: column;
    min-width: 320px;
    flex-shrink: 0;
    scroll-snap-align: start;
    z-index: 2;
}

.destination-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-hover);
    border-color: var(--sky-blue);
}

.destination-image {
    width: 100%;
    height: 250px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    flex-shrink: 0;
}

.destination-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.4) 70%, rgba(0, 0, 0, 0.7) 100%);
    opacity: 0;
    transition: var(--transition);
}

.destination-card:hover .destination-overlay {
    opacity: 1;
}

.destination-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
}

.destination-rating {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.stars {
    color: #F59E0B;
    font-size: 1rem;
    letter-spacing: 1px;
}

.rating-text {
    background: var(--sky-blue);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
}

.destination-card h3 {
    color: var(--black);
    margin-bottom: 0.5rem;
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.3;
}

.destination-card .destination-subtitle {
    color: var(--gray);
    font-size: 1rem;
    margin-bottom: 1.5rem;
    line-height: 1.5;
    flex: 1;
}

.destination-card .learn-more {
    color: var(--sky-blue);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    border-top: 1px solid var(--light-gray);
    transition: var(--transition);
    margin-top: auto;
}

.destination-card .learn-more:hover {
    color: var(--dark-sky-blue);
    padding-right: 10px;
}

.destination-card .learn-more::after {
    content: '→';
    transition: var(--transition);
    font-size: 1.2rem;
}

.destination-card:hover .learn-more::after {
    transform: translateX(5px);
}

/* Services Section */
.services {
    padding: 8rem 0;
    background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 100%);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--sky-blue), transparent);
}

.services-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
    position: relative;
    z-index: 2;
}

/* Responsive breakpoints for services grid */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.service-card {
    background: var(--white);
    padding: 3rem 2.5rem;
    border-radius: var(--border-radius-lg);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(156, 206, 233, 0.1);
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: var(--transition);
    transform-origin: center;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--sky-blue);
}

.service-card.attractions {
    border-top: 4px solid #F59E0B;
}

.service-card.currency {
    border-top: 4px solid #10B981;
}

.service-card.insurance {
    border-top: 4px solid #8B5CF6;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: var(--white);
    font-size: 2rem;
    box-shadow: var(--shadow);
}

.service-card.attractions .service-icon {
    background: transparent;
}

.service-card.currency .service-icon {
    background: linear-gradient(135deg, #10B981, #059669);
}

.service-card.insurance .service-icon {
    background: linear-gradient(135deg, #8B5CF6, #7C3AED);
}

.service-icon svg {
    width: 40px;
    height: 40px;
}

.service-icon .mini-icon {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
}

.service-card h3 {
    color: var(--black);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 700;
}

.service-card p {
    color: var(--gray);
    line-height: 1.8;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 14px 28px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    box-shadow: var(--shadow);
    margin: 0.5rem;
    position: relative;
    z-index: 2;
}

.service-link:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.service-link svg {
    width: 18px;
    height: 18px;
    transform: rotate(0deg);
}

.insurance-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

/* WhatsApp Communities Section */
.whatsapp-communities {
    padding: 8rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 100%);
    position: relative;
}

/* Hide Albania card temporarily */
.community-card.albania {
    display: none;
}

.communities-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
}

.communities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
    position: relative;
    z-index: 2;
    align-items: stretch;
    justify-content: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.community-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(156, 206, 233, 0.1);
    position: relative;
    overflow: hidden;
    z-index: 2;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.community-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(135deg, var(--sky-blue), var(--dark-sky-blue));
    transform: scaleY(0);
    transition: var(--transition);
    transform-origin: bottom;
}

.community-card:hover::before {
    transform: scaleY(1);
}

.community-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--sky-blue);
}

.community-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    flex: 1;
}

.community-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--sky-blue), var(--dark-sky-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: var(--shadow);
    flex-shrink: 0;
}

.community-icon svg {
    width: 30px;
    height: 30px;
}

.community-info h3 {
    color: var(--black);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
    font-weight: 700;
}

.community-info p {
    color: var(--gray);
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.5;
}

.community-join {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--sky-blue), var(--dark-sky-blue));
    color: var(--white);
    padding: 12px 24px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    box-shadow: var(--shadow);
    width: 100%;
    justify-content: center;
    position: relative;
    z-index: 2;
    margin-top: auto;
}

.community-join:hover {
    background: linear-gradient(135deg, var(--dark-sky-blue), #6ba8d5);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.community-join svg {
    width: 16px;
    height: 16px;
    transform: rotate(0deg);
}

/* Blog Section */
.blog-section {
    padding: 6rem 0;
    background: var(--gradient-light);
    position: relative;
}

.section-subtitle {
    text-align: center;
    color: var(--gray);
    font-size: 1.1rem;
    margin-top: -1.5rem;
    margin-bottom: 3rem;
}

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

.blog-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    text-decoration: none;
    color: inherit;
    box-shadow: 0 4px 20px rgba(156, 206, 233, 0.08);
    border: 1px solid rgba(156, 206, 233, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(156, 206, 233, 0.15);
    border-color: var(--sky-blue);
}

.blog-card-img {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-card-img img {
    transform: scale(1.08);
}

.blog-card-tag {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(8px);
    color: var(--dark-sky-blue);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    z-index: 1;
}

.blog-card-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blog-card h3 {
    color: var(--black);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.blog-card:hover h3 {
    color: var(--sky-blue);
}

.blog-card p {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.6;
    flex: 1;
}

.blog-card-link {
    color: var(--sky-blue);
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: 1rem;
    display: inline-block;
}

.blog-card-link::after {
    content: ' \2190';
}

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 100%);
    position: relative;
}

.contact-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.contact-form {
    background: var(--white);
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

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

.form-group input {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e9ecef;
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-family: 'Assistant', sans-serif;
    transition: var(--transition);
    text-align: right;
}

.form-group input:focus {
    outline: none;
    border-color: var(--sky-blue);
    box-shadow: 0 0 0 3px rgba(0, 191, 255, 0.1);
}

.submit-btn {
    background: linear-gradient(135deg, var(--sky-blue), var(--dark-sky-blue));
    color: var(--white);
    padding: 1rem 2rem;
    border: none;
    border-radius: var(--border-radius);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow);
    position: relative;
    z-index: 2;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

/* Checkbox Styles */
.checkbox-group {
    margin-bottom: 2rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 1rem;
    line-height: 1.5;
    color: var(--dark-gray);
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkbox-custom {
    width: 20px;
    height: 20px;
    border: 2px solid #e9ecef;
    border-radius: 4px;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    flex-shrink: 0;
    margin-top: 2px;
}

.checkbox-label:hover .checkbox-custom {
    border-color: var(--sky-blue);
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom {
    background: var(--sky-blue);
    border-color: var(--sky-blue);
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom::after {
    content: '✓';
    color: var(--white);
    font-size: 14px;
    font-weight: bold;
}

.contact-alternative {
    text-align: center;
}

.contact-alternative p {
    margin-bottom: 1rem;
    color: var(--gray);
    font-size: 1.1rem;
}

/* Footer */
.footer {
    background: var(--black);
    color: var(--white);
    padding: 4rem 0 2rem;
    position: relative;
}

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

.footer-section h4 {
    color: var(--sky-blue);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

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

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

.footer-section a {
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.95rem;
    position: relative;
    z-index: 2;
}

.footer-section a:hover {
    color: var(--sky-blue);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: var(--gray);
}

/* Add background elements to specific sections */
.features .background-elements {
    opacity: 1;
}

.timeline .background-elements {
    opacity: 1;
}

.about .background-elements {
    opacity: 1;
}

.why-choose-me .background-elements {
    opacity: 1;
}

.destinations .background-elements {
    opacity: 1;
}

.services .background-elements {
    opacity: 1;
}

.whatsapp-communities .background-elements {
    opacity: 1;
}

.contact .background-elements {
    opacity: 1;
}

/* Guides Section */
.guides {
    padding: 8rem 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    position: relative;
}

.guides-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.guides-subtitle {
    font-size: 1.2rem;
    color: var(--gray);
    margin-top: 1rem;
}

.guides-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.guide-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid rgba(156, 206, 233, 0.1);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.guide-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--sky-blue);
}

.guide-image {
    width: 100%;
    height: 220px;
    background-size: cover;
    background-position: center;
}

.guide-content {
    padding: 1.5rem;
}

.guide-content h3 {
    margin-bottom: 0.5rem;
}

.guide-text {
    color: var(--gray);
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .guides {
        padding: 5rem 0;
    }
}

/* Destination Modal */
.destination-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    padding: 2rem;
}

.destination-modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    max-width: 800px;
    min-width: 600px;
    width: 100%;
    max-height: 90vh;
    position: relative;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-hover);
    overflow: hidden;
}

.modal-header {
    position: relative;
    height: 80px;
    background-size: cover;
    background-position: center;
    border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0;
    flex-shrink: 0;
}

.modal-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.5) 100%);
    border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0;
}

.modal-close {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(255, 255, 255, 0.9);
    color: var(--black);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1.2rem;
    z-index: 10;
}

.modal-close:hover {
    background: var(--white);
    transform: scale(1.1);
}

.modal-title {
    color: var(--black);
    font-size: 2rem;
    font-weight: 700;
    margin: 0.5rem 2rem 0 2rem;
    padding-bottom: 1rem;
    text-align: center;
    border-bottom: 2px solid var(--sky-blue);
}

.modal-body {
    padding: 0;
    flex: 1;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--sky-blue) var(--light-gray);
    min-height: 0;
}

.modal-tips {
    padding: 2rem;
    padding-bottom: 1rem;
}

.modal-tips h4 {
    color: var(--black);
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 700;
}

.tips-list {
    list-style: none;
    padding: 0;
}

.tips-list li {
    background: var(--light-gray);
    padding: 1rem 1.25rem;
    margin-bottom: 0.75rem;
    border-radius: var(--border-radius);
    border-right: 4px solid var(--sky-blue);
    font-size: 0.95rem;
    line-height: 1.7;
    transition: var(--transition);
    position: relative;
    min-height: 60px;
    display: flex;
    align-items: center;
}

.tips-list li:hover {
    background: rgba(156, 206, 233, 0.05);
    transform: translateX(-2px);
}

.tips-list li:last-child {
    margin-bottom: 0;
}

.modal-whatsapp {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 1rem 2rem;
    margin: 0 2rem 2rem 2rem;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none;
}

.modal-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

/* Custom Scrollbar for Modal */
.modal-content::-webkit-scrollbar,
.modal-body::-webkit-scrollbar {
    width: 8px;
}

.modal-content::-webkit-scrollbar-track,
.modal-body::-webkit-scrollbar-track {
    background: var(--light-gray);
    border-radius: 4px;
}

.modal-content::-webkit-scrollbar-thumb,
.modal-body::-webkit-scrollbar-thumb {
    background: var(--sky-blue);
    border-radius: 4px;
    transition: var(--transition);
}

.modal-content::-webkit-scrollbar-thumb:hover,
.modal-body::-webkit-scrollbar-thumb:hover {
    background: var(--dark-sky-blue);
}

/* Ensure modal header stays fixed during scroll */
.modal-header {
    flex-shrink: 0;
}

/* Smooth scrolling for modal content */
.modal-content {
    scroll-behavior: smooth;
}

/* Prevent text selection issues during scroll */
.modal-body {
    -webkit-overflow-scrolling: touch;
}

/* Ensure proper spacing at bottom of modal */
.modal-tips {
    position: relative;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .nav-menu {
        position: fixed;
        top: 90px;
        right: -100%;
        width: 100%;
        height: calc(100vh - 90px);
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 252, 0.95) 100%);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        gap: 1.5rem;
        padding: 3rem 2rem;
        transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
        border-left: 1px solid rgba(156, 206, 233, 0.1);
        /* Reset desktop centering for mobile */
        position: fixed;
        left: auto;
        transform: none;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-link {
        font-size: 1.1rem;
        padding: 1rem 2rem;
        border-radius: 12px;
        width: 200px;
        text-align: center;
        background: rgba(156, 206, 233, 0.05);
        border: 1px solid rgba(156, 206, 233, 0.1);
        transition: all 0.3s ease;
    }

    .nav-link:hover {
        background: rgba(156, 206, 233, 0.1);
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(156, 206, 233, 0.2);
    }

    /* Hide desktop WhatsApp button on mobile since it's outside the menu */
    .navbar .container > .nav-whatsapp {
        display: none;
    }

    /* Reset navbar order for mobile */
    .nav-brand {
        order: 1; /* Move logo to the right on mobile */
    }
    
    .nav-menu {
        order: 2;
    }
    
    .nav-toggle {
        order: 3; /* Move hamburger menu to the left on mobile */
    }

    /* Show mobile WhatsApp button only on mobile */
    .mobile-whatsapp {
        display: flex;
        margin-top: 1rem;
        transform: scale(1.1);
    }

    .nav-toggle {
        display: flex;
        z-index: 1001;
    }

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

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

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

    .hero .container {
        grid-template-columns: 1fr;
        gap: 4rem;
        text-align: center;
        max-width: 1200px;
    }
    
    .hero-content {
        padding-right: 0;
        order: 2;
    }
    
    .hero-visual {
        order: 1;
    }
    
    .hero-title {
        font-size: 3.8rem;
        margin-top: 1rem;
    }
    
    .professional-photo {
        width: 350px;
        height: 420px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .communities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.2rem;
    }

    .destinations-categories {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 0.5rem;
    }

    .category-pill {
        flex-shrink: 0;
    }
    
    .timeline-container::before {
        right: 30px;
        transform: none;
    }
    
    .timeline-item {
        padding-right: 80px;
    }
    
    .timeline-item:nth-child(even) {
        flex-direction: row;
    }

    /* Adjust blob sizes for tablets */
    .blob-1 {
        width: 200px;
        height: 200px;
    }

    .blob-2 {
        width: 150px;
        height: 150px;
    }

    .blob-3 {
        width: 180px;
        height: 180px;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 14px;
    }
    
    body {
        padding-top: 90px;
    }

    .navbar {
        padding: 1rem 0;
        height: 90px;
    }

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

    .nav-logo {
        height: 40px;
    }

    .nav-brand {
        font-size: 1.25rem;
    }
    
    .nav-menu {
        margin-left: 0;
        padding-left: 0;
    }
    
    .container {
        padding: 0 15px;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero .container {
        gap: 3rem;
    }
    
    .hero-content {
        padding-right: 0;
    }
    
    .professional-photo {
        width: 300px;
        height: 360px;
    }
    
    /* Ensure background image works well on mobile */
    .hero-background {
        background-attachment: scroll; /* Better mobile performance */
    }

    .features-grid::before {
        top: -1.5rem;
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        margin-top: 2rem;
    }

    .features {
        padding: 4rem 0 5rem 0;
    }

    .feature-card {
        padding: 1.5rem 1rem;
        min-height: auto;
    }

    .feature-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        margin: 0 0 0.8rem auto;
        border-radius: 8px;
    }

    .feature-card h3 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
        line-height: 1.2;
    }

    .feature-card p {
        font-size: 0.85rem;
        line-height: 1.4;
    }

    @keyframes pulse {
        0%, 100% { opacity: 1; transform: translateX(50%) scale(1); }
        50% { opacity: 0.7; transform: translateX(50%) scale(1.05); }
    }

    .communities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .destinations-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .social-links {
        flex-direction: column;
        align-items: stretch;
    }
    
    .professional-photo {
        width: 280px;
        height: 350px;
    }

    .about-photo {
        width: 240px;
        height: 300px;
    }

    .about-photo-frame {
        top: -8px;
        left: -8px;
        right: -8px;
        bottom: -8px;
    }
    
    .contact-form {
        padding: 2rem;
    }

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

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

    .community-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        flex: 1;
    }

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

    .why-choose-card {
        padding: 2rem 1.5rem;
    }

    .card-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .card-icon {
        width: 60px;
        height: 60px;
    }

    .card-icon svg {
        width: 30px;
        height: 30px;
    }

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

    .destination-card {
        height: auto;
        min-height: 350px;
    }

    .nav-whatsapp {
        padding: 8px 16px;
        font-size: 0.9rem;
    }

    /* Adjust blob sizes for mobile */
    .blob-1 {
        width: 150px;
        height: 150px;
    }

    .blob-2 {
        width: 120px;
        height: 120px;
    }

    .blob-3 {
        width: 130px;
        height: 130px;
    }

    /* Reduce geometric shapes for mobile */
    .triangle {
        border-left: 15px solid transparent;
        border-right: 15px solid transparent;
        border-bottom: 26px solid rgba(156, 206, 233, 0.2);
    }

    .circle {
        width: 25px;
        height: 25px;
    }

    .square {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 480px) {
    body {
        padding-top: 95px;
    }

    .navbar {
        padding: 1.25rem 0;
        height: 95px;
    }

    .navbar .container {
        padding: 0 10px;
    }

    .nav-logo {
        height: 35px;
    }

    .nav-brand {
        font-size: 1.1rem;
    }
    
    .nav-menu {
        /* Ensure mobile menu positioning is consistent */
        left: auto;
        transform: none;
    }

    .hero-title {
        font-size: 2.2rem;
    }
    
    .professional-photo {
        width: 260px;
        height: 320px;
    }
    
    .hero .cta-button {
        padding: 16px 32px;
        font-size: 1rem;
    }

    .features {
        padding: 4rem 0 6rem 0;
    }
    
    .features-grid {
        display: flex;
        overflow-x: auto;
        gap: 1.5rem;
        margin-top: 3rem;
        padding: 1rem 20px 2rem 20px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
        position: relative;
    }
    
    .features-grid::-webkit-scrollbar {
        display: none;
    }
    
    /* Gradient fade effect at the end */
    .features-grid::after {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 40px;
        height: 100%;
        background: linear-gradient(90deg, transparent 0%, rgba(248, 250, 252, 0.8) 70%, rgba(248, 250, 252, 1) 100%);
        pointer-events: none;
        z-index: 2;
    }
    
    .feature-card {
        min-width: 280px;
        max-width: 300px;
        flex-shrink: 0;
        scroll-snap-align: center;
        padding: 2.5rem 2rem;
        background: linear-gradient(135deg, var(--white) 0%, #fafcff 100%);
        border-radius: 20px;
        box-shadow: 0 10px 30px rgba(156, 206, 233, 0.15);
        border: 1px solid rgba(156, 206, 233, 0.1);
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        position: relative;
        overflow: visible;
        transform: scale(0.95);
    }
    
    .feature-card:hover {
        transform: scale(1) translateY(-5px);
        box-shadow: 0 15px 40px rgba(156, 206, 233, 0.2);
    }
    
    .feature-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: var(--gradient-primary);
        border-radius: 20px 20px 0 0;
        transform: scaleX(0);
        transition: transform 0.3s ease;
        transform-origin: left;
    }
    
    .feature-card:hover::before {
        transform: scaleX(1);
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 1.1rem;
        margin: 0 auto 1.5rem auto;
        border-radius: 15px;
    }
    
    .feature-card h3 {
        font-size: 1.1rem;
        text-align: center;
        margin-bottom: 1rem;
    }
    
    .feature-card p {
        font-size: 0.9rem;
        text-align: center;
        line-height: 1.5;
    }

    .features {
        padding: 3rem 0;
    }

    .feature-card {
        padding: 1.2rem 0.8rem;
        border-radius: 12px;
    }

    .feature-icon {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
        margin: 0 0 0.6rem auto;
    }

    .feature-card h3 {
        font-size: 0.95rem;
        margin-bottom: 0.4rem;
    }

    .feature-card p {
        font-size: 0.8rem;
        line-height: 1.3;
    }



    .destination-card {
        min-width: 250px;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .timeline-content {
        padding: 1.5rem;
    }
    
    .testimonial-point {
        padding: 1.5rem;
    }
    
    .destination-modal {
        padding: 0.5rem;
        align-items: flex-start;
        padding-top: 1rem;
    }
    
    .modal-content {
        max-height: 95vh;
        max-width: 95vw;
        min-width: 90vw;
        margin-top: 0;
    }
    
    .modal-header {
        height: 60px;
    }
    
    .modal-title {
        font-size: 1.4rem;
        margin: 0.5rem 1.5rem 0 1.5rem;
        padding-bottom: 0.75rem;
    }
    
    .modal-tips {
        padding: 1.5rem;
        padding-bottom: 1rem;
    }
    
    .modal-whatsapp {
        margin: 0 1.5rem 1.5rem 1.5rem;
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .tips-list li {
        padding: 0.875rem 1rem;
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
        line-height: 1.6;
        min-height: 50px;
    }
    
    .destinations-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .destination-card {
        height: 280px;
    }
    
    .destination-image {
        height: 160px;
    }
    
    .destination-content {
        height: 120px;
        padding: 1rem;
    }

    .nav-whatsapp {
        padding: 6px 12px;
        font-size: 0.8rem;
        gap: 4px;
    }

    .nav-whatsapp .whatsapp-icon {
        width: 16px;
        height: 16px;
    }

    .service-card {
        padding: 1.5rem;
    }

    .service-icon {
        width: 60px;
        height: 60px;
    }

    .service-icon svg {
        width: 30px;
        height: 30px;
    }

    .community-card {
        padding: 1.5rem;
    }

    .community-icon {
        width: 50px;
        height: 50px;
    }

    .community-icon svg {
        width: 24px;
        height: 24px;
    }

    .insurance-links {
        flex-direction: column;
        align-items: stretch;
    }

    .service-link {
        margin: 0.25rem 0;
    }

    .why-choose-card {
        padding: 1.5rem;
    }

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

    .card-icon {
        width: 50px;
        height: 50px;
    }

    .card-icon svg {
        width: 25px;
        height: 25px;
    }

    .cta-section {
        padding: 2rem 1.5rem;
    }

    .cta-section h3 {
        font-size: 1.5rem;
    }

    .destinations-categories {
        gap: 0.5rem;
    }

    .category-pill {
        padding: 8px 16px;
        font-size: 0.85rem;
    }

    .destination-card {
        min-height: 320px;
    }

    .destination-image {
        height: 200px;
    }

    .professional-photo {
        width: 240px;
        height: 300px;
    }

    .about-photo {
        width: 200px;
        height: 250px;
    }

    .showcase-item {
        padding: 1.5rem;
    }

    /* Further reduce blobs for small mobile */
    .blob-1 {
        width: 100px;
        height: 100px;
    }

    .blob-2 {
        width: 80px;
        height: 80px;
    }

    .blob-3 {
        width: 90px;
        height: 90px;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .blob,
    .geometric-shape {
        animation: none;
    }
}

/* Focus styles for accessibility */
a:focus,
button:focus,
input:focus {
    outline: 2px solid var(--sky-blue);
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .navbar,
    .hero-bg,
    .destination-modal,
    .background-elements {
        display: none;
    }
    
    body {
        padding-top: 0;
    }
    
    .hero {
        background: var(--white);
        color: var(--black);
        min-height: auto;
        padding: 2rem 0;
    }
    
    .footer {
        background: var(--white);
        color: var(--black);
    }
}

/* Destination Badge Styles */
.destination-badge {
    position: absolute;
    bottom: 60px; /* Position near the bottom, above the text content */
    left: 15px; /* Position on the left side */
    z-index: 10;
    transition: var(--transition);
    pointer-events: none;
}

.destination-badge:hover {
    transform: scale(1.1);
}

.destination-badge .mini-icon {
    width: 80px;
    height: 80px;
    display: block;
    object-fit: cover;
}

/* Mobile responsive for destination badge */
@media (max-width: 768px) {
    .destination-badge {
        bottom: 50px; /* Position near the bottom on mobile */
        left: 12px; /* Slightly closer to edge on mobile */
    }
    
    .destination-badge .mini-icon {
        width: 75px;
        height: 75px;
    }
} 