/* =========================================================
   IJCCCS PREMIUM HEADER
   Modern • Elite • Clean
========================================================= */

:root {

    --ij-green: #315f52;
    --ij-green-dark: #285347;

    --ij-gold: #f5b82e;
    --ij-gold-light: #ffc94a;

    --ij-white: #ffffff;
    --ij-text: #f7faf8;
    --ij-muted: rgba(255,255,255,0.72);

}


/* =========================================================
   HEADER
========================================================= */

.ijcccs-header {

    width: 100%;

    height: 86px;

    background: linear-gradient(
        135deg,
        #F8FBF9 0%,
        #F1F7F3 55%,
        #EAF3EE 100%
    );

    position: relative;

    z-index: 9999;

    border-bottom:
        1px solid rgba(255,255,255,0.08);

    box-shadow:
        0 8px 30px rgba(0,0,0,0.08);

}


/* =========================================================
   INNER CONTAINER
========================================================= */

.ijcccs-header-inner {

    max-width: 1160px;

    height: 86px;

    margin: 0 auto;

    padding: 0 22px;

    display: flex;

    align-items: center;

    justify-content: space-between;

}


/* =========================================================
   LOGO
========================================================= */

.ijcccs-logo {

    display: flex;

    align-items: center;

    text-decoration: none;

    height: 100%;

    flex-shrink: 0;

}


.ijcccs-logo img {

    width: auto;

    height: 125px;

    max-width: 220px;

    object-fit: contain;

    display: block;

}


/* =========================================================
   NAVIGATION
========================================================= */

.ijcccs-nav {

    display: flex;

    align-items: center;

    justify-content: flex-end;

    gap: 4px;

    height: 100%;

}


/* =========================================================
   NAV LINKS
========================================================= */

.ijcccs-nav-link {

    position: relative;

    height: 100%;

    padding: 0 15px;

    display: inline-flex;

    align-items: center;

    gap: 8px;

    border: none;

    outline: none;

    background: transparent;

    color: #145A45;

    font-family:
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Roboto,
        Arial,
        sans-serif;

    font-size: 14px;

    font-weight: 500;

    letter-spacing: 0.1px;

    text-decoration: none;

    cursor: pointer;

    transition:
        color 0.25s ease;

}


/* GOLD UNDERLINE */

.ijcccs-nav-link::after {

    content: "";

    position: absolute;

    left: 15px;

    right: 15px;

    bottom: 17px;

    height: 2px;

    background: var(--ij-gold);

    border-radius: 10px;

    transform:
        scaleX(0);

    transform-origin: center;

    transition:
        transform 0.25s ease;

}





.ijcccs-nav-link:hover::after {

    transform: scaleX(1);

}


/* =========================================================
   DROPDOWN ITEM
========================================================= */

.ijcccs-nav-item {

    height: 100%;

    display: flex;

    align-items: center;

    position: relative;

}


/* =========================================================
   ARROW
========================================================= */

.ijcccs-arrow {

    width: 7px;

    height: 7px;

    border-right:
        1.5px solid rgba(255,255,255,0.7);

    border-bottom:
        1.5px solid rgba(255,255,255,0.7);

    transform:
        rotate(45deg)
        translateY(-2px);

    transition:
        transform 0.25s ease;

}


.ijcccs-nav-item:hover
.ijcccs-arrow {

    transform:
        rotate(225deg)
        translate(-1px, -1px);

}


/* =========================================================
   DROPDOWN
========================================================= */

.ijcccs-dropdown {

    position: absolute;

    top: calc(100% - 4px);

    left: 50%;

    min-width: 225px;

    padding: 9px;

    background: #ffffff;

    border-radius: 12px;

    border:
        1px solid rgba(0,0,0,0.06);

    box-shadow:
        0 18px 45px rgba(0,0,0,0.16);

    opacity: 0;

    visibility: hidden;

    transform:
        translate(-50%, 10px);

    transition:
        opacity 0.22s ease,
        transform 0.22s ease,
        visibility 0.22s ease;

}


/* SMALL GOLD TOP LINE */

.ijcccs-dropdown::before {

    content: "";

    position: absolute;

    top: 0;

    left: 22px;

    right: 22px;

    height: 2px;

    background: var(--ij-gold);

    border-radius: 0 0 5px 5px;

}


/* SHOW DROPDOWN */

.ijcccs-nav-item:hover
.ijcccs-dropdown {

    opacity: 1;

    visibility: visible;

    transform:
        translate(-50%, 0);

}


