:root {
    --ic-black: #121011;
    --ic-black-soft: #1c1815;
    --ic-orange: #f7941d;
    --ic-orange-dark: #d9720d;
    --ic-cream: #fff4e6;
    --ic-stripe: #2a2422;
}

* { box-sizing: border-box; }

body.landing {
    font-family: 'Poppins', 'Segoe UI', sans-serif;
    background: var(--ic-black);
    color: var(--ic-cream);
    overflow-x: hidden;
}

a { transition: all .25s ease; }

/* ---------- Ticker ---------- */
.ic-ticker {
    background: var(--ic-orange);
    color: var(--ic-black);
    font-weight: 600;
    font-size: 13px;
    letter-spacing: .5px;
    white-space: nowrap;
    overflow: hidden;
    padding: 6px 0;
}
.ic-ticker__track {
    display: inline-block;
    padding-left: 100%;
    animation: ic-marquee 22s linear infinite;
}
@keyframes ic-marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

/* ---------- Navbar ---------- */
.ic-navbar {
    position: fixed;
    top: 26px;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 14px 0;
    background: transparent;
}
.ic-navbar.scrolled {
    top: 0;
    background: rgba(18, 16, 17, 0.95);
    box-shadow: 0 4px 18px rgba(0,0,0,.35);
    backdrop-filter: blur(6px);
}
.ic-navbar .navbar-brand { display: flex; align-items: center; gap: 10px; }
.ic-navbar .navbar-brand img { height: 46px; width: 46px; border-radius: 50%; border: 2px solid var(--ic-orange); }
.ic-navbar .navbar-brand span { font-weight: 700; font-size: 20px; letter-spacing: 1px; color: #fff; }
.ic-navbar .navbar-brand span b { color: var(--ic-orange); }
.ic-navbar .nav-link {
    color: #ece3d8 !important;
    font-weight: 500;
    margin: 0 10px;
    position: relative;
}
.ic-navbar .nav-link:hover { color: var(--ic-orange) !important; }
.btn-ic-outline {
    border: 2px solid var(--ic-orange);
    color: var(--ic-orange) !important;
    border-radius: 30px;
    padding: 7px 22px;
    font-weight: 600;
}
.btn-ic-outline:hover { background: var(--ic-orange); color: var(--ic-black) !important; }
.btn-ic {
    background: var(--ic-orange);
    border: 2px solid var(--ic-orange);
    color: var(--ic-black) !important;
    border-radius: 30px;
    padding: 12px 30px;
    font-weight: 700;
    letter-spacing: .3px;
    box-shadow: 0 10px 25px rgba(247,148,29,.35);
}
.btn-ic:hover { background: transparent; color: var(--ic-orange) !important; }

/* ---------- Hero ---------- */
.ic-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 90px;
    overflow: hidden;
    background: var(--ic-black);
}
.ic-hero-carousel,
.ic-hero-carousel .carousel-inner,
.ic-hero-carousel .carousel-item {
    position: absolute;
    inset: 0;
    height: 100%;
    width: 100%;
}
.ic-hero-carousel .carousel-item {
    background-size: cover;
    background-position: center;
    transform: scale(1.06);
}
.ic-hero-carousel.carousel-fade .carousel-item {
    transition: opacity 1.4s ease, transform 6s ease;
}
.ic-hero-carousel.carousel-fade .carousel-item.active {
    transform: scale(1);
}
.ic-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(100deg, rgba(18,16,17,.94) 20%, rgba(18,16,17,.55) 55%, rgba(18,16,17,.75) 100%),
        linear-gradient(to top, rgba(18,16,17,.9) 0%, rgba(18,16,17,.1) 40%);
}
.ic-hero .container { position: relative; z-index: 2; }
.ic-hero-dots {
    position: absolute;
    z-index: 3;
    bottom: 70px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 10px;
}
.ic-hero-dots li {
    list-style: none;
    width: 34px;
    height: 4px;
    background: rgba(255,255,255,.35);
    cursor: pointer;
    border-radius: 4px;
    overflow: hidden;
    transition: background .2s ease;
}
.ic-hero-dots li.active { background: var(--ic-orange); }
.ic-eyebrow {
    display: inline-block;
    color: var(--ic-orange);
    letter-spacing: 3px;
    font-weight: 700;
    font-size: 13px;
    margin-bottom: 14px;
}
.ic-hero h1 {
    font-size: 4.4rem;
    font-weight: 800;
    line-height: 1.05;
    color: #fff;
    margin-bottom: 18px;
}
.ic-hero h1 span { color: var(--ic-orange); }
.ic-hero p.lead { color: #cfc4b8; font-size: 1.15rem; max-width: 520px; margin-bottom: 32px; }
@keyframes ic-float {
    0%,100% { transform: translateY(0px); }
    50% { transform: translateY(-16px); }
}
.ic-hero-badge {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 3px solid var(--ic-orange);
    box-shadow: 0 20px 45px rgba(0,0,0,.5);
    margin-bottom: 26px;
    animation: ic-float 5s ease-in-out infinite;
}
.ic-scroll-cue {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--ic-orange);
    font-size: 22px;
    animation: ic-bounce 1.8s infinite;
}
@keyframes ic-bounce {
    0%,100% { transform: translate(-50%,0); opacity:.5; }
    50% { transform: translate(-50%,8px); opacity:1; }
}

