:root {
    --main-blue: #002366; 
    --gold: #ffc107;      
    --light-blue: #00a8ff;
    --white: #ffffff;
    --transition: all 0.4s ease;
}
html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px; 
}
* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Cairo', sans-serif; }
body { background: #f4f7f6; overflow-x: hidden; scroll-behavior: smooth; }
.logo-box {
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    perspective: 1000px;
}
.logo-visual {
    position: relative;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.main-star-icon {
    font-size: 35px;
    color: var(--gold);
    z-index: 2;
    filter: drop-shadow(0 0 10px rgba(255, 193, 7, 0.8));
    animation: starPulse 2s infinite ease-in-out;
}
.logo-truck-anim {
    position: absolute;
    bottom: 0px;
    right: -5px;
    font-size: 25px;
    color: var(--white);
    z-index: 3;
    padding: 3px;
    animation: truckSlide 3s infinite linear;
}
.star-glow {
    position: absolute;
    width: 40px;
    height: 40px;
    background: var(--gold);
    border-radius: 50%;
    filter: blur(15px);
    opacity: 0.5;
    animation: glowRotate 4s infinite linear;
}
@keyframes starPulse {
    0%, 100% { transform: scale(1); filter: drop-shadow(0 0 5px rgba(255, 193, 7, 0.5)); }
    50% { transform: scale(1.1); filter: drop-shadow(0 0 20px rgba(255, 193, 7, 1)); }
}
@keyframes truckSlide {
    0% { transform: translateX(0); }
    25% { transform: translateX(-3px); }
    50% { transform: translateX(0); }
    75% { transform: translateX(3px); }
    100% { transform: translateX(0); }
}
@keyframes glowRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
.logo-box:hover .main-star-icon {
    transform: rotate(360deg) scale(1.2);
    transition: 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.logo-box:hover .brand-name {
    color: var(--gold);
    transition: 0.3s;
}
.brand-name {
    display: block;
    font-size: 28px;
    font-weight: 900;
    color: var(--white);
    line-height: 0.9;
    letter-spacing: 1px;
}
.brand-sub {
    font-size: 11px;
    color: var(--gold);
    font-weight: bold;
    text-transform: uppercase;
}
.main-navbar {
    position: fixed; top: 0; width: 100%; padding: 15px 0; z-index: 1000;
    background: rgba(0, 35, 102, 0.85); backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.nav-container { width: 90%; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; }

.nav-links { display: flex; gap: 15px; list-style: none; }
.nav-item {
    text-decoration: none; color: var(--white); font-weight: 600; padding: 10px 20px;
    border-radius: 12px; transition: var(--transition); border: 1px solid transparent;
}
.nav-item:hover { color: var(--gold); background: rgba(255, 255, 255, 0.05); }
.nav-item.active {
    background: var(--gold); color: var(--main-blue);
    border: 1px solid var(--white); box-shadow: 0 5px 15px rgba(255, 193, 7, 0.3);
}
.nav-call-btn {
    display: flex; align-items: center; gap: 12px; text-decoration: none;
    background: linear-gradient(45deg, var(--gold), #ffa000);
    padding: 8px 15px; border-radius: 50px; color: var(--main-blue);
    position: relative; overflow: hidden; transition: var(--transition);
}
.nav-call-btn::before {
    content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.5), transparent);
    transition: 0.5s;
}
.nav-call-btn:hover::before { left: 100%; }
.nav-call-btn:hover { transform: scale(1.05); }
.icon-circle {
    width: 35px; height: 35px; background: var(--main-blue); color: var(--white);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
}
.call-text span { display: block; font-size: 10px; font-weight: bold; text-transform: uppercase; }
.call-text strong { font-size: 15px; }
.hero-section {
    height: 100vh; display: flex; align-items: center; justify-content: center;
    position: relative; color: white; text-align: center; overflow: hidden;
}
.hero-bg-animation {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, #001233, #002366, #003399);
    background-size: 400% 400%; animation: moveBG 10s infinite alternate; z-index: -2;
}
@keyframes moveBG { 0% { background-position: 0% 50%; } 100% { background-position: 100% 50%; } }
.hero-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: url('https://www.transparenttextures.com/patterns/cubes.png'); opacity: 0.1; z-index: -1;
}
.badge {
    background: var(--gold); color: var(--main-blue); padding: 5px 20px;
    border-radius: 50px; font-weight: 900; display: inline-block; margin-bottom: 20px;
}
.main-title { font-size: 4.5rem; font-weight: 900; line-height: 1.1; margin-bottom: 20px; }
.main-title span { color: var(--gold); text-shadow: 0 0 20px rgba(255, 193, 7, 0.5); }
.hero-desc { font-size: 1.3rem; max-width: 700px; margin: 0 auto 40px; opacity: 0.9; }
.btn {
    padding: 18px 45px; border-radius: 50px; font-size: 18px; font-weight: 700;
    text-decoration: none; transition: var(--transition); display: inline-block;
}
.btn-main { background: var(--gold); color: var(--main-blue); box-shadow: 0 10px 25px rgba(255, 193, 7, 0.4); }
.btn-secondary { background: rgba(255,255,255,0.1); color: white; border: 1px solid white; margin-right: 15px; }
.btn:hover { transform: translateY(-5px); filter: brightness(1.1); }
.scroll-down-btn { position: absolute; bottom: 40px; text-decoration: none; }
.mouse-frame {
    width: 35px; height: 60px; border: 3px solid var(--gold); border-radius: 30px;
    display: flex; justify-content: center; position: relative;
}
.scroll-arrow {
    color: var(--gold); font-size: 20px; position: absolute; top: 10px;
    animation: bounceArrow 2s infinite;
}
@keyframes bounceArrow {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(20px); opacity: 0.2; }
}
@media (max-width: 992px) {
    .nav-links { display: none; }
    .main-title { font-size: 2.5rem; }
    .hamburger { display: block; color: white; font-size: 25px; cursor: pointer; }
}
.temp-section { height: 100vh; display: flex; align-items: center; justify-content: center; background: #eee; }
.about-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e9f2 100%); 
    overflow: hidden;
}
.container {
    width: 90%;
    margin: 0 auto;
}
.about-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}
.about-content {
    flex: 1;
    min-width: 400px;
}
.sub-title {
    color: var(--main-blue);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    font-size: 30px;
}
.main-title-dark {
    font-size: 2.8rem;
    color: #333;
    font-weight: 900;
}
.main-title-dark span {
    color: var(--main-blue);
}
.title-line {
    width: 80px;
    height: 4px;
    background: var(--gold);
    margin: 20px 0;
    border-radius: 2px;
}
.description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 30px;
}
.about-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 30px;
}
.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: var(--transition);
}
.feature-item:hover {
    transform: translateX(-10px);
    box-shadow: 0 15px 40px rgba(0, 35, 102, 0.1);
}
.feature-icon {
    font-size: 25px;
    color: var(--gold);
    background: var(--main-blue);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}
