/* ==========================================
   Intelli Management Custom Styling (Vanilla CSS)
   ========================================== */

/* Typography & Variables Setup */
:root {
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Harmonious Color Palette */
    --color-dark: #0d0d0d;
    --color-charcoal: #121212;
    --color-gold: #cca130;
    --color-gold-hover: #b48d25;
    --color-gold-bright: #e5a93b;
    --color-light-bg: #f7f7f7;
    --color-light-gray: #eaeaea;
    --color-gray-text: #666666;
    --color-text-dark: #222222;
    
    /* Alyve Magenta Accents */
    --color-pink-bg: #e6157e;
    --color-pink-hover: #d11270;
    --color-pink-light: #fff0f6;
    
    /* Layout & Shadows */
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 10px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 30px rgba(0,0,0,0.12);
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 20px;
    --radius-circle: 50%;
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Core Standards */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text-dark);
    background-color: #ffffff;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-dark);
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-smooth);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Utility Layouts */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.grid-2-equal {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.align-center {
    align-items: center;
}

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

.text-light {
    color: #ffffff;
}

.text-gray {
    color: #aaaaaa;
}

.text-light-gray {
    color: #f0f0f0;
}

.row-gap-lg {
    row-gap: 80px;
}

.shadow-lg {
    box-shadow: var(--shadow-lg);
}

.rounded-img {
    border-radius: var(--radius-lg);
    object-fit: cover;
    width: 100%;
    max-height: 520px;
}

.border-yellow {
    border: 6px solid var(--color-gold-bright);
}

.border-white {
    border: 6px solid #ffffff;
}

.section-tag {
    display: inline-block;
    background-color: var(--color-pink-light);
    color: var(--color-pink-bg);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 14px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.section-title {
    font-size: 42px;
    margin-bottom: 12px;
}

.section-subtitle {
    font-size: 18px;
    margin-bottom: 48px;
    font-weight: 300;
}

/* Button UI Components */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 16px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-primary-nav {
    background-color: var(--color-gold);
    color: #ffffff;
}

.btn-primary-nav:hover {
    background-color: var(--color-gold-hover);
    transform: translateY(-2px);
}

.btn-gold {
    background-color: var(--color-gold-bright);
    color: var(--color-dark);
}

.btn-gold:hover {
    background-color: #ffd276;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(229, 169, 59, 0.4);
}

.btn-block {
    display: flex;
    width: 100%;
}

/* Header & Navigation Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    display: flex;
    align-items: center;
}

.header-container {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-link {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 52px;
    width: auto;
}

.nav-bar {
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
    align-items: center;
}

.nav-links > li {
    display: flex;
    align-items: center;
}

.nav-link {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 16px;
    color: var(--color-dark);
    position: relative;
    display: inline-flex;
    align-items: center;
    height: 40px;
    line-height: 1;
    white-space: nowrap;
}

.nav-link:not(.dropdown-toggle)::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-gold-bright);
    transition: var(--transition-smooth);
}

.nav-link:not(.dropdown-toggle):hover::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.btn-quote {
    background-color: var(--color-gold-bright);
    color: var(--color-dark);
}

/* Header Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.dropdown-toggle::after {
    content: '';
    display: block;
    flex-shrink: 0;
    width: 6px;
    height: 6px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    transition: var(--transition-smooth);
    position: static;
    background: none;
}

.dropdown:hover .dropdown-toggle::after {
    transform: rotate(-135deg);
}

.dropdown::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 14px;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: -20px;
    background-color: #ffffff;
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius-md);
    padding: 12px 0;
    min-width: 220px;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition-smooth);
    border-top: 3px solid var(--color-gold-bright);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    display: block;
    padding: 10px 24px;
    font-size: 15px;
    color: var(--color-dark);
}

.dropdown-menu li a:hover {
    background-color: var(--color-light-bg);
    color: var(--color-gold-bright);
    padding-left: 28px;
}

/* Hero Section Styles with Animated Particle Web */
.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 680px;
    background-image: url('img/hero_bg.png');
    background-size: cover;
    background-position: center;
    background-color: #080808;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 80px;
}

#hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* HUD Overlay Styles for Animation Mode Indicator */
.hero-hud {
    position: absolute;
    bottom: 40px;
    right: 40px;
    background: rgba(13, 13, 13, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    padding: 14px 20px;
    z-index: 10;
    font-family: var(--font-heading);
    min-width: 330px;
    pointer-events: none;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-smooth);
}

.hud-status {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #aaaaaa;
}

.hud-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--color-gold-bright);
    box-shadow: 0 0 8px var(--color-gold-bright);
    display: inline-block;
    transition: var(--transition-smooth);
}

