:root {
    --primary-color: #1a3c5a; 
    --accent-color: #e67e22;  
    --text-color: #333;
    --white: #ffffff;
    --transition: all 0.4s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Cairo', sans-serif;
}

body {
    overflow-x: hidden;
    background-color: #f9f9f9;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.main-header {
    background-color: rgba(255, 255, 255, 0.95);
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--primary-color);
}

.logo i {
    font-size: 2rem;
    color: var(--accent-color);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 25px;
}

.nav-links a {
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 700;
    transition: var(--transition);
    font-size: 0.95rem;
}

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

.call-btn {
    background-color: var(--accent-color);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.call-btn:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    text-align: center;
    color: var(--white);
}

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

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(26, 60, 90, 0.6);
    z-index: -1;
}

@keyframes zoomAnimation {
    from { transform: scale(1); }
    to { transform: scale(1.2); }
}

.hero-content {
    max-width: 800px;
    padding: 20px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.4;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 35px;
    opacity: 0.9;
}

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

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

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

.secondary-btn {
    border: 2px solid var(--white);
    color: var(--white);
}

.btn:hover {
    transform: scale(1.05);
    background-color: var(--white);
    color: var(--primary-color);
}

.animate-text {
    animation: fadeInUp 1s ease-out;
}
.animate-text-delay {
    animation: fadeInUp 1s ease-out 0.5s both;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

@media (max-width: 992px) {
    .desktop-only { display: none !important; }
    .menu-toggle { display: block; color: var(--primary-color); }
    
    .navbar {
        position: fixed;
        top: -100%; 
        left: 0;
        width: 100%;
        background-color: var(--white);
        padding: 20px 0;
        transition: 0.5s ease-in-out;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }

    .navbar.active {
        top: 70px; 
    }

    .nav-links {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .hero h1 { font-size: 2.2rem; }
}
.pro-about {
    position: relative;
    padding: 150px 0;
    background-color: #0b131e; 
    color: #fff;
    overflow: hidden;
}
.abstract-bg .line-1, .abstract-bg .line-2 {
    position: absolute;
    background: rgba(194, 158, 93, 0.1);
    height: 1px; width: 150%;
    transform: rotate(-45deg);
    z-index: 0;
}
.abstract-bg .line-1 { top: 20%; left: -25%; }
.abstract-bg .line-2 { top: 50%; left: -25%; }

.about-wrapper {
    display: flex;
    align-items: center;
    gap: 100px;
    position: relative;
    z-index: 2;
}
.about-visuals {
    flex: 1;
    position: relative;
}

.reveal-mask {
    position: relative;
    width: 100%;
    height: 550px;
    overflow: hidden;
    clip-path: polygon(0 0, 100% 0, 90% 100%, 0% 100%);
}

.img-main {
    width: 100%; height: 100%;
    object-fit: cover;
    transform: scale(1.2);
    transition: 2s ease;
}

.about-visuals.active .img-main {
    transform: scale(1);
}

.secondary-box {
    position: absolute;
    bottom: -30px;
    right: -20px;
    background: #c29e5d;
    padding: 30px;
    color: #0b131e;
    text-align: center;
    border-radius: 5px;
}

.secondary-box i { font-size: 2.5rem; display: block; margin-bottom: 10px; }
.secondary-box p { font-weight: 900; letter-spacing: 1px; }
.about-info { flex: 1.2; }

.section-badge {
    color: #c29e5d;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 5px;
    margin-bottom: 20px;
}

.main-heading {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 40px;
}

.gold-text { color: #c29e5d; }

.content-paragraphs p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.8);
    margin-bottom: 25px;
    text-align: justify;
}

.content-paragraphs strong { color: #c29e5d; font-weight: 700; }

.trust-indicators {
    display: flex;
    gap: 30px;
    margin-top: 50px;
}

.indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.indicator i {
    font-size: 1.8rem;
    color: #c29e5d;
    background: rgba(194, 158, 93, 0.1);
    padding: 15px;
    border-radius: 50%;
}
.animate-float { animation: floating 4s ease-in-out infinite; }

@keyframes floating {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.fade-up, .slide-text {
    opacity: 0;
    transform: translateY(40px);
    transition: 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.active .fade-up, .active .slide-text {
    opacity: 1;
    transform: translateY(0);
}
@media (max-width: 992px) {
    .about-wrapper { flex-direction: column; gap: 60px; }
    .main-heading { font-size: 2.5rem; }
    .reveal-mask { height: 350px; clip-path: none; }
}
.abu-hamada-services {
    padding: 100px 0;
    background-color: #ffffff; 
    direction: rtl;
}
.abu-hamada-services .container {
    display: block !important; 
}
.section-top-header {
    text-align: center;
    margin-bottom: 70px;
    width: 100%;
}

.title-main-text {
    font-size: 3.5rem;
    color: #0a1d37; 
    font-weight: 900;
    margin: 0;
}

.title-decorator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 15px 0;
}

.title-decorator .line {
    width: 60px;
    height: 4px;
    background: #d4af37; 
    border-radius: 10px;
}

.title-decorator i {
    color: #d4af37;
    font-size: 1.5rem;
}

.title-sub-desc {
    color: #666;
    font-size: 1.2rem;
    max-width: 650px;
    margin: 0 auto;
}
.services-dual-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); 
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.service-box-card {
    background: #fff;
    padding: 45px 35px;
    border-radius: 20px;
    position: relative;
    border: 1px solid #f0f0f0;
    box-shadow: 0 10px 40px rgba(0,0,0,0.03);
    overflow: hidden;
    transition: all 0.5s ease;
}

.card-bg-icon {
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 5rem;
    font-weight: 900;
    color: rgba(212, 175, 55, 0.05); 
    transition: 0.5s;
}

.card-inner-content {
    display: flex;
    gap: 25px;
    position: relative;
    z-index: 2;
}

.card-icon-wrapper {
    font-size: 3rem;
    color: #d4af37;
    transition: 0.5s ease;
}

.card-text-side h3 {
    font-size: 1.6rem;
    color: #0a1d37;
    margin-bottom: 15px;
    font-weight: 800;
}

.card-text-side p {
    color: #555;
    line-height: 1.8;
    margin: 0;
}
.service-box-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 60px rgba(212, 175, 55, 0.15);
    border-color: #d4af37;
}

.service-box-card:hover .card-icon-wrapper {
    transform: scale(1.2) rotate(-15deg);
}

.service-box-card:hover .card-bg-icon {
    color: rgba(212, 175, 55, 0.15);
    top: 5px;
}
@media (max-width: 992px) {
    .services-dual-grid {
        grid-template-columns: 1fr;
    }
    .title-main-text { font-size: 2.5rem; }
}
.pro-gallery-section {
    padding: 100px 0;
    background-color: #f2f5f8; 
    direction: rtl;
}
.gallery-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    display: block !important; 
}

