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

body {
    background: #f5f7fa;
    font-family: 'Cairo', sans-serif;
}

/* Service Request Form Styles */
.service-request-form-container {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin: 2rem 0;
}

.service-request-title {
    color: #2c3e50;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.service-request-error {
    background: #fee2e2;
    color: #dc2626;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-request-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.service-form-group {
    position: relative;
}

.service-form-input,
.service-form-select {
    width: 100%;
    padding: 1.2rem 3.5rem 1.2rem 1.2rem;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
    color: #2c3e50;
}

.service-form-input:focus,
.service-form-select:focus {
    border-color: #4a90e2;
    outline: none;
    box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
}

.service-form-label {
    position: absolute;
    right: 3.5rem;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
    pointer-events: none;
    transition: all 0.3s ease;
    background: transparent;
    padding: 0 0.5rem;
}

.service-form-input:focus + .service-form-label,
.service-form-input:not(:placeholder-shown) + .service-form-label,
.service-form-select:focus + .service-form-label,
.service-form-select:not([value=""]) + .service-form-label {
    top: 0;
    right: 1.2rem;
    font-size: 0.9rem;
    background: #fff;
    color: #4a90e2;
    font-weight: 500;
}

.service-form-icon {
    position: absolute;
    right: 1.2rem;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.service-submit-btn {
    background: linear-gradient(135deg, #4a90e2, #6a11cb);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.service-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(74, 144, 226, 0.3);
}

.service-submit-btn:active {
    transform: translateY(0);
}

/* Error States */
.service-form-input.error,
.service-form-select.error {
    border-color: #dc2626;
}

.service-form-input.error:focus,
.service-form-select.error:focus {
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

/* Loading State */
.service-submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.service-submit-btn .fa-spinner {
    margin-right: 0.5rem;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .service-request-form-container {
        padding: 1.5rem;
    }
    
    .service-form-input,
    .service-form-select {
        padding: 1rem 3rem 1rem 1rem;
        font-size: 1rem;
    }
    
    .service-form-label {
        right: 3rem;
    }
    
    .service-form-icon {
        right: 1rem;
    }
}

/* Thank You Page Styles */
.thank-you-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
}

.thank-you-card {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    width: 100%;
}

.thank-you-icon {
    font-size: 4rem;
    color: #4CAF50;
    margin-bottom: 1.5rem;
}

.thank-you-title {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.thank-you-message {
    color: #64748b;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.back-to-home {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #4a90e2, #6a11cb);
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.back-to-home:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(74, 144, 226, 0.3);
    color: white;
}

/* General Styles */
body {
    font-family: 'Cairo', sans-serif;
    background-color: #f8f9fa;
    color: #333;
}

.bio-content {
    position: relative;
    padding: 2rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Profile Section */
.profile-container {
    position: relative;
    width: 300px;
    height: 300px;
    margin: 0 auto;
}

.profile-circle {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 8px solid #8e44ad;
    padding: 8px;
}

.profile-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

/* Social Icons */
.social-icon {
    position: absolute;
    width: 50px;
    height: 50px;
    background-color: #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.social-icon:hover {
    transform: scale(1.1);
}

.icon-1 {
    top: 10%;
    right: -25px;
    background-color: #000000;
}

.icon-2 {
    top: 50%;
    right: -25px;
    transform: translateY(-50%);
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.icon-3 {
    bottom: 10%;
    right: -25px;
    background-color: #25D366;
}

/* Text Styles */
.company-name {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-top: 3rem;
    margin-bottom: 2.5rem;
    position: relative;
    padding: 0.5rem 0;
}

.company-description {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 0 1rem;
}

.company-name:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #8e44ad, #9b59b6);
    border-radius: 3px;
}

.follow-text {
    font-size: 2.8rem;
    font-weight: 800;
    color: #333;
    margin-bottom: 0.5rem;
    margin-top: 3rem;
}

.social-subtitle {
    font-size: 1.5rem;
    color: #666;
    margin-bottom: 2rem;
}

/* Contact Links */
.contact-links {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin-top: 2rem;
    padding: 0 1rem;
}

.contact-link {
    display: flex;
    align-items: center;
    padding: 1.2rem 2.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #333;
    text-decoration: none;
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.contact-link:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #8e44ad, #9b59b6);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.contact-link:hover {
    transform: translateY(-5px) scale(1.02);
    color: white;
    text-decoration: none;
    box-shadow: 0 15px 45px rgba(142, 68, 173, 0.2);
}

.contact-link:hover:before {
    opacity: 1;
}

.contact-link i {
    margin-left: 1.2rem;
    font-size: 1.5rem;
    background: linear-gradient(135deg, #8e44ad, #9b59b6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
}

.contact-link:hover i {
    -webkit-text-fill-color: white;
    transform: scale(1.1);
}

.contact-link span {
    position: relative;
    z-index: 2;
    font-weight: 500;
    font-size: 1.1rem;
    transition: all 0.4s ease;
}

.contact-link:after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    border-top: 2px solid rgba(142, 68, 173, 0.3);
    border-right: 2px solid rgba(142, 68, 173, 0.3);
    right: 25px;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    transition: all 0.4s ease;
    z-index: 2;
}

.contact-link:hover:after {
    border-color: white;
    right: 20px;
}

/* Social Handle */
.social-handle {
    font-size: 1.5rem;
    font-weight: 600;
    color: #8e44ad;
    margin-top: 2rem;
}

/* Decorative Elements */
.decoration {
    position: absolute;
    z-index: -1;
}

.triangle-1 {
    top: 10%;
    left: 10%;
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-bottom: 35px solid rgba(142, 68, 173, 0.1);
    transform: rotate(45deg);
}

.triangle-2 {
    bottom: 10%;
    right: 10%;
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-bottom: 35px solid rgba(142, 68, 173, 0.1);
    transform: rotate(-15deg);
}

.circle-1 {
    top: 20%;
    right: 15%;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 3px solid rgba(142, 68, 173, 0.1);
}

.circle-2 {
    bottom: 15%;
    left: 10%;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: rgba(142, 68, 173, 0.1);
}

/* WhatsApp Button Styles */
.whatsapp-container {
    margin: 2rem 0;
    padding: 0 1rem;
}

.whatsapp-button {
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #25D366, #128C7E);
    padding: 0;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.2);
}

.whatsapp-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(37, 211, 102, 0.3);
    text-decoration: none;
}

.whatsapp-icon {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.whatsapp-icon:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(45deg) translateY(100%);
    transition: all 0.4s ease;
}

.whatsapp-button:hover .whatsapp-icon:before {
    transform: rotate(45deg) translateY(-100%);
}

.whatsapp-icon i {
    font-size: 2.5rem;
    color: white;
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
}

.whatsapp-button:hover .whatsapp-icon i {
    transform: scale(1.1);
}

.whatsapp-text {
    padding: 0 25px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.whatsapp-text-main {
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 2px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.whatsapp-text-sub {
    color: #E8F8F1;
    font-size: 0.85rem;
    font-weight: 500;
    opacity: 0.95;
}

.whatsapp-arrow {
    margin-right: auto;
    margin-left: 25px;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.whatsapp-arrow i {
    color: white;
    font-size: 1.2rem;
    transition: transform 0.4s ease;
}

.whatsapp-button:hover .whatsapp-arrow {
    background: rgba(255, 255, 255, 0.2);
}

.whatsapp-button:hover .whatsapp-arrow i {
    transform: translateX(-5px);
}

/* Add animation for WhatsApp button */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.whatsapp-button {
    animation: pulse 2s infinite;
}

/* Responsive Adjustments for WhatsApp Button */
@media (max-width: 768px) {
    .whatsapp-container {
        margin: 1.5rem 0;
        padding: 0 0.5rem;
    }

    .whatsapp-icon {
        padding: 15px;
    }

    .whatsapp-icon i {
        font-size: 2rem;
    }

    .whatsapp-text {
        padding: 0 15px;
    }

    .whatsapp-text-main {
        font-size: 1rem;
    }

    .whatsapp-text-sub {
        font-size: 0.8rem;
    }

    .whatsapp-arrow {
        width: 35px;
        height: 35px;
        margin-left: 15px;
    }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .profile-container {
        width: 250px;
        height: 250px;
    }

    .company-name {
        font-size: 2rem;
        margin-top: 2rem;
        margin-bottom: 2rem;
    }

    .company-name:after {
        width: 40px;
    }

    .follow-text {
        font-size: 2.2rem;
    }

    .social-subtitle {
        font-size: 1.2rem;
    }

    .contact-links {
        gap: 1rem;
        padding: 0 0.5rem;
    }

    .contact-link {
        padding: 1rem 2rem;
    }

    .contact-link i {
        font-size: 1.3rem;
        margin-left: 1rem;
    }

    .contact-link span {
        font-size: 1rem;
    }

    .social-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .icon-1 {
        right: -20px;
    }
    
    .icon-2 {
        right: -20px;
    }
    
    .icon-3 {
        right: -20px;
    }
}

/* Why Choose Us Section */
.why-choose-us {
    margin: 4rem auto;
    padding: 0;
    max-width: 1400px;
    direction: rtl;
    overflow: visible;
    position: relative;
}

.features-slider-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 1rem;
}

.features-slider {
    display: flex;
    gap: 24px;
    transition: transform 0.5s ease-in-out;
    width: max-content;
}

.feature-card {
    flex: 0 0 300px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    margin: 1rem 0;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.feature-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 2;
}

.slider-nav:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.slider-nav.prev {
    right: -20px;
}

.slider-nav.next {
    left: -20px;
}

.slider-nav::before {
    content: '';
    width: 10px;
    height: 10px;
    border-right: 2px solid white;
    border-bottom: 2px solid white;
    transform: rotate(-45deg);
}

.slider-nav.prev::before {
    transform: rotate(135deg);
}

.slider-indicators {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 2rem;
}

.indicator-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator-dot.active {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

/* Keep existing feature card styles */
.feature-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #8e44ad, #9b59b6);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    position: relative;
    transform: rotate(45deg);
    transition: all 0.4s ease;
}

.feature-icon i {
    font-size: 2.2rem;
    color: white;
    transform: rotate(-45deg);
    transition: all 0.4s ease;
}

.feature-card:hover .feature-icon {
    transform: rotate(0deg);
    border-radius: 50%;
}

.feature-card:hover .feature-icon i {
    transform: rotate(0deg) scale(1.2);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .feature-card {
        flex: 0 0 260px;
        padding: 1.5rem;
    }
    
    .slider-nav {
        width: 32px;
        height: 32px;
    }
    
    .slider-nav.prev {
        right: -16px;
    }
    
    .slider-nav.next {
        left: -16px;
    }
}

/* Service Request Form Styles */
.service-form-container {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    margin: 3rem auto;
    max-width: 600px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.form-title {
    color: #2c3e50;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    text-align: center;
    font-weight: 700;
    position: relative;
    padding-bottom: 1rem;
}

.service-form-description {
    color: #64748b;
    font-size: 1rem;
    text-align: center;
    margin-bottom: 2rem;
    line-height: 1.6;
    padding: 0 1rem;
}

.form-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #8e44ad, #9b59b6);
    border-radius: 3px;
}

.service-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    position: relative;
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 1rem 3.5rem 1rem 1rem;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(142, 68, 173, 0.2);
    border-radius: 12px;
    font-size: 1rem;
    color: #333;
    transition: all 0.3s ease;
}

.form-group select {
    appearance: none;
    cursor: pointer;
    padding-left: 2rem;
}

.form-group select option {
    padding: 10px;
    font-size: 1rem;
}

.form-group label {
    position: absolute;
    right: 3.5rem;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
    transition: all 0.3s ease;
    pointer-events: none;
    background: transparent;
    padding: 0 5px;
}

.form-group i {
    position: absolute;
    right: 1.2rem;
    top: 50%;
    transform: translateY(-50%);
    color: #8e44ad;
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
}

.form-group select:after {
    content: '';
    position: absolute;
    left: 1.2rem;
    top: 50%;
    transform: translateY(-50%);
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid #8e44ad;
    pointer-events: none;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #8e44ad;
    box-shadow: 0 0 0 2px rgba(142, 68, 173, 0.1);
}

.form-group input:focus + label,
.form-group select:focus + label,
.form-group input:valid + label,
.form-group select:valid + label {
    top: -12px;
    right: 1rem;
    font-size: 0.8rem;
    background: white;
    padding: 0 0.5rem;
    color: #8e44ad;
    z-index: 1;
}

.submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #8e44ad, #9b59b6);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(142, 68, 173, 0.3);
}

.submit-btn i {
    transition: transform 0.3s ease;
}

.submit-btn:hover i {
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .service-form-container {
        padding: 1.5rem;
        margin: 2rem auto;
    }
    
    .form-title {
        font-size: 1.5rem;
    }
    
    .form-group input,
    .form-group select {
        padding: 1rem 3rem 1rem 1rem;
        font-size: 1rem;
    }
    
    .form-group i {
        right: 1rem;
        font-size: 1rem;
    }
    
    .form-group label {
        right: 3rem;
        font-size: 0.9rem;
    }
    
    .submit-btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
}

/* Thank You Page Styles */
.thank-you-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 2rem;
}

.thank-you-content {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    width: 100%;
}

.thank-you-content i {
    font-size: 4rem;
    color: #25D366;
    margin-bottom: 1.5rem;
}

.thank-you-content h1 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1rem;
}

