/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* BODY */
body {
    background: linear-gradient(135deg, #050505, #0C0F0A, #0a1d0f);
    background-size: 300% 300%;
    animation: bgMove 10s infinite alternate;
    color: #0f0;
    font-family: "Orbitron", sans-serif;
}

/* ANIMATION BACKGROUND */
@keyframes bgMove {
    0% { background-position: left top; }
    100% { background-position: right bottom; }
}

/* HEADER */
header {
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    padding: 15px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 3px solid #00ff88;
    box-shadow: 0 0 15px #00ff88;
}

/* LOGO */
.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo span {
    font-size: 26px;
    font-weight: bold;
    color: #00ff88;
    text-shadow: 0 0 10px #00ff88;
}

/* NAV */
nav a {
    margin: 0 15px;
    padding: 8px 15px;
    color: white;
    text-decoration: none;
    font-weight: bold;
    border: 1px solid #00ff88;
    border-radius: 6px;
    transition: 0.3s;
}

nav a:hover {
    background: #00ff88;
    color: black;
    box-shadow: 0 0 15px #00ff88;
    transform: scale(1.1);
}

/* HERO */
.hero {
    text-align: center;
    padding: 150px 20px;
    color: white;
}

.hero h1 {
    font-size: 45px;
    text-shadow: 0 0 20px #00ff88;
}

.hero p {
    margin-top: 15px;
    font-size: 20px;
    color: #bbb;
}

.btn {
    display: inline-block;
    margin-top: 25px;
    padding: 14px 30px;
    background: #00ff88;
    color: black;
    border-radius: 8px;
    font-weight: bold;
    transition: 0.3s;
}

.btn:hover {
    transform: scale(1.15);
    box-shadow: 0 0 15px #00ff88;
}

/* TITLES */
.content h1 {
    color: white;
    font-size: 35px;
    text-shadow: 0 0 12px #00ff88;
    margin-bottom: 30px;
}

/* CARDS */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    padding: 20px;
}

.card {
    background: rgba(0,0,0,0.7);
    border: 2px solid #00ff88;
    border-radius: 12px;
    padding: 25px;
    color: white;
    text-align: center;
    font-weight: bold;
    transition: 0.3s;
    box-shadow: 0 0 10px #00ff88;
}

.card:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px #00ff88;
}

/* FOOTER */
footer {
    background: rgba(0, 0, 0, 0.7);
    padding: 15px;
    text-align: center;
    color: #00ff88;
    margin-top: 40px;
    border-top: 2px solid #00ff88;
    text-shadow: 0 0 10px #00ff88;
}
/* CONTACT PAGE SPECIFIC */

.contact-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    padding: 40px;
}

.box {
    background: rgba(0,0,0,0.55);
    border: 2px solid #00ff88;
    box-shadow: 0 0 20px #00ff88aa;
    padding: 25px;
    border-radius: 12px;
    backdrop-filter: blur(5px);
    animation: fadeBox 1s ease forwards;
}

@keyframes fadeBox {
    0% { opacity: 0; transform: translateY(40px); }
    100% { opacity: 1; transform: translateY(0); }
}

.box h2 {
    font-size: 26px;
    margin-bottom: 20px;
    color: #00ff88;
    text-shadow: 0 0 12px #00ff88;
}

.contact-links a {
    display: block;
    padding: 12px;
    margin: 10px 0;
    text-align: center;
    font-weight: bold;
    color: black;
    background: #00ff88;
    border-radius: 8px;
    transition: 0.25s;
}

.contact-links a:hover {
    background: black;
    color: #00ff88;
    box-shadow: 0 0 15px #00ff88;
}

/* MAP BOX */
.map iframe {
    border-radius: 10px;
    width: 100%;
    height: 280px;
    border: none;
    box-shadow: 0 0 12px #00ff88;
}

/* FORM */
.form form input,
.form form textarea {
    width: 100%;
    background: rgba(0,0,0,0.6);
    border: 1px solid #00ff88;
    color: #00ff88;
    padding: 12px;
    margin-bottom: 12px;
    border-radius: 8px;
    font-size: 16px;
}

.form form textarea {
    height: 140px;
}

.form .btn {
    width: 100%;
    font-size: 18px;
    border-radius: 8px;
    padding: 14px;
}

/* QR GRID */
.qr-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 20px;
    text-align: center;
}

.qr-grid img {
    width: 130px;
    height: 130px;
    border-radius: 10px;
    box-shadow: 0 0 12px #00ff88;
    transition: 0.2s;
}