.feature-text h5 {
    font-size: 1.1rem;
    color: var(--main-blue);
    margin-bottom: 5px;
}
.feature-text p {
    font-size: 0.9rem;
    color: #777;
}
.extra-text {
    font-style: italic;
    color: #666;
    border-right: 4px solid var(--gold);
    padding-right: 15px;
    margin-bottom: 30px;
}
.about-btn {
    display: inline-block;
    padding: 15px 35px;
    background: var(--main-blue);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    transition: var(--transition);
}
.about-btn:hover {
    background: var(--gold);
    color: var(--main-blue);
}
.about-image-box {
    flex: 1;
    min-width: 400px;
    position: relative;
    display: flex;
    justify-content: center;
}
.img-container {
    position: relative;
    z-index: 2;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
    animation: imageFloat 6s infinite ease-in-out;
}
.main-about-img {
    width: 100%;
    display: block;
    transition: 0.5s;
}
.main-about-img:hover {
    transform: scale(1.1) rotate(2deg);
}
.image-overlay-decoration {
    position: absolute;
    top: -20px; right: -20px;
    width: 100%; height: 100%;
    border-radius: 30px;
    z-index: 1;
}
.experience-badge {
    position: absolute;
    bottom: -30px;
    left: 20px;
    background: var(--gold);
    padding: 20px;
    border-radius: 20px;
    text-align: center;
    z-index: 3;
    box-shadow: 0 10px 30px rgba(255, 193, 7, 0.4);
    animation: badgePop 1s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}
