* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'El Messiri', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    overflow-x: hidden;
}

/* Header Styles */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    padding: 20px;
    transition: all 0.3s ease;
    direction: rtl;
}

.site-header.scrolled {
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    padding: 15px 20px;
}

.site-header.scrolled .lang-dropdown-btn {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    color: white;
}

.site-header.scrolled .lang-dropdown-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    direction: ltr;
}

.site-logo {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.language-switcher {
    position: relative;
    display: inline-block;
}

.lang-dropdown-btn {
    padding: 8px 15px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 6px;
    color: white;
    font-size: 0.85rem;
    font-family: 'El Messiri', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none;
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 120px;
    justify-content: space-between;
}

.lang-dropdown-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
}

.lang-dropdown-btn svg {
    transition: transform 0.3s ease;
}

.language-switcher.active .lang-dropdown-btn svg {
    transform: rotate(180deg);
}

.lang-dropdown-menu {
    position: absolute;
    top: calc(100% + 5px);
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    min-width: 150px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    overflow: hidden;
}

.language-switcher.active .lang-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    width: 100%;
    padding: 12px 15px;
    background: transparent;
    border: none;
    color: #4B5563;
    font-size: 0.9rem;
    font-family: 'El Messiri', sans-serif;
    cursor: pointer;
    text-align: right;
    transition: all 0.2s ease;
    display: block;
    direction: rtl;
}

.lang-option:hover {
    background: rgba(109, 95, 122, 0.1);
    color: #6D5F7A;
}

.lang-option.active {
    background: rgba(109, 95, 122, 0.2);
    color: #6D5F7A;
    font-weight: 600;
}

/* Responsive Design for Header */
@media (max-width: 768px) {
    .site-header {
        padding: 15px;
    }
    
    .site-logo {
        height: 50px;
    }
    
    .lang-dropdown-btn {
        padding: 6px 12px;
        font-size: 0.75rem;
        min-width: 100px;
    }
    
    .lang-dropdown-menu {
        min-width: 130px;
    }
    
    .lang-option {
        padding: 10px 12px;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .site-header {
        padding: 10px;
    }
    
    .site-logo {
        height: 40px;
    }
    
    .lang-dropdown-btn {
        padding: 5px 10px;
        font-size: 0.7rem;
        min-width: 90px;
    }
    
    .lang-dropdown-menu {
        min-width: 120px;
    }
    
    .lang-option {
        padding: 8px 10px;
        font-size: 0.8rem;
    }
}

.image-slider-section {
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.slider-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) translateY(20px);
    text-align: center;
    color: white;
    z-index: 2;
    transition: transform 0.6s ease-in-out;
}

.slide.active .slide-content {
    transform: translate(-50%, -50%) translateY(0);
}

.slide-content h2 {
    font-size: 3.5rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    direction: rtl;
}


.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.dot:hover {
    background: rgba(255, 255, 255, 0.6);
    transform: scale(1.2);
}

.dot.active {
    background: white;
    width: 32px;
    border-radius: 6px;
    border-color: rgba(255, 255, 255, 0.8);
}

/* Responsive Design */
@media (max-width: 768px) {
    .slider-container {
        height: 100vh;
    }
    
    .slide-content h2 {
        font-size: 2.5rem;
    }
    
    .slider-dots {
        bottom: 15px;
    }
}

@media (max-width: 480px) {
    .slider-container {
        height: 100vh;
    }
    
    .slide-content h2 {
        font-size: 2rem;
    }
}

/* Second Section Styles */
.content-section {
    width: 100%;
    min-height: auto;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
}