.thank-you-content p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 0.5rem;
}

.thank-you-content .message {
    font-size: 1.1rem;
    color: #8e44ad;
    margin-bottom: 2rem;
}

.back-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    background: linear-gradient(135deg, #8e44ad, #9b59b6);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.back-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(142, 68, 173, 0.3);
}

.back-btn i {
    transition: transform 0.3s ease;
}

.back-btn:hover i {
    transform: translateX(-5px);
}

@media (max-width: 768px) {
    .thank-you-content {
        padding: 2rem;
    }
    
    .thank-you-content i {
        font-size: 3rem;
    }
    
    .thank-you-content h1 {
        font-size: 2rem;
    }
    
    .thank-you-content p {
        font-size: 1rem;
    }
    
    .back-btn {
        padding: 0.7rem 1.2rem;
        font-size: 1rem;
    }
}

/* Social Media Section Styles */
.social-media-section {
    margin: 2rem auto;
    max-width: 400px;
    width: 100%;
}

.social-icons-container {
    display: flex;
    justify-content: center;
    gap: 1rem;
    padding: 0.5rem;
}

.social-icon-link {
    display: inline-block;
    width: 50px;
    height: 50px;
    position: relative;
    text-decoration: none;
    isolation: isolate;
}

.social-icon-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.5s ease;
}