.experience-badge .years {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--main-blue);
}
.experience-badge .text {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--main-blue);
}
@keyframes imageFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}
.fade-in-left {
    opacity: 0;
    transform: translateX(50px);
    transition: 1s ease-out;
}
.fade-in-right {
    opacity: 0;
    transform: translateX(-50px);
    transition: 1s ease-out;
}
.reveal {
    opacity: 1;
    transform: translateX(0);
}
@media (max-width: 768px) {
    .about-wrapper { flex-direction: column; text-align: center; }
    .main-title-dark { font-size: 2rem; }
    .extra-text { border-right: none; border-bottom: 4px solid var(--gold); padding-bottom: 10px; }
    .about-image-box { min-width: 100%; margin-top: 50px; }
}
.services-section {
    padding: 120px 0;
    background: #fdfdfd;
    text-align: center;
}
.main-title-large {
    font-size: 3.5rem;
    color: var(--main-blue);
    font-weight: 900;
    margin-bottom: 20px;
}
.main-title-large span {
    color: var(--gold);
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); 
    gap: 40px;
    padding: 60px 20px;
}
.service-card {
    background: white;
    padding: 60px 40px;
    border-radius: 30px;
    position: relative;
    overflow: hidden; 
    box-shadow: 0 15px 45px rgba(0, 35, 102, 0.05);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    border: 1px solid rgba(0, 35, 102, 0.05);
    min-height: 520px; 
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.card-inner-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 193, 7, 0.3) 0%, transparent 70%);
    filter: blur(40px); 
    transform: translate(-50%, -50%);
    transition: all 0.7s ease;
    z-index: 0;
    pointer-events: none;
    opacity: 0;
}
.service-card:hover .card-inner-glow {
    width: 150%;
    height: 150%;
    opacity: 1;
}
.card-content {
    position: relative;
    z-index: 1; 
}
.card-icon-box {
    width: 90px;
    height: 90px;
    background: var(--main-blue);
    color: white;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    margin: 0 auto 30px;
    transition: 0.5s;
}
.service-card h3 {
    font-size: 1.8rem; 
    color: var(--main-blue);
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.3;
}
.service-card p {
    color: #555;
    line-height: 1.8;
    font-size: 1.05rem; 
    margin-bottom: 30px;
    text-align: justify;
}
.card-tags {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2; 
}
.card-tags span {
    background: #f0f4ff; 
    color: var(--main-blue);
    padding: 7px 18px;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 700;
    border: 1px solid rgba(0, 35, 102, 0.1);
    transition: all 0.4s ease; 
}
.service-card:hover .card-tags span {
    background: var(--gold); 
    color: var(--main-blue); 
    border-color: var(--gold);
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.3); 
    transform: translateY(-2px); 
}