.content-container {
    text-align: center;
    max-width: 1000px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.map-pin-icon {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.map-pin-icon svg {
    width: 60px;
    height: 60px;
}

.map-pin-icon svg path {
    fill: #6D5F7A;
}

.main-title {
    font-size: 2rem;
    font-weight: 700;
    color: #6D5F7A;
    margin-bottom: 15px;
    direction: rtl;
}

.main-subtitle {
    font-size: 1rem;
    font-weight: 400;
    color: #6D5F7A;
    margin-bottom: 40px;
    direction: rtl;
}

.divider-line {
    width: 80px;
    height: 3px;
    background: #4FD1C7;
    margin: 0 auto 50px;
    border-radius: 2px;
}

.section-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: #6D5F7A;
    margin-bottom: 15px;
    direction: rtl;
}

.section-subtitle {
    font-size: 0.95rem;
    font-weight: 400;
    color: #6D5F7A;
    direction: rtl;
    margin-bottom: 40px;
}

.video-container {
    width: 100%;
    max-width: 100%;
    margin: 40px 0 0;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-thumbnail {
    width: 100%;
    height: auto;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
}

.thumbnail-image {
    width: 100%;
    height: auto;
    max-height: 80vh;
    object-fit: contain;
    display: block;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: transparent;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    padding: 0;
}

.play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

.play-button:active {
    transform: translate(-50%, -50%) scale(0.95);
}

.play-button svg {
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.video-container.playing .video-thumbnail {
    display: none;
}

.video-container.playing .section-video {
    display: block;
}

.section-video {
    width: 100%;
    height: auto;
    max-height: 80vh;
    display: none;
    border: none;
    border-radius: 0;
    background: transparent;
}

/* Responsive Design for Second Section */
@media (max-width: 768px) {
    .content-section {
        min-height: auto;
        padding: 40px 20px;
    }
    
    .content-container {
        max-width: 100%;
    }
    
    .map-pin-icon svg {
        width: 50px;
        height: 50px;
    }
    
    .main-title {
        font-size: 1.6rem;
    }
    
    .main-subtitle {
        font-size: 0.9rem;
    }
    
    .section-title {
        font-size: 1.4rem;
    }
    
    .section-subtitle {
        font-size: 0.85rem;
        margin-bottom: 30px;
    }
    
    .video-container {
        max-width: 100%;
        margin: 30px 0 0;
        border-radius: 0;
    }
    
    .section-video {
        max-height: 70vh;
        border-radius: 0;
    }
}

@media (max-width: 480px) {
    .content-section {
        min-height: auto;
        padding: 30px 15px;
    }
    
    .content-container {
        max-width: 100%;
    }
    
    .map-pin-icon {
        margin-bottom: 20px;
    }
    
    .map-pin-icon svg {
        width: 45px;
        height: 45px;
    }
    
    .main-title {
        font-size: 1.3rem;
        margin-bottom: 10px;
    }
    
    .main-subtitle {
        font-size: 0.85rem;
        margin-bottom: 25px;
    }
    
    .divider-line {
        width: 60px;
        margin-bottom: 25px;
    }
    
    .section-title {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }
    
    .section-subtitle {
        font-size: 0.8rem;
        margin-bottom: 25px;
    }
    
    .video-container {
        max-width: 100%;
        margin: 20px 0 0;
        border-radius: 0;
    }
    
    .section-video {
        max-height: 60vh;
        border-radius: 0;
    }
}

/* Third Section - Building with Text Columns */
.building-section {
    position: relative;
    width: 100%;
    height: 70vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.building-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('img/section3.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.building-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 2;
}

.text-columns {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding: 60px 40px;
    max-width: 1400px;
    width: 100%;
}

.text-column {
    display: flex;
    flex-direction: column;
    gap: 25px;
    text-align: center;
}

.column-item {
    color: white;
    font-size: 2.2rem;
    font-weight: 600;
    direction: rtl;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    white-space: nowrap;
}

.column-divider {
    width: 1px;
    height: 150px;
    background: rgba(255, 255, 255, 0.5);
}

/* Responsive Design for Third Section */
@media (max-width: 1024px) {
    .building-section {
        height: 70vh;
    }
    
    .text-columns {
        gap: 30px;
        padding: 50px 30px;
    }
    
    .column-item {
        font-size: 1.8rem;
    }
    
    .column-divider {
        height: 140px;
    }
}

@media (max-width: 768px) {
    .building-section {
        height: 70vh;
    }
    
    .text-columns {
        gap: 20px;
        padding: 40px 20px;
        flex-wrap: wrap;
    }
    
    .text-column {
        gap: 20px;
        flex: 1 1 calc(50% - 20px);
        min-width: 140px;
    }
    
    .column-item {
        font-size: 1.5rem;
    }
    
    .column-divider {
        height: 120px;
        width: 100%;
        height: 1px;
    }
    
    .column-divider:nth-child(2),
    .column-divider:nth-child(4),
    .column-divider:nth-child(6) {
        display: none;
    }
}

@media (max-width: 480px) {
    .building-section {
        height: auto;
        min-height: 60vh;
    }
    
    .text-columns {
        gap: 15px;
        padding: 30px 15px;
        flex-direction: column;
    }
    
    .text-column {
        width: 100%;
        gap: 15px;
    }
    
    .column-item {
        font-size: 1.3rem;
    }
    
    .column-divider {
        width: 80%;
        height: 1px;
        margin: 10px 0;
    }
}

/* Fourth Section - Gallery Slider */
.gallery-section {
    width: 100%;
    background: white;
    padding: 80px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.gallery-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 1200px;
    width: 100%;
}

.gallery-divider {
    width: 80px;
    height: 3px;
    background: #4FD1C7;
    margin: 0 auto 30px;
    border-radius: 2px;
}

.gallery-title {
    font-size: 2.4rem;
    font-weight: 700;
    color: #6D5F7A;
    direction: rtl;
}

.gallery-slider-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    height: 700px;
    overflow: hidden;
    border-radius: 0;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    aspect-ratio: 1200 / 700;
}

.gallery-slider-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.gallery-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
}

.gallery-slide.active {
    opacity: 1;
    z-index: 1;
}

.gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gallery-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: #4B5563;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    outline: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.gallery-btn:hover {
    background: white;
    border-color: #4FD1C7;
    color: #4FD1C7;
    transform: translateY(-50%) scale(1.1);
}

.gallery-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.gallery-prev-btn {
    left: 20px;
}

.gallery-next-btn {
    right: 20px;
}

/* Responsive Design for Gallery Section */
@media (max-width: 1200px) {
    .gallery-slider-container {
        max-width: 100%;
        height: auto;
        aspect-ratio: 1200 / 700;
    }
}

@media (max-width: 1024px) {
    .gallery-section {
        padding: 60px 20px;
    }
    
    .gallery-title {
        font-size: 2rem;
    }
    
    .gallery-slider-container {
        aspect-ratio: 1200 / 700;
    }
}

@media (max-width: 768px) {
    .gallery-section {
        padding: 50px 20px;
    }
    
    .gallery-header {
        margin-bottom: 40px;
    }
    
    .gallery-title {
        font-size: 1.6rem;
    }
    
    .gallery-slider-container {
        aspect-ratio: 1200 / 700;
        border-radius: 0;
    }
    
    .gallery-btn {
        width: 40px;
        height: 40px;
    }
    
    .gallery-prev-btn {
        left: 10px;
    }
    
    .gallery-next-btn {
        right: 10px;
    }
}

@media (max-width: 480px) {
    .gallery-section {
        padding: 40px 15px;
    }
    
    .gallery-header {
        margin-bottom: 30px;
    }
    
    .gallery-divider {
        width: 60px;
        margin-bottom: 20px;
    }
    
    .gallery-title {
        font-size: 1.3rem;
    }
    
    .gallery-slider-container {
        aspect-ratio: 1200 / 700;
        border-radius: 0;
    }
    
    .gallery-btn {
        width: 35px;
        height: 35px;
    }
    
    .gallery-btn svg {
        width: 18px;
        height: 18px;
    }
}

/* Contact Section - Last Section */
.contact-section {
    width: 100%;
    min-height: 100vh;
    background: #6D5F7A;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
}

.contact-container {
    max-width: 600px;
    width: 100%;
    text-align: center;
}

.contact-title {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 50px;
    direction: rtl;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}

.form-group {
    width: 100%;
}

.form-group input {
    width: 100%;
    padding: 10px 15px;
    background: #E5E7EB;
    border: none;
    border-radius: 8px;
    font-size: 0.95rem;
    font-family: 'El Messiri', sans-serif;
    direction: rtl;
    text-align: right;
    color: #4B5563;
    outline: none;
    transition: all 0.3s ease;
}

.form-group input::placeholder {
    color: #9CA3AF;
    direction: rtl;
}

.form-group input:focus {
    background: #F3F4F6;
    box-shadow: 0 0 0 3px rgba(79, 209, 199, 0.2);
}

.form-group input.error {
    border: 2px solid #EF4444;
    background: #FEE2E2;
}

.error-message {
    display: block;
    color: #EF4444;
    font-size: 0.9rem;
    margin-top: 5px;
    text-align: right;
    direction: rtl;
    min-height: 20px;
}

.captcha-container {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
}

.captcha-label {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    background: #D1D5DB;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #4B5563;
    direction: rtl;
    white-space: nowrap;
    min-width: 100px;
    justify-content: center;
}

#captcha-question {
    font-family: 'El Messiri', sans-serif;
}

