:root {
    --primary: #0f66bd;
    --primary-hover: rgba(15, 102, 189, 0.9);
    --primary-ring: rgba(15, 102, 189, 0.5);
    --footer-social: #aeb9c7;
    --footer-social-hover: rgba(15, 102, 189, 0.9);
    --bg-light: #f6f7f8;
    --bg-dark: #0a2540;
    --text-light: #111418;
    --text-muted: #617589;
    --border-light: #dbe0e6;
    --card-dark: #1c2a38;
    --border-dark: #2e3a47;
    --text-muted-dark: #aeb9c7;
}

/* JUBILEE PRINT - Unified Navigation Stylesheet */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background-color: rgba(246, 247, 248, 0.9);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--border-light);
    font-family: var(--font-main);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 4rem;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

.logo-group {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    z-index: 60;
    color: var(--primary);
    text-decoration: none;
}

.logo-icon {
    width: 1.5rem;
    height: 1.5rem;
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 700;
}

/* Desktop Navigation */
@media (min-width: 768px) {
    .main-nav {
        display: flex !important;
        align-items: center;
        gap: 2rem;
    }

    .nav-link {
        font-size: 0.875rem;
        font-weight: 500;
        color: var(--text-main);
        text-decoration: none;
        transition: color 0.2s;
    }

    .nav-link:hover,
    .nav-link.active {
        color: var(--primary);
    }

    .nav-cta {
        background-color: var(--primary);
        padding: 0.6rem 1.2rem;
        border-radius: 0.5rem;
        transition: background-color 0.2s;
    }

    .nav-cta a {
        color: white !important;
        font-weight: 700;
        text-decoration: none;
    }

    .nav-cta:hover {
        background-color: var(--primary-hover);
    }

    .mobile-menu-toggle {
        display: none;
    }
}

/* Mobile Navigation Dropdown */
@media (max-width: 767px) {
    .main-nav {
        position: absolute;
        top: 4rem;
        left: 0;
        display: none;
        flex-direction: column;
        gap: 1.5rem;
        width: 100%;
        padding: 1.5rem;
        background-color: var(--bg-light);
        border-bottom: 1px solid var(--border-light);
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    }

    .main-nav.mobile-open {
        display: flex;
    }

    .nav-link {
        font-size: 1rem;
        font-weight: 600;
        color: var(--text-main);
        text-decoration: none;
    }

    .nav-cta {
        margin-top: 0.5rem;
        background-color: var(--primary);
        padding: 0.8rem;
        border-radius: 0.5rem;
        text-align: center;
    }

    .nav-cta a {
        display: block;
        width: 100%;
        color: white !important;
        font-weight: 700;
        text-decoration: none;
    }

    .mobile-menu-toggle {
        display: flex;
        cursor: pointer;
        padding: 0.5rem;
        border: 1px solid var(--border-light);
        border-radius: 0.4rem;
    }
}

/* Footer */
.site-footer {
    position: relative;
    left: 50%;
    right: 50%;
    width: 100vw;
    margin-right: -50vw;
    margin-left: -50vw;
    padding: 3rem 2.5rem;
    background-color: white;
    border-top: 1px solid var(--border-light);
}

.dark .site-footer {
    background-color: var(--card-dark);
    border-top-color: var(--border-dark);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 1152px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer-heading {
    margin-bottom: 1rem;
    font-size: 1rem;
    font-weight: 700;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    list-style: none;
}

.footer-link {
    font-size: 0.875rem;
    color: var(--text-muted);
    text-decoration: none;
}

.dark .footer-link {
    color: var(--text-muted-dark);
}

.footer-link:hover {
    color: var(--primary);
}

.social-icons {
    display: flex;
    gap: 1rem;
    color: var(--footer-social);
}

.dark .social-icons {
    color: var(--footer-social);
}

.social-icons a {
    color: inherit;
    transition: color 0.2s ease, transform 0.2s ease;
}

.social-icons a:hover {
    color: var(--footer-social-hover);
    transform: translateY(-1px);
}

.footer-bottom {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-light);
    color: var(--text-muted);
    font-size: 0.875rem;
    text-align: center;
}

