/* =========================================
   CUSTOM FONT DECLARATION
   ========================================= */
@font-face {
    font-family: 'GE SS Two'; 
    src: url('fonts/GE-SS-Two-Bold.otf'); 
    font-weight: bold;
    font-style: normal;
}
/* Variables */
:root {
    --primary-color: #003366; /* MGM Blue */
    --secondary-color: #FFC107; /* MGM Yellow */
    --text-dark: #333;
    --text-light: #777;
    --bg-light: #f9f9f9;
    --white: #fff;
}
html{
    scroll-behavior: smooth;
}
/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}
.logo a {
    display: flex;
    align-items: center;
    gap: 12px; 
    text-decoration: none;
}

.logo img {
    height: 55px; 
    width: auto;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.brand-text h2 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-color);
    margin: 0;
    text-transform: uppercase;
}

.brand-text span {
    font-size: 0.85rem;
    color: var(--secondary-color); 
    font-weight: 600;
    letter-spacing: 1px; 
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    align-items: center;
}

.client-item {
    background: #fff;
    border: 1px solid #eee;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.client-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain; 
    /* filter: grayscale(100%);  */
    opacity: 0.7;
    transition: all 0.3s ease;
}

.client-item:hover {
    border-color: var(--secondary-color);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.client-item:hover img {
    filter: grayscale(0%); 
    opacity: 1;
    transform: scale(1.1); 
}
html[dir="rtl"] body {
    font-family: 'Cairo', sans-serif; 
    text-align: right;
}

a { text-decoration: none; }
ul { list-style: none; }

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding { padding: 80px 0; }
.bg-light { background-color: var(--bg-light); }
.bg-dark { background-color: var(--primary-color); color: var(--white); }

.section-header {
    text-align: center;
    margin-bottom: 50px;
}
.section-header h2 {
    font-size: 2.5rem;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.line {
    width: 60px;
    height: 4px;
    background: var(--secondary-color);
    margin: 0 auto;
}
.text-white { color: var(--white); }

/* Navbar */
.navbar {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    height: 80px; 
    display: flex;
    align-items: center;
}
.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

/* Logo Styling */
.logo a {
    display: flex;
    align-items: center;
}
.logo img {
    height: 60px; 
    width: auto;
    object-fit: contain;
}

/* Nav Links */
.nav-links { display: flex; gap: 20px; align-items: center; }
.nav-links li a {
    color: var(--primary-color);
    font-weight: 600;
    transition: 0.3s;
    font-size: 1rem;
}
.nav-links li a:hover { color: var(--secondary-color); }

/* Language Switcher Button */
.lang-btn {
    border: 1px solid var(--primary-color);
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.9rem;
}
.lang-btn:hover {
    background: var(--primary-color);
    color: var(--white) !important;
}

.btn-contact {
    background: var(--secondary-color);
    padding: 8px 20px;
    border-radius: 5px;
    color: var(--primary-color) !important;
    font-weight: bold;
}
.menu-toggle { display: none; font-size: 1.5rem; cursor: pointer; color: var(--primary-color); }

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(to bottom, rgba(0, 51, 102, 0.4), rgba(0, 51, 102, 0.9)), url('images/maintenance/industrial-plant-maintenance-service.jpeg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 80px;
}
.hero-content { color: var(--white); position: relative; z-index: 2; }
.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 800;
    line-height: 1.2;
}
.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
.btn {
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: bold;
    display: inline-block;
    margin: 5px;
}
.btn.primary { background: var(--secondary-color); color: var(--primary-color); }
.btn.secondary { border: 2px solid var(--white); color: var(--white); }
.btn.secondary:hover { background: var(--white); color: var(--primary-color); }

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}
.vision-mission {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}
.vm-box {
    background: var(--bg-light);
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid var(--secondary-color);
}
html[dir="rtl"] .vm-box {
    border-left: none;
    border-right: 4px solid var(--secondary-color);
}

.vm-box i { color: var(--primary-color); font-size: 1.5rem; margin-bottom: 10px; }
.about-cert {
    background: var(--primary-color);
    color: var(--white);
    padding: 30px;
    border-radius: 10px;
}
.about-cert h3 { margin-bottom: 20px; border-bottom: 2px solid var(--secondary-color); padding-bottom: 10px; display: inline-block; }
.cert-list li {
    margin: 15px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}
.cert-list li i { color: var(--secondary-color); }

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.service-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: 0.3s;
    text-align: center;
    border-bottom: 3px solid transparent;
}
.service-card:hover {
    transform: translateY(-10px);
    border-bottom: 3px solid var(--secondary-color);
}
.service-card .icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}
.service-card h3 { margin-bottom: 15px; color: var(--primary-color); }

