/* ===== Nora Phillips Consulting — Premium Global Styles ===== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Playfair+Display:wght@400;500;600;700&display=swap');

/* --- Reset & Base --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: #e8e8f0;
    line-height: 1.65;
    background: #0a0a14;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Premium Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #0a0a14; }
::-webkit-scrollbar-thumb { background: #c9a84c; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #e0c05e; }

::selection { background: rgba(201, 168, 76, 0.3); color: #ffffff; }

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

.container { 
    max-width: 1200px; 
    margin: 0 auto; 
    padding: 0 24px; 
    position: relative;
}

/* --- Animated Background Grain --- */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: -1;
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(201,168,76,0.03) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(201,168,76,0.02) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 80%, rgba(201,168,76,0.015) 0%, transparent 50%);
    pointer-events: none;
}

/* --- Navigation --- */
nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    padding: 16px 0;
    transition: background 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
}
nav.scrolled {
    background: rgba(10, 10, 20, 0.92);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    padding: 10px 0;
    box-shadow: 0 1px 0 rgba(255,255,255,0.06), 0 4px 30px rgba(0,0,0,0.3);
}
nav .container { display: flex; align-items: center; justify-content: space-between; }

.logo {
    display: flex;
    align-items: center;
    transition: opacity 0.3s;
    line-height: 0;
}
.logo:hover { opacity: 0.9; }
.logo img {
    height: 94px;
    width: auto;
    display: block;
}
.logo-img {
    height: 94px !important;
    width: auto !important;
    display: block !important;
}
/* Dark logo variant for light backgrounds */
.logo-light img {
    filter: brightness(0) invert(1);
}
/* Small logo for mobile */
@media (max-width: 480px) {
    .logo img { height: 36px; }
}

.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-links a {
    color: rgba(255,255,255,0.7);
    font-size: 0.85rem;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
    letter-spacing: 0.2px;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #c9a84c, #e8c75e);
    transition: width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-radius: 1px;
}
.nav-links a:hover { color: #ffffff; }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
    background: linear-gradient(135deg, #c9a84c, #d4b04a);
    color: #0a0a14 !important;
    padding: 10px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(201,168,76,0.2);
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
    background: linear-gradient(135deg, #e0c05e, #c9a84c);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(201,168,76,0.35);
    color: #0a0a14 !important;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
    z-index: 1001;
}
.hamburger span {
    display: block;
    width: 26px;
    height: 2px;
    background: #ffffff;
    border-radius: 2px;
    transition: all 0.3s ease;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: translateX(-10px); }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* --- Section Shared --- */
section { padding: 120px 0; position: relative; }

.section-label {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #c9a84c;
    margin-bottom: 16px;
    position: relative;
    padding-left: 40px;
}
.section-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 28px;
    height: 1.5px;
    background: #c9a84c;
    transform: translateY(-50%);
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -1px;
    margin-bottom: 18px;
    line-height: 1.15;
}
.section-title em {
    font-style: normal;
    background: linear-gradient(135deg, #e8c75e, #c9a84c, #d4b04a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-sub {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.5);
    max-width: 600px;
    font-weight: 300;
    line-height: 1.7;
}
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 36px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    border: none;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.3px;
}
.btn-primary {
    background: linear-gradient(135deg, #c9a84c, #d4b04a);
    color: #0a0a14;
    box-shadow: 0 4px 20px rgba(201,168,76,0.25);
}
.btn-primary:hover {
    background: linear-gradient(135deg, #e0c05e, #c9a84c);
    transform: translateY(-3px);
    box-shadow: 0 8px 35px rgba(201,168,76,0.35);
}
.btn-outline {
    background: transparent;
    color: #ffffff;
    border: 1.5px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(4px);
}
.btn-outline:hover {
    border-color: #c9a84c;
    color: #c9a84c;
    transform: translateY(-3px);
    background: rgba(201,168,76,0.05);
    box-shadow: 0 8px 35px rgba(201,168,76,0.1);
}

/* --- Page Header --- */
.page-header {
    position: relative;
    padding: 180px 0 100px;
    text-align: center;
    color: #ffffff;
    overflow: hidden;
}
.page-header-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.page-header-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
    animation: heroZoom 20s ease-in-out infinite alternate;
}
@keyframes heroZoom {
    0% { transform: scale(1.05); }
    100% { transform: scale(1.0); }
}
.page-header-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10,10,25,0.94) 0%, rgba(10,10,25,0.5) 50%, rgba(10,10,25,0.85) 100%);
    z-index: 1;
}
.page-header-content {
    position: relative;
    z-index: 2;
}
.page-header-content h1 {
    font-size: clamp(2.2rem, 5vw, 3.4rem);
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -1.5px;
    line-height: 1.1;
}
.page-header-content h1 span {
    background: linear-gradient(135deg, #e8c75e, #c9a84c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.page-header-content p {
    color: rgba(255,255,255,0.55);
    font-size: 1.05rem;
    max-width: 560px;
    margin: 0 auto;
    font-weight: 300;
}

/* --- Content Sections --- */
.content-section {
    background: linear-gradient(180deg, #0f0f20 0%, #14142a 100%);
    padding: 80px 0;
    position: relative;
}
.content-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201,168,76,0.4), transparent);
}

