

/* CSS Variables - Navy & Orange Color Scheme */
:root {
    --primary-orange: #F16C41;
    --dark-orange: #D1552D;
    --light-orange: #F38B66;
    --orange-gradient-start: #F16C41;
    --orange-gradient-end: #F59A76;
    /* Navy Colors */
    --primary-navy: #DBDBE3;
    --dark-navy: #302C38;
    --light-navy: #5A5562;
    --navy-blue: #4A4652;
    --nav-bg: #fff;
    --header-bg: #fff;
    --header-color: #5E5E5E;
    --breadcrumb-bg: #DBDBE3;
    --breadcrumb-color: #5E5E5E;
    --footer-bg: #fff;
    --footer-color: #5E5E5E;
    --intro-section-bg: #DBDBE3;
    --accent-dark: #1A1A1A;
    --text-color: #2C2C2C;
    --text-light: #666;
    --text-white: #fff;
    --header-text-dark: #302C38;
    --bg-light: #F8F9FA;
    --bg-cream: #FFF5ED;
    --white: #fff;
    --card-bg: #fff;
    --gray: #F5F5F5;
    --max-width: 1200px;
    --transition: all 0.3s ease;
    --shadow: 0 4px 6px rgba(0, 31, 63, 0.15);
    --shadow-hover: 0 8px 20px rgba(241, 108, 65, 0.25);
    --body-color: #5E5E5E;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background: var(--primary-navy) !important;
    background-attachment: fixed;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--primary-orange);
    text-decoration: none;
    transition: var(--transition);
}

    a:hover {
        color: var(--dark-orange);
    }

/* Wrapper */
#wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* ============================================
   HEADER - Orange Theme
   ============================================ */
#header {
    background: var(--header-bg);
    color: var(--header-color);
    padding: 0.75rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    /*border-bottom: 3px solid var(--dark-orange);*/
}

.header-holder {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1rem;
    display: grid;
    grid-template-columns: auto 1fr auto auto;
    grid-template-rows: auto auto;
    grid-template-areas:
        "logo info info language"
        "logo nav nav phone";
    gap: 0.5rem 1.5rem;
    align-items: center;
}

.dijlalogo {
    grid-area: logo;
    grid-row: 1 / 3;
    align-self: center;
    padding-right: 2rem;
    border-right: 2px solid rgba(255, 255, 255, 0.3);
}

    .dijlalogo a {
        display: inline-block;
        position: relative;
        transition: var(--transition);
    }

    .dijlalogo img {
        height: 120px;
        width: auto;
        display: block;
        transition: var(--transition);
        border-radius: 40px 0 40px 0;
    }

    .dijlalogo a:hover img {
        transform: scale(1.05);
        filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
    }