.hud-mode-title {
    color: #999999;
}

.hud-details {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #ffffff;
    transition: var(--transition-smooth);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(8,8,8,0.92) 0%, rgba(18,18,18,0.7) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
}

.hero-title {
    font-size: 58px;
    line-height: 1.1;
    color: #ffffff;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.highlight-gold {
    color: var(--color-gold-bright);
}

.hero-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
    max-width: 680px;
    font-weight: 300;
}

/* Capabilities section */
.capabilities-section {
    padding: 100px 0;
    background-color: var(--color-light-bg);
    border-bottom: 1px solid var(--color-light-gray);
}

.capability-card {
    background-color: #ffffff;
    padding: 48px 36px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    border: 1px solid transparent;
}

.capability-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-gold-bright);
}

.card-icon {
    color: var(--color-gold-bright);
    margin-bottom: 24px;
}

.capability-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
}

.capability-card p {
    color: var(--color-gray-text);
    font-size: 15px;
}

/* Leadership Proposition Section (Yellow) */
.leadership-section {
    padding: 120px 0;
    background-color: var(--color-gold-bright);
}

.leadership-text h2 {
    font-size: 48px;
    line-height: 1.15;
    margin-bottom: 28px;
    color: var(--color-dark);
}

.leadership-text .dark-accent {
    color: #ffffff;
}

.leadership-text p {
    font-size: 16px;
    color: rgba(0, 0, 0, 0.8);
    margin-bottom: 20px;
}

.leadership-text p.lead-p {
    font-size: 18px;
    font-weight: 500;
    color: var(--color-dark);
}

/* Why Us Section */
.why-us-section {
    padding: 120px 0;
    background-color: #ffffff;
}

.why-text-content h2 {
    font-size: 38px;
    margin-bottom: 24px;
}

.why-text-content p {
    color: var(--color-gray-text);
    margin-bottom: 20px;
    font-size: 16px;
}

.why-image-wrapper {
    padding: 0 12px;
}

.reverse-column > div:first-child {
    order: 2;
}

.reverse-column > div:last-child {
    order: 1;
}

/* Services Accordion section */
.services-section {
    padding: 100px 0;
    background-color: var(--color-charcoal);
}

.services-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 60px;
    align-items: flex-start;
}

.services-accordion-headers {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.accordion-tab {
    display: flex;
    align-items: center;
    padding: 24px 32px;
    background-color: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition-smooth);
    color: #ffffff;
    text-align: left;
}

.accordion-tab:hover {
    background-color: rgba(255,255,255,0.06);
    border-color: rgba(255,255,255,0.2);
}

.accordion-tab.active {
    background-color: #ffffff;
    color: var(--color-dark);
    border-color: #ffffff;
    box-shadow: var(--shadow-lg);
}

.tab-number {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    opacity: 0.6;
    margin-right: 24px;
}

.tab-title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    flex-grow: 1;
}

.tab-arrow {
    font-size: 20px;
    opacity: 0.5;
    transition: var(--transition-smooth);
}

.accordion-tab.active .tab-arrow {
    transform: translateX(6px);
    opacity: 1;
    color: var(--color-gold-bright);
}

/* Panel Display Right Side */
.services-panels {
    background-color: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: var(--radius-lg);
    padding: 48px;
    min-height: 400px;
    position: relative;
    overflow: hidden;
}

.service-panel {
    display: none;
    animation: fadeInTab 0.5s ease forwards;
}

.service-panel.active {
    display: block;
}

@keyframes fadeInTab {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-panel h3 {
    color: #ffffff;
    font-size: 32px;
    margin-bottom: 24px;
    border-left: 4px solid var(--color-gold-bright);
    padding-left: 16px;
}

.panel-desc {
    color: rgba(255,255,255,0.8);
    font-size: 16px;
    margin-bottom: 32px;
}

.panel-bullets {
    list-style: none;
}

.panel-bullets li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 16px;
    color: rgba(255,255,255,0.7);
    font-size: 15px;
}