.dark .footer-bottom {
    border-top-color: var(--border-dark);
    color: var(--text-muted-dark);
}

.material-symbols-outlined {
    vertical-align: middle;
}

/* Premium futuristic Jubilee Print visual system */
:root {
    --jp-midnight: #06111f;
    --jp-navy: #081a2f;
    --jp-panel: rgba(10, 27, 48, 0.78);
    --jp-panel-soft: rgba(255, 255, 255, 0.08);
    --jp-line: rgba(148, 197, 253, 0.22);
    --jp-line-strong: rgba(245, 196, 81, 0.38);
    --jp-blue: #1d9bf0;
    --jp-blue-2: #47b5ff;
    --jp-gold: #f5c451;
    --jp-text: #f8fbff;
    --jp-muted: #b7c6d8;
    --jp-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
    --jp-radius: 18px;
    --jp-radius-sm: 12px;
}

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    background:
        radial-gradient(circle at 12% 8%, rgba(29, 155, 240, 0.22), transparent 30rem),
        radial-gradient(circle at 88% 18%, rgba(245, 196, 81, 0.14), transparent 24rem),
        linear-gradient(135deg, #06111f 0%, #0a1b31 45%, #071426 100%) !important;
    color: var(--jp-text) !important;
}

body::selection {
    background: rgba(245, 196, 81, 0.35);
}

.container,
.container-max,
.hero-content,
.container-narrow {
    width: min(100% - 32px, 1280px) !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

.site-header,
.header-main {
    position: sticky !important;
    top: 0 !important;
    z-index: 100 !important;
    background: rgba(6, 17, 31, 0.78) !important;
    border-bottom: 1px solid var(--jp-line) !important;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.24) !important;
    backdrop-filter: blur(18px) saturate(150%) !important;
}

.nav-inner {
    min-height: 76px;
    height: auto;
}

.logo-group,
.brand-name,
.logo-text {
    color: var(--jp-text) !important;
    letter-spacing: 0.04em;
}

.logo-text,
.brand-name {
    position: relative;
}

.logo-text::after,
.brand-name::after {
    content: "";
    display: block;
    width: 44px;
    height: 2px;
    margin-top: 6px;
    background: linear-gradient(90deg, var(--jp-gold), var(--jp-blue));
    border-radius: 999px;
}

.main-nav {
    gap: clamp(1rem, 2vw, 2.4rem) !important;
}

.nav-link,
.header-main .nav-link {
    position: relative;
    color: rgba(248, 251, 255, 0.78) !important;
    font-weight: 700 !important;
}

.nav-link::after,
.header-main .nav-link::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -0.5rem;
    left: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--jp-blue), var(--jp-gold));
    border-radius: 999px;
    opacity: 0;
    transform: scaleX(0.4);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.nav-link:hover,
.nav-link.active,
.header-main .nav-link:hover {
    color: #ffffff !important;
}

.nav-link:hover::after,
.nav-link.active::after,
.header-main .nav-link:hover::after {
    opacity: 1;
    transform: scaleX(1);
}

.nav-cta,
.btn,
.btn-primary,
.btn-accent,
.cta-banner-button,
.add-btn,
button[type="submit"] {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.5rem !important;
    min-height: 3rem !important;
    padding: 0.75rem 1.35rem !important;
    border: 1px solid rgba(255, 255, 255, 0.16) !important;
    border-radius: 12px !important;
    background: linear-gradient(135deg, var(--jp-blue), #0c64d8 52%, var(--jp-gold)) !important;
    color: #ffffff !important;
    font-weight: 800 !important;
    line-height: 1 !important;
    box-shadow: 0 14px 32px rgba(29, 155, 240, 0.25) !important;
    cursor: pointer !important;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, filter 0.25s ease !important;
}

.nav-cta a,
.btn a,
.btn-primary a,
.btn-accent a {
    color: inherit !important;
}

.nav-cta:hover,
.btn:hover,
.btn-primary:hover,
.btn-accent:hover,
.cta-banner-button:hover,
.add-btn:hover,
button[type="submit"]:hover {
    transform: translateY(-2px) !important;
    filter: brightness(1.08) !important;
    box-shadow: 0 20px 46px rgba(29, 155, 240, 0.36), 0 0 0 1px rgba(245, 196, 81, 0.24) inset !important;
}

.btn-secondary,
.btn-outline,
.cancel-btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.5rem !important;
    min-height: 3rem !important;
    padding: 0.75rem 1.35rem !important;
    background: rgba(255, 255, 255, 0.07) !important;
    border: 1px solid var(--jp-line) !important;
    color: var(--jp-text) !important;
    border-radius: 12px !important;
    font-weight: 800 !important;
    line-height: 1 !important;
    cursor: pointer !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06) !important;
    transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease !important;
}

