:root {
    --primary-color: #1a3a5f; 
    --accent-color: #d4af37;  
    --text-color: #333;
    --white: #ffffff;
    --light-bg: #f8f9fa;
    --transition: all 0.4s ease-in-out;
}

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

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

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}
.main-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    transition: var(--transition);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.icon-logo {
    font-size: 2rem;
    color: var(--primary-color);
}

.company-name {
    font-family: 'Amiri', serif;
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--primary-color);
}

.desktop-nav ul {
    display: flex;
    list-style: none;
    gap: 20px;
}

.desktop-nav ul li a {
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 600;
    transition: var(--transition);
}

.desktop-nav ul li a:hover, .desktop-nav ul li a.active {
    color: var(--accent-color);
}

.call-btn {
    background: var(--accent-color);
    color: #fff;
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 10px rgba(212, 175, 55, 0.3);
}
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: url('images/bg.png') center/cover no-repeat;
    filter: brightness(0.4) blur(3px);
    animation: zoomInOut 20s infinite alternate;
    z-index: -1;
}

@keyframes zoomInOut {
    0% { transform: scale(1); }
    100% { transform: scale(1.15); }
}

.hero-content h1 {
    font-family: 'Amiri', serif;
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 30px;
    line-height: 1.8;
}

.hero-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn {
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: var(--transition);
}

.btn-primary {
    background: var(--accent-color);
    color: #fff;
}

.btn-outline {
    border: 2px solid #fff;
    color: #fff;
}

.btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
}

.menu-toggle span {
    width: 30px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

.side-menu {
    position: fixed;
    top: 0; right: -100%;
    width: 300px; height: 100%;
    background: var(--primary-color);
    z-index: 2000;
    padding: 40px;
    transition: 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
}

.side-menu.active { right: 0; }

.close-btn {
    background: none; border: none;
    color: #fff; font-size: 2.5rem;
    cursor: pointer;
}

.mobile-nav ul { list-style: none; margin-top: 50px; }
.mobile-nav ul li { margin-bottom: 25px; }
.mobile-nav ul li a {
    color: #fff; text-decoration: none;
    font-size: 1.3rem; font-weight: bold;
}

.overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.5); visibility: hidden; opacity: 0;
    z-index: 1500; transition: 0.3s;
}

.overlay.active { visibility: visible; opacity: 1; }
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s forwards;
}

.delay-1 { animation-delay: 0.3s; }
.delay-2 { animation-delay: 0.6s; }