.panel-bullets li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--color-gold-bright);
    font-weight: bold;
    font-size: 16px;
}

/* Partners section */
.partners-section {
    padding: 60px 0;
    background-color: #101010;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.partners-title {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #888888;
    margin-bottom: 32px;
}

.partners-grid {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    align-items: center;
}

.partner-logo {
    color: #ffffff;
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    opacity: 0.5;
    transition: var(--transition-smooth);
}

.partner-logo:hover {
    opacity: 0.9;
    color: var(--color-gold-bright);
}

/* Staggered Circles Section */
.journey-section {
    padding: 120px 0;
    background-color: var(--color-gold-bright);
}

.circles-wrapper {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 60px;
    position: relative;
}

.journey-circle {
    width: 320px;
    height: 320px;
    border-radius: var(--radius-circle);
    background-color: var(--color-dark);
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px;
    box-shadow: var(--shadow-lg);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: default;
}

.journey-circle:hover {
    transform: scale(1.08) translateY(-10px);
    z-index: 5;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

/* Stagger heights a bit like the image */
.c-1 {
    transform: translateY(0);
}
.c-2 {
    transform: translateY(30px);
}
.c-3 {
    transform: translateY(60px);
}

.c-2:hover {
    transform: translateY(20px) scale(1.08);
}
.c-3:hover {
    transform: translateY(50px) scale(1.08);
}

.circle-step {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-gold-bright);
    margin-bottom: 8px;
    font-weight: 600;
}

.circle-title {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 16px;
}

.circle-text {
    font-size: 14px;
    color: rgba(255,255,255,0.75);
    line-height: 1.5;
}

/* Contact Section & Form */
.contact-section {
    padding: 120px 0;
    background-color: var(--color-light-bg);
}

.contact-form-container {
    background-color: #ffffff;
    padding: 48px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.contact-form-container h2 {
    font-size: 34px;
    margin-bottom: 12px;
}

.contact-form-container p {
    color: var(--color-gray-text);
    margin-bottom: 32px;
}

.custom-form .form-group {
    margin-bottom: 20px;
}

.custom-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.custom-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 14px;
}

.custom-form input,
.custom-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--color-light-gray);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 15px;
    outline: none;
    transition: var(--transition-smooth);
}

.custom-form input:focus,
.custom-form textarea:focus {
    border-color: var(--color-gold-bright);
    box-shadow: 0 0 0 3px rgba(229, 169, 59, 0.15);
}

/* Alert Boxes */
.alert-box {
    padding: 16px;
    border-radius: var(--radius-sm);
    margin-top: 24px;
    font-size: 15px;
}

.success-alert {
    background-color: #e6fcf5;
    color: #0ca678;
    border: 1px solid #c3fae8;
}

.hidden {
    display: none;
}

/* Insights / Thinking Blog Section (Magenta themed) */
.insights-section {
    padding: 100px 0;
    background-color: var(--color-pink-bg);
}

.blog-card {
    background-color: #ffffff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.blog-img-wrapper {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.blog-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.blog-card:hover .blog-img-wrapper img {
    transform: scale(1.05);
}

.blog-content {
    padding: 32px;
}

.blog-tag {
    display: inline-block;
    color: var(--color-pink-bg);
    background-color: var(--color-pink-light);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.blog-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.blog-card p {
    color: var(--color-gray-text);
    font-size: 14px;
    margin-bottom: 24px;
    line-height: 1.5;
}

.blog-link {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--color-pink-bg);
    display: inline-flex;
    align-items: center;
}

.blog-link:hover {
    color: var(--color-pink-hover);
    padding-left: 4px;
}

/* Footer Styles */
.footer {
    background-color: var(--color-dark);
    color: #ffffff;
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-info h3 {
    color: #ffffff;
    font-size: 26px;
    margin-bottom: 4px;
}

.company-fullname {
    font-size: 12px;
    color: var(--color-gold-bright);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
}

.footer-desc {
    color: #888888;
    font-size: 14px;
    max-width: 380px;
}

.footer-links-col h4,
.footer-contact-col h4 {
    color: #ffffff;
    font-family: var(--font-heading);
    font-size: 18px;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 8px;
}

.footer-links-col h4::after,
.footer-contact-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--color-gold-bright);
}

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

