:root {
    --gold-light: #D4AF37;
    --gold-medium: #C5A028;
    --gold-dark: #9A7D0A;
    --navy-deep: #0A1931;
    --navy-medium: #185ADB;
    --navy-light: #4A90E2;
    --slate-bg: #F8F9FA;
    --charcoal: #2C3E50;
    --white-pure: #FFFFFF;
    --shadow-soft: rgba(0, 0, 0, 0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: var(--charcoal);
    background-color: var(--white-pure);
}

.illumination-nav {
    background: var(--white-pure);
    box-shadow: 0 2px 12px var(--shadow-soft);
    padding: 0.8rem 0;
}

.brand-signature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    color: var(--navy-deep) !important;
    font-size: 1.3rem;
}

.logo-mark {
    font-size: 2rem;
    color: var(--gold-medium);
}

.navbar-item {
    color: var(--charcoal);
    font-weight: 500;
    transition: color 0.3s ease;
}

.navbar-item:hover {
    color: var(--navy-medium);
    background-color: transparent !important;
}

.nav-link-active {
    color: var(--navy-medium) !important;
    border-bottom: 2px solid var(--gold-medium);
}

.hero-luminance {
    background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy-medium) 100%);
    padding: 5rem 0;
    color: var(--white-pure);
}

.title-radiance {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--white-pure);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.subtitle-glow {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.action-cluster {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
}

.button {
    padding: 0.9rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    min-height: 44px;
}

.primary-beam {
    background: var(--gold-medium);
    color: var(--navy-deep);
}

.primary-beam:hover {
    background: var(--gold-dark);
    color: var(--white-pure);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
}

.secondary-glow {
    background: transparent;
    color: var(--white-pure);
    border: 2px solid var(--white-pure);
}

.secondary-glow:hover {
    background: var(--white-pure);
    color: var(--navy-deep);
}

.tertiary-shimmer {
    background: var(--navy-medium);
    color: var(--white-pure);
}

.tertiary-shimmer:hover {
    background: var(--navy-deep);
    transform: translateY(-2px);
}

.image-frame {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px var(--shadow-soft);
}

.image-frame img {
    width: 100%;
    height: auto;
    display: block;
}

.section {
    padding: 4.5rem 0;
}

.section-heading {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--navy-deep);
    margin-bottom: 2.5rem;
    line-height: 1.3;
}

.centered-beam {
    text-align: center;
}

.essence-narrative {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--charcoal);
    margin-bottom: 1.5rem;
}

.essence-showcase {
    background: var(--slate-bg);
}

.testimonials-radiance {
    background: var(--white-pure);
}

.testimonial-beacon {
    background: var(--white-pure);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px var(--shadow-soft);
    text-align: center;
    transition: transform 0.3s ease;
}

.testimonial-beacon:hover {
    transform: translateY(-5px);
}

.testimonial-portrait {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1.5rem;
    border: 4px solid var(--gold-light);
}

