body {
    margin: 0;
    padding: 15px;
    background-color: white; 
    min-height: 100vh;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
    background: linear-gradient(135deg, #1a1a1a 0%, #2c3e50 100%); /* خلفية ملونة فاخرة */
    border-radius: 30px;
    padding: 40px;
    color: white;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

nav {
    align-self: flex-start;
    margin-bottom: 30px;
}

nav a {
    color: white;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 20px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: 0.3s;
    font-size: 0.9rem;
}

nav a:hover {
    background: white;
    color: black;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    text-align: center;
}

h2 {
    color: #00d4ff;
    border-bottom: 2px solid rgba(0, 212, 255, 0.3);
    padding-bottom: 10px;
    margin-top: 40px;
    width: 100%;
    max-width: 500px;
}

.location-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 20px;
    margin: 15px 0;
    width: 100%;
    max-width: 550px;
    border-right: 4px solid #00d4ff;
}

.location-item h3 {
    margin: 0 0 10px 0;
    color: #ffb700;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    max-width: 400px;
    margin-top: 25px;
}

.contact-methods a {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.4); 
    border-radius: 18px;
    color: #ffffff;
    text-decoration: none;font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.contact-methods a:hover {
    background: #00d4ff; /* يتحول للون السماوي عند اللمس ليعطي رد فعل واضح */
    color: #000000; /* النص يصبح أسود للوضوح التام */
    transform: scale(1.03);
    border-color: #ffffff;
}

/* تخصيص ألوان الأيقونات لتكون واضحة */
.contact-methods a i {
    font-size: 1.6rem;
    width: 30px;
    text-align: center;
}


.contact-methods a:nth-child(1) i { color: #00ff88; } 
.contact-methods a:nth-child(2) i { color: #25d366; } 
.contact-methods a:nth-child(3) i { color: #ffb700; } 
.contact-methods a:hover i {
    color: #000000 ;
}

.social-sidebar {
    position: absolute;
    bottom: 40px;
    left: 40px;
    display: flex;
    gap: 15px;
}

.social-sidebar a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-decoration: none;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: 0.3s;
}

.social-sidebar a:hover {
    background: white;
    color: #1a1a1a;
    transform: translateY(-5px);
}