.footer-links a {
    color: #888888;
    font-size: 15px;
}

.footer-links a:hover {
    color: var(--color-gold-bright);
    padding-left: 4px;
}

.footer-contact-col p {
    color: #888888;
    font-size: 14px;
    margin-bottom: 16px;
}

.footer-contact-col a {
    color: #ffffff;
}

.footer-contact-col a:hover {
    color: var(--color-gold-bright);
}

.footer-bottom {
    background-color: #080808;
    padding: 30px 0;
}

.footer-bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    font-size: 13px;
    color: #666666;
}

.policy-links {
    display: flex;
    gap: 24px;
}

.policy-links a {
    font-size: 13px;
    color: #666666;
}

.policy-links a:hover {
    color: #ffffff;
}

/* Animations for Fade-in effects */
.fade-in-section {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-section.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Subpage Hero Styles */
.subpage-hero {
    position: relative;
    padding: 180px 0 110px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 520px;
    display: flex;
    align-items: center;
    color: #ffffff;
    overflow: hidden;
}

/* Animated gradient shimmer bar */
.subpage-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--color-gold-bright), transparent);
    background-size: 200% 100%;
    animation: heroShimmer 3s infinite linear;
    z-index: 6;
}

@keyframes heroShimmer {
    0%   { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.subpage-hero-content {
    max-width: 860px;
    z-index: 5;
    position: relative;
}

/* Breadcrumb trail */
.hero-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255,255,255,0.65);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-breadcrumb a {
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.hero-breadcrumb a:hover {
    color: var(--color-gold-bright);
}

.hero-breadcrumb span {
    color: var(--color-gold-bright);
}

.hero-breadcrumb-sep {
    opacity: 0.5;
}

.subpage-title {
    font-size: 56px;
    color: #ffffff;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    line-height: 1.1;
}

.subpage-subtitle {
    font-size: 19px;
    color: rgba(255,255,255,0.9);
    font-weight: 300;
    line-height: 1.6;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
    margin-bottom: 0;
}

/* Hero Action Buttons Row */
.hero-actions-row {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 36px;
    flex-wrap: wrap;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--color-gold-bright);
    color: var(--color-dark);
    padding: 14px 32px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 16px rgba(229, 169, 59, 0.35);
    border: 2px solid transparent;
}

.btn-hero-primary:hover {
    background-color: #ffd276;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(229, 169, 59, 0.5);
}

.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: transparent;
    color: #ffffff;
    padding: 13px 30px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    border: 2px solid rgba(255,255,255,0.5);
    transition: var(--transition-smooth);
    backdrop-filter: blur(4px);
}

.btn-hero-secondary:hover {
    border-color: #ffffff;
    background-color: rgba(255,255,255,0.12);
    transform: translateY(-3px);
}

/* Hero Stats Badges Row */
.hero-stats-row {
    display: flex;
    gap: 24px;
    margin-top: 44px;
    flex-wrap: wrap;
}

.hero-stat-badge {
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: var(--radius-md);
    padding: 14px 20px;
    display: flex;
    flex-direction: column;
    gap: 3px;
    transition: var(--transition-smooth);
    animation: badgeFadeUp 0.8s ease forwards;
    opacity: 0;
}

.hero-stat-badge:nth-child(1) { animation-delay: 0.2s; }
.hero-stat-badge:nth-child(2) { animation-delay: 0.35s; }
.hero-stat-badge:nth-child(3) { animation-delay: 0.5s; }

@keyframes badgeFadeUp {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}

.hero-stat-badge:hover {
    background: rgba(255,255,255,0.2);
    border-color: var(--color-gold-bright);
    transform: translateY(-2px);
}

.hero-stat-num {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 800;
    color: var(--color-gold-bright);
    line-height: 1;
}

.hero-stat-label {
    font-size: 12px;
    color: rgba(255,255,255,0.75);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-weight: 500;
}

.subpage-body {
    padding: 100px 0;
    background-color: #ffffff;
}

.subpage-container {
    max-width: 800px;
    margin: 0 auto;
}

.subpage-container h2 {
    font-size: 32px;
    margin-bottom: 24px;
}