/* Clients Section */
.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    text-align: center;
}
.client-logo {
    background: #f1f1f1;
    padding: 20px;
    font-weight: bold;
    color: #555;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ddd;
    transition: 0.3s;
}
.client-logo:hover { border-color: var(--primary-color); background: #fff; }

/* Contact Section */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}
.contact-box {
    background: rgba(255,255,255,0.05);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.1);
}
.contact-box.full { grid-column: 1 / -1; }
.contact-box h3 { color: var(--secondary-color); margin-bottom: 15px; }
.contact-box p { margin: 10px 0; }
.contact-box i { color: var(--secondary-color); margin-right: 10px; }

html[dir="rtl"] .contact-box i {
    margin-right: 0;
    margin-left: 10px;
}

/* Footer */
footer {
    background: #002244;
    color: #aaa;
    text-align: center;
    padding: 20px;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 900px) {
    .about-grid { grid-template-columns: 1fr; }
    .contact-wrapper { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .menu-toggle { display: block; }
    .nav-links {
        position: absolute;
        top: 80px; left: 0; width: 100%;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        text-align: center;
        display: none;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    }
    .nav-links.active { display: flex; }
    .hero-content h1 { font-size: 2.2rem; }
    .vision-mission { flex-direction: column; }
}
/* =========================================
   SCROLL ANIMATION STYLES
   ========================================= */

.animate-on-scroll {
    opacity: 0;
    transform: translateY(50px); 
    transition: all 0.8s ease-out; 
}

.animate-on-scroll.show {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* =========================================
   FLOATING CONTACT BUTTONS
   ========================================= */

.floating-actions {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 9999;
    display: flex;
    flex-direction: column-reverse;
    gap: 15px; 
}

html[dir="rtl"] .floating-actions {
    left: auto;
    right: 30px;
}

.float-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    text-decoration: none;
}

.float-btn.whatsapp {
    background-color: #25d366;
    animation: pulse-green 2s infinite;
}

.float-btn.phone {
    background-color: var(--secondary-color); 
    color: var(--primary-color);
    width: 50px; 
    height: 50px;
    font-size: 22px;
}

.float-btn:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

@keyframes pulse-green {
    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); }
}

@media (max-width: 768px) {
    .floating-actions {
        bottom: 20px;
        left: 20px;
    }
    html[dir="rtl"] .floating-actions {
        right: 20px;
    }
    .float-btn {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
    .float-btn.phone {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
}

/* =========================================
   CTA BUTTONS PULSE ANIMATION
   ========================================= */

@keyframes cta-pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 193, 7, 0.7); 
    }
    70% {
        transform: scale(1.05); 
        box-shadow: 0 0 0 10px rgba(255, 193, 7, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 193, 7, 0);
    }
}

.btn-contact {
    animation: cta-pulse 2s infinite; 
}

.btn.primary {
    animation: cta-pulse 2s infinite;
}

.btn-contact:hover, .btn.primary:hover {
    animation: none;
    transform: scale(1.1);
}
/* =========================================
   PROJECTS SECTION STYLES
   ========================================= */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.project-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    overflow: hidden;
    border-top: 4px solid var(--secondary-color); 
    transition: transform 0.3s ease;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.project-header {
    background: #f4f6f8;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    border-bottom: 1px solid #eee;
}

.project-header img {
    height: 40px; 
    width: auto;
}

.project-header h3 {
    margin: 0;
    font-size: 1.1rem;
    color: var(--primary-color);
}

.project-list {
    padding: 20px;
}

.project-item {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.project-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.project-item h4 {
    color: var(--primary-color);
    font-size: 1rem;
    margin-bottom: 5px;
}

.project-item .location {
    font-size: 0.85rem;
    color: var(--secondary-color);
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
}

.project-item p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
}

/* =========================================
   CERTIFICATES SECTION STYLES 
   ========================================= */
.cert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); 
    gap: 30px;
    justify-content: center;
}

.cert-card {
    background: #fff;
    padding: 15px; 
    text-align: center;
    border-radius: 8px;
    border: 1px solid #eee;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.cert-card img {
    width: 100%;
    height: 280px;
    object-fit: cover; 
    object-position: top; 
    border-radius: 5px;
    margin-bottom: 15px;
    border: 1px solid #f0f0f0;
    transition: all 0.5s ease;
}

.cert-card h3 {
    font-size: 1rem;
    color: var(--primary-color);
    margin: 0;
}

.cert-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
    border-color: var(--secondary-color);
}

