
.end{
  
    margin: 0;
    padding-top: 2px;
   
    box-sizing: border-box;
    font-family: "Roboto Slab", serif;
    height: 100vh;
    background:url('../image/hhh.png')center center/cover no-repeat ;
    position: relative;
    /*background: linear-gradient(135deg, #8B9B8B 0%, #8B9B8B 100%);*/
    color: #6D4534;
    line-height: 1.6;
    min-height: 100vh;


}
.container3 {
    font-family: 'Marhey', sans-serif;
    max-width: 1200px;
    width: 90%; /* يجعل العنصر متجاوبًا */
    padding: 2rem;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(109, 69, 52, 0.05);

    /* محاذاة في المنتصف */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}


/* Logo Section */
.logo-section {
    text-align: center;
    margin-bottom: 3rem;
}

.logo {
    max-width: 120px;
    height: auto;
}

/* Main Content Section */
.main-content {
    display: flex;
    justify-content: space-between;
    gap: 4rem;
    margin-bottom: 4rem;
}

/* Newsletter Section */
.newsletter-section {
    flex: 1;
    text-align: left;
    max-width: 500px;
}

.newsletter-content h4 {
    color: #6D4534;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.newsletter-content p4 {
    color: #6D4534;
    font-size: 1rem;
    margin-bottom: 2rem;
    font-weight: 400;
}

.signup-form {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: center;
}

.email-input {
    flex: 1;
    padding: 0.8rem;
    border: none;
    border-bottom: 2px solid #6D4534;
    background: transparent;
    color: #6D4534;
    font-size: 1rem;
    text-align: left;
    font-family: 'Marhey', sans-serif;
    font-weight: 400;
    outline: none;
}

.signup-button {
    font-family: 'Marhey', sans-serif;
    background-color: #6D4534;
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 20px;
    cursor: pointer;
    transition: background 0.3s ease;

}

.signup-button:hover {
    background-color: #8B9B8B;
}


.social-icons {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.social-icon {
    color: #6d4534;
    font-size: 1.5rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-icon:hover {
    color: #8B9B8B;
}

/* Footer Columns */
.footer-columns {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    text-align: right;
}

.footer-column h5 {
    color: #6D4534;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.8rem;
}

.footer-column ul li a {
    color: #6D4534;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
    font-weight: 400;
}

.footer-column ul li a:hover {
    color: #8B9B8B;
}

/* Bottom Footer */
.bottom-footer {
    border-top: 1px solid #6D4534;
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #6D4534;
    font-size: 0.9rem;
}

.legal-links a {
    color: #6D4534;
    text-decoration: none;
    margin-right: 2rem;
    transition: color 0.3s ease;
    font-weight: 400;
}

.legal-links a:hover {
    color: #8B9B8B;
}

.copyright {
    color: #6D4534;
    font-weight: 400;
}
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 5px rgba(0,0,0,0.3);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: pulse 2s infinite;
    transition: all 0.3s ease;
    cursor: pointer;
}

.whatsapp-float:hover {
    background-color: #1ebe5d;
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.whatsapp-float.scrolling {
    animation: float 3s ease-in-out infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

@keyframes float {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg); 
    }
    25% { 
        transform: translateY(-10px) rotate(5deg); 
    }
    50% { 
        transform: translateY(-5px) rotate(0deg); 
    }
    75% { 
        transform: translateY(-15px) rotate(-5deg); 
    }
}
/* Responsive Design */
@media (max-width: 768px) {
    .main-content {
        flex-direction: column;
        gap: 2rem;
    }

    .newsletter-section {
        text-align: center;
    }

    .signup-form {
        flex-direction: column;
    }

    .footer-columns {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .bottom-footer {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .legal-links {
        margin-bottom: 1rem;
    }

    .legal-links a {
        display: block;
        margin: 0.5rem 0;
    }
}

@media (max-width: 992px) {
    .main-content {
        flex-direction: column;
        gap: 2rem;
        align-items: center;
        text-align: center;
    }

    .newsletter-section {
        max-width: 100%;
    }

    .signup-form {
        flex-direction: column;
        align-items: stretch;
    }

    .signup-button {
        width: 100%;
    }

    .footer-columns {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-column ul {
        padding: 0;
    }

    .social-icons {
        justify-content: center;
    }

    .bottom-footer {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .legal-links a {
        margin-right: 1rem;
    }
}

@media (max-width: 576px) {
    .container3 {
        width: 95%;
        padding: 1.5rem;
    }

    .newsletter-content h4 {
        font-size: 1.5rem;
    }

    .newsletter-content p4 {
        font-size: 0.95rem;
    }

    .email-input {
        font-size: 0.95rem;
    }

    .signup-button {
        font-size: 0.95rem;
        padding: 0.7rem 1.2rem;
    }

    .social-icon {
        font-size: 1.3rem;
    }

    .footer-column h5 {
        font-size: 0.95rem;
    }

    .footer-column ul li a {
        font-size: 0.9rem;
    }

    .legal-links a {
        font-size: 0.85rem;
    }

    .copyright {
        font-size: 0.85rem;
    }
}
@media (max-width: 768px) {
    .container3 {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        margin: 2rem auto;
    }
}