/* ===============================================
   ש.א הדברות - כרטיס ביקור דיגיטלי
   צבעי מותג: גווני ירוק
   =============================================== */

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-green: #4CAF50;
    --secondary-green: #66BB6A;
    --dark-green: #388E3C;
    --light-green: #C8E6C9;
    --very-light-green: #E8F5E9;
    --white: #FFFFFF;
    --gray-light: #F5F5F5;
    --gray-medium: #9E9E9E;
    --gray-dark: #424242;
    --text-dark: #212121;
    --shadow: rgba(0, 0, 0, 0.1);
    --shadow-hover: rgba(0, 0, 0, 0.15);
}

body {
    font-family: 'Heebo', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    background: linear-gradient(135deg, var(--very-light-green) 0%, var(--white) 100%);
    color: var(--text-dark);
    line-height: 1.6;
    min-height: 100vh;
}

.container {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Section */
.header {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-green) 100%);
    color: var(--white);
    padding: 40px 20px 50px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: pulse 15s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.1); opacity: 0.5; }
}

.logo-container {
    margin-bottom: 20px;
    animation: fadeInDown 0.8s ease-out;
}

.logo {
    width: 120px;
    height: auto;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.2));
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.main-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
    animation: fadeInDown 0.8s ease-out 0.2s both;
}

.subtitle {
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 15px;
    opacity: 0.95;
    animation: fadeInDown 0.8s ease-out 0.4s both;
}

.tagline {
    font-size: 1.1rem;
    font-weight: 500;
    background: rgba(255,255,255,0.2);
    padding: 12px 24px;
    border-radius: 25px;
    display: inline-block;
    backdrop-filter: blur(10px);
    animation: fadeInDown 0.8s ease-out 0.6s both;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Contact Info Section */
.contact-info {
    margin-top: -30px;
    padding: 0 20px 30px;
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

.profile-card {
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 8px 30px var(--shadow);
    padding: 30px;
    position: relative;
}

.profile-header {
    text-align: center;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--light-green);
}

.name {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-green);
    margin-bottom: 5px;
}

.position {
    font-size: 1.1rem;
    color: var(--gray-medium);
    font-weight: 400;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: var(--very-light-green);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: var(--light-green);
    transform: translateX(-5px);
}

.contact-item i {
    color: var(--primary-green);
    font-size: 1.2rem;
    min-width: 24px;
}

.contact-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: var(--primary-green);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Description Section */
.description {
    padding: 30px 20px;
    text-align: center;
}

.description-text {
    font-size: 1.15rem;
    color: var(--gray-dark);
    line-height: 1.8;
    max-width: 550px;
    margin: 0 auto;
}

/* CTA Buttons Section */
.cta-section {
    padding: 20px;
}

.cta-section .container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 12px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    text-align: center;
}

.btn i {
    font-size: 1.2rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-green) 100%);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
}

.btn-large {
    font-size: 1.3rem;
    padding: 20px 40px;
}

.btn-whatsapp {
    background: #25D366;
    color: var(--white);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background: #1ea952;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary-green);
    border: 2px solid var(--primary-green);
}

.btn-secondary:hover {
    background: var(--primary-green);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-outline {
    background: var(--white);
    color: var(--dark-green);
    border: 2px solid var(--dark-green);
}

.btn-outline:hover {
    background: var(--dark-green);
    color: var(--white);
    transform: translateY(-2px);
}

/* Features Section */
.features {
    padding: 40px 20px;
    background: var(--white);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 20px;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
    background: var(--very-light-green);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: var(--light-green);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px var(--shadow);
}

.feature-item i {
    font-size: 2rem;
    color: var(--primary-green);
    margin-bottom: 10px;
}

.feature-item span {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-dark);
    line-height: 1.4;
}

/* Services Section */
.services {
    padding: 50px 20px;
    background: var(--gray-light);
}

.section-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-green);
    margin-bottom: 40px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 20px;
}

.service-card {
    background: var(--white);
    padding: 25px 15px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px var(--shadow);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px var(--shadow-hover);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    display: block;
}

.service-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-green);
    margin-bottom: 8px;
}

.service-card p {
    font-size: 0.9rem;
    color: var(--gray-medium);
}

/* Quote Section */
.quote-section {
    padding: 50px 20px;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-green) 100%);
}

.quote {
    text-align: center;
    color: var(--white);
    position: relative;
}

.quote-icon {
    font-size: 3rem;
    opacity: 0.3;
    margin-bottom: 20px;
}

.quote p {
    font-size: 1.5rem;
    font-weight: 500;
    font-style: italic;
    line-height: 1.6;
}

/* QR Code Section */
.qr-section {
    padding: 50px 20px;
    background: var(--white);
    text-align: center;
}

.qr-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark-green);
    margin-bottom: 25px;
}

.qr-container {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

#qrcode {
    border: 5px solid var(--light-green);
    border-radius: 15px;
    padding: 15px;
    background: var(--white);
    box-shadow: 0 4px 15px var(--shadow);
}

.qr-description {
    font-size: 0.95rem;
    color: var(--gray-medium);
}

/* Footer */
.footer {
    background: var(--gray-dark);
    color: var(--white);
    padding: 40px 20px 20px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    text-align: center;
}

.footer-logo {
    width: 80px;
    height: auto;
    filter: brightness(0) invert(1);
}

.footer-info h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.footer-info p {
    margin: 8px 0;
    opacity: 0.9;
}

.footer-phone {
    font-size: 1.2rem;
    font-weight: 600;
    margin-top: 15px !important;
}

.footer-phone a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-phone a:hover {
    color: var(--secondary-green);
}

.footer-phone i {
    margin-left: 8px;
}

.footer-hours {
    color: var(--secondary-green);
    font-weight: 500;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-title {
        font-size: 2rem;
    }
    
    .subtitle {
        font-size: 1.1rem;
    }
    
    .tagline {
        font-size: 1rem;
        padding: 10px 20px;
    }
    
    .name {
        font-size: 1.7rem;
    }
    
    .section-title {
        font-size: 1.7rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .quote p {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 1.7rem;
    }
    
    .btn {
        font-size: 1rem;
        padding: 14px 25px;
    }
    
    .btn-large {
        font-size: 1.1rem;
        padding: 16px 30px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* Print Styles */
@media print {
    .qr-section,
    .cta-section {
        page-break-inside: avoid;
    }
    
    .btn:hover,
    .service-card:hover,
    .feature-item:hover {
        transform: none;
    }
}

