:root {
    --primary-color: #007bff; /* Professional Blue */
    --secondary-color: #28a745; /* Energetic Green/Lime */
    --dark-color: #1a1a1a;
    --light-color: #f8f9fa;
    --text-color: #333;
    --text-light: #666;
    --white: #ffffff;
    --border-radius: 8px;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Heebo', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Rubik', sans-serif;
    font-weight: 700;
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

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

.btn-primary, .btn-secondary, .btn-outline {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    border: 2px solid var(--primary-color);
}

.btn-primary:hover {
    background-color: darken(var(--primary-color), 10%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    margin-right: 15px;
}

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

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 15px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 900;
    line-height: 1;
}

.name-first {
    color: var(--primary-color); /* Blue for first name */
}

.name-last {
    color: var(--dark-color); /* Dark for last name */
}

.nav-links {
    display: flex;
    align-items: center;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    font-weight: 500;
    color: var(--dark-color);
}

.nav-links a:hover {
    color: var(--primary-color);
}

.nav-cta {
    padding: 8px 20px;
    font-size: 0.9rem;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--dark-color);
    margin: 5px 0;
    transition: var(--transition);
}

/* Hero Section Modern */
.hero-modern {
    min-height: 100vh;
    padding-top: 100px; /* Nav offset */
    padding-bottom: 50px;
    background: linear-gradient(135deg, #ffffff 0%, #f0f4f8 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-text-wrapper {
    padding-left: 20px;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 123, 255, 0.1);
    color: var(--primary-color);
    padding: 8px 16px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 25px;
}

.hero-title-modern {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 25px;
    color: var(--dark-color);
    font-weight: 800;
}

.text-gradient {
    background: linear-gradient(120deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle-modern {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 35px;
    max-width: 600px;
    line-height: 1.7;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 40px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--dark-color);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
}

.stat-divider {
    width: 1px;
    height: 40px;
    background-color: #ddd;
}

.hero-cta-group {
    display: flex;
    align-items: center;
    gap: 20px;
}

.btn-lg {
    padding: 15px 40px;
    font-size: 1.1rem;
}

.btn-text {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--dark-color);
    font-weight: 600;
    transition: var(--transition);
}

.btn-text:hover {
    color: var(--primary-color);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image-wrapper {
    position: relative;
    z-index: 2;
    width: fit-content; /* Adapts to image width */
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    margin: 0 auto;
}

.main-hero-img {
    max-height: 100%;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.15));
}

.hero-bg-shape {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.08) 0%, rgba(40, 167, 69, 0.08) 100%);
    border-radius: 50% 40% 30% 70% / 60% 30% 70% 40%;
    z-index: 1;
    animation: morph 8s ease-in-out infinite;
}

@keyframes morph {
    0% { border-radius: 50% 40% 30% 70% / 60% 30% 70% 40%; }
    50% { border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; }
    100% { border-radius: 50% 40% 30% 70% / 60% 30% 70% 40%; }
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 10px 18px; /* Reduced padding */
    border-radius: 50px; /* Pill shape */
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    border: 1px solid rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 0.85rem; /* Smaller font */
    z-index: 3;
    animation: float 6s ease-in-out infinite;
    white-space: nowrap;
}

.floating-card i {
    color: var(--secondary-color);
    font-size: 1rem;
    background: rgba(40, 167, 69, 0.1);
    padding: 6px;
    border-radius: 50%;
}

.card-1 {
    top: 12%; /* Moved higher to avoid face */
    right: -20px; /* Position relative to image edge */
    animation-delay: 0s;
}

.card-2 {
    bottom: 15%;
    left: -20px; /* Position relative to image edge */
    animation-delay: 3s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* Sections General */
.section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 50px;
}

.bg-light {
    background-color: var(--light-color);
}

.bg-dark {
    background-color: var(--dark-color);
    color: var(--white);
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
    padding: 20px;
}

.about-img-container {
    position: relative;
    height: 500px;
    width: 100%;
}

.about-img-main {
    width: 75%;
    height: 85%;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
}

.about-img-secondary {
    width: 55%;
    height: 60%;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 2;
    border: 5px solid var(--white);
}

.about-shape-decoration {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(40, 167, 69, 0.1) 0%, rgba(255,255,255,0) 70%);
    z-index: 0;
    border-radius: 50%;
}

.lead-text {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.text-link {
    color: var(--primary-color);
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    margin-top: 20px;
}

.text-link i {
    margin-right: 10px;
    transition: var(--transition);
}

.text-link:hover i {
    transform: translateX(-5px);
}

/* Method / Features */
.method-section {
    position: relative;
    overflow: hidden;
}

.method-section::before {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    width: 40%;
    height: 100%;
    background-image: url('elad_lifts.jpeg');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    z-index: 0;
}

.method-section .container {
    position: relative;
    z-index: 1;
}

.method-content {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
}

.lead-paragraph {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--dark-color);
    margin-bottom: 20px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    text-align: center;
}

.feature-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.icon-box {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

/* Testimonials Section */
.testimonials-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--white);
    overflow: hidden;
}