/* Language Switcher */
.language-bar {
    grid-area: language;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.4rem 0.8rem;
    border-radius: 25px;
    border: 1px solid rgba(241, 108, 65, 0.3);
    align-self: center;
    justify-self: end;
}

    .language-bar strong {
        color: var(--header-color);
        font-size: 0.8rem;
        margin-right: 0.3rem;
    }


    .language-bar ul {
        display: flex;
        gap: 0.3rem;
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .language-bar li {
        margin: 0;
    }

    .language-bar a,
    .language-bar span {
        display: inline-flex;
        align-items: center;
        padding: 0.3rem 0.7rem;
        border-radius: 15px;
        font-size: 0.75rem;
        font-weight: 600;
        transition: var(--transition);
        text-decoration: none;
        cursor: pointer;
        white-space: nowrap;
    }

    .language-bar a {
        background: rgba(255, 255, 255, 0.1);
        color: var(--header-color);
        border: 1px solid transparent;
    }

        .language-bar a:hover {
            background: rgba(255, 107, 0, 0.2);
            color: var(--primary-orange);
            border-color: var(--primary-orange);
            transform: translateY(-2px);
        }

    .language-bar span.active,
    .language-bar .english.active,
    .language-bar .arabic.active {
        background: linear-gradient(135deg, var(--primary-orange), var(--light-orange));
        color: var(--white);
        border: 1px solid var(--dark-orange);
        box-shadow: 0 2px 8px rgba(255, 107, 0, 0.3);
    }

.info-block {
    grid-area: info;
    font-size: 1rem;
    align-self: center;
    text-align: left;
    padding-bottom: 0.25rem;
}

    .info-block strong {
        color: var(--header-color);
        font-size: 2rem;
        font-weight: 700;
        text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
    }

.phonenumber-dijla {
    grid-area: phone;
    justify-self: end;
    align-self: center;
    font-size: 0.95rem;
}

    .phonenumber-dijla strong {
        font-weight: 600;
        color: var(--header-color);
    }

    .phonenumber-dijla a {
        color: var(--header-color);
        text-decoration: none;
        font-weight: bold;
        text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
    }

        .phonenumber-dijla a:hover {
            color: var(--dark-navy);
        }

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    position: absolute;
    top: 1.5rem;
    right: 1rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
    flex-direction: column;
    gap: 4px;
}

    .mobile-menu-toggle span {
        display: block;
        width: 25px;
        height: 3px;
        background: var(--white);
        transition: var(--transition);
        border-radius: 2px;
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(7px, 7px);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

/* Navigation */
#nav {
    grid-area: nav;
    justify-self: start;
    background: var(--nav-bg);
    padding: 0.5rem 1rem;
    border-radius: 10px;
}

    #nav > ul {
        list-style: none;
        display: flex;
        gap: 0;
        justify-content: flex-start;
        flex-wrap: nowrap;
    }

        #nav > ul > li {
            position: relative;
        }

            #nav > ul > li > a {
                display: block;
                padding: 0.75rem 1.25rem;
                color: var(--header-color);
                font-weight: 600;
                text-transform: uppercase;
                transition: var(--transition);
                position: relative;
                font-size: 0.9rem;
            }

                #nav > ul > li > a::before {
                    content: '';
                    position: absolute;
                    bottom: 0;
                    left: 50%;
                    width: 0;
                    height: 3px;
                    background: var(--white);
                    transition: var(--transition);
                    transform: translateX(-50%);
                }

                #nav > ul > li > a:hover::before,
                #nav > ul > li.open > a::before {
                    width: 80%;
                }

                #nav > ul > li > a:hover,
                #nav > ul > li.open > a {
                    color: var(--dark-navy);
                    background: rgba(255, 255, 255, 0.2);
                }

/* Dropdown Submenu */
.submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--nav-bg);
    box-shadow: var(--shadow-hover);
    min-width: 250px;
    list-style: none;
    z-index: 100;
    border-top: 3px solid var(--primary-orange);
    border-radius: 0 0 8px 8px;
}

.has-submenu.open .submenu {
    display: block;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.submenu li a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--header-color);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.submenu li:last-child a {
    border-bottom: none;
}

.submenu li a:hover {
    background: var(--primary-orange);
    padding-left: 2rem;
    color: var(--white);
}

.submenu li.active a {
    background: rgba(255, 107, 0, 0.2);
    color: var(--primary-orange);
    font-weight: 600;
}

/* ============================================
   HERO SLIDER - Navy Theme
   ============================================ */
.hero-slider {
    position: relative;
    height: 550px;
    background: var(--primary-navy);
}

.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    position: relative;
    width: 100%;
}

    .swiper-slide::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, rgba(0, 31, 63, 0.95) 0%, rgba(0, 45, 77, 0.9) 100%);
    }

    .swiper-slide.slide-1::before {
        /*background: var(--primary-navy);*/
    }

    .swiper-slide.slide-2::before {
        /*background: linear-gradient(135deg, rgba(0, 31, 63, 0.92) 0%, rgba(255, 107, 0, 0.25) 100%);*/
    }

    .swiper-slide.slide-3::before {
        /*background: linear-gradient(135deg, rgba(0, 31, 63, 0.92) 0%, rgba(255, 107, 0, 0.28) 100%);*/
    }