.btn-secondary:hover,
.btn-outline:hover,
.cancel-btn:hover {
    background: rgba(255, 255, 255, 0.12) !important;
    border-color: var(--jp-line-strong) !important;
    transform: translateY(-2px) !important;
}

.hero,
.hero-section,
.hero-banner {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--jp-line) !important;
    border-radius: clamp(18px, 2vw, 28px) !important;
    box-shadow: var(--jp-shadow) !important;
}

.hero::before,
.hero-section::before,
.hero-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        radial-gradient(circle at 20% 15%, rgba(29, 155, 240, 0.28), transparent 22rem),
        linear-gradient(135deg, rgba(6, 17, 31, 0.14), rgba(6, 17, 31, 0.44));
    pointer-events: none;
}

.hero > *,
.hero-section > *,
.hero-banner > * {
    position: relative;
    z-index: 1;
}

.hero h1,
.hero-title,
.hero-text h1,
.page-header h2 {
    color: #ffffff !important;
    letter-spacing: 0 !important;
    text-wrap: balance;
}

.hero p,
.hero-subtitle,
.section-header p,
.content-text,
.service-description,
.hero-text p {
    color: var(--jp-muted) !important;
}

.section-padding,
.main-content {
    padding-top: clamp(3rem, 7vw, 6.5rem) !important;
    padding-bottom: clamp(3rem, 7vw, 6.5rem) !important;
}

.process,
.cta-section,
.transformation-section,
.cta-banner,
section[style*="background-color: white"] {
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025)) !important;
    border-top: 1px solid var(--jp-line) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06) !important;
}

.section-header h2,
.content-title,
.section-heading,
.form-section-title,
.transformation-section h2,
.cta-box h2,
.cta-banner h2 {
    color: #ffffff !important;
    letter-spacing: 0 !important;
}

.process-card,
.testimonial-card,
.service-card,
.feature-grid > div,
.form-card,
.detail-item,
.cta-section,
.transformation-section,
.cta-box {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.035)) !important;
    border: 1px solid var(--jp-line) !important;
    border-radius: var(--jp-radius) !important;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.2) !important;
    backdrop-filter: blur(14px) !important;
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease !important;
}

.process-card,
.feature-grid > div {
    padding: clamp(1.25rem, 2vw, 1.75rem) !important;
}

.process-card:hover,
.testimonial-card:hover,
.service-card:hover,
.feature-grid > div:hover,
.portfolio-card:hover {
    transform: translateY(-6px) !important;
    border-color: var(--jp-line-strong) !important;
    box-shadow: 0 26px 70px rgba(0, 0, 0, 0.32), 0 0 40px rgba(29, 155, 240, 0.12) !important;
}

.icon-circle,
.feature-icon-wrapper,
.service-icon {
    background: linear-gradient(135deg, rgba(29, 155, 240, 0.18), rgba(245, 196, 81, 0.18)) !important;
    color: var(--jp-gold) !important;
    box-shadow: 0 0 30px rgba(29, 155, 240, 0.18) !important;
}

.gallery-img,
.portfolio-card,
#map {
    border: 1px solid var(--jp-line) !important;
    box-shadow: 0 18px 46px rgba(0, 0, 0, 0.24) !important;
}