.testimonial-portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-verse {
    font-size: 1.05rem;
    font-style: italic;
    color: var(--charcoal);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.testimonial-author {
    font-weight: 700;
    color: var(--navy-deep);
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.testimonial-role {
    color: #666;
    font-size: 0.95rem;
}

.services-spectrum {
    background: var(--white-pure);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-prism {
    background: var(--slate-bg);
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.service-prism:hover {
    transform: translateY(-8px);
    border-color: var(--gold-medium);
    box-shadow: 0 12px 40px var(--shadow-soft);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--navy-medium), var(--navy-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.service-icon svg {
    width: 35px;
    height: 35px;
    color: var(--white-pure);
}

.service-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--navy-deep);
    margin-bottom: 1rem;
}

.service-description {
    font-size: 1rem;
    color: var(--charcoal);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-investment {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gold-dark);
}

.advantages-brilliance {
    background: var(--slate-bg);
}

.advantage-facet {
    text-align: center;
    padding: 2rem 1rem;
}

.advantage-icon {
    width: 80px;
    height: 80px;
    background: var(--gold-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.advantage-icon svg {
    width: 40px;
    height: 40px;
    color: var(--navy-deep);
}

.advantage-label {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--navy-deep);
    margin-bottom: 0.8rem;
}

.advantage-detail {
    font-size: 1rem;
    color: var(--charcoal);
    line-height: 1.6;
}

.contact-beacon {
    background: var(--white-pure);
}

.contact-invitation {
    font-size: 1.2rem;
    color: var(--charcoal);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.contact-channels {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.channel-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
    color: var(--charcoal);
}

.channel-item svg {
    width: 24px;
    height: 24px;
    color: var(--gold-medium);
}

.contact-form-container {
    background: var(--slate-bg);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px var(--shadow-soft);
}

.inquiry-form .input,
.inquiry-form .textarea,
.inquiry-form .select select {
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    padding: 0.85rem;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: var(--white-pure);
}

.inquiry-form .select {
    width: 100%;
}

.inquiry-form .select select {
    width: 100%;
    height: auto;
    min-height: 44px;
}

.inquiry-form .input:focus,
.inquiry-form .textarea:focus,
.inquiry-form .select select:focus {
    border-color: var(--navy-medium);
    outline: none;
}

.inquiry-form .label {
    font-weight: 600;
    color: var(--navy-deep);
    margin-bottom: 0.5rem;
}

.footer.foundation-glow {
    background: var(--navy-deep);
    color: var(--white-pure);
    padding: 3rem 0 1.5rem;
}

.footer-brand {
    margin-bottom: 1rem;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

.footer-category {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gold-light);
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.7rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--gold-light);
}

.footer-base {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
}

.cookie-consent-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: var(--white-pure);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    max-width: 450px;
    z-index: 1000;
    display: none;
}

.cookie-consent-banner.show {
    display: block;
}

.cookie-message {
    color: var(--charcoal);
    margin-bottom: 1rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

.cookie-actions {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    flex-wrap: wrap;
}

.cookie-btn-accept {
    background: var(--navy-medium);
    color: var(--white-pure);
}

.cookie-btn-accept:hover {
    background: var(--navy-deep);
}

.cookie-btn-decline {
    background: transparent;
    color: var(--charcoal);
    border: 1px solid #ddd;
}

.cookie-btn-decline:hover {
    background: var(--slate-bg);
}

.cookie-link {
    color: var(--navy-medium);
    text-decoration: underline;
    font-size: 0.9rem;
}

.hero-about-luminance,
.hero-services-luminance,
.hero-portfolio-luminance,
.hero-contact-luminance {
    background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy-medium) 100%);
    color: var(--white-pure);
}

.mission-vision-realm {
    background: var(--slate-bg);
}

.mission-card {
    background: var(--white-pure);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px var(--shadow-soft);
    height: 100%;
}

.mission-icon {
    width: 70px;
    height: 70px;
    background: var(--gold-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.mission-icon svg {
    width: 35px;
    height: 35px;
    color: var(--navy-deep);
}

.mission-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--navy-deep);
    margin-bottom: 1rem;
}

.team-constellation {
    background: var(--white-pure);
}

.team-luminary {
    display: flex;
    gap: 1.5rem;
    background: var(--slate-bg);
    padding: 2rem;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.team-luminary:hover {
    transform: translateX(5px);
}

.team-portrait {
    width: 150px;
    height: 150px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
}

.team-portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--navy-deep);
    margin-bottom: 0.3rem;
}

.team-position {
    color: var(--gold-dark);
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-biography {
    color: var(--charcoal);
    line-height: 1.7;
    font-size: 1rem;
}

.achievements-showcase {
    background: var(--slate-bg);
}

.stat-prism {
    text-align: center;
    padding: 2rem;
    background: var(--white-pure);
    border-radius: 12px;
    box-shadow: 0 4px 15px var(--shadow-soft);
}

.stat-value {
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold-dark);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--charcoal);
    font-weight: 600;
}

.values-spectrum {
    background: var(--white-pure);
}

.value-beacon {
    text-align: center;
    padding: 2rem 1.5rem;
}

.value-principle {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--navy-deep);
    margin-bottom: 1rem;
}

.cta-realm {
    background: linear-gradient(135deg, var(--gold-medium) 0%, var(--gold-dark) 100%);
    padding: 4rem 0;
}

.cta-realm .section-heading {
    color: var(--white-pure);
}