.gallery-title-wrapper {
    text-align: center;
    margin-bottom: 50px;
}

.gallery-main-title {
    font-size: 3.5rem;
    color: #1a2a3a;
    font-weight: 900;
}

.gold-divider {
    width: 60px;
    height: 4px;
    background: #c29e5d;
    margin: 15px auto;
}
.images-grid-system {
    display: grid;
    grid-template-columns: repeat(3, 1fr); 
    gap: 25px; 
}

.gallery-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    height: 280px; 
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    border: 1px solid #ddd;
    transition: 0.4s ease;
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    transition: 0.5s;
}
.gallery-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(194, 158, 93, 0.2);
}

.gallery-card:hover img {
    transform: scale(1.1);
}
@media (max-width: 992px) {
    .images-grid-system {
        grid-template-columns: repeat(2, 1fr); 
    }
}

@media (max-width: 600px) {
    .images-grid-system {
        grid-template-columns: 1fr; 
    }
    .gallery-main-title { font-size: 2.5rem; }
}
.pro-why-hamada {
    padding: 120px 0;
    background-color: #0a1118; 
    color: #ffffff;
    direction: rtl;
    position: relative;
    z-index: 1;
}

.pro-why-hamada .container {
    display: block !important;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}
.why-header-fixed {
    text-align: center;
    margin-bottom: 70px;
    width: 100%;
    opacity: 1; 
}