.content-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 20px;
    padding: 52px 48px;
    margin-bottom: 32px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}
.content-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(201,168,76,0.3), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}
.content-card:hover::before { opacity: 1; }
.content-card:hover {
    border-color: rgba(201,168,76,0.12);
    background: rgba(255,255,255,0.03);
    transform: translateY(-2px);
}
.content-card:last-child { margin-bottom: 0; }

.content-card h2 {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}
.content-card h2::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 40px;
    height: 2.5px;
    background: linear-gradient(90deg, #c9a84c, transparent);
    border-radius: 2px;
}

.content-card h3 {
    color: #ffffff;
    font-size: 1.08rem;
    font-weight: 600;
    margin-bottom: 12px;
    margin-top: 28px;
}
.content-card h3:first-of-type { margin-top: 0; }

.content-card p {
    color: rgba(255,255,255,0.6);
    font-size: 0.98rem;
    margin-bottom: 16px;
    font-weight: 300;
    line-height: 1.75;
}

.content-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 16px;
}
.content-card ul li {
    color: rgba(255,255,255,0.6);
    font-size: 0.95rem;
    padding: 8px 0 8px 28px;
    position: relative;
    font-weight: 300;
    line-height: 1.6;
}
.content-card ul li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: #c9a84c;
    font-weight: 600;
    font-size: 1.1rem;
}
.content-card strong { 
    color: rgba(255,255,255,0.85);
    font-weight: 500;
}

/* --- Testimonials --- */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    margin-top: 10px;
}
.testimonial-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 20px;
    padding: 40px 36px;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}
.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 10px;
    right: 24px;
    font-size: 5rem;
    line-height: 1;
    color: rgba(201,168,76,0.1);
    font-family: Georgia, serif;
    font-weight: 700;
}
.testimonial-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(201,168,76,0.2), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}
.testimonial-card:hover::after { opacity: 1; }
.testimonial-card:hover {
    border-color: rgba(201,168,76,0.15);
    transform: translateY(-4px);
    background: rgba(255,255,255,0.035);
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.testimonial-stars {
    color: #c9a84c;
    font-size: 0.95rem;
    margin-bottom: 16px;
    letter-spacing: 3px;
}
.testimonial-card blockquote {
    color: rgba(255,255,255,0.65);
    font-size: 0.92rem;
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 24px;
    font-weight: 300;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}
.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(201,168,76,0.25), rgba(201,168,76,0.05));
    border: 1.5px solid rgba(201,168,76,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 600;
    color: #c9a84c;
    flex-shrink: 0;
}
.testimonial-author-info strong {
    display: block;
    color: #ffffff;
    font-size: 0.92rem;
    font-weight: 600;
}
.testimonial-author-info span {
    color: rgba(255,255,255,0.4);
    font-size: 0.82rem;
}

/* --- Stats --- */
.about-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 24px;
}
.stat-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}
.stat-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #c9a84c, transparent);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}
.stat-card:hover::before { transform: scaleX(1); }
.stat-card:hover {
    border-color: rgba(201,168,76,0.15);
    transform: translateY(-4px);
    background: rgba(255,255,255,0.035);
}
.stat-number {
    font-size: 2.4rem;
    font-weight: 700;
    background: linear-gradient(135deg, #e8c75e, #c9a84c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 8px;
}
.stat-label {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.45);
    font-weight: 400;
    letter-spacing: 0.3px;
}