#captcha {
    flex: 1;
    padding: 10px 15px;
    background: #E5E7EB;
    border: none;
    border-radius: 8px;
    font-size: 0.95rem;
    font-family: 'El Messiri', sans-serif;
    direction: rtl;
    text-align: right;
    color: #4B5563;
    outline: none;
    transition: all 0.3s ease;
}

#captcha:focus {
    background: #F3F4F6;
    box-shadow: 0 0 0 3px rgba(79, 209, 199, 0.2);
}

#captcha.error {
    border: 2px solid #EF4444;
    background: #FEE2E2;
}

.refresh-captcha {
    padding: 10px;
    background: #D1D5DB;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: #4B5563;
}

.refresh-captcha:hover {
    background: #9CA3AF;
    transform: rotate(180deg);
}

.refresh-captcha:active {
    transform: rotate(180deg) scale(0.95);
}

.submit-btn {
    width: 100%;
    padding: 10px 15px;
    background: #E5E7EB;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    font-family: 'El Messiri', sans-serif;
    color: #4B5563;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
    direction: rtl;
}

.submit-btn:hover {
    background: #D1D5DB;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.submit-btn:active {
    transform: translateY(0);
}

/* Responsive Design for Contact Section */
@media (max-width: 768px) {
    .contact-section {
        padding: 60px 20px;
    }
    
    .contact-title {
        font-size: 1.7rem;
        margin-bottom: 40px;
    }
    
    .form-group input {
        padding: 16px 18px;
        font-size: 1rem;
    }
    
    .submit-btn {
        padding: 16px 18px;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .contact-section {
        padding: 50px 15px;
    }
    
    .contact-title {
        font-size: 1.4rem;
        margin-bottom: 30px;
    }
    
    .contact-form {
        gap: 15px;
    }
    
    .form-group input {
        padding: 14px 16px;
        font-size: 0.95rem;
    }
    
    .submit-btn {
        padding: 14px 16px;
        font-size: 1rem;
    }
}

/* Footer Styles */
.site-footer {
    width: 100%;
    background: #272727;
    padding: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copyright {
    flex: 1;
    min-width: 200px;
}

.footer-copyright p {
    color: white;
    font-size: 1rem;
    direction: rtl;
    margin: 0;
}

.footer-social {
    display: flex;
    gap: 15px;
    align-items: center;
}

.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.social-icon:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    color: #4FD1C7;
}

/* Responsive Design for Footer */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-copyright {
        width: 100%;
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .site-footer {
        padding: 30px 15px;
    }
    
    .footer-copyright p {
        font-size: 0.9rem;
    }
    
    .social-icon {
        width: 35px;
        height: 35px;
    }
    
    .social-icon svg {
        width: 18px;
        height: 18px;
    }
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    left: 30px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    background-color: #20BA5A;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-float:active {
    transform: scale(0.95);
}

.whatsapp-float svg {
    width: 35px;
    height: 35px;
    fill: white;
}

/* Responsive for Floating WhatsApp Button */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 20px;
        left: 20px;
    }
    
    .whatsapp-float svg {
        width: 30px;
        height: 30px;
    }
}

