:root {
    /* باليت النقاء الكريستالي */
    --main-blue: #0077b6;       /* أزرق ملكي عميق للنصوص */
    --sky-blue: #00b4d8;        /* أزرق سماوي منعش للأزرار */
    --ice-blue: #caf0f8;        /* أزرق جليدي فاتح جداً */
    --pure-white: #ffffff;      /* أبيض نقي */
    --text-dark: #023e8a;       /* أزرق داكن جداً لضمان وضوح الكلام */
    --glass-bg: rgba(255, 255, 255, 0.95); /* زجاجي أبيض نقي */
    --glass-border: rgba(0, 180, 216, 0.2); /* حدود زرقاء شفافة */
    --transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

body {
    background-color: var(--pure-white);
    color: var(--text-dark); 
    font-family: 'Cairo', sans-serif;
    overflow-x: hidden;
}

/* شاشة التحميل الكريستالية */
#master-loader {
    position: fixed;
    inset: 0;
    background: var(--pure-white);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.8s ease;
}

.loader-logo {
    font-family: 'Amiri', serif;
    font-size: 3.5rem;
    color: var(--main-blue);
    text-shadow: 0 0 15px rgba(0, 180, 216, 0.2);
    animation: pulseWater 2s infinite;
}

@keyframes pulseWater {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.8; }
}

.progress-bar {
    width: 200px;
    height: 3px;
    background: var(--ice-blue);
    margin-top: 20px;
    border-radius: 10px;
    overflow: hidden;
}

.progress-fill {
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, var(--sky-blue), var(--main-blue));
    animation: loading 2s forwards;
}

@keyframes loading {
    to { width: 100%; }
}

/* الخلفية المتحركة (بديلة الصورة) - أنيميشن الفقاعات والماء */
.main-visual-bg {
    position: fixed;
    inset: 0;
    background: linear-gradient(180deg, #ffffff 0%, #eefcff 100%);
    z-index: -2;
    overflow: hidden;
}

.main-visual-bg::before, .main-visual-bg::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 45%;
    background: rgba(0, 180, 216, 0.05);
    animation: rotateWave 15s infinite linear;
}

.main-visual-bg::before {
    top: -20%;
    left: -10%;
    background: rgba(0, 180, 216, 0.08);
}

.main-visual-bg::after {
    bottom: -20%;
    right: -10%;
    animation-duration: 20s;
    background: rgba(173, 232, 244, 0.1);
}