.qr-grid img:hover {
    transform: scale(1.08);
}

/* TEXT INSIDE QR */
.qr-grid p {
    margin-bottom: 8px;
    color: #00ff88;
    font-weight: bold;
    text-shadow: 0 0 6px #00ff88;
}
/* PRICING PAGE */

.pricing-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    padding: 40px;
}

.pricing-box {
    background: rgba(0,0,0,0.55);
    border: 2px solid #00ff88;
    box-shadow: 0 0 20px #00ff88aa;
    padding: 25px;
    border-radius: 12px;
    text-align: left;
}

.pricing-box h2 {
    color: #00ff88;
    font-size: 26px;
    margin-bottom: 20px;
    text-shadow: 0 0 10px #00ff88;
}

.pricing-box p {
    font-size: 20px;
    margin: 10px 0;
    color: white;
}
/* PRICING PAGE ULTRA EFFECTS */

.pricing-container {
    display: flex;
    justify-content: center;
    padding: 40px;
}

.price-list {
    list-style: none;
    font-size: 22px;
}

.price-list li {
    display: flex;
    justify-content: space-between;
    margin: 12px 0;
    padding: 12px 18px;
    background: rgba(0,0,0,0.6);
    border: 1px solid #00ff88a0;
    border-radius: 8px;
    box-shadow: 0 0 10px #00ff88a0;
    transition: 0.25s;
}

.price-list li:hover {
    transform: scale(1.05);
    background: #041f12;
    border-color: #00ff88;
    box-shadow: 0 0 20px #00ff88;
}

/* NEON BOX */
.neon-box {
    width: 420px;
    padding: 30px;
    border-radius: 14px;
    border: 3px solid #00ff88;
    background: rgba(0,0,0,0.45);
    backdrop-filter: blur(8px);
    box-shadow: 0 0 30px #00ff8866, inset 0 0 15px #00ff8844;
    animation: neonPulse 4s infinite alternate;
}

/* NEON TEXT */
.neon-box h2 {
    font-size: 28px;
    text-shadow: 0 0 12px #00ff88;
    color: #00ff88;
    text-align: center;
    margin-bottom: 25px;
}

/* ANIMATIONS */
@keyframes neonPulse {
    0% {
        box-shadow: 0 0 20px #00ff8844, inset 0 0 10px #00ff8844;
        border-color: #00ff88aa;
    }
    100% {
        box-shadow: 0 0 45px #00ff88, inset 0 0 20px #00ff88aa;
        border-color: #00ff88;
    }
}

.animate-glow {
    animation: fadeInBox 1s ease forwards, neonPulse 4s infinite alternate;
}

@keyframes fadeInBox {
    0% { opacity: 0; transform: translateY(40px) scale(0.9); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
}
/* ADVANCED PRICE BOXES */

.price-list {
    list-style: none;
    padding: 0;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;

    background: linear-gradient(135deg, #002d1a, #003f26, #004f2f);
    border: 2px solid #00ff88aa;
    padding: 16px 22px;
    border-radius: 12px;

    margin: 15px 0;
    box-shadow: 0 0 20px #00ff8844, inset 0 0 12px #003f2faa;
    transition: 0.3s;
}

.price-item:hover {
    transform: scale(1.03);
    border-color: #00ff88;
    box-shadow: 0 0 35px #00ff88, inset 0 0 22px #00ff8855;
    background: linear-gradient(135deg, #004f2f, #005f39, #007a47);
}

/* TITLE COLOR */
.p-title {
    color: #00ffaa;
    font-size: 22px;
    font-weight: bold;
    text-shadow: 0 0 10px #00ff88;
}

/* PRICE VALUE COLOR */
.p-value {
    color: #ffffff;
    font-size: 22px;
    font-weight: bold;
    background: #00ff8844;
    padding: 6px 14px;
    border-radius: 8px;
    border: 1px solid #00ff88aa;
    box-shadow: 0 0 12px #00ff8844;
    transition: 0.3s;
}

.price-item:hover .p-value {
    background: #00ff88;
    color: black;
    border-color: black;
    box-shadow: 0 0 20px #00ff88;
}
/* MAKE THE MAP CLICKABLE */

.map-wrapper {
    position: relative;
    width: 100%;
    height: 300px;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 10px;
}

/* Transparent clickable layer */
.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    cursor: pointer;
}
/* CLICKABLE MAP FIX */
.map-wrapper {
    position: relative;
    width: 100%;
    height: 280px;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 12px;
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 20;
    cursor: pointer;
}
/* MATCH MAP BOX WITH OTHER BOXES */

.map-box {
    width: 100%;
    max-width: 520px;     /* نفس عرض الصناديق الثانية */
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 0 25px #00ff8844, inset 0 0 15px #00ff8844;
}

/* MAKE MAP HEIGHT SAME AS OTHERS */
.map-wrapper {
    position: relative;
    width: 100%;
    height: 250px;   /* نفس ارتفاع Box */
    border-radius: 12px;
    overflow: hidden;
}

/* MAP ITSELF */
.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 12px;
}

/* CLICKABLE transparent layer */
.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    cursor: pointer;
}