/* --- Footer --- */
footer {
    background: #070710;
    border-top: 1px solid rgba(255,255,255,0.04);
    padding: 56px 0 36px;
}
footer .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}
footer .copy {
    color: rgba(255,255,255,0.3);
    font-size: 0.85rem;
    font-weight: 400;
}
footer .copy a {
    color: rgba(255,255,255,0.5);
    transition: color 0.3s;
}
footer .copy a:hover { color: #c9a84c; }
.footer-links {
    display: flex;
    gap: 24px;
    list-style: none;
    flex-wrap: wrap;
}
.footer-links a {
    color: rgba(255,255,255,0.35);
    font-size: 0.83rem;
    transition: color 0.3s ease;
    font-weight: 400;
}
.footer-links a:hover { color: #c9a84c; }

/* --- Premium Decorative Elements --- */
.gold-line {
    width: 60px;
    height: 2.5px;
    background: linear-gradient(90deg, #c9a84c, #e8c75e);
    border-radius: 2px;
    margin: 0 auto 20px;
}

/* --- Animations --- */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

.content-card, .testimonial-card, .stat-card, .service-card {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}
.content-card:nth-child(1) { animation-delay: 0.05s; }
.content-card:nth-child(2) { animation-delay: 0.1s; }
.content-card:nth-child(3) { animation-delay: 0.15s; }
.content-card:nth-child(4) { animation-delay: 0.2s; }
.content-card:nth-child(5) { animation-delay: 0.25s; }
.content-card:nth-child(6) { animation-delay: 0.3s; }

/* --- Mobile Responsive --- */
@media (max-width: 968px) {
    .testimonials-grid { grid-template-columns: 1fr; }
    .about-stats { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(10, 10, 20, 0.98);
        backdrop-filter: blur(30px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 32px;
        transition: right 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        box-shadow: -10px 0 60px rgba(0,0,0,0.6);
    }
    .nav-links.open { right: 0; }
    .hamburger { display: flex; }
    section { padding: 80px 0; }
    .content-card { padding: 36px 24px; }
    .page-header { padding: 150px 0 70px; }
    .about-stats { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    footer .container { flex-direction: column; text-align: center; }
    .footer-links { justify-content: center; }
}
@media (max-width: 600px) {
    .about-stats { grid-template-columns: 1fr; max-width: 280px; margin-left: auto; margin-right: auto; }
}
@media (max-width: 480px) {
    .btn { width: 100%; justify-content: center; }
    .content-card { padding: 28px 20px; border-radius: 16px; }
    .section-label { padding-left: 32px; }
    .section-label::before { width: 22px; }
}

/* --- Form Styles (shared) --- */
.form-group {
    margin-bottom: 18px;
}
.form-group label {
    display: block;
    color: rgba(255,255,255,0.6);
    font-size: 0.82rem;
    font-weight: 500;
    margin-bottom: 6px;
    letter-spacing: 0.2px;
}
.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 13px 16px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-size: 0.92rem;
    transition: all 0.3s ease;
    outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: #c9a84c;
    background: rgba(255,255,255,0.07);
    box-shadow: 0 0 0 3px rgba(201,168,76,0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255,255,255,0.25);
}
.form-group textarea {
    resize: vertical;
    min-height: 100px;
}
.form-group select option {
    background: #1a1a2e;
    color: #ffffff;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.btn-submit {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #c9a84c, #d4b04a);
    color: #0a0a14;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    margin-top: 8px;
    letter-spacing: 0.3px;
}
.btn-submit:hover {
    background: linear-gradient(135deg, #e0c05e, #c9a84c);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(201,168,76,0.3);
}
.form-note {
    text-align: center;
    color: rgba(255,255,255,0.25);
    font-size: 0.75rem;
    margin-top: 16px;
    font-weight: 300;
}
.form-success {
    display: none;
    text-align: center;
    padding: 30px 20px;
}
.form-success.show { display: block; animation: fadeInUp 0.5s ease forwards; }
.form-success .check {
    font-size: 3.5rem;
    margin-bottom: 16px;
    line-height: 1;
}
.form-success h4 {
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 8px;
}
.form-success p {
    color: rgba(255,255,255,0.55);
    font-size: 0.9rem;
}