@keyframes rotateWave {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* الناف بار الأبيض الكريستالي */
.glass-navbar {
    position: fixed;
    top: 25px;
    left: 50%;
    transform: translateX(-50%);
    width: 92%;
    max-width: 1400px;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 12px 30px;
    z-index: 1000;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(0, 119, 182, 0.08);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* شعار الشركة وستايل النصوص */
.logo-section { 
    display: flex; 
    align-items: center; 
    gap: 15px; 
}

.main-logo { 
    height: 55px; 
    filter: drop-shadow(0 0 8px rgba(0, 180, 216, 0.3)); 
    transition: 0.3s;
}

.main-logo:hover {
    transform: rotate(-5deg) scale(1.05);
}

.brand-title { 
    font-family: 'Amiri', serif; 
    font-size: 1.4rem; 
    color: var(--main-blue); 
    display: block; 
    line-height: 1;
    font-weight: 700;
}

.brand-sub { 
    font-size: 0.75rem; 
    color: var(--sky-blue); 
    font-weight: 600;
}

/* القائمة والروابط */
.nav-menu { 
    display: flex; 
    list-style: none; 
    gap: 8px; 
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-family: 'Amiri', serif;
    font-size: 1.2rem;
    padding: 10px 18px;
    border-radius: 12px;
    transition: var(--transition);
    font-weight: 600;
}

.nav-link:hover {
    color: var(--sky-blue);
    background: var(--ice-blue);
}

.nav-link.active-section {
    background: var(--main-blue);
    color: var(--pure-white) !important;
    font-weight: bold;
    box-shadow: 0 8px 20px rgba(0, 119, 182, 0.3);
    border: 1px solid var(--sky-blue);
    transform: translateY(-3px);
}

.cta-call {
background: linear-gradient(45deg, var(--main-blue), var(--sky-blue));
padding: 10px 20px;
border-radius: 50px;
text-decoration: none;
color: #ffffff;
font-weight: bold;
display: flex;
align-items: center;
gap: 8px;
box-shadow: 0 4px 15px rgba(0, 119, 182, 0.2);
transition: var(--transition);
}
.hero-master {
height: 100vh;
display: flex;
align-items: center;
justify-content: center;
padding-top: 100px;
}
.hero-glass-box {
background: rgba(255, 255, 255, 0.9);
backdrop-filter: blur(15px);
padding: 50px;
border-radius: 40px;
border: 1px solid var(--glass-border);
text-align: center;
max-width: 900px;
animation: zoomIn 1.2s ease-out;
box-shadow: 0 20px 40px rgba(0, 119, 182, 0.05);
}
@keyframes zoomIn {
from { opacity: 0; transform: scale(0.9); }
to { opacity: 1; transform: scale(1); }
}
.main-hero-title { font-family: 'Amiri', serif; font-size: clamp(2.5rem, 8vw, 5rem); margin-bottom: 25px; line-height: 1.2; color: var(--text-dark); }
.main-hero-title .highlight { color: var(--sky-blue); text-shadow: 0 0 30px rgba(0, 180, 216, 0.3); }
.hero-paragraph { font-size: 1.2rem; line-height: 1.8; color: #444; margin-bottom: 35px; }
.hero-btns-group { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; }
.premium-btn { padding: 15px 35px; border-radius: 50px; text-decoration: none; font-weight: bold; transition: var(--transition); }
.btn-fill { background: var(--main-blue); color: #ffffff; box-shadow: 0 5px 15px rgba(0, 119, 182, 0.2); }
.btn-border { border: 2px solid var(--sky-blue); color: var(--sky-blue); background: transparent; }
.premium-btn:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0, 119, 182, 0.15); }
.dynamic-scroll {
position: fixed;
bottom: 35px;
right: 35px;
z-index: 1001;
cursor: pointer;
}
.scroll-circle {
width: 60px;
height: 60px;
background: var(--glass-bg);
backdrop-filter: blur(15px);
border: 1px solid var(--glass-border);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
transition: var(--transition);
box-shadow: 0 5px 15px rgba(0, 119, 182, 0.1);
}
.scroll-circle i { font-size: 1.2rem; color: var(--main-blue); transition: var(--transition); }
.dynamic-scroll.up-mode .scroll-circle { background: var(--main-blue); }
.dynamic-scroll.up-mode .scroll-circle i { color: var(--pure-white); transform: rotate(180deg); }
.mobile-toggle { display: none; cursor: pointer; flex-direction: column; gap: 6px; }
.mobile-toggle .bar { width: 30px; height: 3px; background: var(--main-blue); border-radius: 5px; }
.mobile-nav-overlay {
position: fixed; inset: 0; background: rgba(202, 240, 248, 0.98);
z-index: 2000; display: none; justify-content: center; align-items: center;
backdrop-filter: blur(10px);
}
.mobile-card {
    background: var(--glass-bg);
    width: 85%;
    max-width: 400px;
    padding: 40px;
    border-radius: 30px;
    border: 1px solid var(--sky-blue);
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 119, 182, 0.1);
}
.mobile-links-list {
    list-style: none;
}
.mobile-links-list li {
    margin: 20px 0;
}
.mobile-links-list a {
    text-decoration: none;
    color: var(--text-dark);
    font-size: 1.8rem;
    font-family: 'Amiri', serif;
    font-weight: 700;
}
.close-menu {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 2.5rem;
    color: var(--main-blue);
    cursor: pointer;
}
@media (max-width: 1024px) {
    .desktop-only {
        display: none;
    }
    .mobile-toggle {
        display: flex;
    }
    .glass-navbar {
        width: 95%;
        padding: 10px 20px;
    }
}
.content-section {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.content-section h2 {
    font-family: 'Amiri', serif;
    font-size: 3rem;
    color: var(--main-blue);
    text-shadow: 0 0 10px rgba(0, 180, 216, 0.1);
}
.iphone-scroll-system {
    position: fixed;
    bottom: 35px;
    right: 35px;
    z-index: 2500;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.65, 0, 0.35, 1);
}
.iphone-pill {
    width: 55px;
    height: 55px;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 119, 182, 0.15);
    transition: all 0.5s ease;
}
.iphone-pill i {
    color: var(--main-blue);
    font-size: 1.4rem;
    transition: transform 0.6s cubic-bezier(0.65, 0, 0.35, 1);
}
.iphone-scroll-system.up-mode .iphone-pill {
    background: var(--main-blue);
    border-color: #ffffff;
}
.iphone-scroll-system.up-mode .iphone-pill i {
    color: #ffffff;
    transform: rotate(180deg);
}
.iphone-scroll-system:not(.up-mode) .iphone-pill {
    animation: iphone-bounce 2s infinite;
}
@keyframes iphone-bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(10px);
    }
}
.iphone-scroll-system:hover {
    transform: scale(1.1);
}
.experience-section {
    position: relative;
    padding: 120px 5%;
    background: linear-gradient(135deg, #ffffff 0%, #eefcff 100%);
    overflow: hidden;
}
.exp-background .bubble {
    position: absolute;
    border-radius: 50%;
    background: var(--sky-blue);
    opacity: 0.1;
    filter: blur(60px);
    z-index: 1;
}
.b1 { width: 400px; height: 400px; top: -100px; left: -100px; animation: orbit 20s infinite linear; }
.b2 { width: 300px; height: 300px; bottom: -50px; right: -50px; animation: orbit 15s infinite linear reverse; }
@keyframes orbit {
    from { transform: rotate(0deg) translateX(50px) rotate(0deg); }
    to { transform: rotate(360deg) translateX(50px) rotate(-360deg); }
}
.exp-container {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}
.exp-subtitle {
    font-family: 'Amiri', serif;
    color: var(--sky-blue);
    font-size: 1.2rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 15px;
}
.exp-title {
    font-family: 'Amiri', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 25px;
}
.exp-title span {
    color: var(--main-blue);
    position: relative;
}
.exp-text {
    font-size: 1.15rem;
    color: #333;
    line-height: 2;
    margin-bottom: 40px;
    text-align: justify;
}
.exp-stats {
    display: flex;
    gap: 30px;
}
.stat-card {
    background: #ffffff;
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 119, 182, 0.1);
    border-bottom: 4px solid var(--sky-blue);
    transition: 0.4s;
    flex: 1;
    text-align: center;
}
.stat-card:hover { transform: translateY(-10px); }
.stat-num {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text-dark);
}
.plus { color: var(--main-blue); font-size: 1.5rem; font-weight: bold; }
.stat-card p { font-size: 0.9rem; color: #555; margin-top: 5px; font-weight: bold; }
.exp-visual { position: relative; }
.main-image-wrapper { position: relative; width: 100%; height: 500px; }
.image-mask {
    width: 100%;
    height: 100%;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    overflow: hidden;
    animation: morphing 10s infinite alternate;
    box-shadow: 0 25px 50px rgba(0, 119, 182, 0.1);
}
@keyframes morphing {
    0% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
    100% { border-radius: 50% 50% 20% 80% / 25% 80% 20% 75%; }
}
.image-mask img { width: 100%; height: 100%; object-fit: cover; }
.experience-badge {
    position: absolute;
    top: -20px;
    right: -20px;
    background: var(--main-blue);
    color: #ffffff;
    padding: 30px;
    border-radius: 50%;
    text-align: center;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0, 119, 182, 0.2);
}