.cta-message {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.service-detail-block {
    margin-bottom: 4rem;
}

.service-icon-large {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--navy-medium), var(--navy-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-icon-large svg {
    width: 45px;
    height: 45px;
    color: var(--white-pure);
}

.service-heading-major {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--navy-deep);
    margin-bottom: 1rem;
}

.service-price-highlight {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold-dark);
    margin-bottom: 1.5rem;
}

.service-narrative {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--charcoal);
    margin-bottom: 2rem;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.feature-item svg {
    width: 20px;
    height: 20px;
    color: var(--gold-medium);
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.alternate-bg {
    background: var(--slate-bg);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2.5rem;
}

.portfolio-item {
    background: var(--white-pure);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px var(--shadow-soft);
    transition: transform 0.3s ease;
}

.portfolio-item:hover {
    transform: translateY(-8px);
}

.portfolio-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.portfolio-content {
    padding: 1.5rem;
}

.portfolio-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--navy-deep);
    margin-bottom: 0.5rem;
}

.portfolio-category {
    color: var(--gold-dark);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.portfolio-description {
    color: var(--charcoal);
    line-height: 1.7;
    font-size: 1rem;
}

.contact-info-block {
    margin-top: 2rem;
}

.info-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: var(--gold-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon svg {
    width: 24px;
    height: 24px;
    color: var(--navy-deep);
}

.info-label {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--navy-deep);
    margin-bottom: 0.5rem;
}

.info-value {
    font-size: 1.1rem;
    color: var(--charcoal);
    margin-bottom: 0.3rem;
}

.info-note {
    font-size: 0.95rem;
    color: #666;
}

.service-areas {
    margin-top: 2.5rem;
    padding: 2rem;
    background: var(--slate-bg);
    border-radius: 12px;
}

.service-area-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--navy-deep);
    margin-bottom: 1rem;
}

.service-area-text {
    color: var(--charcoal);
    line-height: 1.7;
}

.contact-form-wrapper {
    background: var(--white-pure);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px var(--shadow-soft);
}

.map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px var(--shadow-soft);
    margin-top: 2rem;
}

.thank-you-realm {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thank-you-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.thank-you-icon {
    width: 100px;
    height: 100px;
    background: var(--gold-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.thank-you-icon svg {
    width: 50px;
    height: 50px;
    color: var(--navy-deep);
}

.thank-you-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--navy-deep);
    margin-bottom: 1rem;
}

.thank-you-message {
    font-size: 1.3rem;
    color: var(--charcoal);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.thank-you-submessage {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.thank-you-actions {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    flex-wrap: wrap;
}

.next-step-card {
    background: var(--white-pure);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px var(--shadow-soft);
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--gold-medium), var(--gold-dark));
    color: var(--white-pure);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.step-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--navy-deep);
    margin-bottom: 0.8rem;
}

.step-description {
    color: var(--charcoal);
    line-height: 1.7;
}

.legal-content {
    padding: 4rem 0;
}

.content-wrapper-legal {
    max-width: 900px;
    margin: 0 auto;
}

.legal-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--navy-deep);
    margin-bottom: 0.5rem;
}

.legal-updated {
    color: #666;
    font-size: 1rem;
    margin-bottom: 3rem;
}

.legal-section {
    margin-bottom: 3rem;
}

.legal-section h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--navy-deep);
    margin-bottom: 1rem;
}

.legal-section h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--navy-medium);
    margin-bottom: 0.8rem;
    margin-top: 1.5rem;
}

.legal-section p {
    color: var(--charcoal);
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.legal-section ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.legal-section li {
    color: var(--charcoal);
    line-height: 1.8;
    margin-bottom: 0.5rem;
    font-size: 1.05rem;
}

@media (max-width: 768px) {
    .title-radiance {
        font-size: 2.5rem;
    }

    .subtitle-glow {
        font-size: 1.2rem;
    }

    .section-heading {
        font-size: 2rem;
    }

    .action-cluster {
        flex-direction: column;
    }

    .button {
        width: 100%;
    }

    .team-luminary {
        flex-direction: column;
    }

    .team-portrait {
        width: 100%;
        height: 200px;
    }

    .cookie-consent-banner {
        left: 10px;
        right: 10px;
        max-width: calc(100% - 20px);
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .thank-you-title {
        font-size: 2.2rem;
    }

    .thank-you-actions {
        flex-direction: column;
    }
}