.testimonials-section .section-title {
    color: var(--white);
}

.testimonials-section .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

.testimonials-carousel-wrapper {
    position: relative;
    margin-top: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 0 20px;
}

.testimonials-carousel {
    overflow: hidden;
    width: 100%;
    max-width: 1000px;
    position: relative;
}

.testimonials-track {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease-in-out;
    will-change: transform;
    direction: ltr; /* Keep track direction LTR for consistent behavior */
}

.testimonial-card {
    position: relative;
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    flex-shrink: 0;
    width: 300px;
    height: 450px;
}

.testimonial-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.carousel-btn {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.2rem;
    color: var(--dark-color);
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 10;
    flex-shrink: 0;
}

.carousel-btn:hover {
    background: var(--white);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.carousel-btn:active {
    transform: scale(0.95);
}

.testimonial-image {
    width: 100%;
    height: 100%;
    position: relative;
    background: #075e54; /* WhatsApp dark green background */
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Changed from contain to cover to fill width */
    object-position: center top; /* Align to top of image */
    display: block;
}

.whatsapp-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #25D366;
    color: var(--white);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.4);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 10px rgba(37, 211, 102, 0.4);
    }
    50% {
        transform: scale(1.1);
        box-shadow: 0 6px 15px rgba(37, 211, 102, 0.6);
    }
}

/* Plans Section */
.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.plan-card {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    position: relative;
    border: 1px solid #eee;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.plan-image {
    height: 200px;
    overflow: hidden;
}

.plan-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.plan-card:hover .plan-image img {
    transform: scale(1.1);
}

.plan-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.plan-card.popular {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
    z-index: 1;
}

.plan-header {
    text-align: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
}

.plan-duration {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 5px;
    font-weight: 500;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 10px 0;
}

.period {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 400;
}

.badge {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
}

.plan-features {
    margin-bottom: 30px;
    flex-grow: 1;
}

.plan-features li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.plan-features li i {
    color: var(--secondary-color);
    margin-left: 10px;
}

.plan-features li.gift {
    font-weight: 700;
    color: var(--primary-color);
}

.plan-features li.gift i {
    color: var(--primary-color);
}

.hidden-plans {
    display: none;
    grid-column: 1 / -1;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    width: 100%;
}

.hidden-plans.active {
    display: grid;
}

.show-more-container {
    grid-column: 1 / -1;
    text-align: center;
    margin-top: 40px;
}

.show-more-btn {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.show-more-btn:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

/* Contact Section */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    background-color: #222;
    padding: 50px;
    border-radius: var(--border-radius);
}

.contact-info .info-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.contact-info .info-item i {
    margin-left: 15px;
    color: var(--primary-color);
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #444;
    background-color: #333;
    color: var(--white);
    border-radius: 5px;
    font-family: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.full-width {
    width: 100%;
}

/* Footer */
.footer {
    background-color: #111;
    color: #aaa;
    padding: 30px 0;
    text-align: center;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.social-links a {
    color: #aaa;
    margin-right: 15px;
    font-size: 1.2rem;
}

.social-links a:hover {
    color: var(--white);
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s forwards;
}

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

.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal-on-scroll.active {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text-wrapper {
        padding-left: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-title-modern {
        font-size: 3rem;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-cta-group {
        justify-content: center;
    }

    .hero-visual {
        height: 500px;
        margin-top: 30px;
    }
    
    .hero-bg-shape {
        width: 350px;
        height: 350px;
    }
}

@media (max-width: 768px) {
    .hero-title-modern {
        font-size: 2.5rem;
    }
    
    .hero-visual {
        height: 400px;
    }
    
    .floating-card {
        padding: 10px 15px;
        font-size: 0.8rem;
    }

    .btn-secondary {
        margin-right: 0;
    }

    .about-grid, .contact-wrapper {
        grid-template-columns: 1fr;
    }

    /* Reorder About Section for Mobile: Text first, then Image */
    .about-text {
        order: -1;
        margin-bottom: 20px;
    }

    .about-img-container {
        height: 400px;
        margin-bottom: 30px;
    }

    .nav-links {
        display: none; /* Implement JS toggle later */
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: var(--white);
        flex-direction: column;
        padding: 20px 0;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    }

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

    .nav-links li {
        margin: 15px 0;
    }

    .mobile-menu-btn {
        display: block;
    }

    .testimonials-carousel-wrapper {
        gap: 10px; /* Reduce button gap on mobile */
        padding: 0 10px;
    }
    
    .testimonials-carousel {
        /* Center single card view on mobile */
        max-width: 270px; /* Slightly larger than card width for margins */
    }
    
    .testimonial-card {
        width: 250px;
        height: 400px;
    }

    .whatsapp-badge {
        width: 35px;
        height: 35px;
        font-size: 1.2rem;
    }

    .testimonials-track {
        gap: 20px;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .plan-card.popular {
        transform: scale(1);
    }
    
    .footer-content {
        flex-direction: column;
        gap: 15px;
    }
}