.badge-year { font-size: 2.5rem; font-family: 'Amiri'; color: var(--pure-white); }
.badge-text { font-size: 0.7rem; text-transform: uppercase; }
.floating-glass-card {
    position: absolute;
    bottom: 30px;
    left: -40px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    border: 1px solid white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
.floating-glass-card i { color: gold; font-size: 1.5rem; }
@media (max-width: 968px) {
    .exp-container { grid-template-columns: 1fr; gap: 50px; }
    .exp-visual { order: -1; }
    .exp-stats { flex-wrap: wrap; }
}

.services-dark-section {
    padding: 100px 5%;
    background: radial-gradient(circle at top right, #023e8a, #001233);
    position: relative;
    overflow: hidden;
}
.services-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 5;
}
.services-header {
    text-align: center;
    margin-bottom: 70px;
}
.services-title {
    font-family: 'Amiri', serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    color: #ffffff;
    margin-bottom: 15px;
}
.services-title span {
    color: var(--sky-blue);
    text-shadow: 0 0 20px rgba(0, 180, 216, 0.4);
}
.title-line {
    width: 80px;
    height: 4px;
    background: var(--sky-blue);
    margin: 0 auto 20px;
    border-radius: 2px;
}
.services-subtitle {
    font-size: 1.2rem;
    color: #d1d1d1;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    perspective: 1000px;
}
.service-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(0, 180, 216, 0.15);
    border-radius: 30px;
    padding: 40px;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 180, 216, 0.05) 0%, transparent 70%);
    pointer-events: none;
}
.service-card:hover {
    transform: translateY(-15px) rotateX(5deg);
    border-color: var(--sky-blue);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4), 0 0 20px rgba(0, 180, 216, 0.15);
}
.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--main-blue), var(--sky-blue));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    margin-bottom: 25px;
    transform: rotate(-10deg);
    transition: 0.5s;
}
.service-card:hover .service-icon {
    transform: rotate(0deg) scale(1.1);
    box-shadow: 0 0 25px var(--sky-blue);
}
.service-card h3 {
    font-family: 'Amiri', serif;
    font-size: 1.8rem;
    color: var(--sky-blue);
    margin-bottom: 20px;
}
.service-card p {
    color: #ccc;
    line-height: 1.7;
    margin-bottom: 25px;
    font-size: 1rem;
}