.slide-content {
    text-align: center;
    color: var(--white);
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.8s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-content img {
    margin: 0 auto 1.5rem;
    opacity: 1;
}

.slide-content h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 800;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.slide-content p {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.btn-more {
    display: inline-block;
    padding: 1rem 3rem;
    background: var(--white);
    color: var(--primary-orange);
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: var(--transition);
    box-shadow: var(--shadow);
    text-transform: uppercase;
    letter-spacing: 1px;
}

    .btn-more:hover {
        background: var(--accent-dark);
        color: var(--white);
        transform: translateY(-3px);
        box-shadow: var(--shadow-hover);
    }

/* Swiper Controls */
.swiper-pagination {
    bottom: 30px !important;
}

.swiper-pagination-bullet {
    background: var(--white);
    opacity: 0.6;
    width: 12px;
    height: 12px;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--white);
    width: 30px;
    border-radius: 6px;
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--white);
    background: rgba(255, 107, 0, 0.8);
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

    .swiper-button-next:hover,
    .swiper-button-prev:hover {
        background: var(--primary-orange);
    }

    .swiper-button-next::after,
    .swiper-button-prev::after {
        font-size: 20px;
    }

/* ============================================
   MAIN CONTENT - Navy & Orange Theme
   ============================================ */
#main {
    flex: 1;
    max-width: var(--max-width);
    margin: 1rem auto;
    padding: 0 1rem;
    width: 100%;
}

/* Inner pages - 2 column layout with sidebar */
body.inner-page #main {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

#content {
    padding: 3rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow);
    width: 100%;
}

    #content h1 {
        color: var(--accent-dark);
        font-size: 2rem;
        margin-bottom: 1.5rem;
        line-height: 1.4;
        position: relative;
        padding-bottom: 1rem;
    }

        #content h1::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-orange), var(--light-orange));
            border-radius: 2px;
        }

    #content p {
        color: var(--text-light);
        font-size: 1.15rem;
        margin-bottom: 2rem;
        line-height: 1.8;
    }

.covered-box {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: linear-gradient(135deg, var(--primary-orange), var(--light-orange));
    color: var(--white);
    font-weight: bold;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: var(--transition);
    box-shadow: var(--shadow);
    text-transform: uppercase;
    letter-spacing: 1px;
}

    .covered-box:hover {
        background: linear-gradient(135deg, var(--dark-orange), var(--primary-orange));
        transform: translateY(-3px);
        box-shadow: var(--shadow-hover);
    }

/* Sidebar */
#sidebar {
    background: var(--bg-cream);
    padding: 2.5rem;
    border-radius: 15px;
    height: fit-content;
    box-shadow: var(--shadow);
    border-top: 4px solid var(--primary-orange);
}

.contact-form-wrapper h3 {
    margin-bottom: 1.5rem;
    color: var(--accent-dark);
    font-size: 1.5rem;
    font-weight: 700;
}

.form-group {
    margin-bottom: 1.2rem;
}

    .form-group label {
        display: block;
        margin-bottom: 0.5rem;
        font-weight: 600;
        color: var(--text-color);
    }

    .form-group input,
    .form-group textarea {
        width: 100%;
        padding: 0.9rem;
        border: 2px solid #e0e0e0;
        border-radius: 8px;
        font-family: inherit;
        font-size: 1rem;
        transition: var(--transition);
    }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--primary-orange);
            box-shadow: 0 0 8px rgba(255, 107, 0, 0.2);
        }

.btn-submit {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, var(--primary-orange), var(--light-orange));
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
}

    .btn-submit:hover {
        background: linear-gradient(135deg, var(--dark-orange), var(--primary-orange));
        transform: translateY(-2px);
        box-shadow: var(--shadow);
    }

    .btn-submit:disabled {
        background: #ccc;
        cursor: not-allowed;
    }

/* ============================================
   FLOATING ACTION BUTTONS
   ============================================ */
.floating-buttons {
    position: fixed;
    bottom: 15px;
    right: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 999;
}

.fab-button {
    position: relative;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 28px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
    cursor: pointer;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.fab-button:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    animation: none;
}

