/* Sticky header */
nav {
    position: fixed !important;
    top: 0 !important;
    left: 0;
    width: 100%;
    z-index: 9999 !important;
    background: #fff;
    box-shadow: 0px 1.5px 20px #000;
}

body {
    padding-top: 96px;
    overflow-x: hidden;
}

/* Desktop nav links */
nav ul li a {
    position: relative;
    padding: 6px 4px;
    color: #1d1d1d;
    font-weight: 500;
    transition: color 0.25s ease;
}

/* Text color change on hover */
nav ul li a:hover {
    color: #884848;
}

/* Underline animation */
nav ul li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2px;
    background: #884848;
    transition: width 0.25s ease;
}

/* Animate underline */
nav ul li a:hover::after {
    width: 100%;
}

/* top strip */
.top-strip {
    background: #111;
    color: #fff;
    font-size: 13px;
    width: 100%;
}

.strip-inner {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 0;
    opacity: .95;
}

.strip-left,
.strip-right {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.sep {
    opacity: .5
}

.dot {
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: var(--primary);
    display: inline-block;
}

.wrap {
    width: min(1100px, 92%);
    margin-inline: auto;
}

.footer {
    background: radial-gradient(circle at top, #2a2a2a 0%, #141414 65%, #101010 100%);
    color: #eaeaea;
    padding: 40px 0 28px;
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.footer-inner {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Top section layout */
.footer-top {
    display: flex;
    align-items: center;
    gap: 48px;
}

/* Logo */
.footer-brand {
    flex: 0 0 240px;
    /* keeps logo area wide like the screenshot */
    display: flex;
    align-items: center;
}

.brand-logo {
    width: 120px;
    height: auto;
    display: block;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.35));
}

/* Contact area */
.footer-contact {
    flex: 1;
    text-align: center;
}

.footer-title {
    font-size: 24px;
    font-weight: 600;
    margin: 0 0 18px;
    letter-spacing: 0.2px;
}

/* One-line row of 3 blocks */
.contact-row {
    display: flex;
    justify-content: center;
    gap: 70px;
    /* spacing like screenshot */
    align-items: flex-start;
}

.contact-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    text-align: left;
    color: #d8d8d8;
    max-width: 320px;
}

.contact-item p {
    margin: 0;
    line-height: 1.6;
    font-size: 18px;
    color: #d5d5d5;
    width: 200px;
}

.icon {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.06);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 34px;
    margin-top: 2px;
}

.icon svg {
    width: 18px;
    height: 18px;
    color: #f0f0f0;
    opacity: 0.95;
}

/* Divider line */
.footer-divider {
    margin: 34px 0 26px;
    height: 1px;
    background: rgba(255, 255, 255, 0.35);
}

/* Bottom text */
.footer-bottom {
    text-align: center;
    color: #dcdcdc;
    font-size: 18px;
}

/* Responsive: stack nicely on small screens */
@media (max-width: 900px) {
    .footer-top {
        flex-direction: column;
        align-items: center;
    }

    .footer-brand {
        flex: none;
        justify-content: center;
    }

    .footer-contact {
        justify-content: center;
        text-align: center;
        width: 100%;
    }

    .contact-row {
        flex-direction: column;
        gap: 18px;
        align-items: center;
    }

    .contact-item {
        width: 100%;
    }
}