.service-features {
    list-style: none;
    padding: 0;
}
.service-features li {
    color: #eee;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
}
.service-features li i {
    color: var(--sky-blue);
    font-size: 0.8rem;
}
.services-footer {
    text-align: center;
    margin-top: 80px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 30px;
    border: 1px dashed rgba(0, 180, 216, 0.3);
}
.services-footer p {
    font-size: 1.4rem;
    font-family: 'Amiri', serif;
    margin-bottom: 30px;
    color: white;
}
.call-now-glow {
    display: inline-block;
    padding: 20px 50px;
    background: var(--main-blue);
    color: #ffffff;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.2rem;
    border-radius: 100px;
    box-shadow: 0 0 30px rgba(0, 119, 182, 0.4);
    transition: 0.4s;
    animation: pulseGlow 2s infinite;
}
@keyframes pulseGlow {
    0% { box-shadow: 0 0 0 0 rgba(0, 119, 182, 0.4); }
    70% { box-shadow: 0 0 0 20px rgba(0, 119, 182, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 119, 182, 0); }
}
.call-now-glow:hover {
    transform: scale(1.05);
    background: #ffffff;
    color: var(--main-blue);
}
@media (max-width: 768px) {
    .services-grid { grid-template-columns: 1fr; }
    .services-title { font-size: 3rem; }
}

.blog-light-section {
    position: relative;
    padding: 150px 5% 100px;
    background: #ffffff;
    overflow: hidden;
}
.blog-wave-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    line-height: 0;
}
.blog-wave-top svg {
    display: block;
    width: calc(100% + 1.3px);
    height: 120px;
}
.blog-wave-top .shape-fill {
    fill: #001233;
}
.blog-container {
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
}
.blog-intro {
    text-align: center;
    margin-bottom: 70px;
}
.blog-tag {
    background: rgba(0, 180, 216, 0.1);
    color: var(--main-blue);
    padding: 8px 25px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 0.9rem;
    text-transform: uppercase;
}
.blog-main-title {
    font-family: 'Amiri', serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    color: var(--text-dark);
    margin: 20px 0;
}
.blog-main-title span { color: var(--sky-blue); }
.blog-description {
    color: #444;
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
}
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}
.blog-card {
    background: #ffffff;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 45px rgba(0, 119, 182, 0.08);
    transition: 0.5s;
    border: 1px solid var(--ice-blue);
}
.blog-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(0, 180, 216, 0.15);
}
.blog-img-box {
    position: relative;
    height: 250px;
    overflow: hidden;
}
.blog-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.8s;
}
.blog-card:hover .blog-img-box img {
    transform: scale(1.1) rotate(2deg);
}
.blog-date {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(5px);
    padding: 8px 15px;
    border-radius: 10px;
    font-size: 0.85rem;
    color: var(--text-dark);
    font-weight: bold;
}
.blog-info {
    padding: 30px;
}
.blog-info h3 {
    font-family: 'Amiri', serif;
    font-size: 1.6rem;
    color: var(--text-dark);
    margin-bottom: 15px;
    line-height: 1.4;
    transition: 0.3s;
}
.blog-card:hover .blog-info h3 {
    color: var(--main-blue);
}