.portfolio-grid {
    width: 100% !important;
    padding: clamp(1.25rem, 3vw, 2.5rem) 0 !important;
}

.portfolio-card {
    background: rgba(255, 255, 255, 0.08) !important;
}

.card-overlay {
    background:
        linear-gradient(to top, rgba(3, 10, 20, 0.88), rgba(6, 17, 31, 0.34), transparent),
        radial-gradient(circle at 20% 20%, rgba(29, 155, 240, 0.16), transparent 18rem) !important;
}

.card-title,
.card-link {
    color: #ffffff !important;
}

.form-input,
.form-select,
.form-textarea,
.input-field,
input,
select,
textarea {
    background: rgba(255, 255, 255, 0.08) !important;
    border: 1px solid var(--jp-line) !important;
    color: #ffffff !important;
    border-radius: 12px !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06) !important;
}

.form-input::placeholder,
.form-textarea::placeholder,
.input-field::placeholder,
input::placeholder,
textarea::placeholder {
    color: rgba(183, 198, 216, 0.72) !important;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus,
.input-field:focus,
input:focus,
select:focus,
textarea:focus {
    outline: none !important;
    border-color: var(--jp-gold) !important;
    box-shadow: 0 0 0 4px rgba(245, 196, 81, 0.16), 0 0 26px rgba(29, 155, 240, 0.16) !important;
}

.form-select,
select.input-field,
select {
    min-height: 3.25rem;
    padding-right: 3rem !important;
    background-image:
        linear-gradient(135deg, rgba(29, 155, 240, 0.14), rgba(245, 196, 81, 0.08)),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23f5c451' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E") !important;
    background-position: center, right 1rem center !important;
    background-repeat: no-repeat !important;
    background-size: auto, 1.15rem !important;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
}

.form-select:hover,
select.input-field:hover,
select:hover {
    border-color: rgba(245, 196, 81, 0.5) !important;
    background-color: rgba(255, 255, 255, 0.12) !important;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18) !important;
}

.form-select option,
select.input-field option,
select option {
    background-color: #071426;
    color: #f8fbff;
}

label,
.form-label,
.detail-value,
.service-title,
.process-card h3,
.testimonial-card h3 {
    color: var(--jp-text) !important;
}

.detail-label,
.footer-link,
.footer-bottom,
.testimonial-card p {
    color: var(--jp-muted) !important;
}

.upload-zone {
    background: rgba(255, 255, 255, 0.07) !important;
    border-color: rgba(148, 197, 253, 0.3) !important;
}

.site-footer {
    background:
        radial-gradient(circle at 15% 20%, rgba(29, 155, 240, 0.14), transparent 22rem),
        linear-gradient(135deg, rgba(3, 10, 20, 0.98), rgba(8, 26, 47, 0.98)) !important;
    border-top: 1px solid var(--jp-line) !important;
    color: var(--jp-text) !important;
}

.footer-heading {
    color: #ffffff !important;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 1px solid var(--jp-line);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
}

.social-icons a:hover {
    color: var(--jp-gold) !important;
    border-color: var(--jp-line-strong);
    box-shadow: 0 0 24px rgba(245, 196, 81, 0.16);
}

.mobile-menu-toggle {
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.08) !important;
    border: 1px solid var(--jp-line) !important;
}

@media (max-width: 767px) {
    .container,
    .container-max,
    .hero-content,
    .container-narrow {
        width: min(100% - 24px, 1280px) !important;
    }

    .main-nav {
        top: 76px !important;
        background: rgba(6, 17, 31, 0.96) !important;
        border-bottom: 1px solid var(--jp-line) !important;
        box-shadow: 0 22px 50px rgba(0, 0, 0, 0.32) !important;
        backdrop-filter: blur(18px) !important;
    }

    .hero,
    .hero-section,
    .hero-banner {
        min-height: 420px !important;
        margin-inline: 0 !important;
    }

    .hero h1,
    .hero-title {
        font-size: clamp(2rem, 12vw, 3rem) !important;
    }

    .site-footer {
        padding-inline: 1.25rem !important;
    }
}