@keyframes fadeUp {
    to { opacity: 1; transform: translateY(0); }
}
@media (max-width: 992px) {
    .desktop-nav, .hide-on-mobile {
        display: none;
    }
    .menu-toggle {
        display: flex;
    }
    .hero-content h1 {
        font-size: 2.2rem;
    }
    .hero-btns {
        flex-direction: column;
        align-items: center;
    }
    .btn { width: 100%; max-width: 250px; }
}
.about-section {
    padding: 100px 0;
    background-color: #ffffff;
    overflow: hidden;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.about-images {
    position: relative;
    padding: 20px;
}

.main-img-card {
    position: relative;
    z-index: 2;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 20px 20px 60px rgba(0,0,0,0.1);
}

.main-img-card img {
    width: 100%;
    display: block;
    transition: transform 0.5s ease;
}

.main-img-card:hover img {
    transform: scale(1.05);
}

.experience-badge {
    position: absolute;
    bottom: 30px;
    right: -20px;
    background: var(--primary-color);
    color: var(--white);
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(26, 58, 95, 0.4);
    z-index: 3;
}

.experience-badge .num {
    font-size: 2.5rem;
    font-weight: bold;
    display: block;
    color: var(--accent-color);
}

.accent-box {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 70%;
    height: 90%;
    border: 10px solid var(--light-bg);
    z-index: 1;
    border-radius: 20px;
}
.sub-title {
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    margin-bottom: 10px;
}

.main-title {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    line-height: 1.2;
}

.main-title span {
    color: var(--accent-color);
}

.description {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
}
.feature-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.feature-item i {
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-top: 5px;
}

.feature-item h5 {
    font-size: 1.2rem;
    color: var(--primary-color);
}
.stats-container {
    display: flex;
    gap: 30px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.stat-box .num {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
}

.stat-box p {
    font-size: 0.9rem;
    color: #888;
}
@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .about-images {
        order: 2;
    }
    .main-title {
        font-size: 2rem;
    }
}
.reveal-left { transform: translateX(-50px); opacity: 0; transition: 1s all ease; }
.reveal-right { transform: translateX(50px); opacity: 0; transition: 1s all ease; }
.reveal-left.active, .reveal-right.active { transform: translateX(0); opacity: 1; }
.services-section {
    padding: 100px 0;
    background-color: var(--light-bg);
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-desc {
    font-size: 1.1rem;
    color: #777;
    margin-top: 15px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}
.service-card {
    background: var(--white);
    padding: 40px;
    border-radius: 25px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    border-bottom: 5px solid transparent;
    z-index: 1;
}

.service-card:hover {
    transform: translateY(-15px);
    border-bottom: 5px solid var(--accent-color);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: rgba(26, 58, 95, 0.05);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    border-radius: 15px;
    margin-bottom: 25px;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--primary-color);
    color: var(--white);
    transform: rotateY(360deg);
}

.service-card h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.service-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}
.service-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.service-features li {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-features li::before {
    content: '→';
    color: var(--accent-color);
}
.bg-icon {
    position: absolute;
    bottom: -20px;
    left: -20px;
    font-size: 8rem;
    color: rgba(26, 58, 95, 0.03);
    z-index: -1;
    transition: var(--transition);
}

.service-card:hover .bg-icon {
    color: rgba(212, 175, 55, 0.08);
    transform: scale(1.2);
}
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    .service-card {
        padding: 30px 20px;
    }
}
.reveal-up {
    opacity: 0;
    transform: translateY(50px);
    transition: 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.desktop-nav ul li a, 
.mobile-nav ul li a,
.company-name {
    font-family: 'Amiri', serif !important;
    font-size: 1.2rem;
}
.desktop-nav ul li a.active {
    color: var(--accent-color) !important;
    border-bottom: 2px solid var(--accent-color);
}
.reveal-left { transform: translateX(-50px); opacity: 0; transition: 1s all ease; }
.reveal-right { transform: translateX(50px); opacity: 0; transition: 1s all ease; }
.reveal-up { transform: translateY(50px); opacity: 0; transition: 1s all ease; }

.reveal-left.active, 
.reveal-right.active, 
.reveal-up.active { 
    transform: translate(0); 
    opacity: 1; 
}
.gallery-section {
    padding: 100px 0;
    background: #fff;
}

.filter-controls {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
}

.filter-btn {
    padding: 10px 30px;
    border: 2px solid var(--primary-color);
    background: transparent;
    color: var(--primary-color);
    font-family: 'Amiri', serif;
    font-weight: bold;
    cursor: pointer;
    border-radius: 50px;
    transition: var(--transition);
}

.filter-btn.active, .filter-btn:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: #fff;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 300px;
}
.gallery-item.hide {
    display: none;
}

.gallery-content {
    width: 100%;
    height: 100%;
    position: relative;
    cursor: pointer;
}

.gallery-content img, .gallery-content video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item:hover img, .gallery-item:hover video {
    transform: scale(1.1);
}