.blog-info p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 0.95rem;
}
.read-more-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
}
.read-more-link i {
    transition: 0.3s;
}
.read-more-link:hover {
    color: var(--main-blue);
}
.read-more-link:hover i {
    transform: translateX(-10px);
}
.blog-cta {
    text-align: center;
    margin-top: 60px;
}
.liquid-btn {
    position: relative;
    padding: 20px 60px;
    display: inline-block;
    background: var(--main-blue);
    color: #ffffff;
    font-size: 1.2rem;
    font-family: 'Amiri', serif;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    overflow: hidden;
    transition: 0.5s;
}
.liquid-btn span {
position: relative;
z-index: 1;
}
.liquid-btn .liquid {
position: absolute;
top: -80px;
left: 0;
width: 100%;
height: 200px;
background: var(--sky-blue);
box-shadow: inset 0 0 50px rgba(0,0,0,0.2);
transition: 0.5s;
border-radius: 40%;
animation: liquid_anim 10s infinite linear;
}
.liquid-btn:hover .liquid {
top: -120px;
}
@keyframes liquid_anim {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}
@media (max-width: 768px) {
.blog-grid { grid-template-columns: 1fr; }
}
.post-hero {
position: relative;
height: 70vh;
display: flex;
align-items: flex-end;
justify-content: center;
overflow: hidden;
color: #ffffff;
}
.post-hero-bg {
position: absolute;
inset: 0;
background-size: cover;
background-position: center;
filter: brightness(0.6);
z-index: -1;
transform: scale(1.1);
}
.post-hero-content {
max-width: 900px;
padding: 60px 20px;
text-align: center;
z-index: 10;
}