.premium-badge {
    background: rgba(194, 158, 93, 0.2);
    color: #c29e5d;
    padding: 8px 30px;
    border-radius: 50px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 20px;
    border: 1px solid #c29e5d;
}

.heavy-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: #fff;
    margin: 0;
}

.gold-accent { color: #c29e5d; }

.gold-bar {
    width: 80px;
    height: 4px;
    background: #c29e5d;
    margin: 20px auto;
}

.sub-intro {
    color: #cbd5e0;
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}
.why-main-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.why-card-item {
    background: rgba(255, 255, 255, 0.03);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: 0.4s ease;
    text-align: center;
}

.icon-wrap {
    font-size: 3.5rem;
    color: #c29e5d;
    margin-bottom: 25px;
}

.why-card-item h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
}

.why-card-item p {
    color: #a0aec0;
    line-height: 1.8;
}
.why-card-item:hover {
    background: rgba(194, 158, 93, 0.1);
    transform: translateY(-10px);
    border-color: #c29e5d;
}
@media (max-width: 992px) {
    .why-main-grid { grid-template-columns: repeat(2, 1fr); }
    .heavy-title { font-size: 2.5rem; }
}

@media (max-width: 600px) {
    .why-main-grid { grid-template-columns: 1fr; }
}
.final-contact-section {
    padding: 120px 0;
    background-color: #f0f4f8;
    direction: rtl;
    overflow: hidden;
}
.contact-safe-container {
    display: block !important; 
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-top-box {
    text-align: center;
    width: 100%;
    margin-bottom: 60px;
}

.mega-title {
    font-size: 3.5rem;
    color: #0d1b2a;
    font-weight: 900;
}

.shining-line {
    width: 80px;
    height: 5px;
    background: #c29e5d;
    margin: 15px auto;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(194, 158, 93, 0.5);
}

.contact-dual-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}
.card-info-side {
    background: #0d1b2a;
    padding: 50px;
    border-radius: 30px;
    color: #fff;
    box-shadow: 0 20px 50px rgba(13, 27, 42, 0.3);
}

.contact-entry {
    display: flex;
    gap: 25px;
    margin-bottom: 40px;
    align-items: center;
    transition: 0.3s;
}

.contact-entry:hover { transform: translateX(-10px); }

.entry-icon {
    font-size: 2.5rem;
    color: #c29e5d;
    filter: drop-shadow(0 0 10px rgba(194, 158, 93, 0.3));
}

.phone-num {
    font-size: 1.4rem;
    font-weight: 700;
    display: block;
    margin-bottom: 10px;
}

.entry-btns { display: flex; gap: 15px; }

.entry-btns a {
    width: 45px; height: 45px;
    display: flex; justify-content: center; align-items: center;
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.2rem;
    transition: 0.4s;
}

.btn-call { background: #fff; color: #0d1b2a; }
.btn-wa { background: #25d366; color: #fff; }
.entry-btns a:hover { transform: rotate(360deg) scale(1.1); }
.card-form-side {
    background: #fff;
    padding: 50px;
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.05);
}

.form-inner-title {
    font-size: 2rem;
    color: #0d1b2a;
    margin-bottom: 30px;
    text-align: center;
}

#whatsappForm input, #whatsappForm select, #whatsappForm textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border: 2px solid #f0f0f0;
    border-radius: 12px;
    outline: none;
    font-size: 1rem;
    transition: 0.3s;
}

#whatsappForm input:focus, #whatsappForm textarea:focus {
    border-color: #c29e5d;
}