.overlay-info {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(26, 58, 95, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 2.5rem;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .overlay-info {
    opacity: 1;
}

.play-badge {
    position: absolute;
    top: 15px; right: 15px;
    background: var(--accent-color);
    color: #fff;
    width: 40px; height: 40px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    z-index: 2;
}
.lightbox {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.95);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 3000;
}

.lightbox.active { display: flex; }

.lightbox-content img, .lightbox-content video {
    max-width: 90%;
    max-height: 80vh;
    border-radius: 10px;
    box-shadow: 0 0 30px rgba(0,0,0,0.5);
}

.close-lightbox {
    position: absolute;
    top: 30px; left: 30px;
    color: #fff; font-size: 3rem;
    cursor: pointer;
}
.floating-container {
    position: fixed;
    bottom: 30px;
    right: 30px; 
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999; 
}
.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.8rem;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.whatsapp-btn {
    background-color: #25d366;
    animation: pulse-whatsapp 2s infinite;
}
.phone-btn {
    background-color: var(--accent-color); 
    animation: pulse-phone 2s infinite;
}
.floating-btn:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.3);
}

.floating-btn .btn-text {
    position: absolute;
    right: 70px;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 5px 15px;
    border-radius: 5px;
    font-size: 0.9rem;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    white-space: nowrap;
    font-family: 'Cairo', sans-serif;
}

.floating-btn:hover .btn-text {
    opacity: 1;
    visibility: visible;
    right: 75px;
}
@keyframes pulse-whatsapp {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

@keyframes pulse-phone {
    0% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(212, 175, 55, 0); }
    100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); }
}
@media (max-width: 768px) {
    .floating-container {
        bottom: 20px;
        right: 20px;
        gap: 10px;
    }
    .floating-btn {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    .btn-text { display: none !important; }
}
.testimonials-section {
    padding: 100px 0;
    background-color: #dbdada;
    background-image: radial-gradient(var(--primary-color) 0.5px, transparent 0.5px); 
    background-size: 30px 30px;
    background-opacity: 0.05;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.testimonial-card {
    background: #fff;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    border: 1px solid #eee;
    transition: var(--transition);
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    border-color: var(--accent-color);
}

.testi-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.user-img {
    width: 55px;
    height: 55px;
    background: var(--primary-color);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: bold;
    font-family: 'Amiri', serif;
}

.user-info h4 {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.stars {
    color: #ffc107;
    font-size: 0.8rem;
}

.quote-icon {
    font-size: 2rem;
    color: rgba(212, 175, 55, 0.2); 
}

.testi-text {
    font-size: 1rem;
    color: #555;
    line-height: 1.8;
    font-style: italic;
}
@media (max-width: 992px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}
.why-us-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #fff 0%, var(--light-bg) 100%);
    position: relative;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}
.why-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 30px;
    position: relative;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(26, 58, 95, 0.05);
    z-index: 1;
    overflow: hidden;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 0;
    background: var(--primary-color);
    transition: all 0.5s ease;
    z-index: -1;
}

.why-card:hover {
    transform: translateY(-15px) scale(1.02);
}

.why-card:hover::before {
    height: 100%;
}

.why-card:hover h3, .why-card:hover p {
    color: #fff;
}
.why-icon-box {
    width: 80px;
    height: 80px;
    background: var(--light-bg);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: var(--accent-color);
    margin-bottom: 25px;
    transition: all 0.4s ease;
    box-shadow: 10px 10px 20px rgba(0,0,0,0.05);
}

.why-card:hover .why-icon-box {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    transform: rotate(15deg);
}

.why-card h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-family: 'Amiri', serif;
}

.why-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.7;
}
.card-step {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 3rem;
    font-weight: 900;
    color: rgba(0,0,0,0.03);
    transition: all 0.4s ease;
}

.why-card:hover .card-step {
    color: rgba(255,255,255,0.1);
    top: 10px;
}

/* التجاوب */
@media (max-width: 768px) {
    .why-card {
        text-align: center;
    }
    .why-icon-box {
        margin: 0 auto 25px;
    }
}
.contact-section {
    position: relative;
    padding: 100px 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.contact-bg-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: url('images/bg.png') center/cover no-repeat; 
    filter: blur(8px) brightness(0.5); 
    z-index: -1;
    transform: scale(1.1); 
}