.card-tags span:hover {
    background: var(--white) !important;
    transform: scale(1.1) translateY(-5px) !important;
}
.service-card:hover .card-icon-box {
    background: var(--gold);
    color: var(--main-blue);
    transform: rotateY(360deg);
}
.service-card:hover h3 {
    color: var(--main-blue);
}
@media (max-width: 1100px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .services-grid { grid-template-columns: 1fr; }
    .main-title-large { font-size: 2.5rem; }
    .service-card { padding: 40px 20px; }
}
.gallery-section {
    padding: 100px 0;
    position: relative;
    background: linear-gradient(135deg, #b3d2f3 0%, #eaeff4 100%); 
    overflow: hidden;
}
.gallery-light-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: radial-gradient(#00236605 2px, transparent 2px); 
    background-size: 30px 30px;
    opacity: 0.5;
}
.title-line-center {
    width: 60px; height: 4px; background: var(--gold);
    margin: 15px auto; border-radius: 2px;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); 
    gap: 25px;
    margin-top: 50px;
}
.gallery-card {
    position: relative;
    height: 280px; 
    border-radius: 20px;
    overflow: hidden;
    background: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 5px solid white; 
}
.wide-last {
    grid-column: span 1; 
}
.gallery-card img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: 0.7s;
}
.main-title-dark{
    text-align: center;
}
.img-caption {
    position: absolute;
    bottom: -60px; left: 0; width: 100%;
    background: rgba(0, 35, 102, 0.8);
    backdrop-filter: blur(5px);
    color: var(--gold);
    padding: 15px;
    text-align: center;
    font-weight: 700;
    transition: 0.4s;
}
.gallery-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 20px 40px rgba(0, 35, 102, 0.15);
    border-color: var(--gold);
}
.gallery-card:hover img {
    transform: scale(1.1);
    filter: saturate(1.2);
}
.gallery-card:hover .img-caption {
    bottom: 0;
}
.gallery-card::before {
    content: "";
    position: absolute;
    top: 0; left: -100%;
    width: 50%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    z-index: 1;
    transition: 0.6s;
}
.gallery-card:hover::before {
    left: 150%;
}
@media (max-width: 992px) {
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .gallery-grid { grid-template-columns: 1fr; }
}
.why-us-section {
    padding: 120px 0;
    background: #fcfdfe; 
    overflow: hidden;
}
.why-us-header {
    text-align: center;
    margin-bottom: 70px;
}
.why-us-wrapper {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}
.why-us-cards-grid {
    flex: 1.5;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}
.why-card {
    background: white;
    padding: 35px 25px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    border-bottom: 4px solid transparent;
    transition: all 0.4s ease;
    text-align: right;
    position: relative;
    overflow: hidden;
}
.card-icon {
    width: 55px;
    height: 55px;
    background: rgba(255, 193, 7, 0.1);
    color: var(--gold);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
    transition: 0.4s;
}
.why-card h3 {
    color: var(--main-blue);
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 800;
}
.why-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}
.why-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(0, 35, 102, 0.08);
    border-color: var(--gold);
}
.why-card:hover .card-icon {
    background: var(--main-blue);
    color: white;
    transform: rotate(360deg);
}
.fade-in-left { opacity: 0; transform: translateX(100px); transition: 1s; }
.fade-in-up { opacity: 0; transform: translateY(50px); transition: 1s; }
.reveal { opacity: 1; transform: translate(0); }
@media (max-width: 992px) {
    .why-us-wrapper { flex-direction: column; }
    .why-us-cards-grid { grid-template-columns: 1fr; width: 100%; }
    .why-us-img-box { min-width: 100%; }
}
.contact-section {
    padding: 120px 0;
    position: relative;
    background: linear-gradient(135deg, #000c1f 0%, #001f3f 100%); 
    color: white;
    overflow: hidden;
}
.contact-bg-glow {
    position: absolute;
    top: 50%; left: 50%;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(255, 193, 7, 0.1) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    pointer-events: none;
}
.contact-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}
.contact-info-side { flex: 1; min-width: 400px; }
.contact-desc { color: rgba(255,255,255,0.7); margin-bottom: 40px; }

.contact-details { display: grid; gap: 30px; margin-bottom: 50px; }
.detail-item { display: flex; align-items: center; gap: 20px; }
.detail-item i {
    width: 50px; height: 50px;
    background: rgba(255, 193, 7, 0.15);
    color: var(--gold);
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%; font-size: 20px;
    border: 1px solid rgba(255, 193, 7, 0.3);
}
.detail-item span { display: block; font-size: 0.8rem; color: var(--gold); font-weight: bold; }
.detail-item a { color: white; text-decoration: none; font-size: 1.3rem; font-weight: 700; transition: 0.3s; }
.detail-item a:hover { color: var(--gold); }
.social-links-container h3 { font-size: 1.1rem; margin-bottom: 20px; color: var(--gold); }
.social-icons { display: flex; gap: 15px; }
.social-btn {
    width: 50px; height: 50px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: white; font-size: 20px; text-decoration: none;
    transition: all 0.4s ease;
    border: 1px solid rgba(255,255,255,0.1);
}
.fb:hover { background: #1877F2; transform: rotateY(360deg); }
.ig:hover { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%); transform: rotateY(360deg); }
.wa:hover { background: #25D366; transform: rotateY(360deg); }
.quote-form-side { flex: 1.2; min-width: 450px; }
.quote-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    padding: 50px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 30px 60px rgba(0,0,0,0.3);
}
.quote-card h3 { font-size: 1.8rem; margin-bottom: 10px; color: var(--gold); }
.quote-card p { font-size: 0.9rem; color: rgba(255,255,255,0.6); margin-bottom: 30px; }