.icon-background {
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform: rotateY(0deg);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.platform-name {
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform: rotateY(180deg);
    font-size: 0.8rem;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-icon-link i {
    font-size: 1.2rem;
    color: white;
}

.social-icon-link.facebook .icon-background {
    background: rgba(59, 89, 152, 0.8);
}

.social-icon-link.instagram .icon-background {
    background: rgba(225, 48, 108, 0.8);
}

.social-icon-link.tiktok .icon-background {
    background: rgba(0, 0, 0, 0.8);
}

@media (max-width: 768px) {
    .social-media-section {
        max-width: 300px;
    }

    .social-icon-link {
        width: 45px;
        height: 45px;
    }

    .social-icon-link i {
        font-size: 1.1rem;
    }

    .platform-name {
        font-size: 0.7rem;
    }
}

@media (max-width: 480px) {
    .social-media-section {
        max-width: 250px;
    }

    .social-icon-link {
        width: 40px;
        height: 40px;
    }

    .social-icon-link i {
        font-size: 1rem;
    }

    .platform-name {
        font-size: 0.6rem;
    }
}

/* Location Section Styles */
.location-section {
    margin: 4rem auto;
    padding: 2rem 1rem;
    max-width: 1000px;
}

.location-section .section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
}

.location-section .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    height: 3px;
    background: linear-gradient(90deg, #4a90e2, #6a11cb);
    border-radius: 2px;
}

.location-card {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.location-card:hover {
    transform: translateY(-5px);
}

.location-info-container {
    padding: 2rem;
}

.info-block {
    margin-bottom: 1.5rem;
}

.info-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.icon-circle {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #4a90e2, #6a11cb);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3);
}

.icon-circle i {
    color: #ffffff;
    font-size: 1.25rem;
}

.info-content p {
    margin: 0;
    font-size: 1.1rem;
    color: #2c3e50;
    font-weight: 500;
}

.map-container {
    width: 100%;
    height: 400px;
    border-radius: 0 0 20px 20px;
    overflow: hidden;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

@media (max-width: 768px) {
    .location-section {
        margin: 3rem auto;
        padding: 1rem;
    }
    
    .location-section .section-title {
        font-size: 1.75rem;
    }
    
    .location-info-container {
        padding: 1.5rem;
    }
    
    .map-container {
        height: 300px;
    }
}

/* Modern Background Styles */
:root {
    /* Main Colors */
    --primary-gradient: linear-gradient(135deg, #7c3aed, #4f46e5);
    --secondary-gradient: linear-gradient(135deg, #ec4899, #d946ef);
    --accent-gradient: linear-gradient(135deg, #14b8a6, #0ea5e9);
    --heart-gradient: linear-gradient(135deg, #f43f5e, #e11d48);
    
    /* Background Colors */
    --bg-primary: #f8fafc;
    --bg-secondary: #f1f5f9;
    --bg-accent: #e2e8f0;
    
    /* Text Colors */
    --text-primary: #1e293b;
    --text-secondary: #475569;
    --text-accent: #64748b;
    
    /* Shadow Colors */
    --primary-shadow: rgba(124, 58, 237, 0.2);
    --secondary-shadow: rgba(236, 72, 153, 0.2);
    --accent-shadow: rgba(20, 184, 166, 0.2);
    --heart-shadow: rgba(244, 63, 94, 0.2);
    
    /* Border Colors */
    --border-primary: rgba(124, 58, 237, 0.1);
    --border-secondary: rgba(236, 72, 153, 0.1);
    --border-accent: rgba(20, 184, 166, 0.1);
}

body {
    font-family: 'Cairo', sans-serif;
    color: var(--text-primary);
    background: var(--bg-primary);
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 0% 0%, var(--primary-gradient) 0%, transparent 50%),
        radial-gradient(circle at 100% 0%, var(--secondary-gradient) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, var(--accent-gradient) 0%, transparent 50%);
    z-index: -1;
}

/* Animated Background Shapes */
.bg-shapes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    overflow: hidden;
}

.bg-shape {
    position: absolute;
    background: var(--primary-gradient);
    opacity: 0.05;
    border-radius: 50%;
    filter: blur(40px);
    animation: floatShape 20s infinite linear;
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: -150px;
    left: -150px;
    animation-delay: 0s;
    background: var(--secondary-gradient);
}

.shape-2 {
    width: 400px;
    height: 400px;
    top: 40%;
    right: -200px;
    animation-delay: -5s;
    background: var(--accent-gradient);
}

.shape-3 {
    width: 200px;
    height: 200px;
    bottom: -100px;
    left: 30%;
    animation-delay: -10s;
    background: var(--heart-gradient);
}

@keyframes floatShape {
    0% {
        transform: rotate(0deg) translate(0, 0);
    }
    25% {
        transform: rotate(90deg) translate(50px, 50px);
    }
    50% {
        transform: rotate(180deg) translate(0, 100px);
    }
    75% {
        transform: rotate(270deg) translate(-50px, 50px);
    }
    100% {
        transform: rotate(360deg) translate(0, 0);
    }
}

/* Glass Effect for Content */
.bio-content {
    position: relative;
    padding: 2rem;
    max-width: 600px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid var(--border-primary);
    box-shadow: 0 8px 32px var(--primary-shadow);
}

/* Subtle Grid Pattern */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(var(--border-primary) 1px, transparent 1px),
        linear-gradient(90deg, var(--border-primary) 1px, transparent 1px);
    background-size: 20px 20px;
    z-index: -3;
}

/* Add Shine Effect to Cards */
.feature-card,
.location-card,
.service-form-container {
    position: relative;
    overflow: hidden;
}

.feature-card::before,
.location-card::before,
.service-form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.1) 100%
    );
    transform: skewX(-25deg);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        left: -75%;
    }
    100% {
        left: 150%;
    }
}