.category-tag {
background: var(--main-blue);
padding: 5px 20px;
border-radius: 50px;
font-size: 0.9rem;
margin-left: 15px;
color: #ffffff;
}
.post-main-title {
font-family: 'Amiri', serif;
font-size: clamp(2rem, 5vw, 3.5rem);
margin-top: 20px;
line-height: 1.3;
}
.post-container {
    max-width: 1200px;
    margin: -50px auto 100px;
    padding: 0 5%;
    position: relative;
    z-index: 20;
}
.post-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
}
.post-body {
    background: #ffffff;
    padding: 60px;
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(0, 119, 182, 0.05);
    color: #333333;
    line-height: 2;
    font-size: 1.15rem;
}
.drop-cap::first-letter {
    font-family: 'Amiri', serif;
    font-size: 4rem;
    color: var(--main-blue);
    float: right;
    margin-left: 15px;
    line-height: 1;
}
.post-body h3 {
    font-family: 'Amiri', serif;
    font-size: 2rem;
    color: var(--text-dark);
    margin: 40px 0 20px;
}
.post-quote {
    border-right: 5px solid var(--sky-blue);
    padding: 20px 30px;
    background: rgba(0, 180, 216, 0.05);
    font-style: italic;
    font-family: 'Amiri', serif;
    font-size: 1.5rem;
    margin: 40px 0;
    color: var(--text-dark);
}
.inner-post-img {
    width: 100%;
    border-radius: 20px;
    margin: 40px 0;
}
.sidebar-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 25px;
    margin-bottom: 30px;
    box-shadow: 0 15px 35px rgba(0, 119, 182, 0.05);
}
.order-card {
    background: var(--main-blue);
    color: #ffffff;
    text-align: center;
}
.order-card h4 { color: #ffffff; font-family: 'Amiri'; font-size: 1.5rem; }
.sidebar-btn {
    display: inline-block;
    margin-top: 20px;
    background: #ffffff;
    color: var(--main-blue);
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
}
.mini-post {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    align-items: center;
}
.mini-post img { width: 60px; height: 60px; border-radius: 10px; object-fit: cover; }
.mini-post a { text-decoration: none; color: var(--text-dark); font-weight: bold; font-size: 0.9rem; }
.post-footer {
    text-align: center;
    padding: 40px;
    color: #666;
    border-top: 1px solid var(--ice-blue);
}
@media (max-width: 968px) {
    .post-layout { grid-template-columns: 1fr; }
    .post-hero { height: 50vh; }
    .post-body { padding: 30px; }
}
.excellence-section {
    position: relative;
    padding: 120px 5%;
    background: var(--pure-white);
    overflow: hidden;
}

.excellence-shapes .shape {
    position: absolute;
    filter: blur(100px);
    z-index: 1;
    opacity: 0.1;
}
.s1 { width: 500px; height: 500px; background: var(--sky-blue); top: -100px; left: -100px; }
.s2 { width: 400px; height: 400px; background: var(--main-blue); bottom: -100px; right: -100px; }

.excellence-container {
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
    z-index: 5;
}
.excellence-header {
    text-align: center;
    margin-bottom: 80px;
}
.mini-title {
    font-family: 'Cairo', sans-serif;
    color: var(--sky-blue);
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.excellence-header .main-title {
    font-family: 'Amiri', serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    color: var(--text-dark);
}
.excellence-header .main-title span { color: var(--main-blue); }
.excellence-header .desc {
    color: #444;
    font-size: 1.2rem;
    max-width: 750px;
    margin: 20px auto 0;
    line-height: 1.8;
}
.excellence-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}
.excellence-card {
    position: relative;
    background: #ffffff;
    padding: 50px 40px;
    border-radius: 40px;
    border: 1px solid var(--ice-blue);
    box-shadow: 0 10px 30px rgba(0, 119, 182, 0.05);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    text-align: center;
}

.card-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, var(--sky-blue) 0%, transparent 70%);
    opacity: 0;
    transition: 0.5s;
    z-index: 1;
}
.excellence-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 119, 182, 0.1);
    border-color: var(--sky-blue);
}
.excellence-card:hover .card-glow {
    opacity: 0.1;
}
.icon-wrap {
    width: 90px;
    height: 90px;
    background: var(--ice-blue);
    border-radius: 50% 20% 50% 20%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--main-blue);
    margin: 0 auto 30px;
    transition: 0.6s;
    position: relative;
    z-index: 2;
}
.excellence-card:hover .icon-wrap {
    border-radius: 50%;
    background: var(--main-blue);
    color: #ffffff;
    transform: rotate(360deg);
}
.excellence-card h3 {
    font-family: 'Amiri', serif;
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}
.excellence-card p {
    color: #444;
    line-height: 1.7;
    font-size: 1rem;
    position: relative;
    z-index: 2;
}
@media (max-width: 768px) {
    .excellence-grid { grid-template-columns: 1fr; }
}
.contact-dark-section {
    padding: 120px 5%;
    background: linear-gradient(180deg, #023e8a 0%, #001233 100%);
    position: relative;
    overflow: hidden;
}
.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}
.contact-header {
    text-align: center;
    margin-bottom: 70px;
}
.contact-mini { color: var(--sky-blue); font-weight: bold; letter-spacing: 2px; }
.contact-title {
    font-family: 'Amiri', serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    color: #ffffff;
    margin: 15px 0;
}
.contact-title span { color: var(--sky-blue); text-shadow: 0 0 20px rgba(0, 180, 216, 0.4); }
.contact-desc { color: #d1d1d1; font-size: 1.1rem; max-width: 700px; margin: 0 auto; line-height: 1.7; }
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 50px;
}

.contact-card {
    text-decoration: none;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(0, 180, 216, 0.2);
    padding: 50px 30px;
    border-radius: 40px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}
.contact-card:hover {
    transform: translateY(-10px);
    border-color: var(--sky-blue);
    background: rgba(0, 180, 216, 0.05);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}
.card-icon {
    width: 80px;
    height: 80px;
    background: var(--glass-bg);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 25px;
    transition: 0.5s;
    color: var(--sky-blue);
}
.contact-card:hover .card-icon {
    background: var(--sky-blue);
    color: var(--pure-white);
    transform: rotateY(360deg);
}
.contact-card h3 { font-family: 'Amiri', serif; font-size: 2rem; color: #ffffff; margin-bottom: 10px; }
.contact-card p { color: #ccc; margin-bottom: 20px; }
.phone-num, .whatsapp-num {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--sky-blue);
    margin-bottom: 20px;
}
.hover-text {
    font-size: 0.9rem;
    color: #ffffff;
    background: var(--main-blue);
    padding: 5px 20px;
    border-radius: 50px;
    display: inline-block;
    opacity: 0;
    transform: translateY(20px);
    transition: 0.4s;
}
.contact-card:hover .hover-text { opacity: 1; transform: translateY(0); }
.map-section-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 40px;
    padding: 30px;
    border: 1px solid rgba(0, 180, 216, 0.2);
}
.map-info {
    padding: 20px 0 30px;
    text-align: center;
}