.contact-container {
    position: relative;
    z-index: 1;
}

.contact-cards-wrapper {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.contact-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 25px 40px;
    border-radius: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.contact-card:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: translateX(-10px);
    border-color: var(--accent-color);
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 20px;
    color: #fff;
}

.card-main-icon {
    font-size: 2rem;
    color: var(--accent-color);
}

.number-details span {
    display: block;
    font-size: 0.9rem;
    color: #ddd;
    margin-bottom: 5px;
}

.number-details h4 {
    font-size: 1.5rem;
    font-family: 'Cairo', sans-serif;
    letter-spacing: 1px;
}
.contact-actions {
    display: flex;
    gap: 15px;
}

.action-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #fff;
    text-decoration: none;
    transition: var(--transition);
}

.action-btn.call {
    background: var(--accent-color);
}

.action-btn.whatsapp {
    background: #25d366;
}

.action-btn:hover {
    transform: scale(1.15) rotate(15deg);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.location-badge {
    background: rgba(212, 175, 55, 0.2);
    color: var(--accent-color);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: bold;
    border: 1px solid var(--accent-color);
}
@media (max-width: 768px) {
    .contact-card {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding: 30px 20px;
    }
    .contact-info {
        flex-direction: column;
        gap: 10px;
    }
    .contact-card:hover {
        transform: translateY(-5px);
    }
}
.main-footer {
    background-color: var(--primary-color);
    color: #fff;
    padding: 80px 0 0;
    font-family: 'Cairo', sans-serif;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    padding-bottom: 50px;
}

.footer-title {
    font-family: 'Amiri', serif;
    font-size: 1.6rem;
    color: var(--accent-color);
    margin-bottom: 25px;
    position: relative;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -8px; right: 0;
    width: 40px; height: 2px;
    background: var(--accent-color);
}

.footer-desc {
    font-size: 0.95rem;
    color: #ccc;
    line-height: 1.8;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #ccc;
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.95rem;
}

.footer-col ul li a:hover {
    color: var(--accent-color);
    padding-right: 10px;
}
.contact-info-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #ccc;
    font-size: 0.95rem;
}

.contact-info-list li i {
    color: var(--accent-color);
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-social a {
    width: 35px;
    height: 35px;
    background: rgba(255,255,255,0.1);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--accent-color);
    transform: translateY(-5px);
}
.footer-bottom {
    background: rgba(0,0,0,0.2);
    padding: 25px 0;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.copy-text {
    font-size: 0.9rem;
    color: #aaa;
    margin-bottom: 5px;
}

.designer-text {
    font-size: 0.85rem;
    color: #888;
}

.gmt-link {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.gmt-link:hover {
    text-decoration: underline;
    color: #fff;
}
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-title::after {
        right: 50%;
        transform: translateX(50%);
    }
    .contact-info-list li {
        justify-content: center;
    }
    .footer-social {
        justify-content: center;
    }
}
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1; 
}

.brand-name {
    font-family: 'Amiri', serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-color);
    letter-spacing: 0.5px;
}
.sub-brand {
    font-family: 'Cairo', sans-serif;
    font-size: 0.8rem; 
    color: var(--accent-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: -2px;
    position: relative;
    padding-right: 2px;
}
.logo:hover .sub-brand {
    color: var(--primary-color);
    transition: 0.3s;
}
.icon-logo {
    font-size: 2.5rem;
    color: var(--primary-color);
}
@media (max-width: 768px) {
    .brand-name { font-size: 1.5rem; }
    .sub-brand { font-size: 0.7rem; }
    .icon-logo { font-size: 2rem; }
}
@media (max-width: 768px) {
    .hero-content p {
        font-size: 0.95rem !important;
        line-height: 1.6;
        margin-bottom: 20px;
        padding: 0 10px; 
    }
    .hero-content h1 {
        font-size: 1.9rem !important;
        margin-bottom: 15px;
    }
}