.cert-card:hover img {
    transform: scale(1.03); 
}
/* =========================================
   FOOTER STYLES 
   ========================================= */
.main-footer {
    background-color: #1a1a1a; 
    color: #fff;
    padding-top: 70px;
    margin-top: 50px;
    border-top: 5px solid var(--secondary-color); 
}

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

.footer-col h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #fff;
}

.footer-line {
    width: 50px;
    height: 3px;
    background-color: var(--secondary-color);
  margin: 0 auto 25px auto; 
    
    display: block; }

.contact-row {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-row i {
    color: var(--secondary-color); 
    font-size: 1.2rem;
    margin-top: 5px;
}

.contact-row p, .contact-row a {
    color: #ccc;
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.6;
    transition: 0.3s;
}

.contact-row a:hover {
    color: var(--secondary-color);
}

.footer-links li {
    margin-bottom: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.1); 
    padding-bottom: 8px;
}

.footer-links li:last-child {
    border-bottom: none;
}

.footer-links a {
    color: #ccc;
    transition: 0.3s;
    display: block;
}

.footer-links a:hover {
    color: var(--secondary-color);
    padding-right: 10px;
}

.social-icons {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    border: 1px solid #555;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: 0.3s;
}

.social-icons a:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    border-color: var(--secondary-color);
    transform: translateY(-5px);
}

.copyrights {
    background-color: #111; 
    text-align: center;
    padding: 20px;
    font-size: 0.9rem;
    color: #888;
    border-top: 1px solid #333;
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-line { margin: 0 auto 25px auto; } 
    
    .contact-row {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-row p { text-align: center !important; }
    
    .social-icons { justify-content: center; }
}

/* Academy Page Styles */
.academy-hero {
    background-color: #f4f4f4;
    padding: 120px 0 60px; 
    text-align: center;
}

.academy-logo {
    max-width: 250px; 
    margin-bottom: 20px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.details-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
}

.details-content ul {
    margin-top: 20px;
    list-style: none;
}

.details-content li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.details-content li i {
    color: var(--secondary-color);
}

.details-img img {
    width: 100%;
    border-radius: 10px;
    margin-top: 30px;
}
a.service-card {
    text-decoration: none;
    color: inherit;
    display: block;
}


.project-header {
    display: flex;
    align-items: center;
    gap: 15px;
}
.header-info {
    display: flex;
    flex-direction: column;
}
.header-info h3 {
    margin: 0;
    font-size: 1.1rem;
    color: var(--primary-color);
}
.main-contractor {
    font-size: 0.8rem;
    color: #777;
    font-weight: normal;
}

/* =========================================
   SERVICES DETAILS PAGE STYLES
   ========================================= */

.page-header {
    height: 400px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding-top: 80px;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
}

/* أقسام التفاصيل */
.service-detail-section {
    padding: 80px 0;
    border-bottom: 1px solid #eee;
}

.detail-row {
    display: grid;
    grid-template-columns: 1.2fr 1fr; 
    gap: 50px;
    align-items: center;
}

.detail-row.reverse {
    direction: ltr; 
}
.detail-row.reverse > * {
    direction: rtl; 
    text-align: right;
}

/* النصوص */
.icon-title {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.icon-title i {
    font-size: 2.5rem;
    color: var(--secondary-color);
}

.icon-title h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin: 0;
}

.detail-text p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 15px;
    line-height: 1.8;
    text-align: justify; 
}

.detail-text h3 {
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--primary-color);
    font-size: 1.3rem;
    border-bottom: 2px solid var(--secondary-color);
    display: inline-block;
    padding-bottom: 5px;
}

.detail-list {
    list-style: none;
    padding: 0;
}

.detail-list li {
    margin-bottom: 12px;
    font-size: 1.05rem;
    color: #444;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.detail-list li i {
    color: var(--primary-color);
    margin-top: 5px;
}

/* الصور */
.detail-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.detail-image img:hover {
    transform: scale(1.02);
}

/* الموبايل */
@media (max-width: 900px) {
    .detail-row, .detail-row.reverse {
        grid-template-columns: 1fr;
        direction: rtl !important; 
        text-align: right;
        gap: 30px;
    }
    
    .detail-image {
        order: -1; 
    }
    
    .detail-image img {
        height: 250px;
    }
}

/* Service Page Specific CSS */
.service-hero {
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    background-size: cover;
    background-position: center;
}

.service-hero h1 { font-size: 3.5rem; font-weight: 900; }

/* معرض الصور (Gallery) */
.service-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 10px;
    height: 250px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}