@media (max-width: 480px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 15px;
        left: 15px;
    }
    
    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }
}

/* Notification Message Styles */
.notification-message {
    position: fixed;
    top: 20px;
    right: 20px;
    left: 20px;
    max-width: 500px;
    margin: 0 auto;
    z-index: 10000;
    opacity: 0;
    transform: translateY(-100px);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    pointer-events: none;
}

.notification-message.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

.notification-content {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
    direction: rtl;
}

.notification-message.success .notification-content {
    border-right: 4px solid #10b981;
}

.notification-message.error .notification-content {
    border-right: 4px solid #ef4444;
}

.notification-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.notification-message.success .notification-icon {
    background: #d1fae5;
    color: #10b981;
}

.notification-message.error .notification-icon {
    background: #fee2e2;
    color: #ef4444;
}

.notification-icon svg {
    width: 24px;
    height: 24px;
}

.notification-text {
    flex: 1;
    margin: 0;
    font-size: 16px;
    font-weight: 500;
    color: #1f2937;
    line-height: 1.5;
}

.notification-close {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b7280;
    transition: color 0.2s;
    flex-shrink: 0;
}

.notification-close:hover {
    color: #1f2937;
}

.notification-close svg {
    width: 20px;
    height: 20px;
}

/* Responsive Design for Notification */
@media (max-width: 768px) {
    .notification-message {
        top: 10px;
        right: 10px;
        left: 10px;
    }
    
    .notification-content {
        padding: 16px;
        gap: 12px;
    }
    
    .notification-icon {
        width: 36px;
        height: 36px;
    }
    
    .notification-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .notification-text {
        font-size: 14px;
    }
}