.map-info h3 { font-family: 'Amiri', serif; font-size: 2rem; color: var(--main-blue); margin-bottom: 10px; }
.map-info h3 i { margin-left: 10px; animation: bounce 2s infinite; }
.map-frame {
    border-radius: 30px;
    overflow: hidden;
    border: 2px solid rgba(0, 180, 216, 0.2);
    filter: grayscale(0.5) contrast(1.2) invert(0.9);
    transition: 0.5s;
}
.map-frame:hover { filter: grayscale(0) invert(0); }
.final-footer {
    padding: 40px;
    text-align: center;
    background: #001233;
    color: #888;
    border-top: 1px solid rgba(0, 180, 216, 0.1);
}
@keyframes bounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@media (max-width: 768px) {
    .contact-grid { grid-template-columns: 1fr; }
    .contact-title { font-size: 3rem; }
}
.main-footer {
    background: #001233;
    padding: 80px 5% 20px;
    border-top: 1px solid rgba(0, 180, 216, 0.1);
    color: #ffffff;
}
.footer-container {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    margin-bottom: 50px;
}
.footer-col h3.footer-logo {
    font-family: 'Amiri', serif;
    font-size: 2.2rem;
    color: var(--sky-blue);
    margin-bottom: 20px;
}
.footer-desc {
    color: #ccc;
    line-height: 1.8;
    font-size: 0.95rem;
    margin-bottom: 25px;
}
.social-icons {
    display: flex;
    gap: 15px;
}
.social-icons a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--sky-blue);
    text-decoration: none;
    transition: 0.3s;
}
.social-icons a:hover {
    background: var(--main-blue);
    color: #ffffff;
    transform: translateY(-5px);
}
.footer-col h4 {
    font-family: 'Amiri', serif;
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}
.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 40px;
    height: 2px;
    background: var(--sky-blue);
}
.footer-links {
    list-style: none;
}
.footer-links li {
    margin-bottom: 12px;
}
.footer-links a {
    text-decoration: none;
    color: #ccc;
    transition: 0.3s;
    font-size: 0.95rem;
}
.footer-links a:hover {
    color: var(--sky-blue);
    padding-right: 10px;
}
.contact-info {
    list-style: none;
}
.contact-info li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #ccc;
    margin-bottom: 15px;
    font-size: 0.95rem;
}
.contact-info li i {
    color: var(--sky-blue);
}
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 25px;
    text-align: center;
}
.bottom-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 1300px;
    margin: 0 auto;
}
.copyright { color: #888; font-size: 0.9rem; }
.developer { color: #999; font-size: 0.95rem; }
.developer a {
    color: var(--sky-blue);
    text-decoration: none;
    font-weight: bold;
    border-bottom: 1px dashed var(--sky-blue);
    transition: 0.3s;
}
.developer a:hover { color: #ffffff; border-color: #ffffff; }
.floating-actions {
    position: fixed;
    bottom: 110px;
    right: 35px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 2400;
}
.float-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 1.5rem;
    box-shadow: 0 10px 25px rgba(0, 119, 182, 0.2);
    transition: 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: float-pulse 2s infinite;
}
.float-call { background: var(--main-blue); }
.float-whatsapp { background: #25d366; animation-delay: 0.5s; }
.float-btn:hover {
    transform: scale(1.1) rotate(15deg);
}
@keyframes float-pulse {
    0% { transform: scale(1); box-shadow: 0 10px 25px rgba(0, 119, 182, 0.2); }
    50% { transform: scale(1.05); box-shadow: 0 15px 35px rgba(0, 180, 216, 0.3); }
    100% { transform: scale(1); box-shadow: 0 10px 25px rgba(0, 119, 182, 0.2); }
}
@media (max-width: 992px) {
    .footer-container { grid-template-columns: 1fr 1fr; }
    .bottom-container { justify-content: center; text-align: center; }
}
@media (max-width: 600px) {
    .footer-container { grid-template-columns: 1fr; }
    .floating-actions { right: 20px; bottom: 100px; }
}
@media (max-width: 768px) {
    .hero-master {
        padding-top: 200px !important;
        padding-left: 20px !important;
        padding-right: 20px !important;
        height: auto;
        min-height: 100vh;
        display: flex;
        align-items: flex-start;
        justify-content: center;
    }
    .hero-glass-box {
        width: 100%;
        max-width: 100%;
        padding: 40px 25px !important;
        margin: 0 auto;
        border-radius: 35px;
        box-sizing: border-box;
    }
    .main-hero-title {
        font-size: 1.7rem !important;
        line-height: 1.4;
        margin-bottom: 15px;
    }
    .hero-paragraph {
        font-size: 0.9rem !important;
        line-height: 1.8;
        color: #444;
        margin-bottom: 30px;
    }
    .hero-btns-group {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }
    .premium-btn {
        width: 100%;
        padding: 15px !important;
        font-size: 1rem !important;
        text-align: center;
    }
}
@media (max-width: 768px) {
    .brand-title {
        font-size: 1rem !important;
        color: var(--main-blue) !important;
    }
    .brand-sub { 
        font-size: 0.6rem !important; 
        color: var(--sky-blue) !important;
    }
    .main-logo { 
        height: 40px !important; 
    }
    .floating-actions { 
        right: auto !important; 
        left: 20px !important; 
        bottom: 35px !important; 
    }
    .dynamic-scroll, .iphone-scroll-system, .scroll-master { 
        right: 20px !important; 
        left: auto !important; 
    }
    .post-hero { 
        height: auto !important; 
        min-height: 45vh !important; 
        padding: 160px 15px 60px !important; 
        display: flex !important; 
        align-items: center !important; 
        justify-content: center !important; 
        color: #ffffff !important;
    }
    .post-hero-content { 
        padding: 0 !important; 
        width: 100% !important; 
        text-align: center !important;
    }
    .post-main-title { 
        font-size: 1.4rem !important; 
        line-height: 1.6 !important; 
        margin-top: 15px !important; 
        padding: 0 10px !important;
        color: #ffffff !important;
    }
    .post-meta { 
        display: flex !important;
        flex-direction: column !important; 
        align-items: center !important;
        gap: 8px !important; 
    }
    .category-tag { 
        margin-left: 0 !important; 
        font-size: 0.8rem !important;
        padding: 4px 15px !important;
        background: var(--main-blue) !important;
        color: #ffffff !important;
    }
    .post-container { 
        margin-top: -40px !important; 
        padding: 0 15px !important;
    }
    .post-body { 
        padding: 35px 20px !important; 
        font-size: 1rem !important; 
        line-height: 1.8 !important;
        border-radius: 25px !important; 
        background: #ffffff !important;
        color: var(--text-dark) !important;
        box-shadow: 0 15px 30px rgba(0, 119, 182, 0.05) !important;
    }
    .post-body h3 {
        font-size: 1.5rem !important;
        margin: 30px 0 15px !important;
        color: var(--main-blue) !important;
    }
    .post-quote {
        font-size: 1.2rem !important;
        padding: 15px 20px !important;
        margin: 25px 0 !important;
        background: rgba(0, 180, 216, 0.05) !important;
        border-right: 4px solid var(--sky-blue) !important;
        color: var(--text-dark) !important;
    }
}
.glass-navbar {
    position: fixed;
    top: 25px;
    left: 50%;
    transform: translateX(-50%);
    width: 92%;
    max-width: 1400px;
    background: #ffffff !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 12px 30px;
    z-index: 1000;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(0, 119, 182, 0.05); 
}
.map-frame-container {
    position: relative;
    width: 100%;
}
.map-frame {
    border-radius: 30px;
    overflow: hidden;
    border: 2px solid rgba(0, 180, 216, 0.2);
    filter: grayscale(0.2); 
    transition: 0.5s;
}
.map-frame:hover {
    filter: grayscale(0);
}
.quick-directions-btn {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: var(--main-blue);
    color: white !important;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    z-index: 10;
    transition: 0.3s;
    font-size: 0.9rem;
}
.quick-directions-btn:hover {
    transform: scale(1.05);
    background: var(--sky-blue);
}
@media (max-width: 768px) {
    .quick-directions-btn {
        bottom: 10px;
        left: 10px;
        padding: 10px 15px;
        font-size: 0.8rem;
    } 
}