/* =========================================
   ACADEMY PAGE SPECIFIC STYLES
   ========================================= */

.academy-hero-logo {
    width: 180px; 
    height: auto;
    display: block;
    margin: 0 auto 20px auto; 
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.9); 
    padding: 15px; 
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.service-hero.academy-hero-bg {
    height: auto;
    min-height: 70vh; 
    padding-top: 120px;
    padding-bottom: 60px;
    flex-direction: column; 
}

/* =========================================
   MOBILE RESPONSIVENESS FIXES 
   ========================================= */

@media (max-width: 768px) {

    .navbar {
        padding: 0 10px;
        height: 70px;
    }
    .navbar .container {
        padding: 0 15px;
    }


    /* 2. (Hero Section) */
    .service-hero, .page-header {
        height: auto;
        min-height: 250px; 
        padding-top: 100px;
        padding-bottom: 40px;
        background-attachment: scroll; 
    }

    .service-hero h1, .page-header h1 {
        font-size: 1.8rem !important; 
        line-height: 1.3;
        padding: 0 10px;
    }

    .service-hero p, .page-header p {
        font-size: 1rem;
        padding: 0 15px;
    }

    /* 3. (Grid System) */
    .about-grid, .detail-row, .detail-row.reverse {
        grid-template-columns: 1fr !important; 
        gap: 30px;
        text-align: center; 
        direction: rtl !important; 
    }

    .section-padding {
        padding: 40px 0; 
    }

    .detail-image, .about-cert {
        order: -1; 
        margin-bottom: 20px;
    }

    .detail-image img {
        height: 250px; 
    }

    .about-text h2 {
        font-size: 1.5rem;
    }
    
    .detail-text p, .about-text p {
        text-align: justify;
        font-size: 1rem;
    }

    .cert-list li, .detail-list li {
        text-align: right; 
        font-size: 0.95rem;
    }

    .service-gallery {
        grid-template-columns: 1fr; 
        padding: 0 10px;
    }
    
    .academy-hero-logo {
        width: 120px;
        margin-bottom: 15px;
    }
}

/* =========================================
   CONTACT PAGE STYLES
   ========================================= */

.contact-page-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr; 
    gap: 50px;
}

.contact-form-box {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border: 1px solid #eee;
}

.contact-form-box h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.contact-form-box p {
    margin-bottom: 30px;
    color: #666;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: var(--text-dark);
}

.form-group input, 
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
    transition: 0.3s;
    background: #fdfdfd;
}

.form-group input:focus, 
.form-group textarea:focus {
    border-color: var(--secondary-color);
    outline: none;
    box-shadow: 0 0 5px rgba(255, 193, 7, 0.2);
}

.w-100 {
    width: 100%; 
    cursor: pointer;
}

.contact-info-side h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--secondary-color);
    display: inline-block;
}

.info-card-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    align-items: flex-start;
}

.info-card-item i {
    font-size: 1.5rem;
    color: var(--secondary-color);
    background: var(--primary-color);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.info-card-item h4 {
    margin: 0 0 5px;
    font-size: 1.1rem;
    color: var(--text-dark);
}

.info-card-item p {
    margin: 0;
    color: #666;
    font-size: 0.95rem;
}

.map-frame {
    margin-top: 30px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Responsive */
@media (max-width: 900px) {
    .contact-page-grid {
        grid-template-columns: 1fr; /* عمود واحد في الموبايل */
        gap: 40px;
    }
}

.mgm-font {
    font-family: 'Almarai', sans-serif !important;
    font-weight: 800 !important; /* سميك جداً */
    font-size: 2.4rem;
    color: #264e86; 
    display: flex;
    align-items: center;
    line-height: 1;
    gap: 5px; 
}

.mgm-font .highlight {
    color: #fdb913;
    position: relative;
    top: 3px;
    font-family: sans-serif; 
}
/* =========================================
   LOGO FONT STYLE (GE SS Two)
   ========================================= */

.mgm-font {
    font-family: 'GE SS Two', sans-serif !important; 
    font-weight: normal !important; 
    font-size: 2.5rem; 
    color: #264e86; 
    display: flex;
    align-items: center;
    gap: 8px;
    line-height: 1;
}

.mgm-font .highlight {
    color: #fdb913; 
    position: relative;
    top: 0; 
}

@media (max-width: 768px) {
    .mgm-font {
        font-size: 1.8rem;
    }
}

.logo a {
    display: flex;
    align-items: center;
    gap: 10px;
}
.logo-icon {
    height: 55px; 
    width: auto;
}
.logo-text-img {
    height: 30px; 
    width: auto;
    margin-top: 5px; 
}