/* MAKE TITLE MATCH STYLE */
.map-box h2 {
    color: #00ff88;
    margin-bottom: 12px;
    font-size: 22px;
    text-shadow: 0 0 12px #00ff88;
}
nav a {
    margin: 0 12px;
}
nav {
    display: flex;
    flex-wrap: wrap; /* يخليهن ينزلو بترتيب بدون فوق بعض */
    gap: 10px;       /* مسافة بين الأزرار */
}
nav {
    display: flex;
    gap: 20px;
}
.about, .mini-services, .why-us {
    margin: 40px auto;
    width: 80%;
    background: rgba(0, 255, 0, 0.05);
    border: 1px solid #00ff00;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 0 10px #00ff00;
}

.about h2, .mini-services h2, .why-us h2 {
    text-align: center;
    color: #00ff00;
    margin-bottom: 15px;
}

.features, .service-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.feature-box, .service-card {
    background: rgba(0, 255, 0, 0.15);
    border: 1px solid #00ff00;
    padding: 15px;
    text-align: center;
    border-radius: 8px;
    font-weight: bold;
}

.why-us ul {
    margin-top: 15px;
    line-height: 1.7;
    font-size: 18px;
    list-style: none;
}

.why-us li::before {
    content: ">> ";
    color: #00ff00;
}
.about, .mini-services, .why-us {
    margin: 40px auto;
    width: 80%;
    background: rgba(0, 255, 0, 0.05);
    border: 1px solid #00ff00;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 0 10px #00ff00;
}

.about h2, .mini-services h2, .why-us h2 {
    text-align: center;
    color: #00ff00;
    margin-bottom: 15px;
    font-size: 26px;
    text-transform: uppercase;
}

.about p {
    text-align: center;
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.6;
}

.features, .service-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.feature-box, .service-card {
    background: rgba(0, 255, 0, 0.15);
    border: 1px solid #00ff00;
    padding: 15px;
    text-align: center;
    border-radius: 8px;
    font-weight: bold;
    font-size: 18px;
}

.why-us ul {
    margin-top: 15px;
    line-height: 1.8;
    font-size: 18px;
    list-style: none;
}

.why-us li::before {
    content: ">> ";
    color: #00ff00;
}
.pricing-box {
    width: 450px;
    margin: 40px auto;
    padding: 25px;
    background: rgba(0, 0, 0, 0.35);
    border: 2px solid #00ff88;
    border-radius: 10px;
    box-shadow: 0 0 25px #00ff88;
    text-align: center;
}

.pricing-box h2 {
    margin-bottom: 20px;
    color: #00ff88;
    font-size: 28px;
    font-weight: bold;
}

.price-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 15px;
    margin: 10px 0;
    background: rgba(0,255,100,0.05);
    border: 1px solid #00ff88;
    border-radius: 8px;
    font-size: 20px;
    color: #fff;
    gap: 50px;
}
.price-row span:last-child {
    font-weight: bold;
    color: #00ff88;
}
/* Fix Centering */
.pricing-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
}
footer {
    width: 100%;
    text-align: center;
    padding: 20px 0;
    margin-top: 120px;
    color: #00ff88;
    font-size: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.pricing-container {
    width: fit-content;
    margin: 0 auto;
    margin-top: 40px;
}
/* ---- PRICING PAGE FIX ---- */

.pricing-container {
    width: 450px;
    margin: 0 auto;
    margin-top: 40px;
    text-align: center;
}

.price-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 15px;
    margin: 10px 0;
    background: rgba(0,255,100,0.08);
    border: 1px solid #00ff88;
    border-radius: 8px;
    font-size: 18px;
    color: #fff;
}

.pricing-footer {
    margin-top: 120px;
    text-align: center;
    width: 100%;
    color: #00ff88;
    font-size: 14px;
}