/* =========================================================
   DROPDOWN LINKS
========================================================= */

.ijcccs-dropdown a {

    display: block;

    padding: 11px 13px;

    color: #3d4b47;

    font-size: 13px;

    font-weight: 500;

    text-decoration: none;

    border-radius: 8px;

    transition:
        background 0.2s ease,
        color 0.2s ease,
        padding-left 0.2s ease;

}


.ijcccs-dropdown a:hover {

    background: #f3f7f5;

    color: var(--ij-green);

    padding-left: 17px;

}


/* =========================================================
   MOBILE BUTTON
========================================================= */

.ijcccs-mobile-btn {

    width: 44px;

    height: 44px;

    display: none;

    align-items: center;

    justify-content: center;

    flex-direction: column;

    gap: 5px;

    background:
        rgba(255,255,255,0.08);

    border:
        1px solid rgba(255,255,255,0.12);

    border-radius: 10px;

    cursor: pointer;

}


.ijcccs-mobile-btn span {

    width: 20px;

    height: 2px;

    background: #145A45;

    border-radius: 5px;

    transition:
        transform 0.25s ease,
        opacity 0.25s ease;

}


/* =========================================================
   MOBILE MENU
========================================================= */

.ijcccs-mobile-menu {

    display: none;

    position: absolute;

    top: 86px;

    left: 15px;

    right: 15px;

    background: #ffffff;

    border-radius: 14px;

    padding: 10px;

    box-shadow:
        0 20px 50px rgba(0,0,0,0.18);

    border:
        1px solid rgba(0,0,0,0.06);

}


.ijcccs-mobile-menu.active {

    display: block;

}


.ijcccs-mobile-menu > a {

    display: block;

    padding: 13px 14px;

    color: #34443f;

    font-size: 14px;

    font-weight: 500;

    text-decoration: none;

    border-radius: 8px;

}


.ijcccs-mobile-menu > a:hover {

    background: #f2f6f4;

    color: var(--ij-green);

}


/* =========================================================
   MOBILE GROUP
========================================================= */

.ijcccs-mobile-group {

    border-bottom:
        1px solid #edf0ee;

}
.ijcccs-header .mobile-toggle span {
    background: #145A45;
}


.ijcccs-mobile-dropdown {

    width: 100%;

    padding: 13px 14px;

    border: none;

    background: transparent;

    display: flex;

    align-items: center;

    justify-content: space-between;

    color: #34443f;

    font-size: 14px;

    font-weight: 500;

    cursor: pointer;

    text-align: left;

}


.ijcccs-mobile-dropdown span {

    font-size: 20px;

    font-weight: 300;

    color: var(--ij-gold);

}


/* =========================================================
   MOBILE SUBMENU
========================================================= */

.ijcccs-mobile-submenu {

    display: none;

    padding:
        0 10px 8px 25px;

}


.ijcccs-mobile-submenu.active {

    display: block;

}


.ijcccs-mobile-submenu a {

    display: block;

    padding: 9px 10px;

    color: #65736e;

    font-size: 13px;

    text-decoration: none;

}