.form-row { display: flex; gap: 20px; margin-bottom: 20px; }
.input-group { flex: 1; display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }

.input-group label { font-size: 0.85rem; font-weight: bold; color: rgba(254, 251, 251, 0.8); }
.input-group input, .input-group select, .input-group textarea {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 12px 15px; border-radius: 10px; color: rgb(243, 242, 242); outline: none; transition: 0.3s;
}
.input-group option
{
    color: black;
}
.input-group input:focus, .input-group select:focus, .input-group textarea:focus {
    border-color: var(--gold); background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 15px rgba(255, 193, 7, 0.2);
}
.submit-btn {
    width: 100%; padding: 15px;
    background: var(--gold); color: var(--main-blue);
    border: none; border-radius: 10px; font-size: 1.1rem; font-weight: 800;
    cursor: pointer; transition: 0.4s;
}
.submit-btn:hover { background: white; transform: scale(1.02); }
@media (max-width: 992px) {
    .contact-wrapper { flex-direction: column; text-align: center; }
    .form-row { flex-direction: column; gap: 0; }
    .quote-card { padding: 30px 20px; }
    .detail-item { flex-direction: column; }
    .social-icons { justify-content: center; }
}
.footer-area {
    background: #000c1f; 
    padding-top: 100px;
    color: white;
    position: relative;
    overflow: hidden;
}
.footer-wave {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 50px;
    background: url('https://i.imgur.com/your-wave-pattern.png'); 
    opacity: 0.1;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr; 
    gap: 40px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.footer-logo { display: flex; align-items: center; gap: 15px; margin-bottom: 25px; }
.logo-visual-mini {
    width: 40px; height: 40px; background: var(--gold);
    display: flex; align-items: center; justify-content: center;
    border-radius: 10px; color: var(--main-blue); font-size: 20px;
}
.brand { display: block; font-size: 1.5rem; font-weight: 900; color: white; }
.tagline { font-size: 0.7rem; color: var(--gold); font-weight: bold; text-transform: uppercase; }
.footer-about-text {
    font-size: 0.95rem; color: rgba(255, 255, 255, 0.6);
    line-height: 1.8; margin-bottom: 25px;
}
.footer-title {
    font-size: 1.3rem; font-weight: 800; color: white;
    margin-bottom: 30px; position: relative; padding-bottom: 10px;
}
.footer-title::after {
    content: ''; position: absolute; bottom: 0; right: 0;
    width: 40px; height: 3px; background: var(--gold);
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 15px; }
.footer-links a {
    text-decoration: none; color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem; transition: all 0.3s ease;
    display: flex; align-items: center; gap: 10px;
}
.footer-links a i { font-size: 10px; color: var(--gold); opacity: 0; transition: 0.3s; }
.footer-links a:hover { color: var(--gold); padding-right: 10px; }
.footer-links a:hover i { opacity: 1; }
.footer-contact-list { list-style: none; }
.footer-contact-list li {
    display: flex; align-items: flex-start; gap: 15px;
    margin-bottom: 20px; color: rgba(255, 255, 255, 0.7);
}
.footer-contact-list i { color: var(--gold); font-size: 18px; margin-top: 5px; }
.footer-contact-list a { color: inherit; text-decoration: none; transition: 0.3s; }
.footer-contact-list a:hover { color: var(--gold); }
.footer-social { display: flex; gap: 15px; }
.footer-social a {
    width: 35px; height: 35px; border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    display: flex; align-items: center; justify-content: center;
    color: white; text-decoration: none; transition: 0.4s;
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-social a:hover { background: var(--gold); color: var(--main-blue); transform: translateY(-5px); }
.footer-bottom {
    padding: 30px 0;
    display: flex; justify-content: space-between; align-items: center;
    font-size: 0.85rem; color: rgba(255, 255, 255, 0.4);
    flex-wrap: wrap; gap: 20px;
}
.developer a {
    color: var(--gold); text-decoration: none; font-weight: 700;
    transition: 0.3s;
}
.developer a:hover { color: white; text-decoration: underline; }
@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-logo, .footer-social, .footer-title::after { justify-content: center; left: 0; right: 0; margin-left: auto; margin-right: auto; }
    .footer-links a { justify-content: center; }
    .footer-contact-list li { flex-direction: column; align-items: center; gap: 5px; }
    .footer-bottom { flex-direction: column; text-align: center; }
}
.floating-contact-wrap {
    position: fixed;
    bottom: 30px;
    left: 30px; 
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
}
.float-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 25px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.whatsapp-btn {
    background-color: #25d366;
    animation: pulse-whatsapp 2s infinite;
}
.phone-btn {
    background-color: var(--gold);
    color: var(--main-blue);
    animation: pulse-phone 2s infinite 1s; 
}
.btn-text {
    position: absolute;
    right: 75px; 
    background: white;
    color: var(--main-blue);
    padding: 8px 15px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.btn-text::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 100%;
    transform: translateY(-50%);
    border-width: 6px;
    border-style: solid;
    border-color: transparent transparent transparent white;
}
.float-btn:hover {
    transform: scale(1.1) rotate(15deg);
}
.float-btn:hover .btn-text {
    opacity: 1;
    visibility: visible;
    right: 70px;
}
@keyframes pulse-whatsapp {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 20px 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(255, 193, 7, 0.7); }
    70% { box-shadow: 0 0 0 20px rgba(255, 193, 7, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 193, 7, 0); }
}
@media (max-width: 600px) {
    .floating-contact-wrap {
        bottom: 20px;
        left: 20px;
    }
    .float-btn {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}
.main-navbar {
    position: fixed; 
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.4s ease; 
    background: rgba(0, 35, 102, 0.9); 
    backdrop-filter: blur(10px); 
}
.nav-item.active {
    background: var(--gold) !important;
    color: var(--main-blue) !important;
    border: 1px solid var(--white) !important;
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.4);
    transform: translateY(-2px);
}
section {
    scroll-margin-top: 80px; 
}
.main-navbar {
    position: fixed !important; 
    top: 0 !important;
    left: 0;
    width: 100%;
    z-index: 9999 !important; 
    padding: 15px 0;
    background: rgba(0, 35, 102, 0.95); 
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease-in-out;
}
.nav-item.active {
    background: var(--gold) !important;
    color: var(--main-blue) !important;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(255, 193, 7, 0.6) !important; 
    transform: translateY(-2px);
    font-weight: 900;
}
section {
    scroll-margin-top: 90px; 
}
.nav-item {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: white;
    font-weight: 700;
    padding: 8px 15px;
    transition: 0.3s;
}
.icon-box {
    width: 35px;
    height: 35px;
    background: rgba(255, 193, 7, 0.15); 
    border: 1px solid var(--gold);
    border-radius: 8px; 
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
}
.icon-box i {
    font-size: 16px;
    color: var(--gold); 
    z-index: 2;
    transition: 0.4s;
}
.nav-item:hover .icon-box {
    background: var(--gold);
    transform: rotate(360deg); 
    border-radius: 50%; 
}