/* ---------- Section shared ---------- */
.ic-section { padding: 110px 0; position: relative; }
.ic-section-title { text-align: center; margin-bottom: 60px; }
.ic-section-title .ic-eyebrow { display: block; }
.ic-section-title h2 { font-size: 2.6rem; font-weight: 800; color: #fff; }
.ic-section-title h2 span { color: var(--ic-orange); }
.ic-section-title p { color: #b9ada0; max-width: 560px; margin: 14px auto 0; }
.ic-section.alt { background: var(--ic-black-soft); }

/* ---------- About ---------- */
.ic-about-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.ic-about-visual .ring {
    position: absolute;
    width: 340px;
    height: 340px;
    border: 2px dashed rgba(247,148,29,.4);
    border-radius: 50%;
    animation: ic-spin 30s linear infinite;
}
@keyframes ic-spin { to { transform: rotate(360deg); } }
.ic-about-visual img {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    box-shadow: 0 25px 55px rgba(0,0,0,.55);
    position: relative;
    z-index: 2;
}
.ic-feature-list { list-style: none; padding: 0; margin: 26px 0 0; }
.ic-feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 18px;
    color: #ddd2c5;
}
.ic-feature-list li i {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 50%;
    background: rgba(247,148,29,.12);
    color: var(--ic-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

/* ---------- Menu cards ---------- */
.ic-menu-card {
    background: linear-gradient(160deg, #201a16, #171310);
    border: 1px solid rgba(247,148,29,.15);
    border-radius: 16px;
    padding: 34px 26px;
    text-align: center;
    height: 100%;
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.ic-menu-card:hover {
    transform: translateY(-10px);
    border-color: var(--ic-orange);
    box-shadow: 0 20px 45px rgba(0,0,0,.45);
}
.ic-menu-card .ic-icon {
    width: 74px;
    height: 74px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(247,148,29,.25), rgba(247,148,29,0));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: var(--ic-orange);
}
.ic-menu-card h5 { color: #fff; font-weight: 700; margin-bottom: 8px; }
.ic-menu-card p { color: #a99f92; font-size: 14px; margin-bottom: 0; min-height: 40px; }

/* ---------- Stats / Why us strip ---------- */
.ic-stats {
    background: var(--ic-orange);
    padding: 46px 0;
}
.ic-stats .item { text-align: center; color: var(--ic-black); }
.ic-stats .item h3 { font-size: 2.4rem; font-weight: 800; margin-bottom: 4px; }
.ic-stats .item span { font-weight: 600; font-size: 14px; letter-spacing: .3px; }

/* ---------- Ambience tiles ---------- */
.ic-tile {
    border-radius: 16px;
    height: 260px;
    display: flex;
    align-items: flex-end;
    padding: 22px;
    position: relative;
    overflow: hidden;
    font-weight: 700;
    font-size: 17px;
    color: #fff;
    background-size: cover;
    background-position: center;
    transition: transform .35s ease;
}
.ic-tile:hover { transform: translateY(-8px); }
.ic-tile::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.85) 10%, rgba(0,0,0,.05) 65%);
}
.ic-tile i { position: relative; z-index: 2; margin-right: 8px; color: var(--ic-orange); }
.ic-tile span { position: relative; z-index: 2; }

/* ---------- Contact / Location ---------- */
.ic-contact-card {
    background: var(--ic-black-soft);
    border: 1px solid rgba(247,148,29,.15);
    border-radius: 18px;
    padding: 44px;
}
.ic-contact-row { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 24px; }
.ic-contact-row i {
    width: 46px; height: 46px; min-width: 46px;
    background: rgba(247,148,29,.12);
    color: var(--ic-orange);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px;
}
.ic-contact-row h6 { color: #fff; margin-bottom: 4px; font-weight: 700; }
.ic-contact-row p, .ic-contact-row a { color: #b9ada0; margin: 0; }
.ic-map-frame {
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(247,148,29,.15);
    filter: grayscale(.4) contrast(1.1);
    min-height: 380px;
}

/* ---------- Footer ---------- */
.ic-footer {
    background: #0c0a0a;
    padding: 50px 0 20px;
    border-top: 1px solid rgba(247,148,29,.15);
}
.ic-footer .brand { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.ic-footer .brand img { height: 42px; width: 42px; border-radius: 50%; border: 2px solid var(--ic-orange); }
.ic-footer .brand span { font-weight: 700; font-size: 19px; color: #fff; }
.ic-footer p { color: #8d8378; }
.ic-footer .social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px; height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(247,148,29,.3);
    color: var(--ic-orange);
    margin-right: 10px;
}
.ic-footer .social a:hover { background: var(--ic-orange); color: var(--ic-black); }
.ic-footer hr { border-color: rgba(255,255,255,.08); margin: 30px 0 18px; }
.ic-footer .bottom { color: #7a7168; font-size: 13px; text-align: center; }
.ic-footer .bottom a { color: var(--ic-orange); font-weight: 600; }

@media (max-width: 991px) {
    .ic-hero h1 { font-size: 2.6rem; }
    .ic-hero { text-align: center; }
    .ic-hero p.lead { margin-left: auto; margin-right: auto; }
    .ic-hero-badge { margin-left: auto; margin-right: auto; }
    .ic-about-visual { margin-bottom: 40px; }
    .ic-tile { margin-bottom: 20px; }
}