.subpage-container p {
    font-size: 16px;
    color: var(--color-gray-text);
    margin-bottom: 24px;
    line-height: 1.7;
}

/* Projects / Case Studies Styles */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.project-card {
    background-color: #ffffff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
    border: 1px solid var(--color-light-gray);
    display: flex;
    flex-direction: column;
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-gold-bright);
}

.project-img-wrapper {
    position: relative;
    width: 100%;
    height: 220px;
    background-color: var(--color-dark);
    overflow: hidden;
}

.project-img-wrapper svg {
    width: 100%;
    height: 100%;
}

.project-card-content {
    padding: 32px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.project-tag {
    display: inline-block;
    color: var(--color-gold);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.project-card-content h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.project-card-content p {
    color: var(--color-gray-text);
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 24px;
}

.project-card-link {
    margin-top: auto;
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--color-dark);
}

.project-card-link:hover {
    color: var(--color-gold-bright);
}

/* Project Details Page Helpers */
.project-meta-box {
    background-color: var(--color-light-bg);
    padding: 24px;
    border-radius: var(--radius-md);
    margin: 32px 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.meta-item strong {
    display: block;
    font-size: 13px;
    text-transform: uppercase;
    color: var(--color-gold-bright);
    margin-bottom: 4px;
}

.meta-item p {
    margin-bottom: 0 !important;
    font-weight: 500;
}

.project-section-title {
    font-size: 28px;
    margin: 48px 0 20px;
    border-bottom: 2px solid var(--color-light-gray);
    padding-bottom: 8px;
}

.project-metrics-table {
    width: 100%;
    border-collapse: collapse;
    margin: 32px 0;
}

.project-metrics-table th,
.project-metrics-table td {
    padding: 16px;
    border: 1px solid var(--color-light-gray);
    text-align: left;
}

.project-metrics-table th {
    background-color: var(--color-light-bg);
    font-family: var(--font-heading);
    font-weight: 600;
}

.project-callout-box {
    background-color: rgba(229,169,59,0.08);
    border-left: 4px solid var(--color-gold-bright);
    padding: 24px;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    margin: 32px 0;
}

.project-callout-box p {
    margin-bottom: 0 !important;
    font-style: italic;
    color: var(--color-dark);
}

.project-image-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin: 40px 0;
}

.project-vector-art {
    width: 100%;
    height: 280px;
    background-color: var(--color-dark);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.project-vector-art svg {
    width: 100%;
    height: 100%;
}

/* Quote Flow Styles */
.quote-steps-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin: 48px 0;
}

.quote-step-card {
    background-color: #ffffff;
    padding: 32px 24px;
    border-radius: var(--radius-md);
    border: 1px solid var(--color-light-gray);
    text-align: center;
    position: relative;
}

.step-num {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--color-gold-bright);
    color: var(--color-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    box-shadow: var(--shadow-sm);
}

.quote-step-card h4 {
    margin-top: 12px;
    margin-bottom: 12px;
}

.quote-step-card p {
    font-size: 14px;
    margin-bottom: 0;
}

.price-card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin: 48px 0;
}

.price-card {
    background-color: #ffffff;
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-light-gray);
    padding: 48px 36px;
    text-align: center;
    transition: var(--transition-smooth);
}

.price-card.featured {
    border-color: var(--color-gold-bright);
    box-shadow: var(--shadow-lg);
    transform: translateY(-8px);
    position: relative;
}

.price-card.featured::after {
    content: 'RECOMMENDED';
    position: absolute;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--color-gold-bright);
    color: var(--color-dark);
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 50px;
}

.price-title {
    font-size: 22px;
    margin-bottom: 8px;
}

.price-val {
    font-size: 40px;
    font-weight: 800;
    font-family: var(--font-heading);
    color: var(--color-dark);
    margin-bottom: 24px;
}

.price-features {
    list-style: none;
    padding: 0;
    margin-bottom: 36px;
}

.price-features li {
    padding: 10px 0;
    border-bottom: 1px solid var(--color-light-bg);
    color: var(--color-gray-text);
    font-size: 14px;
}

/* ==========================================
   Accordion FAQ Block Styles (Native Details/Summary)
   ========================================== */