.fab-button.whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

    .fab-button.whatsapp:hover {
        background: linear-gradient(135deg, #128C7E, #075E54);
    }

.fab-button.email {
    background: linear-gradient(135deg, var(--primary-orange), var(--dark-orange));
}

    .fab-button.email:hover {
        background: linear-gradient(135deg, var(--dark-orange), #cc4d00);
    }

.fab-tooltip {
    position: absolute;
    right: 70px;
    background: var(--accent-dark);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 5px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    font-size: 0.9rem;
    font-weight: 600;
}

    .fab-tooltip::after {
        content: '';
        position: absolute;
        right: -8px;
        top: 50%;
        transform: translateY(-50%);
        border: 4px solid transparent;
        border-left-color: var(--accent-dark);
    }

.fab-button:hover .fab-tooltip {
    opacity: 1;
    visibility: visible;
    right: 75px;
}

/* ============================================
   FOOTER - Navy & Orange Theme
   ============================================ */
#footer {
    background: var(--footer-bg);
    color: var(--footer-color);
    /*padding: 3rem 0 1.5rem;*/
    margin-top: auto;
    border-top: 4px solid var(--dark-orange);
}

.footer-nav {
    max-width: var(--max-width);
    margin: 0 auto 2rem;
    padding: 0 1rem;
    display: none;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.sub-nav {
    list-style: none;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

    .sub-nav a {
        color: rgba(255, 255, 255, 0.95);
        transition: var(--transition);
        font-weight: 500;
    }

        .sub-nav a:hover {
            color: var(--white);
            text-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
        }

.follow {
    list-style: none;
    display: flex;
    gap: 1rem;
}

    .follow a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        background: var(--white);
        border-radius: 50%;
        transition: var(--transition);
    }

        .follow a:hover {
            background: var(--dark-navy);
            transform: translateY(-3px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
        }

    .follow img {
        filter: brightness(0) saturate(100%) invert(45%) sepia(91%) saturate(2087%) hue-rotate(360deg);
    }

    .follow a:hover img {
        filter: brightness(0) invert(1);
    }

#footer p {
    text-align: center;
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: var(--footer-color);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Tablet */
@media (max-width: 768px) {
    .header-holder {
        grid-template-columns: 1fr;
        grid-template-areas:
            "logo"
            "language"
            "info"
            "phone"
            "nav";
        position: relative;
        padding-top: 3rem;
    }

    .language-bar,
    .phonenumber-dijla {
        justify-self: start;
    }

    /* Mobile Language Switcher Adjustments */
    .language-bar {
        padding: 0.3rem 0.6rem;
        width: fit-content;
    }

        .language-bar strong {
            font-size: 0.7rem;
            margin-right: 0.2rem;
        }

        .language-bar a,
        .language-bar span {
            padding: 0.25rem 0.5rem;
            font-size: 0.7rem;
        }

    .mobile-menu-toggle {
        display: flex;
    }

    #nav {
        display: none;
        width: 100%;
    }

        #nav.active {
            display: block;
            background: rgba(26, 26, 26, 0.98);
            padding: 1rem 0;
            border-radius: 8px;
        }

        #nav > ul {
            flex-direction: column;
            width: 100%;
        }

            #nav > ul > li > a {
                width: 100%;
                border-bottom: 1px solid rgba(255, 107, 0, 0.2);
            }

    .submenu {
        position: static;
        box-shadow: none;
        background: rgba(255, 107, 0, 0.1);
        width: 100%;
        border-radius: 0;
    }

    .hero-slider {
        height: 400px;
    }

    .slide-content h2 {
        font-size: 2rem;
    }

    .slide-content p {
        font-size: 1.1rem;
    }

    #main {
        grid-template-columns: 1fr;
    }

    
    .fab-button {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }

    .footer-nav {
        flex-direction: column;
        text-align: center;
    }

    .sub-nav {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
    }
}

/* Mobile */
@media (max-width: 480px) {
    :root {
        font-size: 14px;
    }

    .dijlalogo {
        font-size: 1.8rem;
    }

    .hero-slider {
        height: 350px;
    }

    .slide-content h2 {
        font-size: 1.6rem;
    }

    .slide-content p {
        font-size: 1rem;
    }

    #content,
    #sidebar {
        padding: 1.5rem;
    }

        #content h1 {
            font-size: 1.5rem;
        }

        #content p {
            font-size: 1rem;
        }

    

    .fab-button {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }

    .fab-tooltip {
        display: none;
    }
}

/* Prevent body scroll when mobile menu is open */
body.menu-open {
    overflow: hidden;
}

/* Custom Scrollbar - Orange Theme */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--bg-light);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--primary-orange), var(--light-orange));
    border-radius: 6px;
}

    ::-webkit-scrollbar-thumb:hover {
        background: var(--dark-orange);
    }