.send-wa-btn {
    width: 100%;
    padding: 18px;
    background: #25d366;
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 1.2rem;
    font-weight: 800;
    cursor: pointer;
    transition: 0.4s;
}

.send-wa-btn:hover {
    background: #1ebe57;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
    letter-spacing: 1px;
}
.slide-right { opacity: 0; transform: translateX(100px); transition: 1s ease-out; }
.slide-left { opacity: 0; transform: translateX(-100px); transition: 1s ease-out; }
.active .slide-right, .active .slide-left { opacity: 1; transform: translateX(0); }
@media (max-width: 900px) {
    .contact-dual-grid { grid-template-columns: 1fr; }
    .mega-title { font-size: 2.5rem; }
}
.main-footer {
    background-color: #081018; 
    color: #ffffff;
    padding: 80px 0 0 0;
    direction: rtl;
}
.footer-grid-container {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr); 
    gap: 40px;
    padding-bottom: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-col h3, .footer-col h4 {
    color: #c29e5d; 
    margin-bottom: 25px;
    font-weight: 800;
}
.footer-logo { font-size: 1.8rem; }
.col-title { font-size: 1.3rem; position: relative; padding-bottom: 10px; }
.col-title::after {
    content: '';
    position: absolute;
    bottom: 0; right: 0;
    width: 40px; height: 2px;
    background: #c29e5d;
}

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

.footer-links, .contact-list { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 12px; }
.footer-links a {
    color: #cbd5e0;
    text-decoration: none;
    transition: 0.3s;
    font-size: 0.95rem;
}
.footer-links a:hover { color: #c29e5d; padding-right: 10px; }

.contact-list li {
    display: flex;
    gap: 12px;
    color: #cbd5e0;
    margin-bottom: 15px;
    font-size: 0.9rem;
}
.contact-list i { color: #c29e5d; }
.social-links { display: flex; gap: 15px; margin-top: 20px; }
.social-links a {
    width: 35px; height: 35px;
    background: rgba(255,255,255,0.05);
    display: flex; justify-content: center; align-items: center;
    border-radius: 50%;
    color: #fff;
    transition: 0.3s;
}
.social-links a:hover { background: #c29e5d; transform: translateY(-5px); }
.footer-bottom {
    background: #04080c;
    padding: 25px 0;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.copy-text { color: #718096; font-size: 0.9rem; margin-bottom: 5px; }
.dev-text { color: #a0aec0; font-size: 0.85rem; }

.dev-link {
    color: #c29e5d;
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s;
}
.dev-link:hover { text-decoration: underline; color: #fff; }
@media (max-width: 992px) {
    .footer-grid-container { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
    .footer-grid-container { grid-template-columns: 1fr; text-align: center; }
    .col-title::after { right: 50%; transform: translateX(50%); }
    .social-links { justify-content: center; }
}
.floating-contact {
    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;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 28px;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}
.whatsapp-btn {
    background-color: #25d366;
    animation: pulse-whatsapp 2s infinite;
}
.call-btn-float {
    background-color: #c29e5d; 
    animation: pulse-gold 2s infinite;
}
.btn-text {
    position: absolute;
    right: 75px;
    background: #0d1b2a;
    color: #fff;
    padding: 5px 15px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 700;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    white-space: nowrap;
}

.floating-btn:hover .btn-text {
    opacity: 1;
    visibility: visible;
    right: 70px;
}

.floating-btn:hover {
    transform: scale(1.1) rotate(10deg);
}
@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-gold {
    0% { box-shadow: 0 0 0 0 rgba(194, 158, 93, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(194, 158, 93, 0); }
    100% { box-shadow: 0 0 0 0 rgba(194, 158, 93, 0); }
}
@media (max-width: 600px) {
    .floating-contact {
        bottom: 20px;
        right: 20px;
    }
    .floating-btn {
        width: 55px;
        height: 55px;
        font-size: 24px;
    }
    .btn-text { display: none; }
}