.faq-section {
    margin: 60px 0 20px;
}
.faq-section h3.project-section-title {
    margin-top: 0;
}
.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 24px;
}
.faq-item {
    background-color: var(--color-light-bg);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--color-light-gray);
    transition: var(--transition-smooth);
}
.faq-item[open] {
    border-color: var(--color-gold-bright);
    box-shadow: var(--shadow-md);
    background-color: #ffffff;
}
.faq-item summary {
    padding: 20px 24px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--color-dark);
    user-select: none;
}
.faq-item summary::-webkit-details-marker {
    display: none;
}
.faq-item summary::after {
    content: '+';
    font-size: 20px;
    font-weight: 500;
    color: var(--color-gold-bright);
    transition: var(--transition-smooth);
}
.faq-item[open] summary::after {
    content: '-';
    transform: rotate(180deg);
}
.faq-content {
    padding: 0 24px 20px;
    font-size: 15px;
    line-height: 1.6;
    color: var(--color-gray-text);
}

/* ==========================================
   Inline Conversion Form Styles
   ========================================== */
.inline-form-card {
    margin: 60px 0;
    background-color: var(--color-light-bg);
    border-radius: var(--radius-lg);
    padding: 40px;
    border: 1px solid var(--color-light-gray);
    transition: var(--transition-smooth);
}
.inline-form-card.dark {
    background-color: var(--color-dark);
    color: #ffffff;
    border: none;
}
.inline-form-card h3 {
    font-size: 24px;
    margin-bottom: 12px;
}
.inline-form-card.dark h3 {
    color: #ffffff;
}
.inline-form-card p {
    margin-bottom: 24px;
    color: var(--color-gray-text);
    font-size: 15px;
}
.inline-form-card.dark p {
    color: #aaaaaa;
}
.inline-form-card form {
    margin-top: 20px;
}
.inline-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}
@media (max-width: 768px) {
    .inline-form-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================
   Client Testimonials Styles
   ========================================== */
.testimonial-section {
    margin: 80px 0;
    padding: 60px 24px;
    background-color: var(--color-light-bg);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-light-gray);
}
.testimonial-section.dark {
    background-color: var(--color-charcoal);
    border: none;
}
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 40px;
}
@media (max-width: 992px) {
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
}
.testimonial-card {
    background-color: #ffffff;
    padding: 36px 32px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-light-gray);
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
}
.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-gold-bright);
}
.testimonial-quote {
    font-size: 15px;
    line-height: 1.6;
    color: var(--color-gray-text);
    margin-bottom: 24px;
    font-style: italic;
    flex-grow: 1;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: auto;
}
.testimonial-author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--color-gold-bright);
}
.testimonial-author-info h4 {
    font-size: 15px;
    margin-bottom: 2px;
    color: var(--color-dark);
}
.testimonial-author-info p {
    font-size: 12px;
    color: var(--color-gray-text);
    margin-bottom: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ==========================================
   Related Projects Styles
   ========================================== */
.related-projects-section {
    margin: 80px 0 20px;
}
.related-projects-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-top: 32px;
}
@media (max-width: 768px) {
    .related-projects-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================
   Site-wide Mobile Navigation
   ========================================== */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 10px;
    background: transparent;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 10px;
    cursor: pointer;
    z-index: 1002;
    flex-shrink: 0;
}

.nav-toggle span {
    display: block;
    height: 2px;
    width: 100%;
    background: var(--color-dark);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 32px 24px;
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s;
    overflow-y: auto;
}

.mobile-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mobile-nav-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mobile-nav-links a {
    display: block;
    padding: 14px 0;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.mobile-nav-actions {
    margin-top: 32px;
}

body.nav-open {
    overflow: hidden;
}

@media (max-width: 1024px) {
    .nav-bar,
    .header-actions {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .header.menu-open {
        background: rgba(10, 10, 10, 0.97);
        box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06);
    }

    .page-home .header.menu-open .nav-toggle span,
    .header.menu-open .nav-toggle span {
        background: #fff;
    }

    .page-home .header.menu-open .nav-toggle,
    .header.menu-open .nav-toggle {
        border-color: rgba(255, 255, 255, 0.25);
    }
}

@media (max-width: 1180px) and (min-width: 1025px) {
    .nav-links {
        gap: 20px;
    }

    .nav-link {
        font-size: 15px;
    }

    .header-actions .btn {
        padding: 10px 18px;
        font-size: 14px;
    }
}