.ijcccs-mobile-submenu a:hover {

    color: var(--ij-green);

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1050px) {

    .ijcccs-header-inner {

        padding:
            0 20px;

    }

    .ijcccs-nav-link {

        padding:
            0 10px;

        font-size: 13px;

    }

    .ijcccs-nav-link::after {

        left: 10px;

        right: 10px;

    }

    .ijcccs-logo img {

        height: 59px;

        max-width: 175px;

    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 850px) {

    .ijcccs-header {

        height: 78px;

    }


    .ijcccs-header-inner {

        height: 78px;

        padding:
            0 17px;

    }


    .ijcccs-logo img {

        height: 100px;

        max-width: 175px;

    }


    .ijcccs-nav {

        display: none;

    }


    .ijcccs-mobile-btn {

        display: flex;

    }


    .ijcccs-mobile-menu {

        top: 78px;

    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .ijcccs-logo img {

        height: 52px;

        max-width: 160px;

    }

    .ijcccs-mobile-menu {

        left: 10px;

        right: 10px;

    }

}

/* =========================================================
   IJCCCS PREMIUM FOOTER
   Compact Menu Style
========================================================= */

.ijcccs-footer {

    width: 100%;

    position: relative;

    background:
        linear-gradient(
            135deg,
            #285347 0%,
            #315f52 55%,
            #234b40 100%
        );

    color: #fff;

    font-family:
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Roboto,
        Arial,
        sans-serif;

    border-top:
        1px solid rgba(245,184,46,0.20);
}


/* =========================================================
   GOLD TOP LINE
========================================================= */

.ijcccs-footer::before {

    content: "";

    position: absolute;

    top: 0;
    left: 0;
    right: 0;

    height: 3px;

    background:
        linear-gradient(
            90deg,
            transparent,
            #f5b82e,
            #ffc94a,
            #f5b82e,
            transparent
        );
}


/* =========================================================
   FOOTER INNER
========================================================= */

.ijcccs-footer-inner {

    max-width: 1160px;

    margin: 0 auto;

    padding:
        38px 22px 32px;

    display: flex;

    align-items: flex-start;

    justify-content: space-between;

    gap: 60px;
}


/* =========================================================
   ADDRESS
========================================================= */

.ijcccs-footer-address {

    flex: 1;
}


.ijcccs-footer-address h3,
.ijcccs-footer-quick h3 {

    position: relative;

    display: inline-block;

    margin: 0 0 15px;

    padding-bottom: 9px;

    color: #ffffff;

    font-size: 30px;

    font-weight: 600;

    letter-spacing: 0.2px;
}


/* GOLD UNDERLINE */

.ijcccs-footer-address h3::after,
.ijcccs-footer-quick h3::after {

    content: "";

    position: absolute;

    left: 0;

    bottom: 0;

    width: 28px;

    height: 2px;

    background: #f5b82e;

    border-radius: 5px;
}


.ijcccs-footer-address p {

    margin: 0;

    color:
        rgba(255,255,255,0.68);

    font-size: 16.5px;

    line-height: 1.8;
}


/* =========================================================
   QUICK ACCESS
========================================================= */

.ijcccs-footer-quick {

    flex: 1;

    max-width: 520px;
}


/* =========================================================
   MENU
========================================================= */

.ijcccs-footer-menu {

    display: flex;

    flex-wrap: wrap;

    align-items: center;

    gap: 7px 8px;
}


/* MENU ITEM */

.ijcccs-footer-menu a {

    position: relative;

    display: inline-flex;

    align-items: center;

    padding:
        8px 13px;

    color:
        rgba(255,255,255,0.70);

    background:
        rgba(255,255,255,0.045);

    border:
        1px solid rgba(255,255,255,0.09);

    border-radius: 7px;

    font-size: 12.5px;

    font-weight: 500;

    text-decoration: none;

    transition:
        color 0.2s ease,
        background 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease;
}


/* GOLD DOT */

.ijcccs-footer-menu a::before {

    content: "";

    width: 4px;

    height: 4px;

    margin-right: 7px;

    border-radius: 50%;

    background: #f5b82e;

    opacity: 0.75;
}


/* HOVER */

.ijcccs-footer-menu a:hover {

    color: #ffffff;

    background:
        rgba(245,184,46,0.10);

    border-color:
        rgba(245,184,46,0.40);

    transform:
        translateY(-1px);
}


.ijcccs-footer-menu a:hover::before {

    background: #ffc94a;

}


/* =========================================================
   COPYRIGHT
========================================================= */

.ijcccs-footer-bottom {

    max-width: 1160px;

    margin: 0 auto;

    padding:
        17px 22px;

    border-top:
        1px solid rgba(255,255,255,0.10);

    text-align: center;
}


.ijcccs-footer-bottom p {

    margin: 0;

    color:
        rgba(255,255,255,0.48);

    font-size: 11px;

    line-height: 1.6;
}


.ijcccs-footer-bottom a {

    color: #f5b82e;

    text-decoration: none;

    font-weight: 500;

    transition: color 0.2s ease;
}


.ijcccs-footer-bottom a:hover {

    color: #ffc94a;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 768px) {

    .ijcccs-footer-inner {

        padding:
            34px 20px 28px;

        gap: 35px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .ijcccs-footer-inner {

        flex-direction: column;

        gap: 28px;

        padding:
            34px 17px 27px;
    }


    .ijcccs-footer-address,
    .ijcccs-footer-quick {

        width: 100%;

        max-width: none;
    }


    .ijcccs-footer-menu {

        gap: 6px;
    }


    .ijcccs-footer-menu a {

        padding:
            7px 11px;

        font-size: 11px;
    }


    .ijcccs-footer-bottom {

        padding:
            15px 17px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 400px) {

    .ijcccs-footer-menu a {

        padding:
            7px 9px;

        font-size: 10.5px;
    }

}