.nav-item:hover i {
    color: var(--main-blue); 
}
.nav-item.active .icon-box {
    background: var(--gold) !important;
    border-radius: 50% !important; 
    box-shadow: 0 0 15px rgba(255, 193, 7, 0.6);
}
.nav-item.active i {
    color: var(--main-blue) !important;
    transform: scale(1.2);
}
.icon-box::after {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: 0.5s;
}
.nav-item:hover .icon-box::after {
    left: 100%;
}
.mobile-sidebar {
    position: fixed;
    top: 0;
    right: -100%; 
    width: 320px;
    height: 100vh;
    background: linear-gradient(180deg, #001f3f 0%, #000c1f 100%);
    z-index: 10000;
    transition: 0.6s cubic-bezier(0.77, 0, 0.175, 1);
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    box-shadow: -10px 0 30px rgba(0,0,0,0.5);
}
.mobile-sidebar.open {
    right: 0;
}
.close-menu {
    position: absolute;
    top: 30px;
    left: 30px;
    font-size: 28px;
    color: var(--gold);
    cursor: pointer;
    transition: 0.3s;
}
.close-menu:hover {
    transform: rotate(90deg) scale(1.2);
}
.mobile-logo {
    margin: 40px 0 50px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 193, 7, 0.2);
    padding-bottom: 20px;
}
.mobile-logo .brand {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--gold);
}
.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.mobile-link {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: white;
    font-size: 1.2rem;
    font-weight: 700;
    padding: 10px;
    border-radius: 12px;
    transition: 0.4s;
    transform: translateX(50px);
    opacity: 0;
}
.mobile-sidebar.open .mobile-link {
    transform: translateX(0);
    opacity: 1;
}
.mobile-link .icon-box {
    width: 40px;
    height: 40px;
    background: rgba(255, 193, 7, 0.1);
    border: 1px solid var(--gold);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
}
.mobile-link i {
    font-size: 18px;
    color: var(--gold);
}
.mobile-link:hover {
    background: rgba(255, 255, 255, 0.05);
}
.mobile-link:hover .icon-box {
    background: var(--gold);
    border-radius: 50%;
    transform: rotate(360deg);
}
.mobile-link:hover i {
    color: #001f3f;
}
.mobile-footer {
    margin-top: auto;
    padding-top: 20px;
}
.mobile-call-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--gold);
    color: #001f3f;
    text-decoration: none;
    padding: 15px;
    border-radius: 50px;
    font-weight: 800;
    box-shadow: 0 10px 20px rgba(255, 193, 7, 0.3);
}
.mobile-sidebar.open .mobile-link:nth-child(1) { transition-delay: 0.1s; }
.mobile-sidebar.open .mobile-link:nth-child(2) { transition-delay: 0.2s; }
.mobile-sidebar.open .mobile-link:nth-child(3) { transition-delay: 0.3s; }
.mobile-sidebar.open .mobile-link:nth-child(4) { transition-delay: 0.4s; }
.mobile-sidebar.open .mobile-link:nth-child(5) { transition-delay: 0.5s; }
.mobile-sidebar.open .mobile-link:nth-child(6) { transition-delay: 0.6s; }
@media (max-width: 768px) {
    .nav-container {
        width: 95% !important;
    }
    .logo-visual {
        width: 35px !important;
        height: 35px !important;
    }
    .main-star-icon {
        font-size: 22px !important;
    }
    .logo-truck-anim {
        font-size: 16px !important;
    }
    .brand-name {
        font-size: 18px !important;
    }
    .brand-sub {
        font-size: 9px !important;
    }
    .nav-call-btn {
        padding: 5px 10px !important;
        gap: 5px !important;
    }
    .icon-circle {
        width: 25px !important;
        height: 25px !important;
    }
    .call-text strong {
        font-size: 11px !important;
    }
    .hamburger {
        display: block !important; 
        margin-right: 10px;
    }
    .mobile-sidebar {
        width: 280px !important;
        z-index: 10001 !important; 
    }
    .main-title {
        font-size: 2.2rem !important; 
        padding: 0 10px;
    }
    .hero-desc {
        font-size: 1rem !important;
        padding: 0 15px;
    }
    .hero-btns {
        flex-direction: column !important; 
        gap: 15px !important;
        align-items: center;
    }
    .btn {
        width: 85% !important; 
        margin: 0 !important;
        padding: 12px 20px !important;
        font-size: 16px !important;
    }
    .btn-secondary {
        margin-right: 0 !important;
    }
    .about-section {
        padding: 60px 0 !important;
    }
    .about-wrapper {
        flex-direction: column !important;
        text-align: center !important;
        gap: 30px !important;
    }
    .about-content, .about-image-box {
        min-width: 100% !important; 
        width: 100% !important;
    }
    .extra-text {
        border-right: none !important;
        border-bottom: 4px solid var(--gold);
        padding: 0 0 15px 0 !important;
    }
    .experience-badge {
        left: 50% !important;
        transform: translateX(-50%) !important;
        bottom: -20px !important;
    }
    .contact-wrapper {
        flex-direction: column !important;
        text-align: center !important;
        width: 100% !important;
    }
    .contact-info-side, .quote-form-side {
        min-width: 100% !important;
        width: 100% !important;
    }
    .detail-item {
        flex-direction: column !important;
        gap: 10px !important;
    }
    .quote-card {
        padding: 30px 15px !important;
    }
    .form-row {
        flex-direction: column !important;
        gap: 0 !important;
    }
    .floating-contact-wrap {
        left: 15px !important; 
        bottom: 15px !important;
    }
    .float-btn {
        width: 50px !important;
        height: 50px !important;
        font-size: 20px !important;
    }
    .why-us-cards-grid {
        grid-template-columns: 1fr !important; 
        width: 100% !important;
    }
}
@media (max-width: 480px) {
    .main-title {
        font-size: 1.8rem !important;
    }
}
@media (max-width: 992px) {
    .nav-actions {
        display: flex !important;
        align-items: center !important;
        gap: 10px !important;
    }
    .hamburger {
        display: flex !important; 
        flex-direction: column;
        justify-content: space-around;
        width: 30px;
        height: 22px;
        cursor: pointer;
        z-index: 10005 !important;
        margin-right: 10px;
    }
    .hamburger span {
        width: 100%;
        height: 3px;
        background:var(--gold); 
        border-radius: 10px;
        border-color: var(--gold) ;
        transition: 0.3s;
    }
    .mobile-sidebar {
        z-index: 100000 !important; 
    }
    .nav-call-btn {
        padding: 5px 10px !important;
        max-width: 140px;
    }
    .call-text strong {
        font-size: 12px !important;
    }
    .hero-btns {
    display: flex !important;
    flex-direction: column !important; 
    gap: 20px !important;            
    align-items: center !important;
    margin-top: 30px !important;
}
.btn-secondary {
    margin-right: 0 !important;     
}
}
.about-content, .about-image-box, .contact-info-side, .quote-form-side {
    min-width: 0 !important; 
     
}
.locations-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    text-align: center;
    overflow: hidden;
}
.locations-header { margin-bottom: 60px; }
.governorates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 20px;
    margin-bottom: 80px;
}
.loc-card {
    background: white;
    padding: 25px 15px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    transition: all 0.4s ease;
    border: 1px solid transparent;
    cursor: pointer;
}
.loc-card i {
    font-size: 24px;
    color: var(--main-blue);
    transition: 0.3s;
}
.loc-card span {
    font-weight: 700;
    color: #444;
    font-size: 1.1rem;
}
.loc-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 15px 30px rgba(255, 193, 7, 0.2);
}
.loc-card:hover i {
    color: var(--gold);
    animation: markerBounce 0.5s infinite alternate;
}
@keyframes markerBounce {
    from { transform: translateY(0); }
    to { transform: translateY(-5px); }
}
.amman-regions-area {
    background: rgba(255, 255, 255, 0.6);
    padding: 50px 30px;
    border-radius: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid white;
}
.regions-title {
    color: var(--main-blue);
    margin-bottom: 35px;
    font-size: 1.8rem;
    font-weight: 800;
}
.regions-title i { color: var(--gold); margin-left: 10px; }
.regions-cloud {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}
.regions-cloud span {
    background: var(--main-blue);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    cursor: default;
}
.regions-cloud span:hover {
    background: white;
    color: var(--main-blue);
    border-color: var(--gold);
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
@media (max-width: 768px) {
    .governorates-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    .regions-cloud span {
        padding: 6px 15px;
        font-size: 0.85rem;
    }
    .regions-title { font-size: 1.4rem; }
}