/* Responsive Background Adjustments */
@media (max-width: 768px) {
    .bg-shape {
        filter: blur(30px);
    }
    
    .shape-1 {
        width: 200px;
        height: 200px;
    }
    
    .shape-2 {
        width: 300px;
        height: 300px;
    }
    
    .shape-3 {
        width: 150px;
        height: 150px;
    }
}

/* Designer Copyright Section */
.designer-copyright {
    margin: 6rem auto 4rem;
    padding: 2rem 1rem;
    position: relative;
}

.designer-card {
    max-width: 400px;
    margin: 0 auto;
    position: relative;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 3.5rem 2rem 2rem;
    text-align: center;
    box-shadow: 
        0 20px 40px var(--primary-shadow),
        0 -4px 0 var(--primary-gradient);
    overflow: visible;
}

.love-badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    width: 60px;
    height: 60px;
    background: var(--heart-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 5px 15px var(--heart-shadow);
    z-index: 2;
}

.love-badge i {
    animation: heartBeat 1.5s ease-in-out infinite;
}

@keyframes heartBeat {
    0%, 100% { transform: scale(1); }
    14% { transform: scale(1.3); }
    28% { transform: scale(1); }
    42% { transform: scale(1.3); }
    70% { transform: scale(1); }
}

.designer-title {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.designer-title::before,
.designer-title::after {
    content: '';
    width: 30px;
    height: 2px;
    background: var(--primary-gradient);
    opacity: 0.5;
}

.designer-name {
    font-size: 2.2rem;
    font-weight: 800;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
    position: relative;
    display: inline-block;
}

.made-with-love {
    font-size: 1rem;
    color: var(--text-secondary);
    margin: 1rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.made-with-love i {
    color: #f43f5e;
    animation: colorPulse 2s ease-in-out infinite;
}

@keyframes colorPulse {
    0%, 100% { color: #f43f5e; }
    50% { color: #e11d48; }
}

.designer-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.designer-social a {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: white;
    color: var(--primary-gradient);
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px var(--primary-shadow);
    position: relative;
    overflow: hidden;
}

.designer-social a::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--accent-gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.designer-social a:hover::before {
    opacity: 1;
}

.designer-social a i {
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.designer-social a:hover {
    transform: translateY(-5px);
}

.designer-social a:hover i {
    color: white;
}

.copyright-year {
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.copyright-year::before,
.copyright-year::after {
    content: '•';
    color: var(--primary-gradient);
    opacity: 0.5;
}

.design-elements {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    border-radius: 20px;
    z-index: 1;
}

.design-element {
    position: absolute;
    background: var(--primary-gradient);
    border-radius: 50%;
    opacity: 0.05;
}

.element-1 {
    width: 150px;
    height: 150px;
    top: -75px;
    right: -75px;
    background: var(--secondary-gradient);
}

.element-2 {
    width: 100px;
    height: 100px;
    bottom: -50px;
    left: -50px;
    background: var(--accent-gradient);
}

/* Responsive Design */
@media (max-width: 768px) {
    .designer-card {
        padding: 2.5rem 1.5rem 1.5rem;
    }

    .designer-name {
        font-size: 1.8rem;
    }

    .designer-social a {
        width: 40px;
        height: 40px;
    }

    .designer-social a i {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .designer-card {
        padding: 2rem 1rem 1rem;
    }

    .love-badge {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .designer-name {
        font-size: 1.6rem;
    }

    .designer-social {
        gap: 0.8rem;
    }

    .designer-social a {
        width: 35px;
        height: 35px;
    }
}

/* Service Form Styles */
.service-form-wrapper {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 2.5rem;
    margin: 2rem 0;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.service-form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.1), rgba(106, 17, 203, 0.1));
    z-index: -1;
}

.service-form-title {
    color: #2c3e50;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    text-align: center;
    font-weight: 700;
    position: relative;
    padding-bottom: 1rem;
}

.service-form-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, #4a90e2, #6a11cb);
    border-radius: 2px;
}

.service-form-error {
    background: #ffebee;
    color: #c62828;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    border-right: 4px solid #c62828;
    animation: shake 0.5s ease-in-out;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

.service-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.service-form-field {
    position: relative;
    transition: all 0.3s ease;
}

.service-form-field:hover {
    transform: translateY(-2px);
}

.service-form-input,
.service-form-select {
    width: 100%;
    padding: 1.2rem 3.5rem 1.2rem 1.2rem;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
    color: #2c3e50;
}

.service-form-input:focus,
.service-form-select:focus {
    border-color: #4a90e2;
    outline: none;
    box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
    background: #fff;
}

.service-form-label {
    position: absolute;
    right: 3.5rem;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
    pointer-events: none;
    transition: all 0.3s ease;
    background: transparent;
    padding: 0 0.5rem;
}

.service-form-input:focus + .service-form-label,
.service-form-input:not(:placeholder-shown) + .service-form-label,
.service-form-select:focus + .service-form-label,
.service-form-select:not([value=""]) + .service-form-label {
    top: 0;
    right: 1.2rem;
    font-size: 0.9rem;
    background: #fff;
    color: #4a90e2;
    font-weight: 500;
}

.service-form-icon {
    position: absolute;
    right: 1.2rem;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.service-form-field:hover .service-form-icon {
    color: #4a90e2;
    transform: translateY(-50%) scale(1.1);
}

.service-form-submit {
    background: linear-gradient(135deg, #4a90e2, #6a11cb);
    color: #fff;
    border: none;
    padding: 1.2rem 2.5rem;
    border-radius: 12px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
    margin-top: 1.5rem;
    position: relative;
    overflow: hidden;
}

.service-form-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
    z-index: 1;
}

.service-form-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(74, 144, 226, 0.2);
}

.service-form-submit:active {
    transform: translateY(-1px);
}

.service-form-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.service-form-submit i {
    transition: transform 0.3s ease;
}

.service-form-submit:hover i {
    transform: translateX(5px);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .service-form-wrapper {
        padding: 2rem;
        margin: 1.5rem 0;
    }
    
    .service-form-title {
        font-size: 1.5rem;
    }
    
    .service-form-input,
    .service-form-select {
        padding: 1rem 3rem 1rem 1rem;
        font-size: 1rem;
    }
    
    .service-form-submit {
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }
} 